diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-07-10 22:09:02 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-07-10 22:09:02 -0400 |
commit | 834aee92f222fa739d7daa6c71f48b7e0df47ffe (patch) | |
tree | eb79fa170a0b74a34061ea1d6838ae5589131c85 | |
parent | eff358140627abb15f53b2e05b48302d246cf47f (diff) | |
download | SMAPI-834aee92f222fa739d7daa6c71f48b7e0df47ffe.tar.gz SMAPI-834aee92f222fa739d7daa6c71f48b7e0df47ffe.tar.bz2 SMAPI-834aee92f222fa739d7daa6c71f48b7e0df47ffe.zip |
fix TrainerMod including Json.NET
-rw-r--r-- | release-notes.md | 4 | ||||
-rw-r--r-- | src/TrainerMod/TrainerMod.csproj | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/release-notes.md b/release-notes.md index 128e6213..924ecb90 100644 --- a/release-notes.md +++ b/release-notes.md @@ -20,8 +20,8 @@ For mod developers: ## 1.15.1 For players: -* Fixed controller input broken in 1.15. -* Fixed `Stardew Valley.exe` being packaged with TrainerMod. +* Fixed controller mod input broken in 1.15. +* Fixed TrainerMod packaging unneeded files. For modders: * Fixed mod registry lookups by unique ID not being case-insensitive. diff --git a/src/TrainerMod/TrainerMod.csproj b/src/TrainerMod/TrainerMod.csproj index 99a15c8f..57c8a907 100644 --- a/src/TrainerMod/TrainerMod.csproj +++ b/src/TrainerMod/TrainerMod.csproj @@ -38,7 +38,7 @@ <ItemGroup> <Reference Include="Newtonsoft.Json, Version=8.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL"> <HintPath>..\packages\Newtonsoft.Json.8.0.3\lib\net45\Newtonsoft.Json.dll</HintPath> - <Private>True</Private> + <Private>False</Private> </Reference> <Reference Include="System" /> <Reference Include="System.Core" /> |