6 references to OutputFilePath
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\Solution\ProjectState.cs (1)
538public string? OutputFilePath => this.ProjectInfo.OutputFilePath;
Microsoft.CodeAnalysis.Workspaces.MSBuild (4)
MSBuild\MSBuildProjectLoader.Worker_ResolveReferences.cs (4)
132var outputFilePath = projectInfo.OutputFilePath; 271var outputFilePath = info.OutputFilePath; 300builder.SwapMetadataReferenceForProjectReference(newProjectReference, projectReferenceInfo.OutputRefFilePath, projectReferenceInfo.OutputFilePath); 316var outputFilePath = projectReferenceInfo.OutputFilePath;
Microsoft.CodeAnalysis.Workspaces.UnitTests (1)
SolutionTests\ProjectInfoTests.cs (1)
189SolutionTestHelpers.TestProperty(instance, (old, value) => old.WithOutputFilePath(value), opt => opt.OutputFilePath, "New");