9 references to NoProjectFileFound
aspire (4)
Commands\UpdateCommand.cs (1)
425
if (string.Equals(ex.Message, ErrorStrings.
NoProjectFileFound
, StringComparisons.CliInputOrOutput))
Projects\ProjectLocator.cs (3)
950
throw new ProjectLocatorException(ErrorStrings.
NoProjectFileFound
, ProjectLocatorFailureReason.UnsupportedProjects);
1106
throw new ProjectLocatorException(ErrorStrings.
NoProjectFileFound
, ProjectLocatorFailureReason.UnsupportedProjects);
1110
throw new ProjectLocatorException(ErrorStrings.
NoProjectFileFound
, ProjectLocatorFailureReason.NoProjectFileFound);
Aspire.Cli.Tests (5)
Commands\UpdateCommandTests.cs (3)
266
throw new ProjectLocatorException(ErrorStrings.
NoProjectFileFound
, ProjectLocatorFailureReason.NoProjectFileFound);
1331
throw new ProjectLocatorException(ErrorStrings.
NoProjectFileFound
, ProjectLocatorFailureReason.NoProjectFileFound);
1421
throw new ProjectLocatorException(ErrorStrings.
NoProjectFileFound
, ProjectLocatorFailureReason.NoProjectFileFound);
Projects\ProjectLocatorTests.cs (2)
976
var exception = new ProjectLocatorException(ErrorStrings.
NoProjectFileFound
, ProjectLocatorFailureReason.NoProjectFileFound);
1402
Assert.Equal(ErrorStrings.
NoProjectFileFound
, ex.Message);