From d393871abebd51d9533ed9dd2db49bb2fa58906e Mon Sep 17 00:00:00 2001 From: shreyas jejurkar Date: Fri, 22 Jan 2021 12:02:22 +0530 Subject: [PATCH 1/3] Changed default server for samples from IIS Express to Kestrel Fixes https://github.com/dotnet/aspnetcore/issues/27630 --- .gitignore | 1 - .../Properties/launchSettings.json | 40 +++++++++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++ .../Properties/launchSettings.json | 40 +++++++++++++++++++ .../IIS.Tests/Properties/launchSettings.json | 40 +++++++++++++++++++ .../Properties/launchSettings.json | 40 +++++++++++++++++++ .../Properties/launchSettings.json | 40 +++++++++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++ .../Properties/launchSettings.json | 40 +++++++++++++++++++ 27 files changed, 780 insertions(+), 1 deletion(-) create mode 100644 src/DefaultBuilder/testassets/CreateDefaultBuilderApp/Properties/launchSettings.json create mode 100644 src/Mvc/test/WebSites/ApiExplorerWebSite/Properties/launchSettings.json create mode 100644 src/Mvc/test/WebSites/ApplicationModelWebSite/Properties/launchSettings.json create mode 100644 src/Mvc/test/WebSites/BasicWebSite/Properties/launchSettings.json create mode 100644 src/Mvc/test/WebSites/ControllersFromServicesWebSite/Properties/launchSettings.json create mode 100644 src/Mvc/test/WebSites/CorsWebSite/Properties/launchSettings.json create mode 100644 src/Mvc/test/WebSites/ErrorPageMiddlewareWebSite/Properties/launchSettings.json create mode 100644 src/Mvc/test/WebSites/FilesWebSite/Properties/launchSettings.json create mode 100644 src/Mvc/test/WebSites/FormatterWebSite/Properties/launchSettings.json create mode 100644 src/Mvc/test/WebSites/GenericHostWebSite/Properties/launchSettings.json create mode 100644 src/Mvc/test/WebSites/HtmlGenerationWebSite/Properties/launchSettings.json create mode 100644 src/Mvc/test/WebSites/RazorBuildWebSite/Properties/launchSettings.json create mode 100644 src/Mvc/test/WebSites/RazorPagesWebSite/Properties/launchSettings.json create mode 100644 src/Mvc/test/WebSites/RazorWebSite/Properties/launchSettings.json create mode 100644 src/Mvc/test/WebSites/RoutingWebSite/Properties/launchSettings.json create mode 100644 src/Mvc/test/WebSites/SecurityWebSite/Properties/launchSettings.json create mode 100644 src/Mvc/test/WebSites/SimpleWebSite/Properties/launchSettings.json create mode 100644 src/Mvc/test/WebSites/TagHelpersWebSite/Properties/launchSettings.json create mode 100644 src/Mvc/test/WebSites/VersioningWebSite/Properties/launchSettings.json create mode 100644 src/Mvc/test/WebSites/XmlFormattersWebSite/Properties/launchSettings.json create mode 100644 src/Servers/IIS/IIS/samples/NativeIISSample/Properties/launchSettings.json create mode 100644 src/Servers/IIS/IIS/test/IIS.Tests/Properties/launchSettings.json create mode 100644 src/Servers/IIS/IIS/test/testassets/InProcessNewShimWebSite/Properties/launchSettings.json create mode 100644 src/Servers/IIS/IIS/test/testassets/InProcessWebSite/Properties/launchSettings.json create mode 100644 src/Servers/Kestrel/samples/Http3SampleApp/Properties/launchSettings.json create mode 100644 src/Servers/testassets/ServerComparison.TestSites/Properties/launchSettings.json diff --git a/.gitignore b/.gitignore index 6f30c0338d65..b3970293c1a3 100644 --- a/.gitignore +++ b/.gitignore @@ -38,7 +38,6 @@ modules/ *.vspx # Specific files, typically generated by tools -launchSettings.json msbuild.ProjectImports.zip StyleCop.Cache UpgradeLog.htm diff --git a/src/DefaultBuilder/testassets/CreateDefaultBuilderApp/Properties/launchSettings.json b/src/DefaultBuilder/testassets/CreateDefaultBuilderApp/Properties/launchSettings.json new file mode 100644 index 000000000000..fe76b29b53d8 --- /dev/null +++ b/src/DefaultBuilder/testassets/CreateDefaultBuilderApp/Properties/launchSettings.json @@ -0,0 +1,40 @@ +{ + "iisSettings": { + "windowsAuthentication": true, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:5762/", + "sslPort": 0 + } + }, + "profiles": { + "ANCM IIS Express": { + "commandName": "Executable", + "executablePath": "$(IISExpressPath)", + "commandLineArgs": "$(IISExpressArguments)", + "environmentVariables": { + "IIS_SITE_PATH": "$(MSBuildThisFileDirectory)", + "ANCMV2_PATH": "$(AspNetCoreModuleV2ShimDll)", + "ASPNETCORE_MODULE_OUTOFPROCESS_HANDLER": "$(AspNetCoreModuleV2OutOfProcessHandlerDll)", + "LAUNCHER_ARGS": "$(TargetPath)", + "ASPNETCORE_ENVIRONMENT": "Development", + "LAUNCHER_PATH": "$(DotNetPath)", + "ASPNETCORE_MODULE_DEBUG": "console" + } + }, + "ANCM IIS": { + "commandName": "Executable", + "executablePath": "$(IISPath)", + "commandLineArgs": "$(IISArguments)", + "environmentVariables": { + "IIS_SITE_PATH": "$(MSBuildThisFileDirectory)", + "ANCMV2_PATH": "$(AspNetCoreModuleV2ShimDll)", + "ASPNETCORE_MODULE_OUTOFPROCESS_HANDLER": "$(AspNetCoreModuleV2OutOfProcessHandlerDll)", + "LAUNCHER_ARGS": "$(TargetPath)", + "ASPNETCORE_ENVIRONMENT": "Development", + "LAUNCHER_PATH": "$(DotNetPath)", + "ASPNETCORE_MODULE_DEBUG": "console" + } + } + } +} diff --git a/src/Mvc/test/WebSites/ApiExplorerWebSite/Properties/launchSettings.json b/src/Mvc/test/WebSites/ApiExplorerWebSite/Properties/launchSettings.json new file mode 100644 index 000000000000..2d1a92804279 --- /dev/null +++ b/src/Mvc/test/WebSites/ApiExplorerWebSite/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:51783/", + "sslPort": 44367 + } + }, + "profiles": { + "ApiExplorerWebSite": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Mvc/test/WebSites/ApplicationModelWebSite/Properties/launchSettings.json b/src/Mvc/test/WebSites/ApplicationModelWebSite/Properties/launchSettings.json new file mode 100644 index 000000000000..67d9b39a0cc4 --- /dev/null +++ b/src/Mvc/test/WebSites/ApplicationModelWebSite/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:51797/", + "sslPort": 44373 + } + }, + "profiles": { + "ApplicationModelWebSite": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Mvc/test/WebSites/BasicWebSite/Properties/launchSettings.json b/src/Mvc/test/WebSites/BasicWebSite/Properties/launchSettings.json new file mode 100644 index 000000000000..5a39ed989a1d --- /dev/null +++ b/src/Mvc/test/WebSites/BasicWebSite/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:51789/", + "sslPort": 44337 + } + }, + "profiles": { + "BasicWebSite": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Mvc/test/WebSites/ControllersFromServicesWebSite/Properties/launchSettings.json b/src/Mvc/test/WebSites/ControllersFromServicesWebSite/Properties/launchSettings.json new file mode 100644 index 000000000000..52e7397d5a91 --- /dev/null +++ b/src/Mvc/test/WebSites/ControllersFromServicesWebSite/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:51800/", + "sslPort": 44396 + } + }, + "profiles": { + "ControllersFromServicesWebSite": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Mvc/test/WebSites/CorsWebSite/Properties/launchSettings.json b/src/Mvc/test/WebSites/CorsWebSite/Properties/launchSettings.json new file mode 100644 index 000000000000..9e3347313964 --- /dev/null +++ b/src/Mvc/test/WebSites/CorsWebSite/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:51802/", + "sslPort": 44373 + } + }, + "profiles": { + "CorsWebSite": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Mvc/test/WebSites/ErrorPageMiddlewareWebSite/Properties/launchSettings.json b/src/Mvc/test/WebSites/ErrorPageMiddlewareWebSite/Properties/launchSettings.json new file mode 100644 index 000000000000..441a459b4595 --- /dev/null +++ b/src/Mvc/test/WebSites/ErrorPageMiddlewareWebSite/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:51799/", + "sslPort": 44386 + } + }, + "profiles": { + "ErrorPageMiddlewareWebSite": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Mvc/test/WebSites/FilesWebSite/Properties/launchSettings.json b/src/Mvc/test/WebSites/FilesWebSite/Properties/launchSettings.json new file mode 100644 index 000000000000..7a3d6be61b24 --- /dev/null +++ b/src/Mvc/test/WebSites/FilesWebSite/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:51794/", + "sslPort": 44349 + } + }, + "profiles": { + "FilesWebSite": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Mvc/test/WebSites/FormatterWebSite/Properties/launchSettings.json b/src/Mvc/test/WebSites/FormatterWebSite/Properties/launchSettings.json new file mode 100644 index 000000000000..108965a3dc17 --- /dev/null +++ b/src/Mvc/test/WebSites/FormatterWebSite/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:51788/", + "sslPort": 44323 + } + }, + "profiles": { + "FormatterWebSite": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Mvc/test/WebSites/GenericHostWebSite/Properties/launchSettings.json b/src/Mvc/test/WebSites/GenericHostWebSite/Properties/launchSettings.json new file mode 100644 index 000000000000..e879c9a41af1 --- /dev/null +++ b/src/Mvc/test/WebSites/GenericHostWebSite/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:51835/", + "sslPort": 44390 + } + }, + "profiles": { + "GenericHostWebSite": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Mvc/test/WebSites/HtmlGenerationWebSite/Properties/launchSettings.json b/src/Mvc/test/WebSites/HtmlGenerationWebSite/Properties/launchSettings.json new file mode 100644 index 000000000000..63db6a8ad895 --- /dev/null +++ b/src/Mvc/test/WebSites/HtmlGenerationWebSite/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:51795/", + "sslPort": 44366 + } + }, + "profiles": { + "HtmlGenerationWebSite": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Mvc/test/WebSites/RazorBuildWebSite/Properties/launchSettings.json b/src/Mvc/test/WebSites/RazorBuildWebSite/Properties/launchSettings.json new file mode 100644 index 000000000000..ad139df64008 --- /dev/null +++ b/src/Mvc/test/WebSites/RazorBuildWebSite/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:51834/", + "sslPort": 44337 + } + }, + "profiles": { + "RazorBuildWebSite": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Mvc/test/WebSites/RazorPagesWebSite/Properties/launchSettings.json b/src/Mvc/test/WebSites/RazorPagesWebSite/Properties/launchSettings.json new file mode 100644 index 000000000000..d02df680bb22 --- /dev/null +++ b/src/Mvc/test/WebSites/RazorPagesWebSite/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:51831/", + "sslPort": 44318 + } + }, + "profiles": { + "RazorPagesWebSite": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Mvc/test/WebSites/RazorWebSite/Properties/launchSettings.json b/src/Mvc/test/WebSites/RazorWebSite/Properties/launchSettings.json new file mode 100644 index 000000000000..11f8a90106cd --- /dev/null +++ b/src/Mvc/test/WebSites/RazorWebSite/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:51804/", + "sslPort": 44369 + } + }, + "profiles": { + "RazorWebSite": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Mvc/test/WebSites/RoutingWebSite/Properties/launchSettings.json b/src/Mvc/test/WebSites/RoutingWebSite/Properties/launchSettings.json new file mode 100644 index 000000000000..d186c19cc615 --- /dev/null +++ b/src/Mvc/test/WebSites/RoutingWebSite/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:51836/", + "sslPort": 44331 + } + }, + "profiles": { + "Mvc.RoutingWebSite": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Mvc/test/WebSites/SecurityWebSite/Properties/launchSettings.json b/src/Mvc/test/WebSites/SecurityWebSite/Properties/launchSettings.json new file mode 100644 index 000000000000..a488ed9644be --- /dev/null +++ b/src/Mvc/test/WebSites/SecurityWebSite/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:51830/", + "sslPort": 44379 + } + }, + "profiles": { + "SecurityWebSite": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Mvc/test/WebSites/SimpleWebSite/Properties/launchSettings.json b/src/Mvc/test/WebSites/SimpleWebSite/Properties/launchSettings.json new file mode 100644 index 000000000000..3c71eb74877d --- /dev/null +++ b/src/Mvc/test/WebSites/SimpleWebSite/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:51807/", + "sslPort": 44365 + } + }, + "profiles": { + "SimpleWebSite": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Mvc/test/WebSites/TagHelpersWebSite/Properties/launchSettings.json b/src/Mvc/test/WebSites/TagHelpersWebSite/Properties/launchSettings.json new file mode 100644 index 000000000000..cd6701beba55 --- /dev/null +++ b/src/Mvc/test/WebSites/TagHelpersWebSite/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:51790/", + "sslPort": 44397 + } + }, + "profiles": { + "TagHelpersWebSite": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Mvc/test/WebSites/VersioningWebSite/Properties/launchSettings.json b/src/Mvc/test/WebSites/VersioningWebSite/Properties/launchSettings.json new file mode 100644 index 000000000000..2d72083cda39 --- /dev/null +++ b/src/Mvc/test/WebSites/VersioningWebSite/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:51837/", + "sslPort": 44348 + } + }, + "profiles": { + "VersioningWebSite": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Mvc/test/WebSites/XmlFormattersWebSite/Properties/launchSettings.json b/src/Mvc/test/WebSites/XmlFormattersWebSite/Properties/launchSettings.json new file mode 100644 index 000000000000..698ba7a12540 --- /dev/null +++ b/src/Mvc/test/WebSites/XmlFormattersWebSite/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:51798/", + "sslPort": 44303 + } + }, + "profiles": { + "XmlFormattersWebSite": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Servers/IIS/IIS/samples/NativeIISSample/Properties/launchSettings.json b/src/Servers/IIS/IIS/samples/NativeIISSample/Properties/launchSettings.json new file mode 100644 index 000000000000..fe76b29b53d8 --- /dev/null +++ b/src/Servers/IIS/IIS/samples/NativeIISSample/Properties/launchSettings.json @@ -0,0 +1,40 @@ +{ + "iisSettings": { + "windowsAuthentication": true, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:5762/", + "sslPort": 0 + } + }, + "profiles": { + "ANCM IIS Express": { + "commandName": "Executable", + "executablePath": "$(IISExpressPath)", + "commandLineArgs": "$(IISExpressArguments)", + "environmentVariables": { + "IIS_SITE_PATH": "$(MSBuildThisFileDirectory)", + "ANCMV2_PATH": "$(AspNetCoreModuleV2ShimDll)", + "ASPNETCORE_MODULE_OUTOFPROCESS_HANDLER": "$(AspNetCoreModuleV2OutOfProcessHandlerDll)", + "LAUNCHER_ARGS": "$(TargetPath)", + "ASPNETCORE_ENVIRONMENT": "Development", + "LAUNCHER_PATH": "$(DotNetPath)", + "ASPNETCORE_MODULE_DEBUG": "console" + } + }, + "ANCM IIS": { + "commandName": "Executable", + "executablePath": "$(IISPath)", + "commandLineArgs": "$(IISArguments)", + "environmentVariables": { + "IIS_SITE_PATH": "$(MSBuildThisFileDirectory)", + "ANCMV2_PATH": "$(AspNetCoreModuleV2ShimDll)", + "ASPNETCORE_MODULE_OUTOFPROCESS_HANDLER": "$(AspNetCoreModuleV2OutOfProcessHandlerDll)", + "LAUNCHER_ARGS": "$(TargetPath)", + "ASPNETCORE_ENVIRONMENT": "Development", + "LAUNCHER_PATH": "$(DotNetPath)", + "ASPNETCORE_MODULE_DEBUG": "console" + } + } + } +} diff --git a/src/Servers/IIS/IIS/test/IIS.Tests/Properties/launchSettings.json b/src/Servers/IIS/IIS/test/IIS.Tests/Properties/launchSettings.json new file mode 100644 index 000000000000..fe76b29b53d8 --- /dev/null +++ b/src/Servers/IIS/IIS/test/IIS.Tests/Properties/launchSettings.json @@ -0,0 +1,40 @@ +{ + "iisSettings": { + "windowsAuthentication": true, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:5762/", + "sslPort": 0 + } + }, + "profiles": { + "ANCM IIS Express": { + "commandName": "Executable", + "executablePath": "$(IISExpressPath)", + "commandLineArgs": "$(IISExpressArguments)", + "environmentVariables": { + "IIS_SITE_PATH": "$(MSBuildThisFileDirectory)", + "ANCMV2_PATH": "$(AspNetCoreModuleV2ShimDll)", + "ASPNETCORE_MODULE_OUTOFPROCESS_HANDLER": "$(AspNetCoreModuleV2OutOfProcessHandlerDll)", + "LAUNCHER_ARGS": "$(TargetPath)", + "ASPNETCORE_ENVIRONMENT": "Development", + "LAUNCHER_PATH": "$(DotNetPath)", + "ASPNETCORE_MODULE_DEBUG": "console" + } + }, + "ANCM IIS": { + "commandName": "Executable", + "executablePath": "$(IISPath)", + "commandLineArgs": "$(IISArguments)", + "environmentVariables": { + "IIS_SITE_PATH": "$(MSBuildThisFileDirectory)", + "ANCMV2_PATH": "$(AspNetCoreModuleV2ShimDll)", + "ASPNETCORE_MODULE_OUTOFPROCESS_HANDLER": "$(AspNetCoreModuleV2OutOfProcessHandlerDll)", + "LAUNCHER_ARGS": "$(TargetPath)", + "ASPNETCORE_ENVIRONMENT": "Development", + "LAUNCHER_PATH": "$(DotNetPath)", + "ASPNETCORE_MODULE_DEBUG": "console" + } + } + } +} diff --git a/src/Servers/IIS/IIS/test/testassets/InProcessNewShimWebSite/Properties/launchSettings.json b/src/Servers/IIS/IIS/test/testassets/InProcessNewShimWebSite/Properties/launchSettings.json new file mode 100644 index 000000000000..fe76b29b53d8 --- /dev/null +++ b/src/Servers/IIS/IIS/test/testassets/InProcessNewShimWebSite/Properties/launchSettings.json @@ -0,0 +1,40 @@ +{ + "iisSettings": { + "windowsAuthentication": true, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:5762/", + "sslPort": 0 + } + }, + "profiles": { + "ANCM IIS Express": { + "commandName": "Executable", + "executablePath": "$(IISExpressPath)", + "commandLineArgs": "$(IISExpressArguments)", + "environmentVariables": { + "IIS_SITE_PATH": "$(MSBuildThisFileDirectory)", + "ANCMV2_PATH": "$(AspNetCoreModuleV2ShimDll)", + "ASPNETCORE_MODULE_OUTOFPROCESS_HANDLER": "$(AspNetCoreModuleV2OutOfProcessHandlerDll)", + "LAUNCHER_ARGS": "$(TargetPath)", + "ASPNETCORE_ENVIRONMENT": "Development", + "LAUNCHER_PATH": "$(DotNetPath)", + "ASPNETCORE_MODULE_DEBUG": "console" + } + }, + "ANCM IIS": { + "commandName": "Executable", + "executablePath": "$(IISPath)", + "commandLineArgs": "$(IISArguments)", + "environmentVariables": { + "IIS_SITE_PATH": "$(MSBuildThisFileDirectory)", + "ANCMV2_PATH": "$(AspNetCoreModuleV2ShimDll)", + "ASPNETCORE_MODULE_OUTOFPROCESS_HANDLER": "$(AspNetCoreModuleV2OutOfProcessHandlerDll)", + "LAUNCHER_ARGS": "$(TargetPath)", + "ASPNETCORE_ENVIRONMENT": "Development", + "LAUNCHER_PATH": "$(DotNetPath)", + "ASPNETCORE_MODULE_DEBUG": "console" + } + } + } +} diff --git a/src/Servers/IIS/IIS/test/testassets/InProcessWebSite/Properties/launchSettings.json b/src/Servers/IIS/IIS/test/testassets/InProcessWebSite/Properties/launchSettings.json new file mode 100644 index 000000000000..fe76b29b53d8 --- /dev/null +++ b/src/Servers/IIS/IIS/test/testassets/InProcessWebSite/Properties/launchSettings.json @@ -0,0 +1,40 @@ +{ + "iisSettings": { + "windowsAuthentication": true, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:5762/", + "sslPort": 0 + } + }, + "profiles": { + "ANCM IIS Express": { + "commandName": "Executable", + "executablePath": "$(IISExpressPath)", + "commandLineArgs": "$(IISExpressArguments)", + "environmentVariables": { + "IIS_SITE_PATH": "$(MSBuildThisFileDirectory)", + "ANCMV2_PATH": "$(AspNetCoreModuleV2ShimDll)", + "ASPNETCORE_MODULE_OUTOFPROCESS_HANDLER": "$(AspNetCoreModuleV2OutOfProcessHandlerDll)", + "LAUNCHER_ARGS": "$(TargetPath)", + "ASPNETCORE_ENVIRONMENT": "Development", + "LAUNCHER_PATH": "$(DotNetPath)", + "ASPNETCORE_MODULE_DEBUG": "console" + } + }, + "ANCM IIS": { + "commandName": "Executable", + "executablePath": "$(IISPath)", + "commandLineArgs": "$(IISArguments)", + "environmentVariables": { + "IIS_SITE_PATH": "$(MSBuildThisFileDirectory)", + "ANCMV2_PATH": "$(AspNetCoreModuleV2ShimDll)", + "ASPNETCORE_MODULE_OUTOFPROCESS_HANDLER": "$(AspNetCoreModuleV2OutOfProcessHandlerDll)", + "LAUNCHER_ARGS": "$(TargetPath)", + "ASPNETCORE_ENVIRONMENT": "Development", + "LAUNCHER_PATH": "$(DotNetPath)", + "ASPNETCORE_MODULE_DEBUG": "console" + } + } + } +} diff --git a/src/Servers/Kestrel/samples/Http3SampleApp/Properties/launchSettings.json b/src/Servers/Kestrel/samples/Http3SampleApp/Properties/launchSettings.json new file mode 100644 index 000000000000..22a17626f289 --- /dev/null +++ b/src/Servers/Kestrel/samples/Http3SampleApp/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:55124/", + "sslPort": 44330 + } + }, + "profiles": { + "Http3SampleApp": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Servers/testassets/ServerComparison.TestSites/Properties/launchSettings.json b/src/Servers/testassets/ServerComparison.TestSites/Properties/launchSettings.json new file mode 100644 index 000000000000..fe76b29b53d8 --- /dev/null +++ b/src/Servers/testassets/ServerComparison.TestSites/Properties/launchSettings.json @@ -0,0 +1,40 @@ +{ + "iisSettings": { + "windowsAuthentication": true, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:5762/", + "sslPort": 0 + } + }, + "profiles": { + "ANCM IIS Express": { + "commandName": "Executable", + "executablePath": "$(IISExpressPath)", + "commandLineArgs": "$(IISExpressArguments)", + "environmentVariables": { + "IIS_SITE_PATH": "$(MSBuildThisFileDirectory)", + "ANCMV2_PATH": "$(AspNetCoreModuleV2ShimDll)", + "ASPNETCORE_MODULE_OUTOFPROCESS_HANDLER": "$(AspNetCoreModuleV2OutOfProcessHandlerDll)", + "LAUNCHER_ARGS": "$(TargetPath)", + "ASPNETCORE_ENVIRONMENT": "Development", + "LAUNCHER_PATH": "$(DotNetPath)", + "ASPNETCORE_MODULE_DEBUG": "console" + } + }, + "ANCM IIS": { + "commandName": "Executable", + "executablePath": "$(IISPath)", + "commandLineArgs": "$(IISArguments)", + "environmentVariables": { + "IIS_SITE_PATH": "$(MSBuildThisFileDirectory)", + "ANCMV2_PATH": "$(AspNetCoreModuleV2ShimDll)", + "ASPNETCORE_MODULE_OUTOFPROCESS_HANDLER": "$(AspNetCoreModuleV2OutOfProcessHandlerDll)", + "LAUNCHER_ARGS": "$(TargetPath)", + "ASPNETCORE_ENVIRONMENT": "Development", + "LAUNCHER_PATH": "$(DotNetPath)", + "ASPNETCORE_MODULE_DEBUG": "console" + } + } + } +} From 6a2014dc6a4441f402f02f69608463104fff37a3 Mon Sep 17 00:00:00 2001 From: shreyas jejurkar Date: Fri, 22 Jan 2021 17:26:57 +0530 Subject: [PATCH 2/3] Addressed remaining projects excluding IIS specific tests projects! --- .../Properties/launchSettings.json | 27 +++++++++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++++++++ .../test/Properties/launchSettings.json | 27 +++++++++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++++++++ .../Properties/launchSettings.json | 14 +++++----- .../Properties/launchSettings.json | 14 +++++----- .../Properties/launchSettings.json | 27 +++++++++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++++++++ .../Driver/Properties/launchSettings.json | 27 +++++++++++++++++++ .../TestApp/Properties/launchSettings.json | 27 +++++++++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++++++++ .../TestServer/Properties/launchSettings.json | 27 +++++++++++++++++++ .../SampleApp/Properties/launchSettings.json | 27 +++++++++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++++++++ .../Benchmarks/Properties/launchSettings.json | 27 +++++++++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++++++++ .../Properties/launchSettings.json | 14 +++++----- .../sample/Properties/launchSettings.json | 27 +++++++++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++++++++ .../sample/Properties/launchSettings.json | 16 +++++------ .../sample/Properties/launchSettings.json | 12 ++++----- .../sample/Properties/launchSettings.json | 16 +++++------ .../sample/Properties/launchSettings.json | 27 +++++++++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++++++++ .../sample/Properties/launchSettings.json | 12 ++++----- .../sample/Properties/launchSettings.json | 8 +++--- .../samples/Properties/launchSettings.json | 27 +++++++++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++++++++ .../EchoApp/Properties/launchSettings.json | 12 ++++----- .../Properties/launchSettings.json | 27 +++++++++++++++++++ .../Properties/launchSettings.json | 16 +++++------ .../Properties/launchSettings.json | 16 +++++------ .../Properties/launchSettings.json | 14 +++++----- .../Properties/launchSettings.json | 20 +++++++------- .../Properties/launchSettings.json | 14 +++++----- .../Properties/launchSettings.json | 14 +++++----- .../Properties/launchSettings.json | 14 +++++----- .../Properties/launchSettings.json | 14 +++++----- .../Properties/launchSettings.json | 27 +++++++++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++++++++ .../Cookies/Properties/launchSettings.json | 27 +++++++++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++++++++ .../IISSample/Properties/launchSettings.json | 27 +++++++++++++++++++ .../stress/Properties/launchSettings.json | 27 +++++++++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++++++++ .../JwtSample/Properties/launchSettings.json | 16 +++++------ .../Properties/launchSettings.json | 27 +++++++++++++++++++ .../Properties/launchSettings.json | 27 +++++++++++++++++++ .../Properties/launchSettings.json | 12 ++++----- 64 files changed, 1349 insertions(+), 134 deletions(-) create mode 100644 src/Azure/samples/AzureAppServicesHostingStartupSample/Properties/launchSettings.json create mode 100644 src/Azure/samples/AzureAppServicesSample/Properties/launchSettings.json create mode 100644 src/Components/Samples/BlazorServerApp/Properties/launchSettings.json create mode 100644 src/Components/WebAssembly/Server/test/Properties/launchSettings.json create mode 100644 src/Components/WebAssembly/testassets/CustomBasePathApp/Properties/launchSettings.json create mode 100644 src/Components/WebAssembly/testassets/HostedInAspNet.Client/Properties/launchSettings.json create mode 100644 src/Components/WebAssembly/testassets/Wasm.Authentication.Client/Properties/launchSettings.json create mode 100644 src/Components/WebAssembly/testassets/Wasm.Authentication.Server/Properties/launchSettings.json create mode 100644 src/Components/benchmarkapps/Wasm.Performance/Driver/Properties/launchSettings.json create mode 100644 src/Components/benchmarkapps/Wasm.Performance/TestApp/Properties/launchSettings.json create mode 100644 src/Components/test/testassets/BasicTestApp/Properties/launchSettings.json create mode 100644 src/Components/test/testassets/ComponentsApp.Server/Properties/launchSettings.json create mode 100644 src/Components/test/testassets/GlobalizationWasmApp/Properties/launchSettings.json create mode 100644 src/Components/test/testassets/LazyTestContentPackage/Properties/launchSettings.json create mode 100644 src/Components/test/testassets/TestContentPackage/Properties/launchSettings.json create mode 100644 src/Components/test/testassets/TestServer/Properties/launchSettings.json create mode 100644 src/DefaultBuilder/samples/SampleApp/Properties/launchSettings.json create mode 100644 src/Grpc/test/testassets/InteropWebsite/Properties/launchSettings.json create mode 100644 src/Http/Routing/test/testassets/Benchmarks/Properties/launchSettings.json create mode 100644 src/Http/Routing/test/testassets/RoutingSandbox/Properties/launchSettings.json create mode 100644 src/Http/Routing/test/testassets/RoutingWebSite/Properties/launchSettings.json create mode 100644 src/Identity/ApiAuthorization.IdentityServer/samples/ApiAuthSample/Properties/launchSettings.json create mode 100644 src/Identity/samples/IdentitySample.DefaultUI/Properties/launchSettings.json create mode 100644 src/Middleware/ConcurrencyLimiter/sample/Properties/launchSettings.json create mode 100644 src/Middleware/HeaderPropagation/samples/HeaderPropagationSample/Properties/launchSettings.json create mode 100644 src/Middleware/Localization/sample/Properties/launchSettings.json create mode 100644 src/Middleware/MiddlewareAnalysis/samples/MiddlewareAnalysisSample/Properties/launchSettings.json create mode 100644 src/Middleware/ResponseCaching/samples/ResponseCachingSample/Properties/launchSettings.json create mode 100644 src/Middleware/Session/samples/Properties/launchSettings.json create mode 100644 src/Middleware/StaticFiles/samples/StaticFileSample/Properties/launchSettings.json create mode 100644 src/Middleware/WebSockets/test/ConformanceTests/AutobahnTestApp/Properties/launchSettings.json create mode 100644 src/Security/CookiePolicy/samples/CookiePolicySample/Properties/launchSettings.json create mode 100644 src/Security/samples/ClaimsTransformation/Properties/launchSettings.json create mode 100644 src/Security/samples/Cookies/Properties/launchSettings.json create mode 100644 src/Security/samples/CustomAuthorizationFailureResponse/Properties/launchSettings.json create mode 100644 src/Security/samples/CustomPolicyProvider/Properties/launchSettings.json create mode 100644 src/Security/samples/DynamicSchemes/Properties/launchSettings.json create mode 100644 src/Security/samples/Identity.ExternalClaims/Properties/launchSettings.json create mode 100644 src/Security/samples/PathSchemeSelection/Properties/launchSettings.json create mode 100644 src/Security/samples/StaticFilesAuth/Properties/launchSettings.json create mode 100644 src/Servers/IIS/IISIntegration/samples/IISSample/Properties/launchSettings.json create mode 100644 src/Servers/Kestrel/stress/Properties/launchSettings.json create mode 100644 src/SignalR/clients/ts/FunctionalTests/Properties/launchSettings.json create mode 100644 src/SignalR/samples/SignalRSamples/Properties/launchSettings.json create mode 100644 src/SignalR/samples/SocialWeather/Properties/launchSettings.json diff --git a/src/Azure/samples/AzureAppServicesHostingStartupSample/Properties/launchSettings.json b/src/Azure/samples/AzureAppServicesHostingStartupSample/Properties/launchSettings.json new file mode 100644 index 000000000000..c12cb117e38f --- /dev/null +++ b/src/Azure/samples/AzureAppServicesHostingStartupSample/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54251/", + "sslPort": 44382 + } + }, + "profiles": { + "AzureAppServicesHostingStartupSample": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Azure/samples/AzureAppServicesSample/Properties/launchSettings.json b/src/Azure/samples/AzureAppServicesSample/Properties/launchSettings.json new file mode 100644 index 000000000000..d181469c55ec --- /dev/null +++ b/src/Azure/samples/AzureAppServicesSample/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54260/", + "sslPort": 44371 + } + }, + "profiles": { + "AzureAppServicesSample": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Components/Samples/BlazorServerApp/Properties/launchSettings.json b/src/Components/Samples/BlazorServerApp/Properties/launchSettings.json new file mode 100644 index 000000000000..a18eefe81370 --- /dev/null +++ b/src/Components/Samples/BlazorServerApp/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54176/", + "sslPort": 44328 + } + }, + "profiles": { + "BlazorServerApp": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Components/WebAssembly/Server/test/Properties/launchSettings.json b/src/Components/WebAssembly/Server/test/Properties/launchSettings.json new file mode 100644 index 000000000000..8a33037ed829 --- /dev/null +++ b/src/Components/WebAssembly/Server/test/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54187/", + "sslPort": 44312 + } + }, + "profiles": { + "Microsoft.AspNetCore.Components.WebAssembly.Server.Tests": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Components/WebAssembly/testassets/CustomBasePathApp/Properties/launchSettings.json b/src/Components/WebAssembly/testassets/CustomBasePathApp/Properties/launchSettings.json new file mode 100644 index 000000000000..894275d63f1a --- /dev/null +++ b/src/Components/WebAssembly/testassets/CustomBasePathApp/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54293/", + "sslPort": 44375 + } + }, + "profiles": { + "CustomBasePathApp": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Components/WebAssembly/testassets/HostedInAspNet.Client/Properties/launchSettings.json b/src/Components/WebAssembly/testassets/HostedInAspNet.Client/Properties/launchSettings.json new file mode 100644 index 000000000000..e16f91706da4 --- /dev/null +++ b/src/Components/WebAssembly/testassets/HostedInAspNet.Client/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54194/", + "sslPort": 44314 + } + }, + "profiles": { + "HostedInAspNet.Client": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Components/WebAssembly/testassets/HostedInAspNet.Server/Properties/launchSettings.json b/src/Components/WebAssembly/testassets/HostedInAspNet.Server/Properties/launchSettings.json index 959797907279..9f94389ece46 100644 --- a/src/Components/WebAssembly/testassets/HostedInAspNet.Server/Properties/launchSettings.json +++ b/src/Components/WebAssembly/testassets/HostedInAspNet.Server/Properties/launchSettings.json @@ -8,22 +8,22 @@ } }, "profiles": { - "IIS Express": { - "commandName": "IISExpress", + "HostedInAspNet.Server": { + "commandName": "Project", "launchBrowser": true, "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" - } + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" }, - "HostedInAspNet.Server": { - "commandName": "Project", + "IIS Express": { + "commandName": "IISExpress", "launchBrowser": true, "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" - }, - "applicationUrl": "https://localhost:5001;http://localhost:5000" + } } } } diff --git a/src/Components/WebAssembly/testassets/StandaloneApp/Properties/launchSettings.json b/src/Components/WebAssembly/testassets/StandaloneApp/Properties/launchSettings.json index 541c4c44680a..f395976faec1 100644 --- a/src/Components/WebAssembly/testassets/StandaloneApp/Properties/launchSettings.json +++ b/src/Components/WebAssembly/testassets/StandaloneApp/Properties/launchSettings.json @@ -8,22 +8,22 @@ } }, "profiles": { - "IIS Express": { - "commandName": "IISExpress", + "StandaloneApp": { + "commandName": "Project", "launchBrowser": true, "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" - } + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" }, - "StandaloneApp": { - "commandName": "Project", + "IIS Express": { + "commandName": "IISExpress", "launchBrowser": true, "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" - }, - "applicationUrl": "https://localhost:5001;http://localhost:5000" + } } } } diff --git a/src/Components/WebAssembly/testassets/Wasm.Authentication.Client/Properties/launchSettings.json b/src/Components/WebAssembly/testassets/Wasm.Authentication.Client/Properties/launchSettings.json new file mode 100644 index 000000000000..9fa6afd3ec05 --- /dev/null +++ b/src/Components/WebAssembly/testassets/Wasm.Authentication.Client/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54191/", + "sslPort": 44300 + } + }, + "profiles": { + "Wasm.Authentication.Client": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Components/WebAssembly/testassets/Wasm.Authentication.Server/Properties/launchSettings.json b/src/Components/WebAssembly/testassets/Wasm.Authentication.Server/Properties/launchSettings.json new file mode 100644 index 000000000000..284cf7e80a9a --- /dev/null +++ b/src/Components/WebAssembly/testassets/Wasm.Authentication.Server/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54289/", + "sslPort": 44365 + } + }, + "profiles": { + "Wasm.Authentication.Server": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Components/benchmarkapps/Wasm.Performance/Driver/Properties/launchSettings.json b/src/Components/benchmarkapps/Wasm.Performance/Driver/Properties/launchSettings.json new file mode 100644 index 000000000000..141ea23f08c3 --- /dev/null +++ b/src/Components/benchmarkapps/Wasm.Performance/Driver/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54182/", + "sslPort": 44308 + } + }, + "profiles": { + "Wasm.Performance.Driver": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Components/benchmarkapps/Wasm.Performance/TestApp/Properties/launchSettings.json b/src/Components/benchmarkapps/Wasm.Performance/TestApp/Properties/launchSettings.json new file mode 100644 index 000000000000..4865f54c0caa --- /dev/null +++ b/src/Components/benchmarkapps/Wasm.Performance/TestApp/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54184/", + "sslPort": 44384 + } + }, + "profiles": { + "Wasm.Performance.TestApp": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Components/test/testassets/BasicTestApp/Properties/launchSettings.json b/src/Components/test/testassets/BasicTestApp/Properties/launchSettings.json new file mode 100644 index 000000000000..3a715fdd9bb7 --- /dev/null +++ b/src/Components/test/testassets/BasicTestApp/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54189/", + "sslPort": 44387 + } + }, + "profiles": { + "BasicTestApp": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Components/test/testassets/ComponentsApp.Server/Properties/launchSettings.json b/src/Components/test/testassets/ComponentsApp.Server/Properties/launchSettings.json new file mode 100644 index 000000000000..3794c80d8bc1 --- /dev/null +++ b/src/Components/test/testassets/ComponentsApp.Server/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54190/", + "sslPort": 44349 + } + }, + "profiles": { + "ComponentsApp.Server": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Components/test/testassets/GlobalizationWasmApp/Properties/launchSettings.json b/src/Components/test/testassets/GlobalizationWasmApp/Properties/launchSettings.json new file mode 100644 index 000000000000..2c8efe30b326 --- /dev/null +++ b/src/Components/test/testassets/GlobalizationWasmApp/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54192/", + "sslPort": 44397 + } + }, + "profiles": { + "GlobalizationWasmApp": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Components/test/testassets/LazyTestContentPackage/Properties/launchSettings.json b/src/Components/test/testassets/LazyTestContentPackage/Properties/launchSettings.json new file mode 100644 index 000000000000..d6564ce9db07 --- /dev/null +++ b/src/Components/test/testassets/LazyTestContentPackage/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54287/", + "sslPort": 44355 + } + }, + "profiles": { + "LazyTestContentPackage": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Components/test/testassets/TestContentPackage/Properties/launchSettings.json b/src/Components/test/testassets/TestContentPackage/Properties/launchSettings.json new file mode 100644 index 000000000000..c320f0ea90e9 --- /dev/null +++ b/src/Components/test/testassets/TestContentPackage/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54193/", + "sslPort": 44354 + } + }, + "profiles": { + "TestContentPackage": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Components/test/testassets/TestServer/Properties/launchSettings.json b/src/Components/test/testassets/TestServer/Properties/launchSettings.json new file mode 100644 index 000000000000..363c51bfb4e2 --- /dev/null +++ b/src/Components/test/testassets/TestServer/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54195/", + "sslPort": 44360 + } + }, + "profiles": { + "Components.TestServer": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/DefaultBuilder/samples/SampleApp/Properties/launchSettings.json b/src/DefaultBuilder/samples/SampleApp/Properties/launchSettings.json new file mode 100644 index 000000000000..6d6186fa92e0 --- /dev/null +++ b/src/DefaultBuilder/samples/SampleApp/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54262/", + "sslPort": 44382 + } + }, + "profiles": { + "DefaultBuilder.SampleApp": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Grpc/test/testassets/InteropWebsite/Properties/launchSettings.json b/src/Grpc/test/testassets/InteropWebsite/Properties/launchSettings.json new file mode 100644 index 000000000000..458a7e928ee6 --- /dev/null +++ b/src/Grpc/test/testassets/InteropWebsite/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54288/", + "sslPort": 44374 + } + }, + "profiles": { + "InteropWebsite": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Http/Routing/test/testassets/Benchmarks/Properties/launchSettings.json b/src/Http/Routing/test/testassets/Benchmarks/Properties/launchSettings.json new file mode 100644 index 000000000000..34adc1b850fe --- /dev/null +++ b/src/Http/Routing/test/testassets/Benchmarks/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54290/", + "sslPort": 44389 + } + }, + "profiles": { + "Benchmarks": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Http/Routing/test/testassets/RoutingSandbox/Properties/launchSettings.json b/src/Http/Routing/test/testassets/RoutingSandbox/Properties/launchSettings.json new file mode 100644 index 000000000000..8276635e8089 --- /dev/null +++ b/src/Http/Routing/test/testassets/RoutingSandbox/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54292/", + "sslPort": 44355 + } + }, + "profiles": { + "RoutingSandbox": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Http/Routing/test/testassets/RoutingWebSite/Properties/launchSettings.json b/src/Http/Routing/test/testassets/RoutingWebSite/Properties/launchSettings.json new file mode 100644 index 000000000000..f1d51b354da1 --- /dev/null +++ b/src/Http/Routing/test/testassets/RoutingWebSite/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54291/", + "sslPort": 44383 + } + }, + "profiles": { + "RoutingWebSite": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Identity/ApiAuthorization.IdentityServer/samples/ApiAuthSample/Properties/launchSettings.json b/src/Identity/ApiAuthorization.IdentityServer/samples/ApiAuthSample/Properties/launchSettings.json new file mode 100644 index 000000000000..887dbf59b129 --- /dev/null +++ b/src/Identity/ApiAuthorization.IdentityServer/samples/ApiAuthSample/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54263/", + "sslPort": 44301 + } + }, + "profiles": { + "ApiAuthSample": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Identity/samples/IdentitySample.DefaultUI/Properties/launchSettings.json b/src/Identity/samples/IdentitySample.DefaultUI/Properties/launchSettings.json new file mode 100644 index 000000000000..b7b4e83fe2ae --- /dev/null +++ b/src/Identity/samples/IdentitySample.DefaultUI/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54264/", + "sslPort": 44373 + } + }, + "profiles": { + "IdentitySample.DefaultUI": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Identity/samples/IdentitySample.Mvc/Properties/launchSettings.json b/src/Identity/samples/IdentitySample.Mvc/Properties/launchSettings.json index ee7ba029a67a..28fb97dcee20 100644 --- a/src/Identity/samples/IdentitySample.Mvc/Properties/launchSettings.json +++ b/src/Identity/samples/IdentitySample.Mvc/Properties/launchSettings.json @@ -8,18 +8,18 @@ } }, "profiles": { + "web": { + "commandName": "web", + "environmentVariables": { + "ASPNET_ENVIRONMENT": "Development" + } + }, "IIS Express": { "commandName": "IISExpress", "launchBrowser": true, "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } - }, - "web": { - "commandName": "web", - "environmentVariables": { - "ASPNET_ENVIRONMENT": "Development" - } } } -} \ No newline at end of file +} diff --git a/src/Middleware/ConcurrencyLimiter/sample/Properties/launchSettings.json b/src/Middleware/ConcurrencyLimiter/sample/Properties/launchSettings.json new file mode 100644 index 000000000000..4e765db3c30f --- /dev/null +++ b/src/Middleware/ConcurrencyLimiter/sample/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54272/", + "sslPort": 44373 + } + }, + "profiles": { + "ConcurrencyLimiterSample": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Middleware/HeaderPropagation/samples/HeaderPropagationSample/Properties/launchSettings.json b/src/Middleware/HeaderPropagation/samples/HeaderPropagationSample/Properties/launchSettings.json new file mode 100644 index 000000000000..f6d05126f6da --- /dev/null +++ b/src/Middleware/HeaderPropagation/samples/HeaderPropagationSample/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54271/", + "sslPort": 44353 + } + }, + "profiles": { + "HeaderPropagationSample": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Middleware/HostFiltering/sample/Properties/launchSettings.json b/src/Middleware/HostFiltering/sample/Properties/launchSettings.json index a0ee1d227c40..884c15273872 100644 --- a/src/Middleware/HostFiltering/sample/Properties/launchSettings.json +++ b/src/Middleware/HostFiltering/sample/Properties/launchSettings.json @@ -8,13 +8,6 @@ } }, "profiles": { - "IIS Express": { - "commandName": "IISExpress", - "launchBrowser": true, - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - }, "HostFilteringSample": { "commandName": "Project", "launchBrowser": true, @@ -22,6 +15,13 @@ "ASPNETCORE_ENVIRONMENT": "Development" }, "applicationUrl": "http://localhost:14125/" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } } } -} \ No newline at end of file +} diff --git a/src/Middleware/HttpOverrides/sample/Properties/launchSettings.json b/src/Middleware/HttpOverrides/sample/Properties/launchSettings.json index 0cf4573d75d0..8adf2aae0cf7 100644 --- a/src/Middleware/HttpOverrides/sample/Properties/launchSettings.json +++ b/src/Middleware/HttpOverrides/sample/Properties/launchSettings.json @@ -8,18 +8,18 @@ } }, "profiles": { - "IIS Express": { - "commandName": "IISExpress", - "launchBrowser": true, + "web": { + "commandName": "web", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } }, - "web": { - "commandName": "web", + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } } } -} \ No newline at end of file +} diff --git a/src/Middleware/HttpsPolicy/sample/Properties/launchSettings.json b/src/Middleware/HttpsPolicy/sample/Properties/launchSettings.json index a35390177b0b..43c5bb5932a7 100644 --- a/src/Middleware/HttpsPolicy/sample/Properties/launchSettings.json +++ b/src/Middleware/HttpsPolicy/sample/Properties/launchSettings.json @@ -8,13 +8,6 @@ } }, "profiles": { - "IIS Express": { - "commandName": "IISExpress", - "launchBrowser": true, - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - }, "HttpsSample": { "commandName": "Project", "launchBrowser": true, @@ -22,6 +15,13 @@ "ASPNETCORE_ENVIRONMENT": "Development" }, "applicationUrl": "http://localhost:5000/" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } } } -} \ No newline at end of file +} diff --git a/src/Middleware/Localization/sample/Properties/launchSettings.json b/src/Middleware/Localization/sample/Properties/launchSettings.json new file mode 100644 index 000000000000..b7324151adac --- /dev/null +++ b/src/Middleware/Localization/sample/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54266/", + "sslPort": 44332 + } + }, + "profiles": { + "LocalizationSample": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Middleware/MiddlewareAnalysis/samples/MiddlewareAnalysisSample/Properties/launchSettings.json b/src/Middleware/MiddlewareAnalysis/samples/MiddlewareAnalysisSample/Properties/launchSettings.json new file mode 100644 index 000000000000..197f6c5a07f6 --- /dev/null +++ b/src/Middleware/MiddlewareAnalysis/samples/MiddlewareAnalysisSample/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54265/", + "sslPort": 44312 + } + }, + "profiles": { + "MiddlewareAnalysisSample": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Middleware/ResponseCaching/samples/ResponseCachingSample/Properties/launchSettings.json b/src/Middleware/ResponseCaching/samples/ResponseCachingSample/Properties/launchSettings.json new file mode 100644 index 000000000000..e1806c8108b6 --- /dev/null +++ b/src/Middleware/ResponseCaching/samples/ResponseCachingSample/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54270/", + "sslPort": 44398 + } + }, + "profiles": { + "ResponseCachingSample": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Middleware/ResponseCompression/sample/Properties/launchSettings.json b/src/Middleware/ResponseCompression/sample/Properties/launchSettings.json index 67a091c37afc..c5477d34e04c 100644 --- a/src/Middleware/ResponseCompression/sample/Properties/launchSettings.json +++ b/src/Middleware/ResponseCompression/sample/Properties/launchSettings.json @@ -8,20 +8,20 @@ } }, "profiles": { - "IIS Express": { - "commandName": "IISExpress", + "ResponseCompressionSample": { + "commandName": "Project", "launchBrowser": true, + "launchUrl": "http://localhost:5000/", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } }, - "ResponseCompressionSample": { - "commandName": "Project", + "IIS Express": { + "commandName": "IISExpress", "launchBrowser": true, - "launchUrl": "http://localhost:5000/", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } } } -} \ No newline at end of file +} diff --git a/src/Middleware/Rewrite/sample/Properties/launchSettings.json b/src/Middleware/Rewrite/sample/Properties/launchSettings.json index 4d5d4a7ad7e5..351846d072c6 100644 --- a/src/Middleware/Rewrite/sample/Properties/launchSettings.json +++ b/src/Middleware/Rewrite/sample/Properties/launchSettings.json @@ -8,15 +8,15 @@ } }, "profiles": { + "RewriteSample": { + "commandName": "Project" + }, "IIS Express": { "commandName": "IISExpress", "launchBrowser": true, "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } - }, - "RewriteSample": { - "commandName": "Project" } } -} \ No newline at end of file +} diff --git a/src/Middleware/Session/samples/Properties/launchSettings.json b/src/Middleware/Session/samples/Properties/launchSettings.json new file mode 100644 index 000000000000..cd1af3d4c545 --- /dev/null +++ b/src/Middleware/Session/samples/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54269/", + "sslPort": 44362 + } + }, + "profiles": { + "SessionSample": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Middleware/StaticFiles/samples/StaticFileSample/Properties/launchSettings.json b/src/Middleware/StaticFiles/samples/StaticFileSample/Properties/launchSettings.json new file mode 100644 index 000000000000..42d99b45ce9b --- /dev/null +++ b/src/Middleware/StaticFiles/samples/StaticFileSample/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54268/", + "sslPort": 44323 + } + }, + "profiles": { + "StaticFileSample": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Middleware/WebSockets/samples/EchoApp/Properties/launchSettings.json b/src/Middleware/WebSockets/samples/EchoApp/Properties/launchSettings.json index fba441af3d3a..860180dd50b4 100644 --- a/src/Middleware/WebSockets/samples/EchoApp/Properties/launchSettings.json +++ b/src/Middleware/WebSockets/samples/EchoApp/Properties/launchSettings.json @@ -8,20 +8,20 @@ } }, "profiles": { - "IIS Express": { - "commandName": "IISExpress", + "EchoApp": { + "commandName": "Project", "launchBrowser": true, + "launchUrl": "http://localhost:5000", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } }, - "EchoApp": { - "commandName": "Project", + "IIS Express": { + "commandName": "IISExpress", "launchBrowser": true, - "launchUrl": "http://localhost:5000", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } } } -} \ No newline at end of file +} diff --git a/src/Middleware/WebSockets/test/ConformanceTests/AutobahnTestApp/Properties/launchSettings.json b/src/Middleware/WebSockets/test/ConformanceTests/AutobahnTestApp/Properties/launchSettings.json new file mode 100644 index 000000000000..24d23f692d93 --- /dev/null +++ b/src/Middleware/WebSockets/test/ConformanceTests/AutobahnTestApp/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54267/", + "sslPort": 44367 + } + }, + "profiles": { + "AutobahnTestApp": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Security/Authentication/Cookies/samples/CookieSample/Properties/launchSettings.json b/src/Security/Authentication/Cookies/samples/CookieSample/Properties/launchSettings.json index 0c2b575f19bd..e5342d94fd40 100644 --- a/src/Security/Authentication/Cookies/samples/CookieSample/Properties/launchSettings.json +++ b/src/Security/Authentication/Cookies/samples/CookieSample/Properties/launchSettings.json @@ -8,13 +8,6 @@ } }, "profiles": { - "IIS Express": { - "commandName": "IISExpress", - "launchBrowser": true, - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - }, "CookieSample": { "commandName": "Project", "launchBrowser": true, @@ -22,6 +15,13 @@ "ASPNETCORE_ENVIRONMENT": "Development" }, "applicationUrl": "http://localhost:1782/" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } } } -} \ No newline at end of file +} diff --git a/src/Security/Authentication/Cookies/samples/CookieSessionSample/Properties/launchSettings.json b/src/Security/Authentication/Cookies/samples/CookieSessionSample/Properties/launchSettings.json index 290ebb2efe7a..a4680efa6ec9 100644 --- a/src/Security/Authentication/Cookies/samples/CookieSessionSample/Properties/launchSettings.json +++ b/src/Security/Authentication/Cookies/samples/CookieSessionSample/Properties/launchSettings.json @@ -8,13 +8,6 @@ } }, "profiles": { - "IIS Express": { - "commandName": "IISExpress", - "launchBrowser": true, - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - }, "CookieSessionSample": { "commandName": "Project", "launchBrowser": true, @@ -22,6 +15,13 @@ "ASPNETCORE_ENVIRONMENT": "Development" }, "applicationUrl": "http://localhost:1776/" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } } } -} \ No newline at end of file +} diff --git a/src/Security/Authentication/JwtBearer/samples/JwtBearerSample/Properties/launchSettings.json b/src/Security/Authentication/JwtBearer/samples/JwtBearerSample/Properties/launchSettings.json index 889821c21dc7..8e1557bb7f09 100644 --- a/src/Security/Authentication/JwtBearer/samples/JwtBearerSample/Properties/launchSettings.json +++ b/src/Security/Authentication/JwtBearer/samples/JwtBearerSample/Properties/launchSettings.json @@ -8,13 +8,6 @@ } }, "profiles": { - "IIS Express": { - "commandName": "IISExpress", - "launchBrowser": true, - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - }, "SocialSample": { "commandName": "Project", "launchBrowser": true, @@ -22,6 +15,13 @@ "ASPNETCORE_ENVIRONMENT": "Development" }, "applicationUrl": "https://localhost:44318/" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } } } } diff --git a/src/Security/Authentication/Negotiate/samples/NegotiateAuthSample/Properties/launchSettings.json b/src/Security/Authentication/Negotiate/samples/NegotiateAuthSample/Properties/launchSettings.json index d117d261b33b..9c6ea2ebb238 100644 --- a/src/Security/Authentication/Negotiate/samples/NegotiateAuthSample/Properties/launchSettings.json +++ b/src/Security/Authentication/Negotiate/samples/NegotiateAuthSample/Properties/launchSettings.json @@ -8,6 +8,15 @@ } }, "profiles": { + "NegotiateAuthSample": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_SERVER": "Kestrel", + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, "IIS Express": { "commandName": "IISExpress", "launchBrowser": true, @@ -24,15 +33,6 @@ "ASPNETCORE_ENVIRONMENT": "Development" }, "applicationUrl": "http://localhost:5000" - }, - "NegotiateAuthSample": { - "commandName": "Project", - "launchBrowser": true, - "environmentVariables": { - "ASPNETCORE_SERVER": "Kestrel", - "ASPNETCORE_ENVIRONMENT": "Development" - }, - "applicationUrl": "https://localhost:5001;http://localhost:5000" } } -} \ No newline at end of file +} diff --git a/src/Security/Authentication/OpenIdConnect/samples/OpenIdConnect.AzureAdSample/Properties/launchSettings.json b/src/Security/Authentication/OpenIdConnect/samples/OpenIdConnect.AzureAdSample/Properties/launchSettings.json index 889821c21dc7..8e1557bb7f09 100644 --- a/src/Security/Authentication/OpenIdConnect/samples/OpenIdConnect.AzureAdSample/Properties/launchSettings.json +++ b/src/Security/Authentication/OpenIdConnect/samples/OpenIdConnect.AzureAdSample/Properties/launchSettings.json @@ -8,13 +8,6 @@ } }, "profiles": { - "IIS Express": { - "commandName": "IISExpress", - "launchBrowser": true, - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - }, "SocialSample": { "commandName": "Project", "launchBrowser": true, @@ -22,6 +15,13 @@ "ASPNETCORE_ENVIRONMENT": "Development" }, "applicationUrl": "https://localhost:44318/" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } } } } diff --git a/src/Security/Authentication/OpenIdConnect/samples/OpenIdConnectSample/Properties/launchSettings.json b/src/Security/Authentication/OpenIdConnect/samples/OpenIdConnectSample/Properties/launchSettings.json index bc1c21c27f6b..4cbf9a60f4dd 100644 --- a/src/Security/Authentication/OpenIdConnect/samples/OpenIdConnectSample/Properties/launchSettings.json +++ b/src/Security/Authentication/OpenIdConnect/samples/OpenIdConnectSample/Properties/launchSettings.json @@ -8,13 +8,6 @@ } }, "profiles": { - "IIS Express": { - "commandName": "IISExpress", - "launchBrowser": true, - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - }, "OpenIdConnectSample": { "commandName": "Project", "launchBrowser": true, @@ -22,6 +15,13 @@ "ASPNETCORE_ENVIRONMENT": "Development" }, "applicationUrl": "https://localhost:44318/" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } } } } diff --git a/src/Security/Authentication/WsFederation/samples/WsFedSample/Properties/launchSettings.json b/src/Security/Authentication/WsFederation/samples/WsFedSample/Properties/launchSettings.json index 889821c21dc7..8e1557bb7f09 100644 --- a/src/Security/Authentication/WsFederation/samples/WsFedSample/Properties/launchSettings.json +++ b/src/Security/Authentication/WsFederation/samples/WsFedSample/Properties/launchSettings.json @@ -8,13 +8,6 @@ } }, "profiles": { - "IIS Express": { - "commandName": "IISExpress", - "launchBrowser": true, - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - }, "SocialSample": { "commandName": "Project", "launchBrowser": true, @@ -22,6 +15,13 @@ "ASPNETCORE_ENVIRONMENT": "Development" }, "applicationUrl": "https://localhost:44318/" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } } } } diff --git a/src/Security/Authentication/samples/SocialSample/Properties/launchSettings.json b/src/Security/Authentication/samples/SocialSample/Properties/launchSettings.json index 889821c21dc7..8e1557bb7f09 100644 --- a/src/Security/Authentication/samples/SocialSample/Properties/launchSettings.json +++ b/src/Security/Authentication/samples/SocialSample/Properties/launchSettings.json @@ -8,13 +8,6 @@ } }, "profiles": { - "IIS Express": { - "commandName": "IISExpress", - "launchBrowser": true, - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - }, "SocialSample": { "commandName": "Project", "launchBrowser": true, @@ -22,6 +15,13 @@ "ASPNETCORE_ENVIRONMENT": "Development" }, "applicationUrl": "https://localhost:44318/" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } } } } diff --git a/src/Security/CookiePolicy/samples/CookiePolicySample/Properties/launchSettings.json b/src/Security/CookiePolicy/samples/CookiePolicySample/Properties/launchSettings.json new file mode 100644 index 000000000000..2e5906777b7b --- /dev/null +++ b/src/Security/CookiePolicy/samples/CookiePolicySample/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54281/", + "sslPort": 44319 + } + }, + "profiles": { + "CookiePolicySample": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Security/samples/ClaimsTransformation/Properties/launchSettings.json b/src/Security/samples/ClaimsTransformation/Properties/launchSettings.json new file mode 100644 index 000000000000..bfe6550d6df3 --- /dev/null +++ b/src/Security/samples/ClaimsTransformation/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54274/", + "sslPort": 44322 + } + }, + "profiles": { + "ClaimsTransformation": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Security/samples/Cookies/Properties/launchSettings.json b/src/Security/samples/Cookies/Properties/launchSettings.json new file mode 100644 index 000000000000..1abfe227cb82 --- /dev/null +++ b/src/Security/samples/Cookies/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54273/", + "sslPort": 44367 + } + }, + "profiles": { + "Cookies": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Security/samples/CustomAuthorizationFailureResponse/Properties/launchSettings.json b/src/Security/samples/CustomAuthorizationFailureResponse/Properties/launchSettings.json new file mode 100644 index 000000000000..008d7639f0bc --- /dev/null +++ b/src/Security/samples/CustomAuthorizationFailureResponse/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54280/", + "sslPort": 44328 + } + }, + "profiles": { + "CustomAuthorizationFailureResponse": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Security/samples/CustomPolicyProvider/Properties/launchSettings.json b/src/Security/samples/CustomPolicyProvider/Properties/launchSettings.json new file mode 100644 index 000000000000..bf639310b03f --- /dev/null +++ b/src/Security/samples/CustomPolicyProvider/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54278/", + "sslPort": 44369 + } + }, + "profiles": { + "CustomPolicyProvider": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Security/samples/DynamicSchemes/Properties/launchSettings.json b/src/Security/samples/DynamicSchemes/Properties/launchSettings.json new file mode 100644 index 000000000000..c501462bca04 --- /dev/null +++ b/src/Security/samples/DynamicSchemes/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54275/", + "sslPort": 44394 + } + }, + "profiles": { + "DynamicSchemes": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Security/samples/Identity.ExternalClaims/Properties/launchSettings.json b/src/Security/samples/Identity.ExternalClaims/Properties/launchSettings.json new file mode 100644 index 000000000000..8a7fe0677f93 --- /dev/null +++ b/src/Security/samples/Identity.ExternalClaims/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54276/", + "sslPort": 44314 + } + }, + "profiles": { + "Identity.ExternalClaims": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Security/samples/PathSchemeSelection/Properties/launchSettings.json b/src/Security/samples/PathSchemeSelection/Properties/launchSettings.json new file mode 100644 index 000000000000..c44eec98dbb2 --- /dev/null +++ b/src/Security/samples/PathSchemeSelection/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54277/", + "sslPort": 44397 + } + }, + "profiles": { + "PathSchemeSelection": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Security/samples/StaticFilesAuth/Properties/launchSettings.json b/src/Security/samples/StaticFilesAuth/Properties/launchSettings.json new file mode 100644 index 000000000000..d417586749e4 --- /dev/null +++ b/src/Security/samples/StaticFilesAuth/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54279/", + "sslPort": 44308 + } + }, + "profiles": { + "StaticFilesAuth": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Servers/IIS/IISIntegration/samples/IISSample/Properties/launchSettings.json b/src/Servers/IIS/IISIntegration/samples/IISSample/Properties/launchSettings.json new file mode 100644 index 000000000000..b3123c96d203 --- /dev/null +++ b/src/Servers/IIS/IISIntegration/samples/IISSample/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54285/", + "sslPort": 44316 + } + }, + "profiles": { + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "IISSample": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + } + } +} \ No newline at end of file diff --git a/src/Servers/Kestrel/stress/Properties/launchSettings.json b/src/Servers/Kestrel/stress/Properties/launchSettings.json new file mode 100644 index 000000000000..bac02262af5c --- /dev/null +++ b/src/Servers/Kestrel/stress/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54286/", + "sslPort": 44319 + } + }, + "profiles": { + "HttpStress": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/SignalR/clients/ts/FunctionalTests/Properties/launchSettings.json b/src/SignalR/clients/ts/FunctionalTests/Properties/launchSettings.json new file mode 100644 index 000000000000..f7e783be66fb --- /dev/null +++ b/src/SignalR/clients/ts/FunctionalTests/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54284/", + "sslPort": 44360 + } + }, + "profiles": { + "SignalR.Client.FunctionalTestApp": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/SignalR/samples/JwtSample/Properties/launchSettings.json b/src/SignalR/samples/JwtSample/Properties/launchSettings.json index 95c766354a7c..831f37b04e95 100644 --- a/src/SignalR/samples/JwtSample/Properties/launchSettings.json +++ b/src/SignalR/samples/JwtSample/Properties/launchSettings.json @@ -8,13 +8,6 @@ } }, "profiles": { - "IIS Express": { - "commandName": "IISExpress", - "launchBrowser": true, - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - }, "JwtSample": { "commandName": "Project", "launchBrowser": true, @@ -22,6 +15,13 @@ "ASPNETCORE_ENVIRONMENT": "Development" }, "applicationUrl": "http://localhost:54543/" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } } } -} \ No newline at end of file +} diff --git a/src/SignalR/samples/SignalRSamples/Properties/launchSettings.json b/src/SignalR/samples/SignalRSamples/Properties/launchSettings.json new file mode 100644 index 000000000000..1a2c00cbd72a --- /dev/null +++ b/src/SignalR/samples/SignalRSamples/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54282/", + "sslPort": 44339 + } + }, + "profiles": { + "SignalRSamples": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/SignalR/samples/SocialWeather/Properties/launchSettings.json b/src/SignalR/samples/SocialWeather/Properties/launchSettings.json new file mode 100644 index 000000000000..7b752356f853 --- /dev/null +++ b/src/SignalR/samples/SocialWeather/Properties/launchSettings.json @@ -0,0 +1,27 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54283/", + "sslPort": 44324 + } + }, + "profiles": { + "SocialWeather": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Tools/dotnet-watch/test/TestProjects/AppWithLaunchSettings/Properties/launchSettings.json b/src/Tools/dotnet-watch/test/TestProjects/AppWithLaunchSettings/Properties/launchSettings.json index 849dcf90fce3..5fd9c9bd8689 100644 --- a/src/Tools/dotnet-watch/test/TestProjects/AppWithLaunchSettings/Properties/launchSettings.json +++ b/src/Tools/dotnet-watch/test/TestProjects/AppWithLaunchSettings/Properties/launchSettings.json @@ -9,18 +9,18 @@ } }, "profiles": { - "IIS Express": { - "commandName": "IISExpress", + "b3": { + "commandName": "Project", "launchBrowser": true, - "launchUrl": "weatherforecast", + "applicationUrl": "https://localhost:5001;http://localhost:5000", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } }, - "b3": { - "commandName": "Project", + "IIS Express": { + "commandName": "IISExpress", "launchBrowser": true, - "applicationUrl": "https://localhost:5001;http://localhost:5000", + "launchUrl": "weatherforecast", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } From c03f580bbd2d493eaaab27b61adf4ff0d1679585 Mon Sep 17 00:00:00 2001 From: shreyas jejurkar Date: Sat, 23 Jan 2021 12:21:21 +0530 Subject: [PATCH 3/3] Addressed PR feedback. Removed IIS Settings from launchSettings and added launchSettings.json for HttpSys samples projects --- .../Properties/launchSettings.json | 9 +++++ .../Properties/launchSettings.json | 9 +++++ .../Properties/launchSettings.json | 9 +++++ .../IIS.Tests/Properties/launchSettings.json | 40 ------------------- .../Properties/launchSettings.json | 15 ------- .../Properties/launchSettings.json | 38 ++---------------- 6 files changed, 30 insertions(+), 90 deletions(-) create mode 100644 src/Servers/HttpSys/samples/HotAddSample/Properties/launchSettings.json create mode 100644 src/Servers/HttpSys/samples/QueueSharing/Properties/launchSettings.json create mode 100644 src/Servers/HttpSys/samples/SelfHostServer/Properties/launchSettings.json delete mode 100644 src/Servers/IIS/IIS/test/IIS.Tests/Properties/launchSettings.json diff --git a/src/Servers/HttpSys/samples/HotAddSample/Properties/launchSettings.json b/src/Servers/HttpSys/samples/HotAddSample/Properties/launchSettings.json new file mode 100644 index 000000000000..ee0377f0d883 --- /dev/null +++ b/src/Servers/HttpSys/samples/HotAddSample/Properties/launchSettings.json @@ -0,0 +1,9 @@ +{ + "profiles": { + "HotAddSample": { + "commandName": "Project", + "launchBrowser": true + } + } +} + diff --git a/src/Servers/HttpSys/samples/QueueSharing/Properties/launchSettings.json b/src/Servers/HttpSys/samples/QueueSharing/Properties/launchSettings.json new file mode 100644 index 000000000000..6f22dccad3e0 --- /dev/null +++ b/src/Servers/HttpSys/samples/QueueSharing/Properties/launchSettings.json @@ -0,0 +1,9 @@ +{ + "profiles": { + "QueueSharing": { + "commandName": "Project", + "launchBrowser": true + } + } +} + diff --git a/src/Servers/HttpSys/samples/SelfHostServer/Properties/launchSettings.json b/src/Servers/HttpSys/samples/SelfHostServer/Properties/launchSettings.json new file mode 100644 index 000000000000..029799aba543 --- /dev/null +++ b/src/Servers/HttpSys/samples/SelfHostServer/Properties/launchSettings.json @@ -0,0 +1,9 @@ +{ + "profiles": { + "SelfHostServer": { + "commandName": "Project", + "launchBrowser": true + } + } +} + diff --git a/src/Servers/IIS/IIS/test/IIS.Tests/Properties/launchSettings.json b/src/Servers/IIS/IIS/test/IIS.Tests/Properties/launchSettings.json deleted file mode 100644 index fe76b29b53d8..000000000000 --- a/src/Servers/IIS/IIS/test/IIS.Tests/Properties/launchSettings.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "iisSettings": { - "windowsAuthentication": true, - "anonymousAuthentication": true, - "iisExpress": { - "applicationUrl": "http://localhost:5762/", - "sslPort": 0 - } - }, - "profiles": { - "ANCM IIS Express": { - "commandName": "Executable", - "executablePath": "$(IISExpressPath)", - "commandLineArgs": "$(IISExpressArguments)", - "environmentVariables": { - "IIS_SITE_PATH": "$(MSBuildThisFileDirectory)", - "ANCMV2_PATH": "$(AspNetCoreModuleV2ShimDll)", - "ASPNETCORE_MODULE_OUTOFPROCESS_HANDLER": "$(AspNetCoreModuleV2OutOfProcessHandlerDll)", - "LAUNCHER_ARGS": "$(TargetPath)", - "ASPNETCORE_ENVIRONMENT": "Development", - "LAUNCHER_PATH": "$(DotNetPath)", - "ASPNETCORE_MODULE_DEBUG": "console" - } - }, - "ANCM IIS": { - "commandName": "Executable", - "executablePath": "$(IISPath)", - "commandLineArgs": "$(IISArguments)", - "environmentVariables": { - "IIS_SITE_PATH": "$(MSBuildThisFileDirectory)", - "ANCMV2_PATH": "$(AspNetCoreModuleV2ShimDll)", - "ASPNETCORE_MODULE_OUTOFPROCESS_HANDLER": "$(AspNetCoreModuleV2OutOfProcessHandlerDll)", - "LAUNCHER_ARGS": "$(TargetPath)", - "ASPNETCORE_ENVIRONMENT": "Development", - "LAUNCHER_PATH": "$(DotNetPath)", - "ASPNETCORE_MODULE_DEBUG": "console" - } - } - } -} diff --git a/src/Servers/Kestrel/samples/Http3SampleApp/Properties/launchSettings.json b/src/Servers/Kestrel/samples/Http3SampleApp/Properties/launchSettings.json index 22a17626f289..c68927104793 100644 --- a/src/Servers/Kestrel/samples/Http3SampleApp/Properties/launchSettings.json +++ b/src/Servers/Kestrel/samples/Http3SampleApp/Properties/launchSettings.json @@ -1,12 +1,4 @@ { - "iisSettings": { - "windowsAuthentication": false, - "anonymousAuthentication": true, - "iisExpress": { - "applicationUrl": "http://localhost:55124/", - "sslPort": 44330 - } - }, "profiles": { "Http3SampleApp": { "commandName": "Project", @@ -15,13 +7,6 @@ "ASPNETCORE_ENVIRONMENT": "Development" }, "applicationUrl": "https://localhost:5001;http://localhost:5000" - }, - "IIS Express": { - "commandName": "IISExpress", - "launchBrowser": true, - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } } } } diff --git a/src/Servers/testassets/ServerComparison.TestSites/Properties/launchSettings.json b/src/Servers/testassets/ServerComparison.TestSites/Properties/launchSettings.json index fe76b29b53d8..2cfb910b9931 100644 --- a/src/Servers/testassets/ServerComparison.TestSites/Properties/launchSettings.json +++ b/src/Servers/testassets/ServerComparison.TestSites/Properties/launchSettings.json @@ -1,40 +1,8 @@ { - "iisSettings": { - "windowsAuthentication": true, - "anonymousAuthentication": true, - "iisExpress": { - "applicationUrl": "http://localhost:5762/", - "sslPort": 0 - } - }, "profiles": { - "ANCM IIS Express": { - "commandName": "Executable", - "executablePath": "$(IISExpressPath)", - "commandLineArgs": "$(IISExpressArguments)", - "environmentVariables": { - "IIS_SITE_PATH": "$(MSBuildThisFileDirectory)", - "ANCMV2_PATH": "$(AspNetCoreModuleV2ShimDll)", - "ASPNETCORE_MODULE_OUTOFPROCESS_HANDLER": "$(AspNetCoreModuleV2OutOfProcessHandlerDll)", - "LAUNCHER_ARGS": "$(TargetPath)", - "ASPNETCORE_ENVIRONMENT": "Development", - "LAUNCHER_PATH": "$(DotNetPath)", - "ASPNETCORE_MODULE_DEBUG": "console" - } - }, - "ANCM IIS": { - "commandName": "Executable", - "executablePath": "$(IISPath)", - "commandLineArgs": "$(IISArguments)", - "environmentVariables": { - "IIS_SITE_PATH": "$(MSBuildThisFileDirectory)", - "ANCMV2_PATH": "$(AspNetCoreModuleV2ShimDll)", - "ASPNETCORE_MODULE_OUTOFPROCESS_HANDLER": "$(AspNetCoreModuleV2OutOfProcessHandlerDll)", - "LAUNCHER_ARGS": "$(TargetPath)", - "ASPNETCORE_ENVIRONMENT": "Development", - "LAUNCHER_PATH": "$(DotNetPath)", - "ASPNETCORE_MODULE_DEBUG": "console" - } + "ServerComparison.TestSites": { + "commandName": "Project", + "launchBrowser": true } } }