From f44eb6d66f547f15d87e273c2cb1f4597eee532a Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Thu, 27 Oct 2016 13:40:42 -0400 Subject: only hook into WinForms on Windows for Mac compatibility (#126) --- src/StardewModdingAPI/Program.cs | 4 ++++ src/StardewModdingAPI/StardewModdingAPI.csproj | 8 +++++++- 2 files changed, 11 insertions(+), 1 deletion(-) (limited to 'src/StardewModdingAPI') diff --git a/src/StardewModdingAPI/Program.cs b/src/StardewModdingAPI/Program.cs index f6c63851..b8a8b856 100644 --- a/src/StardewModdingAPI/Program.cs +++ b/src/StardewModdingAPI/Program.cs @@ -5,7 +5,9 @@ using System.IO; using System.Linq; using System.Reflection; using System.Threading; +#if SMAPI_FOR_WINDOWS using System.Windows.Forms; +#endif using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Graphics; using StardewModdingAPI.Events; @@ -208,8 +210,10 @@ namespace StardewModdingAPI public static void RunGame() { +#if SMAPI_FOR_WINDOWS Application.ThreadException += Log.Application_ThreadException; Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException); +#endif AppDomain.CurrentDomain.UnhandledException += Log.CurrentDomain_UnhandledException; try diff --git a/src/StardewModdingAPI/StardewModdingAPI.csproj b/src/StardewModdingAPI/StardewModdingAPI.csproj index b2fbfb31..4294c561 100644 --- a/src/StardewModdingAPI/StardewModdingAPI.csproj +++ b/src/StardewModdingAPI/StardewModdingAPI.csproj @@ -92,6 +92,9 @@ + + $(DefineConstants);SMAPI_FOR_WINDOWS + False @@ -117,6 +120,9 @@ + + $(DefineConstants);SMAPI_FOR_UNIX + $(GamePath)\MonoGame.Framework.dll @@ -142,7 +148,7 @@ - + -- cgit