Skip to content

Commit ec596b6

Browse files
Simplifies launch settings configuration
Cleans up the launchSettings.json file by removing redundant and unnecessary configurations. This reduces clutter and improves readability.
1 parent 3f03209 commit ec596b6

File tree

1 file changed

+13
-18
lines changed

1 file changed

+13
-18
lines changed

src/Certify.Server/Certify.Server.Core/Certify.Server.Core/Properties/launchSettings.json

Lines changed: 13 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,7 @@
11
{
2-
"$schema": "http://json.schemastore.org/launchsettings.json",
3-
"iisSettings": {
4-
"windowsAuthentication": false,
5-
"anonymousAuthentication": true,
6-
"iisExpress": {
7-
"applicationUrl": "http://127.0.0.2:9695"
8-
}
9-
},
10-
112
"profiles": {
12-
133
"Certify.Server.Core (no service auth)": {
144
"commandName": "Project",
15-
"launchBrowser": false,
165
"environmentVariables": {
176
"ASPNETCORE_ENVIRONMENT": "Development",
187
"ASPNETCORE_URLS": "http://127.0.0.2:9696",
@@ -26,7 +15,6 @@
2615
},
2716
"Certify.Server.Core (windows auth)": {
2817
"commandName": "Project",
29-
"launchBrowser": false,
3018
"environmentVariables": {
3119
"ASPNETCORE_ENVIRONMENT": "Development",
3220
"ASPNETCORE_URLS": "http://127.0.0.2:9696",
@@ -36,13 +24,12 @@
3624
},
3725
"IIS Express": {
3826
"commandName": "IISExpress",
39-
"launchBrowser": false,
4027
"launchUrl": "http://127.0.0.2:9695/docs",
41-
"iisExpress": {
42-
"applicationUrl": "http://127.0.0.2:9695"
43-
},
4428
"environmentVariables": {
4529
"ASPNETCORE_ENVIRONMENT": "Development"
30+
},
31+
"iisExpress": {
32+
"applicationUrl": "http://127.0.0.2:9695"
4633
}
4734
},
4835
"Docker": {
@@ -59,7 +46,6 @@
5946
},
6047
"WSL": {
6148
"commandName": "WSL2",
62-
"launchBrowser": false,
6349
"launchUrl": "http://localhost:9695/docs",
6450
"environmentVariables": {
6551
"ASPNETCORE_ENVIRONMENT": "Development",
@@ -69,5 +55,14 @@
6955
"CERTIFY_SERVICE_AUTH_MODE": "none"
7056
}
7157
}
58+
},
59+
"$schema": "http://json.schemastore.org/launchsettings.json",
60+
"iisSettings": {
61+
"windowsAuthentication": false,
62+
"anonymousAuthentication": true,
63+
"iisExpress": {
64+
"applicationUrl": "http://127.0.0.2:9695",
65+
"sslPort": 0
66+
}
7267
}
73-
}
68+
}

0 commit comments

Comments
 (0)