diff options
author | Zoryn Aaron <zoryn4163@gmail.com> | 2016-03-01 01:35:52 -0500 |
---|---|---|
committer | Zoryn Aaron <zoryn4163@gmail.com> | 2016-03-01 01:35:52 -0500 |
commit | 9a32b3afdda54e513cd370a0edfa87febc5cd1f0 (patch) | |
tree | 3ff47d467b8803c847d33f14bbf0717ab47cd2f0 /StardewModdingAPI/StardewModdingAPI.csproj | |
parent | 54faadf7b567eb2b71492471c4a2162487059ce6 (diff) | |
download | SMAPI-9a32b3afdda54e513cd370a0edfa87febc5cd1f0.tar.gz SMAPI-9a32b3afdda54e513cd370a0edfa87febc5cd1f0.tar.bz2 SMAPI-9a32b3afdda54e513cd370a0edfa87febc5cd1f0.zip |
trying to get custom content working - do NOT try to implement cc yet
Diffstat (limited to 'StardewModdingAPI/StardewModdingAPI.csproj')
-rw-r--r-- | StardewModdingAPI/StardewModdingAPI.csproj | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/StardewModdingAPI/StardewModdingAPI.csproj b/StardewModdingAPI/StardewModdingAPI.csproj index a6815f26..42c604a2 100644 --- a/StardewModdingAPI/StardewModdingAPI.csproj +++ b/StardewModdingAPI/StardewModdingAPI.csproj @@ -47,6 +47,7 @@ <ApplicationIcon>icon.ico</ApplicationIcon> </PropertyGroup> <ItemGroup> + <Reference Include="Microsoft.QualityTools.Testing.Fakes, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" /> <Reference Include="Microsoft.Xna.Framework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=x86" /> <Reference Include="Microsoft.Xna.Framework.Game, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=x86" /> <Reference Include="Microsoft.Xna.Framework.Graphics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=x86" /> @@ -64,13 +65,21 @@ <Reference Include="Microsoft.CSharp" /> <Reference Include="System.Data" /> <Reference Include="System.Xml" /> + <Reference Include="xTile, Version=2.0.4.0, Culture=neutral, processorArchitecture=x86"> + <SpecificVersion>False</SpecificVersion> + <HintPath>D:\#Network-Steam\SteamRepo\steamapps\common\Stardew Valley\xTile.dll</HintPath> + </Reference> </ItemGroup> <ItemGroup> <Compile Include="Command.cs" /> <Compile Include="Events.cs" /> <Compile Include="Extensions.cs" /> <Compile Include="Inheritance\Menus\SBobberBar.cs" /> + <Compile Include="Inheritance\Menus\SGameMenu.cs" /> + <Compile Include="Inheritance\Menus\SInventoryPage.cs" /> <Compile Include="Inheritance\Minigames\SMinigameBase.cs" /> + <Compile Include="Inheritance\SGameLocation.cs" /> + <Compile Include="Inheritance\SObject.cs" /> <Compile Include="Mod.cs" /> <Compile Include="ModItem.cs" /> <Compile Include="Program.cs" /> |