20 references to Project
Microsoft.Build (2)
Definition\Project.cs (1)
396: this(projectFile, globalProperties, toolsVersion, ProjectCollection.GlobalProjectCollection)
Definition\ProjectCollection.cs (1)
1200project = new Project(fileName, globalProperties, effectiveToolsVersion, this);
Microsoft.Build.Engine.OM.UnitTests (11)
Definition\Project_Tests.cs (5)
3221var project = new Project(testFiles.ProjectFile, new Dictionary<string, string>(), MSBuildConstants.CurrentToolsVersion, projectCollection); 3251var project = new Project(testFiles.ProjectFile, new Dictionary<string, string>(), MSBuildConstants.CurrentToolsVersion, projectCollection); 3542var project = new Project(testFiles.ProjectFile, new Dictionary<string, string>(), MSBuildConstants.CurrentToolsVersion, projectCollection); 3737var project = new Project(testFiles.ProjectFile, new Dictionary<string, string>(), MSBuildConstants.CurrentToolsVersion, projectCollection); 3812var globResult = new Project(testFiles.ProjectFile, null, MSBuildConstants.CurrentToolsVersion, projectCollection).GetAllGlobs();
Definition\ProjectItem_Tests.cs (6)
1154ObjectModelHelpers.AssertItems(expectedInclude, new Project(testFiles.ProjectFile, new Dictionary<string, string>(), MSBuildConstants.CurrentToolsVersion, projectCollection).Items.ToList()); 1174ObjectModelHelpers.AssertItems(expectedInclude, new Project(testFiles.ProjectFile, new Dictionary<string, string>(), MSBuildConstants.CurrentToolsVersion, projectCollection).Items.ToList()); 2210var project = new Project(testProject.ProjectFile, new Dictionary<string, string>(), MSBuildConstants.CurrentToolsVersion, env.CreateProjectCollection().Collection); 2270var project = new Project(testProject.ProjectFile, new Dictionary<string, string>(), MSBuildConstants.CurrentToolsVersion, env.CreateProjectCollection().Collection); 3654return new Project(p, new Dictionary<string, string>(), MSBuildConstants.CurrentToolsVersion, c) 3750var project = new Project(testFiles.ProjectFile, new Dictionary<string, string>(), null, projectCollection);
Microsoft.Build.Engine.UnitTests (4)
BackEnd\BuildManager_Tests.cs (1)
3663var p2pProject = new Project(p2pProjectPath, new Dictionary<string, string>(), MSBuildConstants.CurrentToolsVersion, collection);
BackEnd\IntrinsicTask_Tests.cs (1)
3898var project = new Project(p, new Dictionary<string, string>(), MSBuildConstants.CurrentToolsVersion, c);
Evaluation\EvaluationLogging_Tests.cs (1)
87var project = new Project(projectFile, null, null, collection);
Instance\ProjectInstance_Internal_Tests.cs (1)
711(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) 981Project project = new Project(projectFileFullPath, null, null, projectCollection);