Skip to content

Commit b33f8dd

Browse files
authored
Add dotnetRunMessages to ASP.NET Core templates (#24229)
1 parent 697b397 commit b33f8dd

File tree

13 files changed

+26
-13
lines changed

13 files changed

+26
-13
lines changed

src/ProjectTemplates/Web.ProjectTemplates/content/BlazorServerWeb-CSharp/Properties/launchSettings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
},
2727
"BlazorServerWeb-CSharp": {
2828
"commandName": "Project",
29+
"dotnetRunMessages": "true",
2930
"launchBrowser": true,
3031
//#if(RequiresHttps)
3132
"applicationUrl": "https://localhost:5001;http://localhost:5000",

src/ProjectTemplates/Web.ProjectTemplates/content/ComponentsWebAssembly-CSharp/Client/Properties/launchSettings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
},
2828
"ComponentsWebAssembly-CSharp": {
2929
"commandName": "Project",
30+
"dotnetRunMessages": "true",
3031
"launchBrowser": true,
3132
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
3233
//#if(RequiresHttps)

src/ProjectTemplates/Web.ProjectTemplates/content/ComponentsWebAssembly-CSharp/Server/Properties/launchSettings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
},
2323
"ComponentsWebAssembly-CSharp.Server": {
2424
"commandName": "Project",
25+
"dotnetRunMessages": "true",
2526
"launchBrowser": true,
2627
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
2728
//#if(RequiresHttps)

src/ProjectTemplates/Web.ProjectTemplates/content/EmptyWeb-CSharp/Properties/launchSettings.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"iisSettings": {
3-
//#if (WindowsAuth)
4-
"windowsAuthentication": true,
5-
"anonymousAuthentication": false,
6-
//#else
7-
"windowsAuthentication": false,
8-
"anonymousAuthentication": true,
3+
//#if (WindowsAuth)
4+
"windowsAuthentication": true,
5+
"anonymousAuthentication": false,
6+
//#else
7+
"windowsAuthentication": false,
8+
"anonymousAuthentication": true,
99
//#endif
1010
"iisExpress": {
1111
"applicationUrl": "http://localhost:8080",
@@ -26,6 +26,7 @@
2626
},
2727
"Company.WebApplication1": {
2828
"commandName": "Project",
29+
"dotnetRunMessages": "true",
2930
"launchBrowser": true,
3031
//#if(NoHttps)
3132
"applicationUrl": "http://localhost:5000",

src/ProjectTemplates/Web.ProjectTemplates/content/EmptyWeb-FSharp/Properties/launchSettings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
},
2222
"Company.WebApplication1": {
2323
"commandName": "Project",
24+
"dotnetRunMessages": "true",
2425
"launchBrowser": true,
2526
//#if(NoHttps)
2627
"applicationUrl": "http://localhost:5000",

src/ProjectTemplates/Web.ProjectTemplates/content/GrpcService-CSharp/Properties/launchSettings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"profiles": {
33
"GrpcService-CSharp": {
44
"commandName": "Project",
5+
"dotnetRunMessages": "true",
56
"launchBrowser": false,
67
"applicationUrl": "http://localhost:5000;https://localhost:5001",
78
"environmentVariables": {

src/ProjectTemplates/Web.ProjectTemplates/content/RazorPagesWeb-CSharp/Properties/launchSettings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
},
3232
"Company.WebApplication1": {
3333
"commandName": "Project",
34+
"dotnetRunMessages": "true",
3435
"launchBrowser": true,
3536
//#if(RequiresHttps)
3637
"applicationUrl": "https://localhost:5001;http://localhost:5000",

src/ProjectTemplates/Web.ProjectTemplates/content/StarterWeb-CSharp/Properties/launchSettings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
},
3232
"Company.WebApplication1": {
3333
"commandName": "Project",
34+
"dotnetRunMessages": "true",
3435
"launchBrowser": true,
3536
//#if(RequiresHttps)
3637
"applicationUrl": "https://localhost:5001;http://localhost:5000",

src/ProjectTemplates/Web.ProjectTemplates/content/StarterWeb-FSharp/Properties/launchSettings.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"iisSettings": {
3-
//#if (WindowsAuth)
4-
"windowsAuthentication": true,
5-
"anonymousAuthentication": false,
6-
//#else
7-
"windowsAuthentication": false,
8-
"anonymousAuthentication": true,
9-
//#endif
3+
//#if (WindowsAuth)
4+
"windowsAuthentication": true,
5+
"anonymousAuthentication": false,
6+
//#else
7+
"windowsAuthentication": false,
8+
"anonymousAuthentication": true,
9+
//#endif
1010
"iisExpress": {
1111
"applicationUrl": "http://localhost:8080",
1212
//#if(NoHttps)
@@ -26,6 +26,7 @@
2626
},
2727
"Company.WebApplication1": {
2828
"commandName": "Project",
29+
"dotnetRunMessages": "true",
2930
"launchBrowser": true,
3031
//#if(NoHttps)
3132
"applicationUrl": "http://localhost:5000",

src/ProjectTemplates/Web.ProjectTemplates/content/WebApi-CSharp/Properties/launchSettings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
},
2929
"Company.WebApplication1": {
3030
"commandName": "Project",
31+
"dotnetRunMessages": "true",
3132
"launchBrowser": true,
3233
"launchUrl": "weatherforecast",
3334
//#if(RequiresHttps)

src/ProjectTemplates/Web.ProjectTemplates/content/WebApi-FSharp/Properties/launchSettings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
},
2929
"Company.WebApplication1": {
3030
"commandName": "Project",
31+
"dotnetRunMessages": "true",
3132
"launchBrowser": true,
3233
"launchUrl": "weatherforecast",
3334
//#if(NoHttps)

src/ProjectTemplates/Web.ProjectTemplates/content/Worker-CSharp/Properties/launchSettings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"profiles": {
33
"Company.Application1": {
44
"commandName": "Project",
5+
"dotnetRunMessages": "true",
56
"environmentVariables": {
67
"DOTNET_ENVIRONMENT": "Development"
78
}

src/ProjectTemplates/Web.ProjectTemplates/content/Worker-FSharp/Properties/launchSettings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"profiles": {
33
"Company.Application1": {
44
"commandName": "Project",
5+
"dotnetRunMessages": "true",
56
"environmentVariables": {
67
"DOTNET_ENVIRONMENT": "Development"
78
}

0 commit comments

Comments
 (0)