12 references to Default
Microsoft.Build (5)
BackEnd\BuildManager\BuildParameters.cs (1)
217
private 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)
41
public ProjectLoadSettings LoadSettings { get; set; } = ProjectLoadSettings.
Default
;
Microsoft.Build.Engine.OM.UnitTests (2)
Definition\Project_Tests.cs (1)
1323
Project p = new Project(GetSampleProjectRootElement(), globalProperties, ObjectModelHelpers.MSBuildDefaultToolsVersion, "ABCDEF", collection, ProjectLoadSettings.
Default
);
ObjectModelRemoting\RemoteProjectsProviderMock\ExporterMock.cs (1)
170
public Project LoadInMemoryWithSettings(string content, ProjectLoadSettings settings = ProjectLoadSettings.
Default
)
Microsoft.Build.Engine.UnitTests (4)
Evaluation\Evaluator_Tests.cs (2)
4255
using ProjectFromString projectFromString = new(content, globalProperties, "Fake", "FakeSubToolset", fakeProjectCollection, ProjectLoadSettings.
Default
);
4299
using 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)
31
public ProjectFromString(string s, IDictionary<string, string> globalProperties, string toolsVersion, ProjectCollection collection, ProjectLoadSettings loadSettings = ProjectLoadSettings.
Default
)