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/WebApi-FSharp
parentc9a9b94c3cd4539c2147b1144fabdcb11f34842b (diff)
Default to Kestrel over IISExpress (#31161)
Diffstat (limited to 'src/ProjectTemplates/Web.ProjectTemplates/content/WebApi-FSharp')
-rw-r--r--src/ProjectTemplates/Web.ProjectTemplates/content/WebApi-FSharp/Properties/launchSettings.json16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/ProjectTemplates/Web.ProjectTemplates/content/WebApi-FSharp/Properties/launchSettings.json b/src/ProjectTemplates/Web.ProjectTemplates/content/WebApi-FSharp/Properties/launchSettings.json
index db631ebf8a..59b22951ab 100644
--- a/src/ProjectTemplates/Web.ProjectTemplates/content/WebApi-FSharp/Properties/launchSettings.json
+++ b/src/ProjectTemplates/Web.ProjectTemplates/content/WebApi-FSharp/Properties/launchSettings.json
@@ -18,14 +18,6 @@
}
},
"profiles": {
- "IIS Express": {
- "commandName": "IISExpress",
- "launchBrowser": true,
- "launchUrl": "weatherforecast",
- "environmentVariables": {
- "ASPNETCORE_ENVIRONMENT": "Development"
- }
- },
"Company.WebApplication1": {
"commandName": "Project",
"dotnetRunMessages": "true",
@@ -39,6 +31,14 @@
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
+ },
+ "IIS Express": {
+ "commandName": "IISExpress",
+ "launchBrowser": true,
+ "launchUrl": "weatherforecast",
+ "environmentVariables": {
+ "ASPNETCORE_ENVIRONMENT": "Development"
+ }
}
}
}