Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Kotalik <jukotali@microsoft.com>2021-03-24 19:52:39 +0300
committerGitHub <noreply@github.com>2021-03-24 19:52:39 +0300
commit4aa39c3e73ab570beef3a4de100b7cef35d72520 (patch)
tree3eaaa5d15367d6e476f8473a73dd01e95c034ca7 /src/ProjectTemplates/Web.ProjectTemplates/content/StarterWeb-CSharp
parentc9a9b94c3cd4539c2147b1144fabdcb11f34842b (diff)
Default to Kestrel over IISExpress (#31161)
Diffstat (limited to 'src/ProjectTemplates/Web.ProjectTemplates/content/StarterWeb-CSharp')
-rw-r--r--src/ProjectTemplates/Web.ProjectTemplates/content/StarterWeb-CSharp/Properties/launchSettings.json22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/ProjectTemplates/Web.ProjectTemplates/content/StarterWeb-CSharp/Properties/launchSettings.json b/src/ProjectTemplates/Web.ProjectTemplates/content/StarterWeb-CSharp/Properties/launchSettings.json
index 9dc76fda5d..781127426b 100644
--- a/src/ProjectTemplates/Web.ProjectTemplates/content/StarterWeb-CSharp/Properties/launchSettings.json
+++ b/src/ProjectTemplates/Web.ProjectTemplates/content/StarterWeb-CSharp/Properties/launchSettings.json
@@ -17,9 +17,16 @@
}
},
"profiles": {
- "IIS Express": {
- "commandName": "IISExpress",
+ "Company.WebApplication1": {
+ "commandName": "Project",
+ "dotnetRunMessages": "true",
"launchBrowser": true,
+ "hotReloadProfile": "aspnetcore",
+ //#if(RequiresHttps)
+ "applicationUrl": "https://localhost:5001;http://localhost:5000",
+ //#else
+ "applicationUrl": "http://localhost:5000",
+ //#endif
"environmentVariables": {
//#if(RazorRuntimeCompilation)
"ASPNETCORE_ENVIRONMENT": "Development",
@@ -29,16 +36,9 @@
//#endif
}
},
- "Company.WebApplication1": {
- "commandName": "Project",
- "dotnetRunMessages": "true",
+ "IIS Express": {
+ "commandName": "IISExpress",
"launchBrowser": true,
- "hotReloadProfile": "aspnetcore",
- //#if(RequiresHttps)
- "applicationUrl": "https://localhost:5001;http://localhost:5000",
- //#else
- "applicationUrl": "http://localhost:5000",
- //#endif
"environmentVariables": {
//#if(RazorRuntimeCompilation)
"ASPNETCORE_ENVIRONMENT": "Development",