1 write to FilePath
Microsoft.CodeAnalysis.Workspaces.MSBuild (1)
src\Workspaces\MSBuild\BuildHost\Rpc\Contracts\ProjectFileInfo.cs (1)
156
FilePath
= filePath,
13 references to FilePath
Microsoft.CodeAnalysis.LanguageServer (6)
HostWorkspace\LoadedProject.cs (4)
122
Contract.ThrowIfFalse(newProjectInfo.
FilePath
== _mostRecentFileInfo.
FilePath
);
132
: Path.GetFileNameWithoutExtension(newProjectInfo.
FilePath
) + targetFrameworkSuffix;
133
var projectFullPathWithTargetFramework = newProjectInfo.
FilePath
+ targetFrameworkSuffix;
HostWorkspace\ProjectDependencyHelper.cs (2)
57
logger.LogWarning(string.Format(LanguageServerResources.Project_0_has_unresolved_dependencies, projectFileInfo.
FilePath
));
99
var message = string.Format(LanguageServerResources.Project_0_has_unresolved_dependencies, projectFileInfo.
FilePath
)
Microsoft.CodeAnalysis.Workspaces.MSBuild (7)
MSBuild\MSBuildProjectLoader.Worker.cs (3)
239
string.Format(WorkspaceMSBuildResources.Found_project_with_the_same_file_path_and_output_path_as_another_project_0, projectFileInfo.
FilePath
));
241
projectId = ProjectId.CreateNewId(debugName: projectFileInfo.
FilePath
);
270
var projectPath = projectFileInfo.
FilePath
;
MSBuild\MSBuildProjectLoader.Worker_ResolveReferences.cs (1)
197
var projectDirectory = Path.GetDirectoryName(projectFileInfo.
FilePath
);
MSBuild\ProjectMap.cs (1)
144
var projectPath = projectFileInfo.
FilePath
;
src\Workspaces\MSBuild\BuildHost\Rpc\Contracts\ProjectFileInfo.cs (2)
148
?
FilePath
?? string.Empty
149
: $"{
FilePath
} ({TargetFramework})";