Skip to content

Instantly share code, notes, and snippets.

@scheffler
Last active October 15, 2020 22:45
Show Gist options
  • Save scheffler/a4d7b667ea33eb59cea6e8cabb8aa9a2 to your computer and use it in GitHub Desktop.
Save scheffler/a4d7b667ea33eb59cea6e8cabb8aa9a2 to your computer and use it in GitHub Desktop.
Starting launchSettings.json file
{
"$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