1 write to ProjectPath
dotnet (1)
Commands\New\MSBuildEvaluation\MSBuildEvaluationResult.cs (1)
22
ProjectPath
= projectPath;
8 references to ProjectPath
dotnet (8)
Commands\New\MSBuildEvaluation\ProjectCapabilityConstraint.cs (7)
112
string foundProjects = string.Join("; ", (_evaluationResult as MultipleProjectsEvaluationResult)?.ProjectPaths ?? [_evaluationResult.
ProjectPath
]);
121
_logger.LogDebug("The project is not restored. Run 'dotnet restore {0}' to restore the project.", _evaluationResult.
ProjectPath
);
124
_evaluationResult.ErrorMessage ?? string.Format(CliCommandStrings.MSBuildEvaluationResult_Error_NotRestored, _evaluationResult.
ProjectPath
),
125
string.Format(CliCommandStrings.ProjectCapabilityConstraint_Restricted_NotRestored_CTA, _evaluationResult.
ProjectPath
));
134
_logger.LogDebug("The project {0} is not an SDK style project, and is not supported for evaluation.", _evaluationResult.
ProjectPath
);
135
return TemplateConstraintResult.CreateRestricted(this, string.Format(CliCommandStrings.ProjectCapabilityConstraint_Restricted_NonSDKStyle_Message, _evaluationResult.
ProjectPath
));
146
string.Format(CliCommandStrings.ProjectCapabilityConstraint_Restricted_Message, configuredCapabiltiesExpression, _evaluationResult.
ProjectPath
));
Commands\New\MSBuildEvaluation\ProjectContextSymbolSource.cs (1)
46
settings.Host.Logger.LogDebug("The project {0} is not an SDK style project, and is not supported for evaluation.", evaluationResult.
ProjectPath
);