Skip to content

Instantly share code, notes, and snippets.

@Ovis
Last active May 3, 2020 04:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ovis/113cbb2d747bd8e7b5e2f29a188af2c2 to your computer and use it in GitHub Desktop.
Save Ovis/113cbb2d747bd8e7b5e2f29a188af2c2 to your computer and use it in GitHub Desktop.
localhost以外でのASP.NET Coreデバッグ
{
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:50184",
"sslPort": 44314
}
},
"profiles": {
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"WebApplication1": {
"commandName": "Project",
"launchBrowser": true,
"applicationUrl": "https://192.168.0.2:5001;http://192.168.0.2:5000",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment