12 references to CompilationOutputInfo
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (1)
SolutionCrawler\WorkCoordinatorTests.cs (1)
434var newSolution = workspace.CurrentSolution.WithProjectCompilationOutputInfo(project.Id, new CompilationOutputInfo(assemblyPath: "/newPath"));
Microsoft.CodeAnalysis.Workspaces (3)
Workspace\CommandLineProject.cs (1)
181compilationOutputFilePaths: new CompilationOutputInfo(commandLineArguments.OutputFileName != null ? commandLineArguments.GetOutputFilePath(commandLineArguments.OutputFileName) : null),
Workspace\Solution\CompilationOutputFilePaths.cs (2)
35=> new(assemblyPath: path); 60return new CompilationOutputInfo(assemblyPath);
Microsoft.CodeAnalysis.Workspaces.MSBuild (3)
MSBuild\MSBuildProjectLoader.Worker.cs (3)
312compilationOutputFilePaths: new CompilationOutputInfo(projectFileInfo.IntermediateOutputFilePath), 380compilationOutputFilePaths: new CompilationOutputInfo(projectFileInfo.IntermediateOutputFilePath), 396.WithCompilationOutputInfo(new CompilationOutputInfo(projectFileInfo.OutputFilePath));
Microsoft.CodeAnalysis.Workspaces.UnitTests (4)
SolutionTests\ProjectInfoTests.cs (1)
191SolutionTestHelpers.TestProperty(instance, (old, value) => old.WithCompilationOutputInfo(value), opt => opt.CompilationOutputInfo, new CompilationOutputInfo("NewPath"));
SolutionTests\SolutionTests.cs (3)
1044new CompilationOutputInfo(path), 1047Assert.Throws<ArgumentNullException>("projectId", () => solution.WithProjectCompilationOutputInfo(null!, new CompilationOutputInfo("x.dll"))); 1048Assert.Throws<InvalidOperationException>(() => solution.WithProjectCompilationOutputInfo(ProjectId.CreateNewId(), new CompilationOutputInfo("x.dll")));
Roslyn.VisualStudio.Next.UnitTests (1)
Services\SolutionServiceTests.cs (1)
173.WithProjectCompilationOutputInfo(projectId, new CompilationOutputInfo("AssemblyPath" + version))