Provide parameters to the dotnet-watch command

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.

Hi @rene,

At the moment there is no way to specify launch profile when running the app from Radzen Blazor Studio.

1 Like