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