From c94b51cd2284db8a254c6fa81ae96c9a5adc67d5 Mon Sep 17 00:00:00 2001 From: Zoryn Aaron Date: Mon, 28 Mar 2016 22:57:05 -0400 Subject: optimize reflection a little --- StardewModdingAPI/Constants.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'StardewModdingAPI/Constants.cs') diff --git a/StardewModdingAPI/Constants.cs b/StardewModdingAPI/Constants.cs index 4a01c38a..83789b85 100644 --- a/StardewModdingAPI/Constants.cs +++ b/StardewModdingAPI/Constants.cs @@ -10,7 +10,7 @@ namespace StardewModdingAPI /// public static class Constants { - public static readonly Version Version = new Version(0, 39, 3, "Alpha"); + public static readonly Version Version = new Version(0, 39, 4, "Alpha"); /// /// Not quite "constant", but it makes more sense for it to be here, at least for now -- cgit From 49ebb5175b790124448a506a6bf2bd0278c59e42 Mon Sep 17 00:00:00 2001 From: Zoryn Aaron Date: Wed, 30 Mar 2016 18:37:53 -0400 Subject: ticks up version. changes build path to be just /bin/[debug|release] --- StardewModdingAPI/Constants.cs | 2 +- StardewModdingAPI/StardewModdingAPI.csproj | 7 ++++--- TrainerMod/TrainerMod.csproj | 4 ++-- 3 files changed, 7 insertions(+), 6 deletions(-) (limited to 'StardewModdingAPI/Constants.cs') diff --git a/StardewModdingAPI/Constants.cs b/StardewModdingAPI/Constants.cs index 83789b85..d1079f61 100644 --- a/StardewModdingAPI/Constants.cs +++ b/StardewModdingAPI/Constants.cs @@ -10,7 +10,7 @@ namespace StardewModdingAPI /// public static class Constants { - public static readonly Version Version = new Version(0, 39, 4, "Alpha"); + public static readonly Version Version = new Version(0, 39, 5, "Alpha"); /// /// Not quite "constant", but it makes more sense for it to be here, at least for now diff --git a/StardewModdingAPI/StardewModdingAPI.csproj b/StardewModdingAPI/StardewModdingAPI.csproj index 913fb50e..a7477a32 100644 --- a/StardewModdingAPI/StardewModdingAPI.csproj +++ b/StardewModdingAPI/StardewModdingAPI.csproj @@ -73,18 +73,19 @@ x86 - bin\x86\Debug\ + bin\Debug\ false true true - bin\x86\Debug\StardewModdingAPI.XML + bin\Debug\StardewModdingAPI.XML x86 - bin\x86\Release\ + bin\Release\ false + bin\Release\StardewModdingAPI.XML icon.ico diff --git a/TrainerMod/TrainerMod.csproj b/TrainerMod/TrainerMod.csproj index 1638a3c8..3141e38d 100644 --- a/TrainerMod/TrainerMod.csproj +++ b/TrainerMod/TrainerMod.csproj @@ -19,7 +19,7 @@ true full false - ..\StardewModdingAPI\bin\x86\Debug\Mods\TrainerMod\ + ..\StardewModdingAPI\bin\Debug\Mods\TrainerMod\ TRACE prompt 4 @@ -29,7 +29,7 @@ pdbonly true - bin\Release\ + ..\StardewModdingAPI\bin\Release\Mods\TrainerMod\ TRACE prompt 4 -- cgit