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