-
Notifications
You must be signed in to change notification settings - Fork 290
Open
Labels
Description
Describe the bug
The CSC : warning MSTEST0001: Explicitly enable or disable tests parallelization is reported even if dotnet_diagnostic.MSTEST0001.severity = none is configured in .globalconfig file if the test project has no content
Steps To Reproduce
- Create a new test project from the template
- Remove the
MSTestSettings.csandTest1.csfiles - Create a
.globalconfigfile with the following content
is_global = true
dotnet_diagnostic.MSTEST0001.severity = none
- Build the project
Expected behavior
No warnings from the compiler
Actual behavior
CSC : warning MSTEST0001: Explicitly enable or disable tests parallelization
Additional context
Adding any file, .cs or .txt or whatever, removes the warning.