1 write to AssemblyPath
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\Solution\CompilationOutputFilePaths.cs (1)
29AssemblyPath = assemblyPath;
10 references to AssemblyPath
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\EditAndContinueWorkspaceService.cs (1)
89return new CompilationOutputFilesWithImplicitPdbPath(project.CompilationOutputInfo.AssemblyPath);
Microsoft.CodeAnalysis.Workspaces (4)
Workspace\Solution\CompilationOutputFilePaths.cs (4)
41=> AssemblyPath == other.AssemblyPath; 44=> AssemblyPath?.GetHashCode() ?? 0; 54writer.WriteString(AssemblyPath);
Microsoft.CodeAnalysis.Workspaces.MSBuild.UnitTests (2)
VisualStudioMSBuildWorkspaceTests.cs (2)
246Assert.Equal("CSharpProject.dll", Path.GetFileName(p1.CompilationOutputInfo.AssemblyPath)); 247Assert.Equal("VisualBasicProject.dll", Path.GetFileName(p2.CompilationOutputInfo.AssemblyPath));
Microsoft.VisualStudio.LanguageServices.CSharp.UnitTests (2)
ProjectSystemShim\LegacyProject\CSharpCompilerOptionsTests.cs (2)
114=> environment.Workspace.CurrentSolution.GetRequiredProject(project.Test_ProjectSystemProject.Id).CompilationOutputInfo.AssemblyPath; 147=> environment.Workspace.CurrentSolution.GetRequiredProject(project.Test_ProjectSystemProject.Id).CompilationOutputInfo.AssemblyPath;
Roslyn.VisualStudio.Next.UnitTests (1)
Services\SolutionServiceTests.cs (1)
188Assert.Equal("AssemblyPath" + version, project.CompilationOutputInfo.AssemblyPath);