Skip to content

Instantly share code, notes, and snippets.

@jerviscui
Created October 21, 2021 02:28
Show Gist options
  • Save jerviscui/27bec38cc89ab658ebcccb9366f7778e to your computer and use it in GitHub Desktop.
Save jerviscui/27bec38cc89ab658ebcccb9366f7778e to your computer and use it in GitHub Desktop.
.Net project launch setting in Properties folder.
{
"$schema": "http://json.schemastore.org/launchsettings.json",
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:59127",
"sslPort": 44389
}
},
"profiles": {
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"launchUrl": "swagger",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"CapTest.Order.Host": {
"commandName": "Project",
"dotnetRunMessages": "true",
"launchBrowser": true,
"launchUrl": "swagger",
"applicationUrl": "https://localhost:5001;http://localhost:5000",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment