From 3d3722179d3d3711bba8d50cf0804f49c8a8a613 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20K=C3=B6plinger?= Date: Wed, 18 Mar 2015 21:22:22 +0100 Subject: [PATCH] dir.targets: correctly enclose 'Exists' condition in single quotes According to MSDN (http://msdn.microsoft.com/en-us/library/7szfhaft.aspx), the single quotes can be left off for "simple alphanumeric strings or boolean values". This is not the case here (it is a property), so we should use single quotes. Note that MSBuild ignores this, but it results in a parser error on Mono's xbuild. --- dir.targets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dir.targets b/dir.targets index 99bf2b1913a..8643a272855 100644 --- a/dir.targets +++ b/dir.targets @@ -49,7 +49,7 @@ + Condition="!Exists('$(NuGetToolPath)')" />