Skip to content

Commit ee32c96

Browse files
authored
Merge pull request #732 from rene-descartes2021/master
Cache Projects TargetPath from OmniSharp-Roslyn
2 parents e3248fe + b00c4d5 commit ee32c96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autoload/OmniSharp/actions/workspace.vim

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function! s:ProjectsRH(job, response) abort
2323
" are no projects and the job can be marked as ready
2424
let projects = get(get(a:response.Body, 'MsBuild', {}), 'Projects', {})
2525
let a:job.projects = map(projects,
26-
\ {_,project -> {"name": project.AssemblyName, "path": project.Path}})
26+
\ {_,project -> {"name": project.AssemblyName, "path": project.Path, "target": project.TargetPath}})
2727
if get(a:job, 'projects_total', 0) > 0
2828
call OmniSharp#log#Log(a:job, 'Workspace complete: ' . a:job.projects_total . ' project(s)')
2929
else

0 commit comments

Comments
 (0)