18 instantiations of ExtendedBuildWarningEventArgs
Microsoft.Build (2)
Microsoft.Build.Engine.UnitTests (4)
BackEnd\NodePackets_Tests.cs (2)
69ExtendedBuildWarningEventArgs extWarning = new("extWarn", "SubCategoryForSchemaValidationErrors", "MSB4000", "file", 1, 2, 3, 4, "message", "help", "sender");
299new ExtendedBuildWarningEventArgs("extWarn", "SubCategoryForSchemaValidationErrors", "MSB4000", "file", 1, 2, 3, 4, "message", "help", "sender", DateTime.UtcNow, "arg1")
BackEnd\TaskHost_Tests.cs (1)
428_taskHost.LogWarningEvent(new ExtendedBuildWarningEventArgs("testExtCustomBuildWarning", null, null, null, 0, 0, 0, 0, "ext warn message", null, null));
Microsoft.Build.Framework.UnitTests (10)
ExtendedBuildEventArgs_Tests.cs (10)
88ExtendedBuildWarningEventArgs arg = new(
115ExtendedBuildWarningEventArgs argDeserialized = new();
226var ea = new ExtendedBuildWarningEventArgs();
227ea = new ExtendedBuildWarningEventArgs("type", "Subcategory", "Code", "File", 1, 2, 3, 4, "Message", "HelpKeyword", "sender");
228ea = new ExtendedBuildWarningEventArgs("type", "Subcategory", "Code", "File", 1, 2, 3, 4, "Message", "HelpKeyword", "sender", DateTime.Now);
229ea = new ExtendedBuildWarningEventArgs("type", "Subcategory", "Code", "File", 1, 2, 3, 4, "{0}", "HelpKeyword", "sender", DateTime.Now, "Message");
230ea = new ExtendedBuildWarningEventArgs("type", "Subcategory", "Code", "File", 1, 2, 3, 4, "{0}", "HelpKeyword", "sender", "HelpLink", DateTime.Now, "Message");
231ea = new ExtendedBuildWarningEventArgs("type", null, null, null, 1, 2, 3, 4, null, null, null);
232ea = new ExtendedBuildWarningEventArgs("type", null, null, null, 1, 2, 3, 4, null, null, null, DateTime.Now);
233ea = new ExtendedBuildWarningEventArgs("type", null, null, null, 1, 2, 3, 4, null, null, null, null, DateTime.Now, null);
Microsoft.Build.Tasks.Core (1)
MSBuild (1)
13 references to ExtendedBuildWarningEventArgs
Microsoft.Build (4)
Microsoft.Build.Engine.UnitTests (3)
BackEnd\NodePackets_Tests.cs (1)
69ExtendedBuildWarningEventArgs extWarning = new("extWarn", "SubCategoryForSchemaValidationErrors", "MSB4000", "file", 1, 2, 3, 4, "message", "help", "sender");
Microsoft.Build.Framework.UnitTests (3)
Microsoft.Build.Tasks.Core (2)
MSBuild (1)