Created
December 23, 2020 07:27
-
-
Save codakis/87aeeb5642087a202d855cc172631974 to your computer and use it in GitHub Desktop.
Visual Studio watch run settings, add this parameter to profiles in launchsettings.json
This file contains 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
"Watch": { | |
"executablePath": "C:\\Program Files\\dotnet\\dotnet.exe", | |
"commandLineArgs": "watch run", | |
"launchBrowser": true, | |
"commandName": "Project", | |
"launchUrl": "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