Skip to content

Commit 0f2e88a

Browse files
authored
Added launchSettings.json for Blazor wasm templates (#18368)
* Added launchSettings.json for Blazor wasm templates * Updated launchSettings * removed windows auth option
1 parent 1f61fc6 commit 0f2e88a

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"useWebAssemblyDebugging": true
3+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"useWebAssemblyDebugging": true,
3+
"iisSettings": {
4+
"windowsAuthentication": false,
5+
"anonymousAuthentication": true,
6+
"iisExpress": {
7+
"applicationUrl": "http://localhost:8080",
8+
//#if(RequiresHttps)
9+
"sslPort": 44300
10+
//#else
11+
"sslPort": 0
12+
//#endif
13+
}
14+
},
15+
"profiles": {
16+
"IIS Express": {
17+
"commandName": "IISExpress",
18+
"launchBrowser": true,
19+
"environmentVariables": {
20+
"ASPNETCORE_ENVIRONMENT": "Development"
21+
}
22+
},
23+
"Company.WebApplication1": {
24+
"commandName": "Project",
25+
"launchBrowser": true,
26+
//#if(RequiresHttps)
27+
"applicationUrl": "https://localhost:5001;http://localhost:5000",
28+
//#else
29+
"applicationUrl": "http://localhost:5000",
30+
//#endif
31+
"environmentVariables": {
32+
"ASPNETCORE_ENVIRONMENT": "Development"
33+
}
34+
}
35+
}
36+
}

0 commit comments

Comments
 (0)