Fix API template launch URL (#11753)
This commit is contained in:
parent
b6403d5658
commit
56e8271e24
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"$schema": "http://json.schemastore.org/launchsettings.json",
|
"$schema": "http://json.schemastore.org/launchsettings.json",
|
||||||
"iisSettings": {
|
"iisSettings": {
|
||||||
//#if (WindowsAuth)
|
//#if (WindowsAuth)
|
||||||
"windowsAuthentication": true,
|
"windowsAuthentication": true,
|
||||||
"anonymousAuthentication": false,
|
"anonymousAuthentication": false,
|
||||||
//#else
|
//#else
|
||||||
"windowsAuthentication": false,
|
"windowsAuthentication": false,
|
||||||
"anonymousAuthentication": true,
|
"anonymousAuthentication": true,
|
||||||
//#endif
|
//#endif
|
||||||
"iisExpress": {
|
"iisExpress": {
|
||||||
"applicationUrl": "http://localhost:8080",
|
"applicationUrl": "http://localhost:8080",
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
"IIS Express": {
|
"IIS Express": {
|
||||||
"commandName": "IISExpress",
|
"commandName": "IISExpress",
|
||||||
"launchBrowser": true,
|
"launchBrowser": true,
|
||||||
"launchUrl": "api/values",
|
"launchUrl": "weatherforecast",
|
||||||
"environmentVariables": {
|
"environmentVariables": {
|
||||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||||
}
|
}
|
||||||
|
|
@ -29,7 +29,7 @@
|
||||||
"Company.WebApplication1": {
|
"Company.WebApplication1": {
|
||||||
"commandName": "Project",
|
"commandName": "Project",
|
||||||
"launchBrowser": true,
|
"launchBrowser": true,
|
||||||
"launchUrl": "api/values",
|
"launchUrl": "weatherforecast",
|
||||||
//#if(RequiresHttps)
|
//#if(RequiresHttps)
|
||||||
"applicationUrl": "https://localhost:5001;http://localhost:5000",
|
"applicationUrl": "https://localhost:5001;http://localhost:5000",
|
||||||
//#else
|
//#else
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"$schema": "http://json.schemastore.org/launchsettings.json",
|
"$schema": "http://json.schemastore.org/launchsettings.json",
|
||||||
"iisSettings": {
|
"iisSettings": {
|
||||||
//#if (WindowsAuth)
|
//#if (WindowsAuth)
|
||||||
"windowsAuthentication": true,
|
"windowsAuthentication": true,
|
||||||
"anonymousAuthentication": false,
|
"anonymousAuthentication": false,
|
||||||
//#else
|
//#else
|
||||||
"windowsAuthentication": false,
|
"windowsAuthentication": false,
|
||||||
"anonymousAuthentication": true,
|
"anonymousAuthentication": true,
|
||||||
//#endif
|
//#endif
|
||||||
"iisExpress": {
|
"iisExpress": {
|
||||||
"applicationUrl": "http://localhost:8080",
|
"applicationUrl": "http://localhost:8080",
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
"IIS Express": {
|
"IIS Express": {
|
||||||
"commandName": "IISExpress",
|
"commandName": "IISExpress",
|
||||||
"launchBrowser": true,
|
"launchBrowser": true,
|
||||||
"launchUrl": "api/values",
|
"launchUrl": "weatherforecast",
|
||||||
"environmentVariables": {
|
"environmentVariables": {
|
||||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||||
}
|
}
|
||||||
|
|
@ -29,7 +29,7 @@
|
||||||
"Company.WebApplication1": {
|
"Company.WebApplication1": {
|
||||||
"commandName": "Project",
|
"commandName": "Project",
|
||||||
"launchBrowser": true,
|
"launchBrowser": true,
|
||||||
"launchUrl": "api/values",
|
"launchUrl": "weatherforecast",
|
||||||
//#if(NoHttps)
|
//#if(NoHttps)
|
||||||
"applicationUrl": "http://localhost:5000",
|
"applicationUrl": "http://localhost:5000",
|
||||||
//#else
|
//#else
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue