diff --git a/build/dependencies.props b/build/dependencies.props index 3e934ec707..2c876226ac 100644 --- a/build/dependencies.props +++ b/build/dependencies.props @@ -1,4 +1,4 @@ - + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) @@ -35,7 +35,6 @@ 3.0.0-preview1-26907-05 3.0.0-alpha1-10620 15.6.1 - 3.0.0-alpha1-10620 2.0.3 3.12.1 17.17134.0 diff --git a/src/Microsoft.DotNet.Web.ProjectTemplates/Microsoft.DotNet.Web.ProjectTemplates.csproj b/src/Microsoft.DotNet.Web.ProjectTemplates/Microsoft.DotNet.Web.ProjectTemplates.csproj index 6891c01502..a09b21d20b 100644 --- a/src/Microsoft.DotNet.Web.ProjectTemplates/Microsoft.DotNet.Web.ProjectTemplates.csproj +++ b/src/Microsoft.DotNet.Web.ProjectTemplates/Microsoft.DotNet.Web.ProjectTemplates.csproj @@ -41,7 +41,6 @@ MicrosoftEntityFrameworkCoreToolsDotNetPackageVersion=$(MicrosoftEntityFrameworkCoreToolsDotNetPackageVersion); MicrosoftEntityFrameworkCoreToolsPackageVersion=$(MicrosoftEntityFrameworkCoreToolsPackageVersion); MicrosoftNETCoreApp30PackageVersion=$(MicrosoftNETCoreApp30PackageVersion); - MicrosoftVisualStudioWebBrowserLinkPackageVersion=$(MicrosoftVisualStudioWebBrowserLinkPackageVersion); diff --git a/src/Microsoft.DotNet.Web.ProjectTemplates/RazorPagesWeb-CSharp.csproj.in b/src/Microsoft.DotNet.Web.ProjectTemplates/RazorPagesWeb-CSharp.csproj.in index 11d8977a57..b2ec00e40b 100644 --- a/src/Microsoft.DotNet.Web.ProjectTemplates/RazorPagesWeb-CSharp.csproj.in +++ b/src/Microsoft.DotNet.Web.ProjectTemplates/RazorPagesWeb-CSharp.csproj.in @@ -25,7 +25,6 @@ - @@ -42,7 +41,6 @@ - diff --git a/src/Microsoft.DotNet.Web.ProjectTemplates/StarterWeb-CSharp.csproj.in b/src/Microsoft.DotNet.Web.ProjectTemplates/StarterWeb-CSharp.csproj.in index 0c0af68f1d..d609e52201 100644 --- a/src/Microsoft.DotNet.Web.ProjectTemplates/StarterWeb-CSharp.csproj.in +++ b/src/Microsoft.DotNet.Web.ProjectTemplates/StarterWeb-CSharp.csproj.in @@ -1,4 +1,4 @@ - + netcoreapp3.0 @@ -25,7 +25,6 @@ - @@ -42,7 +41,6 @@ - diff --git a/src/Microsoft.DotNet.Web.ProjectTemplates/content/RazorPagesWeb-CSharp/.template.config/dotnetcli.host.json b/src/Microsoft.DotNet.Web.ProjectTemplates/content/RazorPagesWeb-CSharp/.template.config/dotnetcli.host.json index 9300d123ce..1c0577ddb9 100644 --- a/src/Microsoft.DotNet.Web.ProjectTemplates/content/RazorPagesWeb-CSharp/.template.config/dotnetcli.host.json +++ b/src/Microsoft.DotNet.Web.ProjectTemplates/content/RazorPagesWeb-CSharp/.template.config/dotnetcli.host.json @@ -69,10 +69,6 @@ "longName": "no-restore", "shortName": "" }, - "UseBrowserLink": { - "longName": "use-browserlink", - "shortName": "" - }, "NoHttps": { "longName": "no-https", "shortName": "" diff --git a/src/Microsoft.DotNet.Web.ProjectTemplates/content/RazorPagesWeb-CSharp/.template.config/template.json b/src/Microsoft.DotNet.Web.ProjectTemplates/content/RazorPagesWeb-CSharp/.template.config/template.json index b337607784..1b4dab9bb2 100644 --- a/src/Microsoft.DotNet.Web.ProjectTemplates/content/RazorPagesWeb-CSharp/.template.config/template.json +++ b/src/Microsoft.DotNet.Web.ProjectTemplates/content/RazorPagesWeb-CSharp/.template.config/template.json @@ -222,12 +222,6 @@ "description": "If specified, skips the automatic restore of the project on create.", "defaultValue": "false" }, - "UseBrowserLink": { - "type": "parameter", - "datatype": "bool", - "defaultValue": "false", - "description": "Whether or not to include BrowserLink in the project" - }, "HttpPort": { "type": "parameter", "datatype": "integer", diff --git a/src/Microsoft.DotNet.Web.ProjectTemplates/content/RazorPagesWeb-CSharp/.template.config/vs-2017.3.host.json b/src/Microsoft.DotNet.Web.ProjectTemplates/content/RazorPagesWeb-CSharp/.template.config/vs-2017.3.host.json index fd13c870d9..7bff1c1eab 100644 --- a/src/Microsoft.DotNet.Web.ProjectTemplates/content/RazorPagesWeb-CSharp/.template.config/vs-2017.3.host.json +++ b/src/Microsoft.DotNet.Web.ProjectTemplates/content/RazorPagesWeb-CSharp/.template.config/vs-2017.3.host.json @@ -17,7 +17,6 @@ "isApi": false, "usesOidc": true, "supportsDocker": true, - "useBrowserLink": false, "legacyTemplateIdentity": "Microsoft.NetCore.CSharp.RazorPages", "supportedAuthentications": [ { diff --git a/src/Microsoft.DotNet.Web.ProjectTemplates/content/RazorPagesWeb-CSharp/Startup.cs b/src/Microsoft.DotNet.Web.ProjectTemplates/content/RazorPagesWeb-CSharp/Startup.cs index 33933f4a1a..0eda88fe67 100644 --- a/src/Microsoft.DotNet.Web.ProjectTemplates/content/RazorPagesWeb-CSharp/Startup.cs +++ b/src/Microsoft.DotNet.Web.ProjectTemplates/content/RazorPagesWeb-CSharp/Startup.cs @@ -137,9 +137,6 @@ namespace Company.WebApplication1 { if (env.IsDevelopment()) { -#if (UseBrowserLink) - app.UseBrowserLink(); -#endif app.UseDeveloperExceptionPage(); #if (IndividualLocalAuth) app.UseDatabaseErrorPage(); diff --git a/src/Microsoft.DotNet.Web.ProjectTemplates/content/StarterWeb-CSharp/.template.config/dotnetcli.host.json b/src/Microsoft.DotNet.Web.ProjectTemplates/content/StarterWeb-CSharp/.template.config/dotnetcli.host.json index 1b8cfa12df..b846ff9c1d 100644 --- a/src/Microsoft.DotNet.Web.ProjectTemplates/content/StarterWeb-CSharp/.template.config/dotnetcli.host.json +++ b/src/Microsoft.DotNet.Web.ProjectTemplates/content/StarterWeb-CSharp/.template.config/dotnetcli.host.json @@ -69,10 +69,6 @@ "UserSecretsId": { "isHidden": true }, - "UseBrowserLink": { - "longName": "use-browserlink", - "shortName": "" - }, "NoHttps": { "longName": "no-https", "shortName": "" diff --git a/src/Microsoft.DotNet.Web.ProjectTemplates/content/StarterWeb-CSharp/.template.config/template.json b/src/Microsoft.DotNet.Web.ProjectTemplates/content/StarterWeb-CSharp/.template.config/template.json index fbca0bdeb3..0856719e73 100644 --- a/src/Microsoft.DotNet.Web.ProjectTemplates/content/StarterWeb-CSharp/.template.config/template.json +++ b/src/Microsoft.DotNet.Web.ProjectTemplates/content/StarterWeb-CSharp/.template.config/template.json @@ -212,12 +212,6 @@ "defaultValue": "false", "description": "Whether to exclude launchSettings.json from the generated template." }, - "UseBrowserLink": { - "type": "parameter", - "datatype": "bool", - "defaultValue": "false", - "description": "Whether or not to include BrowserLink in the project" - }, "HttpPort": { "type": "parameter", "datatype": "integer", diff --git a/src/Microsoft.DotNet.Web.ProjectTemplates/content/StarterWeb-CSharp/.template.config/vs-2017.3.host.json b/src/Microsoft.DotNet.Web.ProjectTemplates/content/StarterWeb-CSharp/.template.config/vs-2017.3.host.json index e41095f10b..c919671b2b 100644 --- a/src/Microsoft.DotNet.Web.ProjectTemplates/content/StarterWeb-CSharp/.template.config/vs-2017.3.host.json +++ b/src/Microsoft.DotNet.Web.ProjectTemplates/content/StarterWeb-CSharp/.template.config/vs-2017.3.host.json @@ -17,7 +17,6 @@ "supportsDocker": true, "isApi": false, "usesOidc": true, - "useBrowserLink": false, "legacyTemplateIdentity": "Microsoft.NetCore.CSharp.StarterWeb", "supportedAuthentications": [ { diff --git a/src/Microsoft.DotNet.Web.ProjectTemplates/content/StarterWeb-CSharp/Startup.cs b/src/Microsoft.DotNet.Web.ProjectTemplates/content/StarterWeb-CSharp/Startup.cs index 328d8467cb..a13112913b 100644 --- a/src/Microsoft.DotNet.Web.ProjectTemplates/content/StarterWeb-CSharp/Startup.cs +++ b/src/Microsoft.DotNet.Web.ProjectTemplates/content/StarterWeb-CSharp/Startup.cs @@ -136,9 +136,6 @@ namespace Company.WebApplication1 { if (env.IsDevelopment()) { -#if (UseBrowserLink) - app.UseBrowserLink(); -#endif app.UseDeveloperExceptionPage(); #if (IndividualLocalAuth) app.UseDatabaseErrorPage(); diff --git a/src/Microsoft.DotNet.Web.ProjectTemplates/content/StarterWeb-FSharp/.template.config/template.json b/src/Microsoft.DotNet.Web.ProjectTemplates/content/StarterWeb-FSharp/.template.config/template.json index f8041a2dd1..c156705918 100644 --- a/src/Microsoft.DotNet.Web.ProjectTemplates/content/StarterWeb-FSharp/.template.config/template.json +++ b/src/Microsoft.DotNet.Web.ProjectTemplates/content/StarterWeb-FSharp/.template.config/template.json @@ -47,12 +47,6 @@ "defaultValue": "false", "description": "Whether to exclude launchSettings.json from the generated template." }, - "UseBrowserLink": { - "type": "parameter", - "datatype": "bool", - "defaultValue": "false", - "description": "Whether or not to include BrowserLink in the project" - }, "HttpPort": { "type": "parameter", "datatype": "integer",