1 write to OutputFilePath
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\Solution\ProjectInfo.cs (1)
533OutputFilePath = outputFilePath;
10 references to OutputFilePath
Microsoft.CodeAnalysis.Remote.ServiceHub (3)
Host\RemoteWorkspace.SolutionCreator.cs (3)
320if (project.State.ProjectInfo.Attributes.OutputFilePath != newProjectAttributes.OutputFilePath) 322project = project.Solution.WithProjectOutputFilePath(projectId, newProjectAttributes.OutputFilePath).GetProject(projectId)!;
Microsoft.CodeAnalysis.Workspaces (7)
Serialization\SerializationExtensions.cs (3)
67if (info.FilePath == null && info.OutputFilePath == null) 81if (PathUtilities.IsAbsolute(info.OutputFilePath)) 84builder.Add(PathUtilities.GetDirectoryName(info.OutputFilePath)!);
Workspace\Solution\ProjectInfo.cs (4)
63public string? OutputFilePath => Attributes.OutputFilePath; 565var newOutputPath = outputPath.HasValue ? outputPath.Value : OutputFilePath; 580newOutputPath == OutputFilePath && 624writer.WriteString(OutputFilePath);