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

github.com/mono/ikvm-fork.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndres G. Aragoneses <knocte@gmail.com>2016-10-06 08:39:53 +0300
committerAndres G. Aragoneses <knocte@gmail.com>2016-10-06 08:39:53 +0300
commit22aec77297f09caffdc1af8b05696db584cc8dde (patch)
treecd5a76856e35614b86954c946df6da5e05dd6786
parent9f44f259bf5059df6c8019948ea75313bd09a9fb (diff)
Fix MSBuild build with xbuild 12.0 engine (mono 4.2.1)
If anyone tried to build IKVM.Reflection with the xbuild 12.0 engine that comes with mono 4.2.1 [1] (quite widespread given that it's the version bundled with Ubuntu 16.04.x LTS), the build would not work. This change similar to this recent commit in MonoAddins: https://github.com/mono/mono-addins/commit/a3efa4ca9f56fab3aae32060b3b56d3585505966 [1] $ mono --version Mono JIT compiler version 4.2.1 (Debian 4.2.1.102+dfsg2-7ubuntu4) Copyright (C) 2002-2014 Novell, Inc, Xamarin Inc and Contributors. www.mono-project.com TLS: __thread SIGSEGV: altstack Notifications: epoll Architecture: amd64 Disabled: none Misc: softdebug LLVM: supported, not enabled. GC: sgen
-rw-r--r--reflect/IKVM.Reflection.csproj2
1 files changed, 1 insertions, 1 deletions
diff --git a/reflect/IKVM.Reflection.csproj b/reflect/IKVM.Reflection.csproj
index 8de23b7f..cf70e93a 100644
--- a/reflect/IKVM.Reflection.csproj
+++ b/reflect/IKVM.Reflection.csproj
@@ -10,7 +10,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>IKVM.Reflection</RootNamespace>
<AssemblyName>IKVM.Reflection</AssemblyName>
- <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
+ <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkSubset>
</TargetFrameworkSubset>