1 write to ProjectFileFullPath
dotnet (1)
Commands\Run\RunCommand.cs (1)
127ProjectFileFullPath = projectFileFullPath;
16 references to ProjectFileFullPath
dotnet (16)
Commands\Run\RunCommand.cs (16)
43ProjectFileFullPath ?? EntryPointFileFullPath!; 152FacadeLogger? logger = ProjectFileFullPath is not null 158using var selector = ProjectFileFullPath is not null 159? new RunCommandSelector(ProjectFileFullPath, Interactive, MSBuildArgs, EnvironmentVariables, logger) 228string.Format(CliCommandStrings.RunCommandSpecifiedFileIsNotAValidProject, ProjectFileFullPath), 451projectOrEntryPointFilePath: ProjectFileFullPath ?? EntryPointFileFullPath!, 480Debug.Assert(ProjectFileFullPath is not null); 490? EnvironmentVariablesToMSBuild.CreatePropsFile(ProjectFileFullPath, EnvironmentVariables, intermediateOutputPath) 494var buildArgs = MSBuildArgs.CloneWithExplicitArgs([ProjectFileFullPath, .. MSBuildArgs.OtherMSBuildArgs]); 574else if (projectFactory is null && ProjectFileFullPath is null) 589project = EvaluateProject(ProjectFileFullPath, projectFactory, MSBuildArgs, logger); 1105Debug.Assert(ProjectFileFullPath != null); 1106var projectIdentifier = RunTelemetry.GetProjectBasedIdentifier(ProjectFileFullPath, GetRepositoryRoot(), Sha256Hasher.Hash); 1122var project = collection.LoadProject(ProjectFileFullPath).CreateProjectInstance(); 1152var currentDir = ProjectFileFullPath != null 1153? Path.GetDirectoryName(ProjectFileFullPath)