From 250c4e33196f98fdd2b7fe28183689c12801cd57 Mon Sep 17 00:00:00 2001 From: John Varga Date: Tue, 16 Jun 2020 12:55:45 -0700 Subject: [PATCH] ensure solution filenames are quoted to handle spaces in solution filenames --- compiler/msbuild.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/msbuild.vim b/compiler/msbuild.vim index 81ae8e0..7ea5676 100644 --- a/compiler/msbuild.vim +++ b/compiler/msbuild.vim @@ -30,7 +30,7 @@ endif execute 'CompilerSet makeprg=' . cs#get_net_compiler("msbuild") . "\\ " \ . "/nologo\\ /clp:Verbosity=quiet\\ /property:GenerateFullPaths=true\\ " - \ . s:build_file + \ . "\"" . s:build_file . "\""