Is it possible to set parameters in the launchSettings.json
to control the dotnet-watch command execution? I added the section below with the intention to get a list of the files, that dotnet-watch is checking:
"Watch": {
"commandName": "Executable",
"executablePath": "dotnet",
"workingDirectory": "$(ProjectDir)",
"hotReloadEnabled": true,
"hotReloadProfile" : "aspnetcore",
"commandLineArgs": "watch run --list",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
But I could not see any effect in the output window of the Radzen Blazor Studio.