5 writes to WarningsAsErrors
Microsoft.Build (1)
BackEnd\BuildManager\BuildParameters.cs (1)
304WarningsAsErrors = other.WarningsAsErrors == null ? null : new HashSet<string>(other.WarningsAsErrors, StringComparer.OrdinalIgnoreCase);
Microsoft.Build.Engine.UnitTests (3)
BackEnd\BuildManager_Tests.cs (3)
3341_parameters.WarningsAsErrors = new HashSet<string>(); 3371_parameters.WarningsAsErrors = new HashSet<string> { "ABC123" }; 3402_parameters.WarningsAsErrors = new HashSet<string> { "ABC123" };
MSBuild (1)
XMake.cs (1)
1473parameters.WarningsAsErrors = warningsAsErrors;
3 references to WarningsAsErrors
Microsoft.Build (3)
BackEnd\BuildManager\BuildManager.cs (1)
635_buildParameters.WarningsAsErrors,
BackEnd\BuildManager\BuildParameters.cs (2)
304WarningsAsErrors = other.WarningsAsErrors == null ? null : new HashSet<string>(other.WarningsAsErrors, StringComparer.OrdinalIgnoreCase);