22 references to Project
Microsoft.Build (5)
Definition\Project.cs (5)
144: this(ProjectRootElement.Create(projectCollection), null, null, projectCollection) 154: this(ProjectRootElement.Create(projectCollection, newProjectFileOptions), null, null, projectCollection) 167: this(ProjectRootElement.Create(projectCollection, DefaultNewProjectTemplateOptions), globalProperties, toolsVersion, projectCollection) 181: this(ProjectRootElement.Create(projectCollection, newProjectFileOptions), globalProperties, toolsVersion, projectCollection) 209: this(xml, globalProperties, toolsVersion, ProjectCollection.GlobalProjectCollection)
Microsoft.Build.Engine.OM.UnitTests (14)
Construction\ProjectRootElement_Tests.cs (1)
1749var project = new Project(rootElement, null, null, projectCollection);
Definition\Project_Tests.cs (10)
138Project project = new Project(xml, null, null, collection); 166Project project = new Project(xml, null, null, collection); 1233Project p = new Project(GetSampleProjectRootElement(), null, ObjectModelHelpers.MSBuildDefaultToolsVersion, collection); 1263Project p = new Project(GetSampleProjectRootElement(), null, ObjectModelHelpers.MSBuildDefaultToolsVersion, collection); 1291Project p = new Project(GetSampleProjectRootElement(), globalProperties, ObjectModelHelpers.MSBuildDefaultToolsVersion, collection); 1609var project = new Project(projectRootElement, new Dictionary<string, string>(), MSBuildConstants.CurrentToolsVersion, projectCollection); 3907Project unused = new Project(pre, null, null, collection); 3948Project unused = new Project(pre, null, null, collection); 4165Project unused = new Project(pre, null, null, collection); 4211Project unused = new Project(pre2, null, null, collection);
Definition\ProjectCollection_Tests.cs (1)
1404project = new Project(pre, null, null, collection);
Instance\ProjectInstance_Tests.cs (2)
427var projBEval = new Project(projB, null, null, pc); 511var projBEval = new Project(projB, null, null, pc);
Microsoft.Build.Engine.UnitTests (3)
BackEnd\BuildManager_Tests.cs (2)
3706var mainProject = new Project(mainRootElement, new Dictionary<string, string>(), MSBuildConstants.CurrentToolsVersion, collection); 3857var project = new Project(root, new Dictionary<string, string>(), MSBuildConstants.CurrentToolsVersion,
EscapingInProjects_Tests.cs (1)
650Project project = new Project(projectElement, null, null, collection);