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), 452projectOrEntryPointFilePath: ProjectFileFullPath ?? EntryPointFileFullPath!, 481Debug.Assert(ProjectFileFullPath is not null); 491? EnvironmentVariablesToMSBuild.CreatePropsFile(ProjectFileFullPath, EnvironmentVariables, intermediateOutputPath) 495var buildArgs = MSBuildArgs.CloneWithExplicitArgs([ProjectFileFullPath, .. MSBuildArgs.OtherMSBuildArgs]); 576else if (projectFactory is null && ProjectFileFullPath is null) 592project = EvaluateProject(ProjectFileFullPath, projectFactory, MSBuildArgs, logger); 1174Debug.Assert(ProjectFileFullPath != null); 1175var projectIdentifier = RunTelemetry.GetProjectBasedIdentifier(ProjectFileFullPath, GetRepositoryRoot(), Sha256Hasher.Hash); 1191var project = collection.LoadProject(ProjectFileFullPath).CreateProjectInstance(); 1221var currentDir = ProjectFileFullPath != null 1222? Path.GetDirectoryName(ProjectFileFullPath)