1 write to ProjectFileFullPath
dotnet (1)
Commands\Run\RunCommand.cs (1)
103ProjectFileFullPath = projectFileFullPath;
11 references to ProjectFileFullPath
dotnet (11)
Commands\Run\RunCommand.cs (11)
178string.Format(CliCommandStrings.RunCommandSpecifiedFileIsNotAValidProject, ProjectFileFullPath), 218var launchSettingsPath = ReadCodeFromStdin ? null : TryFindLaunchSettings(projectOrEntryPointFilePath: ProjectFileFullPath ?? EntryPointFileFullPath!, launchProfile: LaunchProfile); 316Debug.Assert(ProjectFileFullPath is not null); 322MSBuildArgs.CloneWithExplicitArgs([ProjectFileFullPath, .. MSBuildArgs.OtherMSBuildArgs]), 394if (projectFactory is null && ProjectFileFullPath is null) 405var project = EvaluateProject(ProjectFileFullPath, projectFactory, MSBuildArgs, logger); 825Debug.Assert(ProjectFileFullPath != null); 826var projectIdentifier = RunTelemetry.GetProjectBasedIdentifier(ProjectFileFullPath, GetRepositoryRoot(), Sha256Hasher.Hash); 842var project = collection.LoadProject(ProjectFileFullPath).CreateProjectInstance(); 872var currentDir = ProjectFileFullPath != null 873? Path.GetDirectoryName(ProjectFileFullPath)