1 write to _solutionFileFullPath
dotnet (1)
Commands\Solution\Add\SolutionAddCommand.cs (1)
49_solutionFileFullPath = SlnFileFactory.GetSolutionFileFullPath(_fileOrDirectory, includeSolutionFilterFiles: true);
8 references to _solutionFileFullPath
dotnet (8)
Commands\Solution\Add\SolutionAddCommand.cs (8)
69if (_solutionFileFullPath.HasExtension(SlnfFileHelper.SlnfExtension)) 129SolutionModel solution = SlnFileFactory.CreateFromFileOrDirectory(_solutionFileFullPath); 158await serializer.SaveAsync(_solutionFileFullPath, solution, cancellationToken); 163string solutionRelativeProjectPath = Path.GetRelativePath(Path.GetDirectoryName(_solutionFileFullPath)!, fullProjectPath); 231Reporter.Output.WriteLine(CliStrings.SolutionAlreadyContainsProject, _solutionFileFullPath, solutionRelativeProjectPath); 285SolutionModel filteredSolution = SlnFileFactory.CreateFromFilteredSolutionFile(_solutionFileFullPath); 299SlnfFileHelper.SaveSolutionFilter(_solutionFileFullPath, parentSolutionPath, allProjects); 329Reporter.Output.WriteLine(CliStrings.SolutionAlreadyContainsProject, _solutionFileFullPath, parentSolutionRelativePath);