1 write to ProjectFileFullPath
dotnet (1)
Commands\Run\RunCommand.cs (1)
128
ProjectFileFullPath
= projectFileFullPath;
16 references to ProjectFileFullPath
dotnet (16)
Commands\Run\RunCommand.cs (16)
44
ProjectFileFullPath
?? EntryPointFileFullPath!;
148
FacadeLogger? logger =
ProjectFileFullPath
is not null
154
using var selector =
ProjectFileFullPath
is not null
155
? new RunCommandSelector(
ProjectFileFullPath
, Interactive, MSBuildArgs, EnvironmentVariables, commandName: "dotnet run", logger)
227
string.Format(CliCommandStrings.RunCommandSpecifiedFileIsNotAValidProject,
ProjectFileFullPath
),
418
ReadCodeFromStdin ? null :
ProjectFileFullPath
?? EntryPointFileFullPath!,
436
Debug.Assert(
ProjectFileFullPath
is not null);
446
? EnvironmentVariablesToMSBuild.CreatePropsFile(
ProjectFileFullPath
, EnvironmentVariables, "dotnet-run-env.props", intermediateOutputPath)
450
var buildArgs = MSBuildArgs.CloneWithExplicitArgs([
ProjectFileFullPath
, .. MSBuildArgs.OtherMSBuildArgs]);
531
else if (projectFactory is null &&
ProjectFileFullPath
is null)
548
project = EvaluateProject(
ProjectFileFullPath
, projectFactory, MSBuildArgs, logger);
1084
Debug.Assert(
ProjectFileFullPath
!= null);
1085
var projectIdentifier = RunTelemetry.GetProjectBasedIdentifier(
ProjectFileFullPath
, GetRepositoryRoot(), Sha256Hasher.Hash);
1101
var project = collection.LoadProject(
ProjectFileFullPath
).CreateProjectInstance();
1131
var currentDir =
ProjectFileFullPath
!= null
1132
? Path.GetDirectoryName(
ProjectFileFullPath
)