[Feature Request] Add setting to specify arguments for dotnet build
Similar to dotnet-test-explorer.testArguments, can you add a setting that allows specifying arguments to the dotnet build step?
Specifically I would like to be able to run tests without re-building dependencies (with --no-dependencies)
Altering the configuration via --configuration would also be a nice feature.
Actually, after forking and looking into this, doesn't dotnet test -t -v=q execute a build behind the scenes? If so, then the testArguments setting will allow additional arguments that apply to the build step.
Ah, but running the tests requires dotnet build; so still a valid suggestion IMHO. Creating PR.