diff options
author | ClxS <slxxls92@gmail.com> | 2016-03-12 22:35:45 +0000 |
---|---|---|
committer | ClxS <slxxls92@gmail.com> | 2016-03-12 22:35:45 +0000 |
commit | d367b0a7bceeac210ee7336477f98559b6122d13 (patch) | |
tree | 278bf90be1aff05e623c17e3cebc37709b20d898 /StardewModdingAPI | |
parent | 1b6244c0876648946f27d83bb3e33b6b5b30bdf2 (diff) | |
download | SMAPI-d367b0a7bceeac210ee7336477f98559b6122d13.tar.gz SMAPI-d367b0a7bceeac210ee7336477f98559b6122d13.tar.bz2 SMAPI-d367b0a7bceeac210ee7336477f98559b6122d13.zip |
Updated readme. Switched on Optimise Code switch. It only have minimal impact in C#, but might as well.
Diffstat (limited to 'StardewModdingAPI')
-rw-r--r-- | StardewModdingAPI/StardewModdingAPI.csproj | 19 |
1 files changed, 10 insertions, 9 deletions
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>
|