diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-07-08 12:54:06 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-07-08 12:54:06 -0400 |
commit | 1edd98aef027faa768f56cf0b3591e64e20ba096 (patch) | |
tree | aec210e2b44c9654f29572dd084206a4598896e1 /src/TrainerMod/TrainerMod.csproj | |
parent | 36930ffd7d363d6afd7f8cac4918c7d1c1c3e339 (diff) | |
parent | 8743c4115aa142113d791f2d2cd9ba811dcada2c (diff) | |
download | SMAPI-1edd98aef027faa768f56cf0b3591e64e20ba096.tar.gz SMAPI-1edd98aef027faa768f56cf0b3591e64e20ba096.tar.bz2 SMAPI-1edd98aef027faa768f56cf0b3591e64e20ba096.zip |
Merge branch 'develop' into stable
Diffstat (limited to 'src/TrainerMod/TrainerMod.csproj')
-rw-r--r-- | src/TrainerMod/TrainerMod.csproj | 37 |
1 files changed, 32 insertions, 5 deletions
diff --git a/src/TrainerMod/TrainerMod.csproj b/src/TrainerMod/TrainerMod.csproj index 46d8bef9..99a15c8f 100644 --- a/src/TrainerMod/TrainerMod.csproj +++ b/src/TrainerMod/TrainerMod.csproj @@ -51,11 +51,38 @@ <Compile Include="..\GlobalAssemblyInfo.cs"> <Link>Properties\GlobalAssemblyInfo.cs</Link> </Compile> - <Compile Include="ItemData\ISearchItem.cs" /> - <Compile Include="ItemData\ItemType.cs" /> - <Compile Include="ItemData\SearchableObject.cs" /> - <Compile Include="ItemData\SearchableRing.cs" /> - <Compile Include="ItemData\SearchableWeapon.cs" /> + <Compile Include="Framework\Commands\ArgumentParser.cs" /> + <Compile Include="Framework\Commands\Other\ShowDataFilesCommand.cs" /> + <Compile Include="Framework\Commands\Other\ShowGameFilesCommand.cs" /> + <Compile Include="Framework\Commands\Other\DebugCommand.cs" /> + <Compile Include="Framework\Commands\Player\ListItemTypesCommand.cs" /> + <Compile Include="Framework\Commands\Player\ListItemsCommand.cs" /> + <Compile Include="Framework\Commands\Player\AddCommand.cs" /> + <Compile Include="Framework\Commands\Player\SetStyleCommand.cs" /> + <Compile Include="Framework\Commands\Player\SetColorCommand.cs" /> + <Compile Include="Framework\Commands\Player\SetSpeedCommand.cs" /> + <Compile Include="Framework\Commands\Player\SetLevelCommand.cs" /> + <Compile Include="Framework\Commands\Player\SetMaxHealthCommand.cs" /> + <Compile Include="Framework\Commands\Player\SetMaxStaminaCommand.cs" /> + <Compile Include="Framework\Commands\Player\SetHealthCommand.cs" /> + <Compile Include="Framework\Commands\Player\SetImmunityCommand.cs" /> + <Compile Include="Framework\Commands\Player\SetStaminaCommand.cs" /> + <Compile Include="Framework\Commands\Player\SetNameCommand.cs" /> + <Compile Include="Framework\Commands\Player\SetMoneyCommand.cs" /> + <Compile Include="Framework\Commands\Saves\LoadCommand.cs" /> + <Compile Include="Framework\Commands\Saves\SaveCommand.cs" /> + <Compile Include="Framework\Commands\TrainerCommand.cs" /> + <Compile Include="Framework\Commands\World\SetMineLevelCommand.cs" /> + <Compile Include="Framework\Commands\World\DownMineLevelCommand.cs" /> + <Compile Include="Framework\Commands\World\SetYearCommand.cs" /> + <Compile Include="Framework\Commands\World\SetSeasonCommand.cs" /> + <Compile Include="Framework\Commands\World\SetDayCommand.cs" /> + <Compile Include="Framework\Commands\World\SetTimeCommand.cs" /> + <Compile Include="Framework\Commands\World\FreezeTimeCommand.cs" /> + <Compile Include="Framework\ItemData\ItemType.cs" /> + <Compile Include="Framework\Commands\ITrainerCommand.cs" /> + <Compile Include="Framework\ItemData\SearchableItem.cs" /> + <Compile Include="Framework\ItemRepository.cs" /> <Compile Include="TrainerMod.cs" /> <Compile Include="Properties\AssemblyInfo.cs" /> </ItemGroup> |