Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKirill Osenkov <KirillOsenkov@users.noreply.github.com>2017-06-03 02:53:42 +0300
committerGitHub <noreply@github.com>2017-06-03 02:53:42 +0300
commit8d995e462eb81bd8db7ae08a16a5be9332cd9f6a (patch)
tree455fb10b3cc8b82dc935bafc79b65eea22564542 /main/MonoDevelop.props
parent27bfe13efb9a9243ced2376605dc7e9aea28a08f (diff)
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.
Diffstat (limited to 'main/MonoDevelop.props')
-rw-r--r--main/MonoDevelop.props3
1 files changed, 3 insertions, 0 deletions
diff --git a/main/MonoDevelop.props b/main/MonoDevelop.props
index 0bbf46f27c..ba2e5b5465 100644
--- a/main/MonoDevelop.props
+++ b/main/MonoDevelop.props
@@ -5,6 +5,9 @@
<CustomBeforeMicrosoftCommonTargets>$(MonoDevelopRootDir)\msbuild\MonoDevelop.BeforeCommon.targets</CustomBeforeMicrosoftCommonTargets>
<CustomAfterMicrosoftCommonTargets>$(MonoDevelopRootDir)\msbuild\MonoDevelop.AfterCommon.targets</CustomAfterMicrosoftCommonTargets>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
+
+ <!-- temporary workaround for https://github.com/Microsoft/msbuild/issues/2165 -->
+ <CompileUsingReferenceAssemblies>false</CompileUsingReferenceAssemblies>
</PropertyGroup>
<!-- import common targets if they were not imported already by an MSBuild Sdk -->
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="'$(MicrosoftCommonPropsHasBeenImported)' != 'true'" />