...
If your code is compiled prior to analysis, you can skip the building phase during analysis by passing the -nobuild
command line switch or setting the dottest.build.nobuild
property to true
(see Base Configuration Settings for details).
Building .NET Core Projects
If you use the NuGet mechanism to process packages in your project, run the dotnet
command with the restore
option before analysis:
Code Block |
---|
dotnet restore SOLUTION_PATH |
This ensures that NuGet packages are restored before the project is built.
Specifying Solution Configuration and Target Platform
...