File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/PowerShellEditorServices.Protocol Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ class ScriptFileMarkerRequestParams
27
27
/// <summary>
28
28
/// Path of the file for which the markers are requested.
29
29
/// </summary>
30
- public string filePath ;
30
+ public string fileUri ;
31
31
32
32
/// <summary>
33
33
/// Settings to be provided to ScriptAnalyzer to get the markers.
Original file line number Diff line number Diff line change @@ -241,7 +241,7 @@ private async Task HandleScriptFileMarkersRequest(
241
241
RequestContext < ScriptFileMarkerRequestResultParams > requestContext )
242
242
{
243
243
var markers = await editorSession . AnalysisService . GetSemanticMarkersAsync (
244
- editorSession . Workspace . GetFile ( requestParams . filePath ) ,
244
+ editorSession . Workspace . GetFile ( requestParams . fileUri ) ,
245
245
editorSession . AnalysisService . GetPSSASettingsHashtable ( requestParams . settings ) ) ;
246
246
await requestContext . SendResult ( new ScriptFileMarkerRequestResultParams {
247
247
markers = markers
You can’t perform that action at this time.
0 commit comments