cs11dotnet7/vscode/PracticalApps/Northwind.WebApi/Properties/launchSettings.json

42 lines
1 KiB
JSON
Raw Normal View History

2022-03-13 17:17:01 +01:00
{
"$schema": "https://json.schemastore.org/launchsettings.json",
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:33422",
"sslPort": 44349
}
},
"profiles": {
2022-09-24 10:10:26 +02:00
"http": {
2022-03-13 17:17:01 +01:00
"commandName": "Project",
"dotnetRunMessages": true,
2022-09-24 10:10:26 +02:00
"launchBrowser": true,
"launchUrl": "swagger",
"applicationUrl": "http://localhost:5000",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"https": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
2022-03-13 17:17:01 +01:00
"launchUrl": "swagger",
"applicationUrl": "https://localhost:5002",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"launchUrl": "swagger",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
}