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