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)
3406_parameters.WarningsAsErrors = new HashSet<string>(); 3436_parameters.WarningsAsErrors = new HashSet<string> { "ABC123" }; 3467_parameters.WarningsAsErrors = new HashSet<string> { "ABC123" };
MSBuild (1)
XMake.cs (1)
1484parameters.WarningsAsErrors = warningsAsErrors;
3 references to WarningsAsErrors
Microsoft.Build (3)
BackEnd\BuildManager\BuildManager.cs (1)
629_buildParameters.WarningsAsErrors,
BackEnd\BuildManager\BuildParameters.cs (2)
304WarningsAsErrors = other.WarningsAsErrors == null ? null : new HashSet<string>(other.WarningsAsErrors, StringComparer.OrdinalIgnoreCase);