From 8d995e462eb81bd8db7ae08a16a5be9332cd9f6a Mon Sep 17 00:00:00 2001 From: Kirill Osenkov Date: Fri, 2 Jun 2017 16:53:42 -0700 Subject: [PATCH] Add a preventative workaround for an incoming MSBuild regression (#2547) MSBuild 15.3 will be briefly broken, see details here: https://github.com/Microsoft/msbuild/issues/2165 It is not yet public and will be fixed soon, but we're already starting to hit the problem as we upgrade. To temporarily work around this until everybody upgrades the MSBuild that fixes the issue this is a simple workaround with no other side effects. --- main/MonoDevelop.props | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main/MonoDevelop.props b/main/MonoDevelop.props index 0bbf46f27ca..ba2e5b5465a 100644 --- a/main/MonoDevelop.props +++ b/main/MonoDevelop.props @@ -5,6 +5,9 @@ $(MonoDevelopRootDir)\msbuild\MonoDevelop.BeforeCommon.targets $(MonoDevelopRootDir)\msbuild\MonoDevelop.AfterCommon.targets $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + false