1 write to SelectedSolutionFile
aspire (1)
Commands\InitCommand.cs (1)
165
initContext.
SelectedSolutionFile
= await _solutionLocator.FindSolutionFileAsync(_executionContext.WorkingDirectory, cancellationToken);
5 references to SelectedSolutionFile
aspire (5)
Commands\InitCommand.cs (5)
169
if (initContext.
SelectedSolutionFile
is not null)
172
InteractionService.DisplayMessage(KnownEmojis.Information, string.Format(CultureInfo.CurrentCulture, InitCommandStrings.SolutionDetected, initContext.
SelectedSolutionFile
.Name));
191
var solutionFile = initContext.
SelectedSolutionFile
!;
842
public string SolutionName => Path.GetFileNameWithoutExtension(
SelectedSolutionFile
!.Name);
847
public DirectoryInfo SolutionDirectory =>
SelectedSolutionFile
!.Directory!;