20 references to Project
Microsoft.Build (2)
Definition\Project.cs (1)
396: this(projectFile, globalProperties, toolsVersion, ProjectCollection.GlobalProjectCollection)
Definition\ProjectCollection.cs (1)
1215project = new Project(fileName, globalProperties, effectiveToolsVersion, this);
Microsoft.Build.Engine.OM.UnitTests (11)
Definition\Project_Tests.cs (5)
3254var project = new Project(testFiles.ProjectFile, new Dictionary<string, string>(), MSBuildConstants.CurrentToolsVersion, projectCollection); 3284var project = new Project(testFiles.ProjectFile, new Dictionary<string, string>(), MSBuildConstants.CurrentToolsVersion, projectCollection); 3575var project = new Project(testFiles.ProjectFile, new Dictionary<string, string>(), MSBuildConstants.CurrentToolsVersion, projectCollection); 3770var project = new Project(testFiles.ProjectFile, new Dictionary<string, string>(), MSBuildConstants.CurrentToolsVersion, projectCollection); 3845var globResult = new Project(testFiles.ProjectFile, null, MSBuildConstants.CurrentToolsVersion, projectCollection).GetAllGlobs();
Definition\ProjectItem_Tests.cs (6)
1155ObjectModelHelpers.AssertItems(expectedInclude, new Project(testFiles.ProjectFile, new Dictionary<string, string>(), MSBuildConstants.CurrentToolsVersion, projectCollection).Items.ToList()); 1175ObjectModelHelpers.AssertItems(expectedInclude, new Project(testFiles.ProjectFile, new Dictionary<string, string>(), MSBuildConstants.CurrentToolsVersion, projectCollection).Items.ToList()); 2216var project = new Project(testProject.ProjectFile, new Dictionary<string, string>(), MSBuildConstants.CurrentToolsVersion, env.CreateProjectCollection().Collection); 2276var project = new Project(testProject.ProjectFile, new Dictionary<string, string>(), MSBuildConstants.CurrentToolsVersion, env.CreateProjectCollection().Collection); 3660return new Project(p, new Dictionary<string, string>(), MSBuildConstants.CurrentToolsVersion, c) 3756var project = new Project(testFiles.ProjectFile, new Dictionary<string, string>(), null, projectCollection);
Microsoft.Build.Engine.UnitTests (4)
BackEnd\BuildManager_Tests.cs (1)
3730var p2pProject = new Project(p2pProjectPath, new Dictionary<string, string>(), MSBuildConstants.CurrentToolsVersion, collection);
BackEnd\IntrinsicTask_Tests.cs (1)
3988var project = new Project(p, new Dictionary<string, string>(), MSBuildConstants.CurrentToolsVersion, c);
Evaluation\EvaluationLogging_Tests.cs (1)
88var project = new Project(projectFile, null, null, collection);
Instance\ProjectInstance_Internal_Tests.cs (1)
721(f, xml, c) => new Project(f, null, null, c).CreateProjectInstance()
Microsoft.Build.UnitTests.Shared (3)
EngineTestEnvironment.cs (1)
218Project project = new Project(ProjectFile, globalProperties, toolsVersion, projectCollection);
ObjectModelHelpers.cs (2)
125return new Project(p, new Dictionary<string, string>(), MSBuildConstants.CurrentToolsVersion, c) 988Project project = new Project(projectFileFullPath, null, null, projectCollection);