Last active
October 15, 2020 22:45
-
-
Save scheffler/a4d7b667ea33eb59cea6e8cabb8aa9a2 to your computer and use it in GitHub Desktop.
Starting launchSettings.json file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json.schemastore.org/launchsettings.json", | |
"iisSettings": { | |
"windowsAuthentication": true, | |
"anonymousAuthentication": true, | |
"iisExpress": { | |
"applicationUrl": "http://localhost:42480", | |
"sslPort": 44393 | |
} | |
}, | |
"profiles": { | |
"IIS Express": { | |
"commandName": "IISExpress", | |
"launchBrowser": true, | |
"launchUrl": "", | |
"environmentVariables": { | |
"ASPNETCORE_ENVIRONMENT": "Development" | |
} | |
}, | |
"Arcs.Web": { | |
"commandName": "Project", | |
"launchBrowser": true, | |
"launchUrl": "", | |
"environmentVariables": { | |
"ASPNETCORE_ENVIRONMENT": "Development", | |
"ASPNETCORE_USE_KESTREL_WINDOWS_INTEGRATED": "true" | |
}, | |
"applicationUrl": "https://localhost:5001;http://localhost:5000" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment