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!; 153FacadeLogger? logger = ProjectFileFullPath is not null 159using var selector = ProjectFileFullPath is not null 160? new RunCommandSelector(ProjectFileFullPath, Interactive, MSBuildArgs, EnvironmentVariables, logger) 229string.Format(CliCommandStrings.RunCommandSpecifiedFileIsNotAValidProject, ProjectFileFullPath), 452projectOrEntryPointFilePath: ProjectFileFullPath ?? EntryPointFileFullPath!, 481Debug.Assert(ProjectFileFullPath is not null); 491? EnvironmentVariablesToMSBuild.CreatePropsFile(ProjectFileFullPath, EnvironmentVariables, intermediateOutputPath) 495var buildArgs = MSBuildArgs.CloneWithExplicitArgs([ProjectFileFullPath, .. MSBuildArgs.OtherMSBuildArgs]); 575else if (projectFactory is null && ProjectFileFullPath is null) 590project = EvaluateProject(ProjectFileFullPath, projectFactory, MSBuildArgs, logger); 1106Debug.Assert(ProjectFileFullPath != null); 1107var projectIdentifier = RunTelemetry.GetProjectBasedIdentifier(ProjectFileFullPath, GetRepositoryRoot(), Sha256Hasher.Hash); 1123var project = collection.LoadProject(ProjectFileFullPath).CreateProjectInstance(); 1153var currentDir = ProjectFileFullPath != null 1154? Path.GetDirectoryName(ProjectFileFullPath)