13 references to CouldNotFindProjectOrDirectory
dotnet (5)
Commands\Reference\Add\ReferenceAddCommand.cs (1)
34
CliStrings.
CouldNotFindProjectOrDirectory
, true);
Commands\Run\VirtualProjectBuildingCommand.cs (1)
1884
throw new GracefulException(CliStrings.
CouldNotFindProjectOrDirectory
, resolvedProjectPath);
Commands\Solution\Add\SolutionAddCommand.cs (1)
59
PathUtility.EnsureAllPathsExist(_projects, CliStrings.
CouldNotFindProjectOrDirectory
, true);
MsbuildProject.cs (2)
89
throw new GracefulException(CliStrings.
CouldNotFindProjectOrDirectory
, projectDirectory);
94
throw new GracefulException(CliStrings.
CouldNotFindProjectOrDirectory
, projectDirectory);
dotnet.Tests (8)
CommandTests\Reference\Add\GivenDotnetAddReference.cs (3)
135
cmd.StdErr.Should().Be(string.Format(CliStrings.
CouldNotFindProjectOrDirectory
, projName));
565
cmd.StdErr.Should().Be(string.Format(CliStrings.
CouldNotFindProjectOrDirectory
, "IDoNotExist.csproj"));
580
cmd.StdErr.Should().Be(string.Format(CliStrings.
CouldNotFindProjectOrDirectory
, "IDoNotExist.csproj"));
CommandTests\Reference\List\GivenDotnetListReference.cs (1)
90
cmd.StdErr.Should().Be(string.Format(CliStrings.
CouldNotFindProjectOrDirectory
, projName));
CommandTests\Reference\Remove\GivenDotnetRemoveP2P.cs (1)
180
cmd.StdErr.Should().Be(string.Format(CliStrings.
CouldNotFindProjectOrDirectory
, projName));
CommandTests\Run\RunFileTests.cs (2)
2158
string.Format(CliStrings.
CouldNotFindProjectOrDirectory
, Path.Join(testInstance.Path, "wrong.csproj"))));
2170
string.Format(CliStrings.
CouldNotFindProjectOrDirectory
, Path.Join(testInstance.Path, "dir/"))));
CommandTests\Solution\Add\GivenDotnetSlnAdd.cs (1)
733
cmd.StdErr.Should().Be(string.Format(CliStrings.
CouldNotFindProjectOrDirectory
, "idonotexist.csproj"));