From 9e81a05f866b78de99e869ffb8963c99825a9884 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Wed, 20 May 2015 19:32:19 +0200 Subject: [PATCH] allow 3rd-party mod DLLs on .NET > 4.0 --- OpenRA.Game.exe.config | 6 ++++++ packaging/windows/OpenRA.nsi | 2 ++ 2 files changed, 8 insertions(+) create mode 100644 OpenRA.Game.exe.config diff --git a/OpenRA.Game.exe.config b/OpenRA.Game.exe.config new file mode 100644 index 0000000000..694da31c69 --- /dev/null +++ b/OpenRA.Game.exe.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/packaging/windows/OpenRA.nsi b/packaging/windows/OpenRA.nsi index 05b38ae128..c88d9ff867 100644 --- a/packaging/windows/OpenRA.nsi +++ b/packaging/windows/OpenRA.nsi @@ -68,6 +68,7 @@ Section "Game" GAME SetOutPath "$INSTDIR" File "${SRCDIR}\OpenRA.exe" File "${SRCDIR}\OpenRA.Game.exe" + File "${SRCDIR}\OpenRA.Game.exe.config" File "${SRCDIR}\OpenRA.Utility.exe" File "${SRCDIR}\OpenRA.Renderer.Null.dll" File "${SRCDIR}\OpenRA.Renderer.Sdl2.dll" @@ -183,6 +184,7 @@ Function ${UN}Clean RMDir /r $INSTDIR\lua Delete $INSTDIR\OpenRA.exe Delete $INSTDIR\OpenRA.Game.exe + Delete $INSTDIR\OpenRA.Game.exe.config Delete $INSTDIR\OpenRA.Utility.exe Delete $INSTDIR\OpenRA.Editor.exe Delete $INSTDIR\OpenRA.Renderer.Null.dll