9 references to NoProjectFileFound
aspire (4)
Commands\UpdateCommand.cs (1)
425
if (string.Equals(ex.Message, ErrorStrings.
NoProjectFileFound
, StringComparisons.CliInputOrOutput))
Projects\ProjectLocator.cs (3)
956
throw new ProjectLocatorException(ErrorStrings.
NoProjectFileFound
, ProjectLocatorFailureReason.UnsupportedProjects);
1111
throw new ProjectLocatorException(ErrorStrings.
NoProjectFileFound
, ProjectLocatorFailureReason.UnsupportedProjects);
1115
throw new ProjectLocatorException(ErrorStrings.
NoProjectFileFound
, ProjectLocatorFailureReason.NoProjectFileFound);
Aspire.Cli.Tests (5)
Commands\UpdateCommandTests.cs (3)
262
throw new ProjectLocatorException(ErrorStrings.
NoProjectFileFound
, ProjectLocatorFailureReason.NoProjectFileFound);
1327
throw new ProjectLocatorException(ErrorStrings.
NoProjectFileFound
, ProjectLocatorFailureReason.NoProjectFileFound);
1417
throw new ProjectLocatorException(ErrorStrings.
NoProjectFileFound
, ProjectLocatorFailureReason.NoProjectFileFound);
Projects\ProjectLocatorTests.cs (2)
949
var exception = new ProjectLocatorException(ErrorStrings.
NoProjectFileFound
, ProjectLocatorFailureReason.NoProjectFileFound);
1375
Assert.Equal(ErrorStrings.
NoProjectFileFound
, ex.Message);