44 references to ProjectEvaluationStage
dotnet (4)
Commands\Reference\List\ReferenceListCommand.cs (1)
57
new ProjectOptions { EvaluationStage =
ProjectEvaluationStage
.Items });
Commands\Solution\Add\SolutionAddCommand.cs (1)
184
new ProjectOptions { EvaluationStage =
ProjectEvaluationStage
.Items });
MsbuildProject.cs (1)
202
EvaluationStage =
ProjectEvaluationStage
.Properties,
ReleasePropertyProjectLocator.cs (1)
255
EvaluationStage =
ProjectEvaluationStage
.Properties,
dotnet-aot (1)
src\sdk\src\Cli\dotnet\MsbuildProject.cs (1)
202
EvaluationStage =
ProjectEvaluationStage
.Properties,
Microsoft.Build (35)
BackEnd\BuildManager\BuildRequestData.cs (1)
63
if (projectInstance.EvaluationStage != Evaluation.
ProjectEvaluationStage
.Full)
Definition\Project.cs (1)
563
if (options.EvaluationStage !=
ProjectEvaluationStage
.Full)
Definition\ProjectOptions.cs (7)
60
/// The <see cref="
ProjectEvaluationStage
"/> controlling how far evaluation should proceed.
61
/// Defaults to <see cref="
ProjectEvaluationStage
.Full"/> (a complete evaluation).
62
/// A non-<see cref="
ProjectEvaluationStage
.Full"/> (partial) stage is only honored when creating a
67
public
ProjectEvaluationStage
EvaluationStage
75
if (!Enum.IsDefined(typeof(
ProjectEvaluationStage
), value))
84
private
ProjectEvaluationStage
_evaluationStage =
ProjectEvaluationStage
.Full;
Evaluation\Evaluator.cs (9)
143
/// How far evaluation should proceed. <see cref="
ProjectEvaluationStage
.Full"/> runs every pass.
145
private readonly
ProjectEvaluationStage
_evaluationStage;
232
ProjectEvaluationStage
evaluationStage)
335
ProjectEvaluationStage
evaluationStage =
ProjectEvaluationStage
.Full)
698
if (_evaluationStage <=
ProjectEvaluationStage
.Properties)
719
if (_evaluationStage <=
ProjectEvaluationStage
.ItemDefinitions)
772
if (_evaluationStage <=
ProjectEvaluationStage
.Items)
794
if (_evaluationStage <=
ProjectEvaluationStage
.UsingTasks)
Instance\ProjectInstance.cs (17)
199
/// <see cref="
ProjectEvaluationStage
.Full"/>. A partial value means later-pass state
202
private
ProjectEvaluationStage
_evaluationStage =
ProjectEvaluationStage
.Full;
311
ProjectEvaluationStage
evaluationStage =
ProjectEvaluationStage
.Full)
555
ProjectEvaluationStage
evaluationStage =
ProjectEvaluationStage
.Full)
1190
VerifyThrowEvaluationStageReached(
ProjectEvaluationStage
.Items, nameof(Items));
1232
/// When this is not <see cref="
ProjectEvaluationStage
.Full"/>, the instance is the result of a
1236
public
ProjectEvaluationStage
EvaluationStage
1246
private void VerifyThrowEvaluationStageReached(
ProjectEvaluationStage
requiredStage, string memberName)
1285
VerifyThrowEvaluationStageReached(
ProjectEvaluationStage
.ItemDefinitions, nameof(ItemDefinitions));
1313
VerifyThrowEvaluationStageReached(
ProjectEvaluationStage
.Full, nameof(DefaultTargets));
1344
VerifyThrowEvaluationStageReached(
ProjectEvaluationStage
.Full, nameof(Targets));
2133
VerifyThrowEvaluationStageReached(
ProjectEvaluationStage
.Items, nameof(GetItems));
3256
ProjectEvaluationStage
evaluationStage =
ProjectEvaluationStage
.Full)
MSBuild (4)
XMake.cs (4)
1063
ProjectEvaluationStage
evaluationStage =
1065
? (getItem.Length == 0 ?
ProjectEvaluationStage
.Properties :
ProjectEvaluationStage
.Items)
1066
:
ProjectEvaluationStage
.Full;