7 references to OutputFilePath
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\Solution\ProjectState.cs (1)
640public string? OutputFilePath => this.ProjectInfo.OutputFilePath;
Microsoft.CodeAnalysis.Workspaces.MSBuild (4)
MSBuild\MSBuildProjectLoader.Worker_ResolveReferences.cs (4)
132var outputFilePath = projectInfo.OutputFilePath; 280var outputFilePath = info.OutputFilePath; 309builder.SwapMetadataReferenceForProjectReference(newProjectReference, projectReferenceInfo.OutputRefFilePath, projectReferenceInfo.OutputFilePath); 325var outputFilePath = projectReferenceInfo.OutputFilePath;
Microsoft.CodeAnalysis.Workspaces.UnitTests (2)
SolutionTests\ProjectInfoTests.cs (1)
191SolutionTestHelpers.TestProperty(instance, (old, value) => old.WithOutputFilePath(value), opt => opt.OutputFilePath, "New");
SolutionTests\SolutionTests.cs (1)
1215Assert.Equal(newInfo.OutputFilePath, newProject.OutputFilePath);