5 writes to WarningsAsErrors
Microsoft.Build (1)
BackEnd\BuildManager\BuildParameters.cs (1)
304
WarningsAsErrors
= 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)
1484
parameters.
WarningsAsErrors
= warningsAsErrors;
3 references to WarningsAsErrors
Microsoft.Build (3)
BackEnd\BuildManager\BuildManager.cs (1)
629
_buildParameters.
WarningsAsErrors
,
BackEnd\BuildManager\BuildParameters.cs (2)
304
WarningsAsErrors = other.
WarningsAsErrors
== null ? null : new HashSet<string>(other.
WarningsAsErrors
, StringComparer.OrdinalIgnoreCase);