24 references to ProjectInstanceSettings
Microsoft.Build (24)
Definition\Project.cs (8)
1369
return CreateProjectInstance(
ProjectInstanceSettings
.None, null);
1381
public ProjectInstance CreateProjectInstance(
ProjectInstanceSettings
settings)
1387
/// See <see cref="CreateProjectInstance(
ProjectInstanceSettings
)"/>.
1392
public ProjectInstance CreateProjectInstance(
ProjectInstanceSettings
settings, EvaluationContext evaluationContext)
3277
/// See <see cref="ProjectLink.CreateProjectInstance(
ProjectInstanceSettings
, EvaluationContext)"/>.
3282
public override ProjectInstance CreateProjectInstance(
ProjectInstanceSettings
settings, EvaluationContext evaluationContext)
3350
ProjectInstance instance = CreateProjectInstance(LoggingService,
ProjectInstanceSettings
.None, evaluationContext);
3711
ProjectInstanceSettings
settings,
Graph\ProjectGraph.cs (1)
48
/// <see cref="
ProjectInstanceSettings
.Immutable" />, the resulting ProjectGraph
Instance\ProjectInstance.cs (13)
376
public ProjectInstance(Project project,
ProjectInstanceSettings
settings)
387
var immutable = (settings &
ProjectInstanceSettings
.Immutable) ==
ProjectInstanceSettings
.Immutable;
391
var keepEvaluationCache = (settings &
ProjectInstanceSettings
.ImmutableWithFastItemLookup) ==
ProjectInstanceSettings
.ImmutableWithFastItemLookup;
673
internal ProjectInstance(Evaluation.Project.Data data, string directory, string fullPath, HostServices hostServices, PropertyDictionary<ProjectPropertyInstance> environmentVariableProperties,
ProjectInstanceSettings
settings)
685
var immutable = (settings &
ProjectInstanceSettings
.Immutable) ==
ProjectInstanceSettings
.Immutable;
690
var keepEvaluationCache = (settings &
ProjectInstanceSettings
.ImmutableWithFastItemLookup) ==
ProjectInstanceSettings
.ImmutableWithFastItemLookup;
955
/// <param name="settings">The <see cref="
ProjectInstanceSettings
"/> to use.</param>
956
public static ProjectInstance FromImmutableProjectSource(Project project,
ProjectInstanceSettings
settings)
958
bool fastItemLookupNeeded = settings.HasFlag(
ProjectInstanceSettings
.ImmutableWithFastItemLookup);
ObjectModelRemoting\DefinitionObjectsLinks\ProjectLink.cs (2)
232
/// Facilitate remoting the <see cref="Project.CreateProjectInstance(
ProjectInstanceSettings
, EvaluationContext)"/>.
234
public abstract ProjectInstance CreateProjectInstance(
ProjectInstanceSettings
settings, EvaluationContext evaluationContext);