diff options
-rw-r--r-- | README.md | 9 | ||||
-rw-r--r-- | StardewModdingAPI/StardewModdingAPI.csproj | 19 |
2 files changed, 13 insertions, 15 deletions
@@ -4,13 +4,10 @@ SMAPI (Stardew Mapping Application Programming Interface) is a tool to help modders make changes to Stardew. It is a standalone executable which goes alongside your Stardew.exe. -## Latest Version: 0.37.2 -- Added KeyReleased event -- Added event handlers for GamePads -- Internal Cleanup -Tested and works with current versions of: SmartMod, StardewCJB , FreezeInside +## Latest Version: 0.37.3 +- Small performance patch -Download: https://github.com/ClxS/SMAPI/releases/tag/0.37.2 +Download: https://github.com/ClxS/SMAPI/releases/tag/0.37.3 ## Installation diff --git a/StardewModdingAPI/StardewModdingAPI.csproj b/StardewModdingAPI/StardewModdingAPI.csproj index 523ab7bd..6fb1c336 100644 --- a/StardewModdingAPI/StardewModdingAPI.csproj +++ b/StardewModdingAPI/StardewModdingAPI.csproj @@ -37,16 +37,16 @@ <TargetFrameworkProfile />
</PropertyGroup>
<Choose>
- <When Condition="'$(SteamInstallPath)' != ''">
- <PropertyGroup>
- <SteamPath>$(SteamInstallPath)</SteamPath>
+ <When Condition="'$(SteamInstallPath)' != ''">
+ <PropertyGroup>
+ <SteamPath>$(SteamInstallPath)</SteamPath>
</PropertyGroup>
- </When>
- <Otherwise>
- <PropertyGroup>
- <SteamPath>..\..\..\..\Games\SteamLibrary</SteamPath>
- </PropertyGroup>
- </Otherwise>
+ </When>
+ <Otherwise>
+ <PropertyGroup>
+ <SteamPath>..\..\..\..\Games\SteamLibrary</SteamPath>
+ </PropertyGroup>
+ </Otherwise>
</Choose>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>x86</PlatformTarget>
@@ -76,6 +76,7 @@ <DefineConstants>
</DefineConstants>
<UseVSHostingProcess>true</UseVSHostingProcess>
+ <Optimize>true</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<PlatformTarget>x86</PlatformTarget>
|