| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- {
- "profiles": {
- "IIS Express": {
- "commandName": "IISExpress",
- "launchBrowser": true,
- "launchUrl": "api/info",
- "environmentVariables": {
- "ASPNETCORE_ENVIRONMENT": "Development_Test"
- }
- },
- "ConfigurationApi(Dev)": {
- "commandName": "Project",
- "launchBrowser": true,
- "launchUrl": "api/info",
- "environmentVariables": {
- "ASPNETCORE_ENVIRONMENT": "Development_Test"
- },
- "applicationUrl": "http://localhost:28240/"
- },
- "ConfigurationApi(DevBase)": {
- "commandName": "Project",
- "launchBrowser": true,
- "launchUrl": "api/info",
- "environmentVariables": {
- "ASPNETCORE_ENVIRONMENT": "Development_Base"
- },
- "applicationUrl": "http://localhost:28240/"
- },
- "ConfigurationApi(Prod)": {
- "commandName": "Project",
- "launchBrowser": true,
- "launchUrl": "api/info",
- "environmentVariables": {
- "ASPNETCORE_ENVIRONMENT": "Production"
- },
- "applicationUrl": "http://localhost:28240/"
- }
- },
- "iisSettings": {
- "windowsAuthentication": false,
- "anonymousAuthentication": true,
- "iisExpress": {
- "applicationUrl": "http://localhost:49928/",
- "sslPort": 0
- }
- }
- }
|