12 references to FindWorkspace
dotnet-format (2)
Commands\FormatCommandCommon.cs (1)
311var (isSolution, workspaceFilePath) = MSBuildWorkspaceFinder.FindWorkspace(currentDirectory, slnOrProject);
Workspaces\MSBuildWorkspaceFinder.cs (1)
30? FindWorkspace(workspacePath!) // IsNullOrEmpty is not annotated on .NET Core 2.1
dotnet-format.UnitTests (10)
MSBuild\MSBuildWorkspaceFinderTests.cs (10)
27var exception = Assert.Throws<FileNotFoundException>(() => MSBuildWorkspaceFinder.FindWorkspace(testInstance.Path)); 40var exception = Assert.Throws<FileNotFoundException>(() => MSBuildWorkspaceFinder.FindWorkspace(testInstance.Path)); 53var exception = Assert.Throws<FileNotFoundException>(() => MSBuildWorkspaceFinder.FindWorkspace(testInstance.Path)); 66var exception = Assert.Throws<FileNotFoundException>(() => MSBuildWorkspaceFinder.FindWorkspace(testInstance.Path)); 77var (isSolution, workspacePath) = MSBuildWorkspaceFinder.FindWorkspace(testInstance.Path); 91var (isSolution, workspacePath) = MSBuildWorkspaceFinder.FindWorkspace(testInstance.Path, "solution_b.sln"); 103var (isSolution, workspacePath) = MSBuildWorkspaceFinder.FindWorkspace(ProjectsPath, Path); 115var (isSolution, workspacePath) = MSBuildWorkspaceFinder.FindWorkspace(ProjectsPath, Path); 129var (isSolution, workspacePath) = MSBuildWorkspaceFinder.FindWorkspace(testInstance.Path); 143var (isSolution, workspacePath) = MSBuildWorkspaceFinder.FindWorkspace(testInstance.Path, "project_b.csproj");