2018-12-21 05:34:08 +08:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
|
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
|
|
|
<ProjectGuid>{44EF6CEC-FBF1-4B45-8135-81D4EBE84DDD}</ProjectGuid>
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
|
|
|
<RootNamespace>Revitalize</RootNamespace>
|
|
|
|
|
<AssemblyName>Revitalize</AssemblyName>
|
|
|
|
|
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
|
|
|
|
<FileAlignment>512</FileAlignment>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
<Optimize>false</Optimize>
|
|
|
|
|
<OutputPath>bin\Debug\</OutputPath>
|
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
<OutputPath>bin\Release\</OutputPath>
|
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
</PropertyGroup>
|
2018-12-30 11:21:19 +08:00
|
|
|
|
<ItemGroup>
|
2019-01-10 18:31:23 +08:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json">
|
|
|
|
|
<Version>12.0.1</Version>
|
|
|
|
|
</PackageReference>
|
2018-12-30 11:21:19 +08:00
|
|
|
|
<PackageReference Include="Pathoschild.Stardew.ModBuildConfig" Version="2.2.0" />
|
|
|
|
|
</ItemGroup>
|
2018-12-21 05:34:08 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Reference Include="PyTK">
|
2018-12-30 11:25:25 +08:00
|
|
|
|
<HintPath>$(GamePath)\Mods\PyTK\PyTK.dll</HintPath>
|
2018-12-21 05:34:08 +08:00
|
|
|
|
</Reference>
|
2019-07-16 17:09:42 +08:00
|
|
|
|
<Reference Include="StardustCore">
|
|
|
|
|
<HintPath>$(GamePath)\Mods\StardustCore\StardustCore.dll</HintPath>
|
|
|
|
|
</Reference>
|
2018-12-21 05:34:08 +08:00
|
|
|
|
<Reference Include="System" />
|
|
|
|
|
<Reference Include="System.Core" />
|
|
|
|
|
<Reference Include="System.Xml.Linq" />
|
|
|
|
|
<Reference Include="System.Data.DataSetExtensions" />
|
|
|
|
|
<Reference Include="Microsoft.CSharp" />
|
|
|
|
|
<Reference Include="System.Data" />
|
|
|
|
|
<Reference Include="System.Net.Http" />
|
|
|
|
|
<Reference Include="System.Xml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2018-12-25 14:02:25 +08:00
|
|
|
|
<Compile Include="Framework\Crafting\Recipe.cs" />
|
2019-01-06 15:25:50 +08:00
|
|
|
|
<Compile Include="Framework\Crafting\StatCost.cs" />
|
2019-01-06 14:25:22 +08:00
|
|
|
|
<Compile Include="Framework\Enums\Enums.cs" />
|
2018-12-25 04:00:58 +08:00
|
|
|
|
<Compile Include="Framework\Environment\DarkerNight.cs" />
|
|
|
|
|
<Compile Include="Framework\Environment\DarkerNightConfig.cs" />
|
2019-05-18 00:43:50 +08:00
|
|
|
|
<Compile Include="Framework\Factories\Objects\Furniture\FurnitureFactory.cs" />
|
2019-05-16 03:42:48 +08:00
|
|
|
|
<Compile Include="Framework\Factories\Objects\Furniture\ChairFactoryInfo.cs" />
|
2019-05-18 00:43:50 +08:00
|
|
|
|
<Compile Include="Framework\Factories\Objects\FactoryInfo.cs" />
|
2019-05-16 04:43:09 +08:00
|
|
|
|
<Compile Include="Framework\Factories\Objects\Furniture\TableFactoryInfo.cs" />
|
2018-12-25 04:00:58 +08:00
|
|
|
|
<Compile Include="Framework\Illuminate\ColorExtensions.cs" />
|
2019-05-18 02:04:16 +08:00
|
|
|
|
<Compile Include="Framework\Illuminate\FakeLightSource.cs" />
|
2018-12-26 11:48:45 +08:00
|
|
|
|
<Compile Include="Framework\Illuminate\LightManager.cs" />
|
2019-07-16 17:09:42 +08:00
|
|
|
|
<Compile Include="Framework\Menus\SimpleItemGrabMenu.cs" />
|
2019-07-18 01:18:51 +08:00
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SeasideScramble.cs" />
|
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SeasideScrambleMap.cs" />
|
2019-07-18 03:30:08 +08:00
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCCamera.cs" />
|
2019-07-18 01:18:51 +08:00
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCEnums.cs" />
|
2019-07-19 11:16:41 +08:00
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCMenus\CharacterSelectScreen.cs" />
|
2019-07-19 08:16:17 +08:00
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCMenus\SSCMenuManager.cs" />
|
2019-07-18 07:26:37 +08:00
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCMenus\TitleScreen.cs" />
|
2019-07-18 01:18:51 +08:00
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCPlayer.cs" />
|
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCTextureUtilities.cs" />
|
2018-12-21 05:34:08 +08:00
|
|
|
|
<Compile Include="Framework\Objects\BasicItemInformation.cs" />
|
|
|
|
|
<Compile Include="Framework\Objects\CustomObject.cs" />
|
2019-01-14 06:46:31 +08:00
|
|
|
|
<Compile Include="Framework\Objects\Furniture\Bench.cs" />
|
2019-01-09 14:15:58 +08:00
|
|
|
|
<Compile Include="Framework\Objects\Furniture\ChairMultiTiledObject.cs" />
|
|
|
|
|
<Compile Include="Framework\Objects\Furniture\ChairTileComponent.cs" />
|
2019-01-10 10:05:03 +08:00
|
|
|
|
<Compile Include="Framework\Objects\Furniture\CustomFurniture.cs" />
|
2019-01-06 15:25:50 +08:00
|
|
|
|
<Compile Include="Framework\Objects\Furniture\FurnitureTileComponent.cs" />
|
2019-05-18 00:43:50 +08:00
|
|
|
|
<Compile Include="Framework\Objects\Furniture\LampMultiTiledObject.cs" />
|
|
|
|
|
<Compile Include="Framework\Objects\Furniture\LampTileComponent.cs" />
|
2019-01-21 16:01:07 +08:00
|
|
|
|
<Compile Include="Framework\Objects\Furniture\RugMultiTiledObject.cs" />
|
|
|
|
|
<Compile Include="Framework\Objects\Furniture\RugTileComponent.cs" />
|
2019-05-16 04:43:09 +08:00
|
|
|
|
<Compile Include="Framework\Objects\Furniture\TableMultiTiledObject.cs" />
|
|
|
|
|
<Compile Include="Framework\Objects\Furniture\TableTileComponent.cs" />
|
2019-01-06 15:25:50 +08:00
|
|
|
|
<Compile Include="Framework\Objects\InformationFiles\Furniture\ChairInformation.cs" />
|
|
|
|
|
<Compile Include="Framework\Objects\InformationFiles\Furniture\FurnitureInformation.cs" />
|
2019-05-16 04:43:09 +08:00
|
|
|
|
<Compile Include="Framework\Objects\InformationFiles\Furniture\TableInformation.cs" />
|
2019-01-21 15:34:11 +08:00
|
|
|
|
<Compile Include="Framework\Objects\InformationFiles\ObjectGUIDInfo.cs" />
|
2018-12-23 16:53:43 +08:00
|
|
|
|
<Compile Include="Framework\Objects\MultiTiledComponent.cs" />
|
|
|
|
|
<Compile Include="Framework\Objects\MultiTiledObject.cs" />
|
2019-06-19 06:06:18 +08:00
|
|
|
|
<Compile Include="Framework\Objects\ObjectManager.cs" />
|
2019-01-06 15:25:50 +08:00
|
|
|
|
<Compile Include="Framework\Player\Managers\MagicManager.cs" />
|
2018-12-29 15:28:21 +08:00
|
|
|
|
<Compile Include="Framework\Player\Managers\SittingInfo.cs" />
|
|
|
|
|
<Compile Include="Framework\Player\PlayerInfo.cs" />
|
2019-01-10 10:05:03 +08:00
|
|
|
|
<Compile Include="Framework\Utilities\BoundingBoxInfo.cs" />
|
2018-12-25 07:04:18 +08:00
|
|
|
|
<Compile Include="Framework\Utilities\InventoryManager.cs" />
|
2019-07-16 17:09:42 +08:00
|
|
|
|
<Compile Include="Framework\Utilities\PyTKHelper.cs" />
|
2019-01-11 03:09:51 +08:00
|
|
|
|
<Compile Include="Framework\Utilities\Serialization\ContractResolvers\NetFieldContract.cs" />
|
2019-01-11 10:15:31 +08:00
|
|
|
|
<Compile Include="Framework\Utilities\Serialization\Converters\ItemCoverter.cs" />
|
2019-01-11 03:09:51 +08:00
|
|
|
|
<Compile Include="Framework\Utilities\Serialization\Converters\NetFieldConverter.cs" />
|
2019-01-10 18:31:23 +08:00
|
|
|
|
<Compile Include="Framework\Utilities\Serialization\Converters\RectangleConverter.cs" />
|
|
|
|
|
<Compile Include="Framework\Utilities\Serialization\Converters\Texture2DConverter.cs" />
|
|
|
|
|
<Compile Include="Framework\Utilities\Serialization\Converters\Vector2Converter.cs" />
|
|
|
|
|
<Compile Include="Framework\Utilities\Serialization\Serialization.cs" />
|
2019-05-16 13:27:38 +08:00
|
|
|
|
<Compile Include="Framework\Utilities\Serialization\SpriteBatchUtilities.cs" />
|
2018-12-21 05:34:08 +08:00
|
|
|
|
<Compile Include="ModCore.cs" />
|
|
|
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2019-07-18 01:18:51 +08:00
|
|
|
|
<None Include="Content\Minigames\SeasideScramble\Maps\TestRoom.tbin">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
<None Include="Content\Minigames\SeasideScramble\Maps\TestRoom2.tbin">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
2018-12-21 05:34:08 +08:00
|
|
|
|
<None Include="manifest.json" />
|
2018-12-21 05:54:00 +08:00
|
|
|
|
</ItemGroup>
|
2019-07-16 17:09:42 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Content\Graphics\Furniture\Chairs\Oak Chair.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Include="Content\Graphics\Furniture\Lamps\Oak Lamp.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Include="Content\Graphics\Furniture\Tables\Oak Table.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2019-07-18 01:18:51 +08:00
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Graphics\Player\Junimo.png">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2019-07-20 02:17:37 +08:00
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Graphics\UI\AButton.png">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Graphics\UI\MouseClick.png">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2019-07-18 07:26:37 +08:00
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Maps\Backgrounds\TitleScreenBackground.png">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Maps\Intro.png">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2019-07-18 01:18:51 +08:00
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Maps\SSC_Beach.png">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Maps\SSC_DesertTiles.png">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Maps\SSC_Festivals.png">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Maps\SSC_OutdoorsTileSheet.png">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Maps\SSC_Town.png">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2019-07-16 17:09:42 +08:00
|
|
|
|
</ItemGroup>
|
2018-12-21 05:34:08 +08:00
|
|
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
|
|
|
</Project>
|