12 references to Default
Microsoft.Build (5)
BackEnd\BuildManager\BuildParameters.cs (1)
217private ProjectLoadSettings _projectLoadSettings = ProjectLoadSettings.Default;
Definition\Project.cs (3)
225: this(xml, globalProperties, toolsVersion, projectCollection, ProjectLoadSettings.Default) 319: this(xmlReader, globalProperties, toolsVersion, projectCollection, ProjectLoadSettings.Default) 413: this(projectFile, globalProperties, toolsVersion, projectCollection, ProjectLoadSettings.Default)
Definition\ProjectOptions.cs (1)
41public ProjectLoadSettings LoadSettings { get; set; } = ProjectLoadSettings.Default;
Microsoft.Build.Engine.OM.UnitTests (2)
Definition\Project_Tests.cs (1)
1323Project p = new Project(GetSampleProjectRootElement(), globalProperties, ObjectModelHelpers.MSBuildDefaultToolsVersion, "ABCDEF", collection, ProjectLoadSettings.Default);
ObjectModelRemoting\RemoteProjectsProviderMock\ExporterMock.cs (1)
170public Project LoadInMemoryWithSettings(string content, ProjectLoadSettings settings = ProjectLoadSettings.Default)
Microsoft.Build.Engine.UnitTests (4)
Evaluation\Evaluator_Tests.cs (2)
4255using ProjectFromString projectFromString = new(content, globalProperties, "Fake", "FakeSubToolset", fakeProjectCollection, ProjectLoadSettings.Default); 4299using ProjectFromString projectFromString = new(content, null, "Fake", "FakeSubToolset", fakeProjectCollection, ProjectLoadSettings.Default);
Instance\ProjectInstance_Internal_Tests.cs (2)
827[InlineData(false, ProjectLoadSettings.Default)] 829[InlineData(true, ProjectLoadSettings.Default)]
Microsoft.Build.UnitTests.Shared (1)
ProjectFromString.cs (1)
31public ProjectFromString(string s, IDictionary<string, string> globalProperties, string toolsVersion, ProjectCollection collection, ProjectLoadSettings loadSettings = ProjectLoadSettings.Default)