19 references to Toolset
Microsoft.Build.Engine.OM.UnitTests (9)
Definition\ProjectCollection_Tests.cs (9)
954var toolset = new Toolset("x", "c:\\y", collection, null); 974var toolset1 = new Toolset("x", "c:\\y", collection, null); 975var toolset2 = new Toolset("y", "c:\\z", collection, null); 998var toolset1 = new Toolset("x", "c:\\y", collection, null); 999var toolset2 = new Toolset("x", "c:\\z", collection, null); 1031var toolset1 = new Toolset("x", "c:\\y", collection, null); 1032var toolset2 = new Toolset("y", "c:\\z", collection, null); 1146collection.AddToolset(new Toolset("x", @"c:\y", collection, null)); 1239collection.AddToolset(new Toolset("testTools", Path.GetTempPath(), collection, Path.GetTempPath()));
Microsoft.Build.Engine.UnitTests (10)
BackEnd\BuildManager_Tests.cs (1)
897var newToolSet = new Toolset("CustomToolSet", "c:\\SomePath", projectCollection, null);
Definition\Project_Internal_Tests.cs (1)
43collection.AddToolset(new Toolset("x", @"c:\y", collection, null));
Definition\Toolset_Tests.cs (4)
28Toolset t = new Toolset(null, "x", new ProjectCollection(), null); 37Toolset t = new Toolset("x", null, new ProjectCollection(), null); 46Toolset t = new Toolset(String.Empty, "x", new ProjectCollection(), null); 85t = new Toolset("x", pathValue, collection, null);
Definition\ToolsVersion_Tests.cs (2)
546p.AddToolset(new Toolset("foo", @"c:\foo", p, @"c:\foo\override")); 696p.AddToolset(new Toolset("foo", @"c:\foo", p, @"c:\foo\override"));
Utilities_Tests.cs (2)
317toolsets.Add(new Toolset("66", "x", colletionX, null)); 318toolsets.Add(new Toolset("44", "y", colletionY, null));