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-08-23 04:43:11 +08:00
|
|
|
|
<Compile Include="Framework\Crafting\RecipeBook.cs" />
|
2019-01-06 15:25:50 +08:00
|
|
|
|
<Compile Include="Framework\Crafting\StatCost.cs" />
|
2019-08-23 04:43:11 +08:00
|
|
|
|
<Compile Include="Framework\Crafting\VanillaRecipeBook.cs" />
|
|
|
|
|
<Compile Include="Framework\Crafting\VanillaRecipe.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-07-26 08:16:14 +08:00
|
|
|
|
<Compile Include="Framework\Factories\Objects\Extras\ArcadeFactoryInfo.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" />
|
2019-08-17 05:35:40 +08:00
|
|
|
|
<Compile Include="Framework\Factories\Objects\Resources\OreFactoryInfo.cs" />
|
2019-08-21 16:39:06 +08:00
|
|
|
|
<Compile Include="Framework\Hacks\MenuHacks.cs" />
|
2019-08-22 10:06:17 +08:00
|
|
|
|
<Compile Include="Framework\Hacks\ObjectInteractionHacks.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-24 23:44:55 +08:00
|
|
|
|
<Compile Include="Framework\Menus\InventoryMenu.cs" />
|
2019-08-06 12:19:56 +08:00
|
|
|
|
<Compile Include="Framework\Menus\InventoryTransferMenu.cs" />
|
2019-07-23 07:50:49 +08:00
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\Interfaces\ICollider.cs" />
|
2019-07-23 11:46:33 +08:00
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\Interfaces\ISpawner.cs" />
|
2019-07-22 12:54:25 +08:00
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\Interfaces\ISSCLivingEntity.cs" />
|
2019-07-18 01:18:51 +08:00
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SeasideScramble.cs" />
|
2019-07-23 14:22:03 +08:00
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCEntities\Generic\SignPost.cs" />
|
2019-07-25 08:24:36 +08:00
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCGuns\SSCGunManager.cs" />
|
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCGuns\SSCGun_HeatWave.cs" />
|
2019-07-23 14:22:03 +08:00
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCMaps\SeasideScrambleMap.cs" />
|
2019-07-18 03:30:08 +08:00
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCCamera.cs" />
|
2019-07-23 07:50:49 +08:00
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCEnemies\EnemyManager.cs" />
|
2019-07-23 11:46:33 +08:00
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCEnemies\KillZone.cs" />
|
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCEnemies\Spawners\Target_Spawner.cs" />
|
2019-07-23 07:50:49 +08:00
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCEnemies\SSCEnemy.cs" />
|
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCEnemies\SSCE_Target.cs" />
|
2019-07-23 11:46:33 +08:00
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCEntities\SSCEntityManager.cs" />
|
2019-07-18 01:18:51 +08:00
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCEnums.cs" />
|
2019-07-22 07:58:57 +08:00
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCFonts\SSCFontCharacterSheet.cs" />
|
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCFonts\SSCFont.cs" />
|
2019-07-21 09:24:47 +08:00
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCGuns\SSCGun.cs" />
|
2019-07-23 14:22:03 +08:00
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCMaps\ShootingGallery.cs" />
|
2019-07-19 11:16:41 +08:00
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCMenus\CharacterSelectScreen.cs" />
|
2019-07-22 07:58:57 +08:00
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCMenus\HUD\CharacterHUD.cs" />
|
2019-07-24 07:15:13 +08:00
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCMenus\Loby.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" />
|
2019-07-21 08:00:02 +08:00
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCProjectiles\SSCProjectile.cs" />
|
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCProjectiles\SSCProjectileManager.cs" />
|
2019-07-25 08:24:36 +08:00
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCProjectiles\SSC_FireProjectile.cs" />
|
2019-07-25 09:37:43 +08:00
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCProjectiles\SSC_IcicleProjectile.cs" />
|
2019-07-22 12:54:25 +08:00
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCStatusEffects\SE_Burn.cs" />
|
2019-07-25 09:37:43 +08:00
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCStatusEffects\SE_Freeze.cs" />
|
2019-07-22 12:54:25 +08:00
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCStatusEffects\StatusEffect.cs" />
|
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCStatusEffects\StatusEffectManager.cs" />
|
2019-07-18 01:18:51 +08:00
|
|
|
|
<Compile Include="Framework\Minigame\SeasideScrambleMinigame\SSCTextureUtilities.cs" />
|
2019-07-26 08:16:14 +08:00
|
|
|
|
<Compile Include="Framework\Objects\Extras\ArcadeCabinetOBJ.cs" />
|
|
|
|
|
<Compile Include="Framework\Objects\Extras\ArcadeCabinetTile.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-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-08-06 14:10:56 +08:00
|
|
|
|
<Compile Include="Framework\Objects\Furniture\StorageFurnitureOBJ.cs" />
|
|
|
|
|
<Compile Include="Framework\Objects\Furniture\StorageFurnitureTile.cs" />
|
2019-05-16 04:43:09 +08:00
|
|
|
|
<Compile Include="Framework\Objects\Furniture\TableMultiTiledObject.cs" />
|
|
|
|
|
<Compile Include="Framework\Objects\Furniture\TableTileComponent.cs" />
|
2019-07-26 08:16:14 +08:00
|
|
|
|
<Compile Include="Framework\Objects\InformationFiles\Furniture\ArcadeCabinetInformation.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" />
|
2019-08-14 10:05:11 +08:00
|
|
|
|
<Compile Include="Framework\Objects\InformationFiles\ResourceInformaton.cs" />
|
2019-08-17 08:19:20 +08:00
|
|
|
|
<Compile Include="Framework\Objects\Items\Resources\Ore.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-08-14 14:06:51 +08:00
|
|
|
|
<Compile Include="Framework\Objects\InformationFiles\OreResourceInformation.cs" />
|
2019-08-14 10:05:11 +08:00
|
|
|
|
<Compile Include="Framework\Objects\ResourceManager.cs" />
|
|
|
|
|
<Compile Include="Framework\Objects\Resources\OreVeins\OreVeinObj.cs" />
|
|
|
|
|
<Compile Include="Framework\Objects\Resources\OreVeins\OreVeinTile.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" />
|
2019-08-14 14:06:51 +08:00
|
|
|
|
<Compile Include="Framework\Utilities\IntRange.cs" />
|
2018-12-25 07:04:18 +08:00
|
|
|
|
<Compile Include="Framework\Utilities\InventoryManager.cs" />
|
2019-08-14 11:13:27 +08:00
|
|
|
|
<Compile Include="Framework\Utilities\LocationUtilities.cs" />
|
2019-08-23 04:43:11 +08:00
|
|
|
|
<Compile Include="Framework\Utilities\ObjectUtilities.cs" />
|
2019-07-16 17:09:42 +08:00
|
|
|
|
<Compile Include="Framework\Utilities\PyTKHelper.cs" />
|
2019-07-25 09:37:43 +08:00
|
|
|
|
<Compile Include="Framework\Utilities\RotationUtilities.cs" />
|
2019-01-11 03:09:51 +08:00
|
|
|
|
<Compile Include="Framework\Utilities\Serialization\ContractResolvers\NetFieldContract.cs" />
|
2019-08-22 10:06:17 +08:00
|
|
|
|
<Compile Include="Framework\Utilities\Serialization\Converters\CustomObjectDataConverter.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" />
|
2019-07-21 06:11:50 +08:00
|
|
|
|
<Compile Include="Framework\Utilities\Vector2Utilities.cs" />
|
2018-12-21 05:34:08 +08:00
|
|
|
|
<Compile Include="ModCore.cs" />
|
|
|
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2019-08-14 10:05:11 +08:00
|
|
|
|
<None Include="Content\Graphics\Objects\Resources\Ore\TestTemplate.aseprite" />
|
2019-07-23 14:22:03 +08:00
|
|
|
|
<None Include="Content\Minigames\SeasideScramble\Maps\ShootingGallery.tbin">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
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>
|
2019-08-17 08:19:20 +08:00
|
|
|
|
<Content Include="Content\Graphics\Items\Resources\Ore\TinOre.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2019-07-24 23:44:55 +08:00
|
|
|
|
<Content Include="Content\Graphics\Menus\InventoryMenu\ItemBackground.png">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2019-08-06 12:19:56 +08:00
|
|
|
|
<Content Include="Content\Graphics\Menus\InventoryMenu\ItemBackgroundNoSpacing.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Include="Content\Graphics\Menus\InventoryMenu\ItemTransferButton.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2019-07-25 05:16:04 +08:00
|
|
|
|
<Content Include="Content\Graphics\Menus\InventoryMenu\NextPageButton.png">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Include="Content\Graphics\Menus\InventoryMenu\PreviousPageButton.png">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2019-08-06 12:19:56 +08:00
|
|
|
|
<Content Include="Content\Graphics\Menus\InventoryMenu\TrashButton.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2019-08-14 10:05:11 +08:00
|
|
|
|
<Content Include="Content\Graphics\Objects\Furniture\Arcade\SeasideScrambleArcade.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Include="Content\Graphics\Objects\Furniture\Chairs\Oak Chair.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Include="Content\Graphics\Objects\Furniture\Lamps\Oak Lamp.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Include="Content\Graphics\Objects\Furniture\Storage\Oak Cabinet.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Include="Content\Graphics\Objects\Furniture\Tables\Oak Table.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Include="Content\Graphics\Objects\Resources\Ore\Test.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2019-07-23 07:50:49 +08:00
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Graphics\Enemies\Target.png">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2019-07-21 09:24:47 +08:00
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Graphics\Guns\BasicGun.png">
|
|
|
|
|
<CopyToOutputDirectory>Always</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-21 08:00:02 +08:00
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Graphics\Projectiles\Basic.png">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2019-07-25 08:24:36 +08:00
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Graphics\Projectiles\Fire.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2019-07-25 09:37:43 +08:00
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Graphics\Projectiles\Icicle.png">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2019-07-24 07:15:13 +08:00
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Graphics\UI\BlankTexture.png">
|
2019-07-25 08:24:36 +08:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2019-07-22 07:58:57 +08:00
|
|
|
|
</Content>
|
2019-07-24 07:15:13 +08:00
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Graphics\UI\Buttons\AButton.png">
|
2019-07-25 08:24:36 +08:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2019-07-22 07:58:57 +08:00
|
|
|
|
</Content>
|
2019-07-24 07:15:13 +08:00
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Graphics\UI\Buttons\BackButton.png">
|
2019-07-25 08:24:36 +08:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2019-07-22 07:58:57 +08:00
|
|
|
|
</Content>
|
2019-07-24 07:15:13 +08:00
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Graphics\UI\Buttons\lastPageButton.png">
|
2019-07-25 08:24:36 +08:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2019-07-22 07:58:57 +08:00
|
|
|
|
</Content>
|
2019-07-24 07:15:13 +08:00
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Graphics\UI\Buttons\MouseClick.png">
|
2019-07-25 08:24:36 +08:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2019-07-22 07:58:57 +08:00
|
|
|
|
</Content>
|
2019-07-24 07:15:13 +08:00
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Graphics\UI\Buttons\nextPageButton.png">
|
2019-07-25 08:24:36 +08:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2019-07-22 07:58:57 +08:00
|
|
|
|
</Content>
|
2019-07-24 07:15:13 +08:00
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Graphics\UI\Buttons\ShootingGalleryButton.png">
|
2019-07-25 08:24:36 +08:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2019-07-22 07:58:57 +08:00
|
|
|
|
</Content>
|
2019-07-24 07:15:13 +08:00
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Graphics\UI\Clock.png">
|
2019-07-25 08:24:36 +08:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2019-07-22 07:58:57 +08:00
|
|
|
|
</Content>
|
2019-07-24 07:15:13 +08:00
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Graphics\UI\Cursors.png">
|
2019-07-25 08:24:36 +08:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2019-07-22 07:58:57 +08:00
|
|
|
|
</Content>
|
2019-07-24 07:15:13 +08:00
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Graphics\UI\DialogBox.png">
|
2019-07-25 08:24:36 +08:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2019-07-22 07:58:57 +08:00
|
|
|
|
</Content>
|
2019-07-24 07:15:13 +08:00
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Graphics\UI\Heart.png">
|
2019-07-25 08:24:36 +08:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2019-07-20 02:17:37 +08:00
|
|
|
|
</Content>
|
2019-07-24 07:15:13 +08:00
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Graphics\UI\Numbers\0.png">
|
2019-07-25 08:24:36 +08:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2019-07-20 04:30:25 +08:00
|
|
|
|
</Content>
|
2019-07-24 07:15:13 +08:00
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Graphics\UI\Numbers\1.png">
|
2019-07-25 08:24:36 +08:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2019-07-22 07:58:57 +08:00
|
|
|
|
</Content>
|
2019-07-24 07:15:13 +08:00
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Graphics\UI\Numbers\2.png">
|
2019-07-25 08:24:36 +08:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2019-07-21 03:36:31 +08:00
|
|
|
|
</Content>
|
2019-07-24 07:15:13 +08:00
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Graphics\UI\Numbers\3.png">
|
2019-07-25 08:24:36 +08:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2019-07-22 07:58:57 +08:00
|
|
|
|
</Content>
|
2019-07-24 07:15:13 +08:00
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Graphics\UI\Numbers\4.png">
|
2019-07-25 08:24:36 +08:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2019-07-24 07:15:13 +08:00
|
|
|
|
</Content>
|
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Graphics\UI\Numbers\5.png">
|
2019-07-25 08:24:36 +08:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2019-07-24 07:15:13 +08:00
|
|
|
|
</Content>
|
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Graphics\UI\Numbers\6.png">
|
2019-07-25 08:24:36 +08:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2019-07-22 09:52:53 +08:00
|
|
|
|
</Content>
|
2019-07-24 07:15:13 +08:00
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Graphics\UI\Numbers\7.png">
|
2019-07-25 08:24:36 +08:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2019-07-20 04:30:25 +08:00
|
|
|
|
</Content>
|
2019-07-24 07:15:13 +08:00
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Graphics\UI\Numbers\8.png">
|
2019-07-25 08:24:36 +08:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2019-07-20 02:17:37 +08:00
|
|
|
|
</Content>
|
2019-07-24 07:15:13 +08:00
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Graphics\UI\Numbers\9.png">
|
2019-07-25 08:24:36 +08:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
2019-07-20 04:30:25 +08:00
|
|
|
|
</Content>
|
2019-07-22 12:54:25 +08:00
|
|
|
|
<Content Include="Content\Minigames\SeasideScramble\Graphics\UI\StatusEffects\Burn.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>
|
2019-07-26 08:16:14 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Folder Include="Framework\Objects\InformationFiles\Extras\" />
|
|
|
|
|
</ItemGroup>
|
2018-12-21 05:34:08 +08:00
|
|
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
|
|
|
</Project>
|