From 6ab1a9db87ff5ef3e4859dc5ace13472f1b19386 Mon Sep 17 00:00:00 2001 From: thefiddler Date: Mon, 21 Jul 2014 14:32:08 +0200 Subject: [PATCH 1/2] Use "Preserve Newest" option on OpenTK.dll.config OpenTK.dll.config was previously set to be always copied to the output directory. This caused constant rebuilds in Visual Studio. Setting this to "Preserve Newest" improves build times significantly. --- Source/OpenTK/OpenTK.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/OpenTK/OpenTK.csproj b/Source/OpenTK/OpenTK.csproj index 61e11bc4..cd3df5fe 100644 --- a/Source/OpenTK/OpenTK.csproj +++ b/Source/OpenTK/OpenTK.csproj @@ -698,7 +698,7 @@ - Always + PreserveNewest From b07e5941dddac4d46b4a85b63943c9f867615692 Mon Sep 17 00:00:00 2001 From: thefiddler Date: Mon, 21 Jul 2014 14:43:26 +0200 Subject: [PATCH 2/2] [Build] Updated mono version to 3.4.0. --- .travis.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index fccc2cd7..f84ff88d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,10 +2,10 @@ language: objective-c env: global: - - EnableNuGetPackageRestore=true + - EnableNuGetPackageRestore=true matrix: - MONO_VER="2.10.11" - - MONO_VER="3.2.6" + - MONO_VER="3.4.0" before_install: - wget "http://download.mono-project.com/archive/${MONO_VER}/macos-10-x86/MonoFramework-MDK-${MONO_VER}.macos10.xamarin.x86.pkg" "http://download.mono-project.com/archive/${MONO_VER}/macos-10-x86/MonoFramework-MDK-${MONO_VER}.macos10.xamarin.x86.dmg" || true @@ -15,4 +15,3 @@ before_install: script: - xbuild && xbuild /p:Configuration=Release -