We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e3248fe + b00c4d5 commit ee32c96Copy full SHA for ee32c96
autoload/OmniSharp/actions/workspace.vim
@@ -23,7 +23,7 @@ function! s:ProjectsRH(job, response) abort
23
" are no projects and the job can be marked as ready
24
let projects = get(get(a:response.Body, 'MsBuild', {}), 'Projects', {})
25
let a:job.projects = map(projects,
26
- \ {_,project -> {"name": project.AssemblyName, "path": project.Path}})
+ \ {_,project -> {"name": project.AssemblyName, "path": project.Path, "target": project.TargetPath}})
27
if get(a:job, 'projects_total', 0) > 0
28
call OmniSharp#log#Log(a:job, 'Workspace complete: ' . a:job.projects_total . ' project(s)')
29
else
0 commit comments