26 references to Project
Microsoft.Build (5)
Definition\Project.cs (5)
150: this(ProjectRootElement.Create(projectCollection), null, null, projectCollection) 160: this(ProjectRootElement.Create(projectCollection, newProjectFileOptions), null, null, projectCollection) 173: this(ProjectRootElement.Create(projectCollection, DefaultNewProjectTemplateOptions), globalProperties, toolsVersion, projectCollection) 187: this(ProjectRootElement.Create(projectCollection, newProjectFileOptions), globalProperties, toolsVersion, projectCollection) 215: this(xml, globalProperties, toolsVersion, ProjectCollection.GlobalProjectCollection)
Microsoft.Build.Engine.OM.UnitTests (14)
Construction\ProjectRootElement_Tests.cs (1)
1746var project = new Project(rootElement, null, null, projectCollection);
Definition\Project_Tests.cs (10)
137Project project = new Project(xml, null, null, collection); 165Project project = new Project(xml, null, null, collection); 1232Project p = new Project(GetSampleProjectRootElement(), null, ObjectModelHelpers.MSBuildDefaultToolsVersion, collection); 1262Project p = new Project(GetSampleProjectRootElement(), null, ObjectModelHelpers.MSBuildDefaultToolsVersion, collection); 1290Project p = new Project(GetSampleProjectRootElement(), globalProperties, ObjectModelHelpers.MSBuildDefaultToolsVersion, collection); 1608var project = new Project(projectRootElement, new Dictionary<string, string>(), MSBuildConstants.CurrentToolsVersion, projectCollection); 3906Project unused = new Project(pre, null, null, collection); 3947Project unused = new Project(pre, null, null, collection); 4164Project unused = new Project(pre, null, null, collection); 4210Project unused = new Project(pre2, null, null, collection);
Definition\ProjectCollection_Tests.cs (1)
1404project = new Project(pre, null, null, collection);
Instance\ProjectInstance_Tests.cs (2)
425var projBEval = new Project(projB, null, null, pc); 509var projBEval = new Project(projB, null, null, pc);
Microsoft.Build.Engine.UnitTests (4)
BackEnd\BuildManager_Tests.cs (2)
3749var mainProject = new Project(mainRootElement, new Dictionary<string, string>(), MSBuildConstants.CurrentToolsVersion, collection); 3900var project = new Project(root, new Dictionary<string, string>(), MSBuildConstants.CurrentToolsVersion,
BackEnd\MSBuild_Tests.cs (1)
2124project = new Project(mainRoot, null, null, collection);
EscapingInProjects_Tests.cs (1)
648Project project = new Project(projectElement, null, null, collection);
MSBuild.Benchmarks (3)
DefiningProjectModifiersBenchmark.cs (2)
58var project = new Project(root, null, null, pc); 88var project = new Project(mainRoot, null, null, pc);
ItemSpecModifiersCachingBenchmark.cs (1)
57var project = new Project(root, null, null, projectCollection);