1 write to AssemblyPath
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\Solution\CompilationOutputInfo.cs (1)
32AssemblyPath = assemblyPath;
14 references to AssemblyPath
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\EditAndContinueService.cs (1)
108return new CompilationOutputFilesWithImplicitPdbPath(project.CompilationOutputInfo.AssemblyPath);
Microsoft.CodeAnalysis.Workspaces (7)
Workspace\Solution\CompilationOutputInfo.cs (7)
46return new(AssemblyPath, path); 56=> PathUtilities.IsAbsolute(GeneratedFilesOutputDirectory ?? AssemblyPath); 62=> HasEffectiveGeneratedFilesOutputDirectory ? GeneratedFilesOutputDirectory ?? PathUtilities.GetDirectoryName(AssemblyPath) : null; 68=> AssemblyPath == other.AssemblyPath && 72=> Hash.Combine(GeneratedFilesOutputDirectory, Hash.Combine(AssemblyPath, 0)); 82writer.WriteString(AssemblyPath);
Microsoft.CodeAnalysis.Workspaces.MSBuild.UnitTests (3)
NetCoreTests.cs (1)
83Assert.Equal(Path.Combine(projectDir, "obj", "Debug", "netcoreapp3.1", "Project.dll"), project.CompilationOutputInfo.AssemblyPath);
VisualStudioMSBuildWorkspaceTests.cs (2)
261Assert.Equal("CSharpProject.dll", Path.GetFileName(p1.CompilationOutputInfo.AssemblyPath)); 262Assert.Equal("VisualBasicProject.dll", Path.GetFileName(p2.CompilationOutputInfo.AssemblyPath));
Microsoft.VisualStudio.LanguageServices.UnitTests (2)
ProjectSystemShim\VisualStudioProjectTests\ProjectSystemProjectFactoryTests.vb (2)
27Assert.Equal(creationInfo.CompilationOutputAssemblyFilePath, projectInSolution.CompilationOutputInfo.AssemblyPath) 34Assert.Equal(newOutputPath, newProjectInSolution.CompilationOutputInfo.AssemblyPath)
Roslyn.VisualStudio.Next.UnitTests (1)
Services\SolutionServiceTests.cs (1)
276Assert.Equal("AssemblyPath" + version, project.CompilationOutputInfo.AssemblyPath);