7 references to OutputRefFilePath
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\Solution\ProjectState.cs (1)
643public string? OutputRefFilePath => this.ProjectInfo.OutputRefFilePath;
Microsoft.CodeAnalysis.Workspaces.MSBuild (4)
MSBuild\MSBuildProjectLoader.Worker_ResolveReferences.cs (4)
133var outputRefFilePath = projectInfo.OutputRefFilePath; 281var outputRefFilePath = info.OutputRefFilePath; 309builder.SwapMetadataReferenceForProjectReference(newProjectReference, projectReferenceInfo.OutputRefFilePath, projectReferenceInfo.OutputFilePath); 319var outputRefFilePath = projectReferenceInfo.OutputRefFilePath;
Microsoft.CodeAnalysis.Workspaces.UnitTests (2)
SolutionTests\ProjectInfoTests.cs (1)
192SolutionTestHelpers.TestProperty(instance, (old, value) => old.WithOutputRefFilePath(value), opt => opt.OutputRefFilePath, "New");
SolutionTests\SolutionTests.cs (1)
1220Assert.Equal(newInfo.OutputRefFilePath, newProject.OutputRefFilePath);