2017-08-22 07:18:21 +08:00
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion= "14.0" DefaultTargets= "Build" 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>
2017-09-05 19:13:42 +08:00
<ProjectGuid > {0756D36A-95C8-480D-8EA6-4584C03010C6}</ProjectGuid>
2017-08-22 07:18:21 +08:00
<OutputType > Library</OutputType>
<AppDesignerFolder > Properties</AppDesignerFolder>
2017-09-05 19:13:42 +08:00
<RootNamespace > StardustCore</RootNamespace>
<AssemblyName > StardustCore</AssemblyName>
2017-08-22 07:18:21 +08:00
<TargetFrameworkVersion > v4.5</TargetFrameworkVersion>
<FileAlignment > 512</FileAlignment>
2017-11-16 19:47:02 +08:00
<NuGetPackageImportStamp >
</NuGetPackageImportStamp>
2018-05-01 09:21:31 +08:00
<TargetFrameworkProfile />
2017-08-22 07:18:21 +08:00
</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>
2018-05-01 09:21:31 +08:00
<Prefer32Bit > false</Prefer32Bit>
2017-08-22 07:18:21 +08:00
</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>
2018-05-01 09:21:31 +08:00
<Prefer32Bit > false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition= "'$(Configuration)|$(Platform)' == 'x86|AnyCPU'" >
<OutputPath > bin\x86\</OutputPath>
<DefineConstants > TRACE</DefineConstants>
<Optimize > true</Optimize>
<DebugType > pdbonly</DebugType>
<PlatformTarget > AnyCPU</PlatformTarget>
<ErrorReport > prompt</ErrorReport>
<CodeAnalysisRuleSet > MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition= "'$(Configuration)|$(Platform)' == 'Debug|x86'" >
<DebugSymbols > true</DebugSymbols>
<OutputPath > bin\x86\Debug\</OutputPath>
<DefineConstants > DEBUG;TRACE</DefineConstants>
<DebugType > full</DebugType>
<PlatformTarget > x86</PlatformTarget>
<ErrorReport > prompt</ErrorReport>
<CodeAnalysisRuleSet > MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition= "'$(Configuration)|$(Platform)' == 'Release|x86'" >
<OutputPath > bin\x86\Release\</OutputPath>
<DefineConstants > TRACE</DefineConstants>
<Optimize > true</Optimize>
<DebugType > pdbonly</DebugType>
<PlatformTarget > x86</PlatformTarget>
<ErrorReport > prompt</ErrorReport>
<CodeAnalysisRuleSet > MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition= "'$(Configuration)|$(Platform)' == 'x86|x86'" >
<OutputPath > bin\x86\x86\</OutputPath>
<DefineConstants > TRACE</DefineConstants>
<Optimize > true</Optimize>
<DebugType > pdbonly</DebugType>
<PlatformTarget > x86</PlatformTarget>
<ErrorReport > prompt</ErrorReport>
<CodeAnalysisRuleSet > MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
2017-08-22 07:18:21 +08:00
</PropertyGroup>
<ItemGroup >
2018-08-08 15:12:31 +08:00
<Reference Include= "Lidgren.Network, Version=3.6.0.1625, Culture=neutral, processorArchitecture=MSIL" >
<SpecificVersion > False</SpecificVersion>
<HintPath > ..\..\..\..\..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Stardew Valley\Lidgren.Network.dll</HintPath>
</Reference>
2018-05-01 09:21:31 +08:00
<Reference Include= "Newtonsoft.Json, Version=11.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL" >
<HintPath > ..\packages\Newtonsoft.Json.11.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
2017-08-22 07:18:21 +08:00
</Reference>
<Reference Include= "System" />
<Reference Include= "System.Core" />
<Reference Include= "Microsoft.CSharp" />
<Reference Include= "System.Xml" />
</ItemGroup>
<ItemGroup >
2017-09-12 09:35:31 +08:00
<Compile Include= "Animations\Animation.cs" />
<Compile Include= "Animations\AnimationManager.cs" />
2018-03-30 20:46:24 +08:00
<Compile Include= "Enums\Directions.cs" />
<Compile Include= "Enums\Weather.cs" />
2017-11-17 15:07:30 +08:00
<Compile Include= "IlluminateFramework\Colors.cs" />
2018-06-13 09:42:31 +08:00
<Compile Include= "Interfaces\ISerializeable.cs" />
<Compile Include= "Interfaces\IToolSerializer.cs" />
2018-02-23 03:43:18 +08:00
<Compile Include= "Math\Hex.cs" />
<Compile Include= "Math\Hex32.cs" />
2018-08-23 16:23:42 +08:00
<Compile Include= "Menus\ModualGameMenu.cs" />
2018-08-21 04:53:56 +08:00
<Compile Include= "ModConfig.cs" />
2018-08-08 15:24:56 +08:00
<Compile Include= "NetCode\Graphics\NetAnimation.cs" />
<Compile Include= "NetCode\Graphics\NetAnimationManager.cs" />
2018-08-08 15:12:31 +08:00
<Compile Include= "NetCode\ModdedClient.cs" />
<Compile Include= "NetCode\ModdedGameServer.cs" />
<Compile Include= "NetCode\NetBufferReadStream.cs" />
<Compile Include= "NetCode\NetBufferWriteStream.cs" />
2018-08-07 05:01:44 +08:00
<Compile Include= "NetCode\NetCoreObject.cs" />
2018-08-07 11:01:59 +08:00
<Compile Include= "NetCode\NetKeyValuePair.cs" />
2018-08-07 05:01:44 +08:00
<Compile Include= "NetCode\NetTexure2DExtended.cs" />
2018-06-13 17:36:52 +08:00
<Compile Include= "Objects\MultiTileComponent.cs" />
<Compile Include= "Objects\MultiTileObject.cs" />
2018-06-13 14:25:36 +08:00
<Compile Include= "Objects\Tools\BasicToolInfo.cs" />
2018-06-13 09:42:31 +08:00
<Compile Include= "Objects\Tools\ExtendedAxe.cs" />
2018-06-13 14:25:36 +08:00
<Compile Include= "Objects\Tools\ExtendedHoe.cs" />
<Compile Include= "Objects\Tools\ExtendedPickaxe.cs" />
<Compile Include= "Objects\Tools\ExtendedWateringCan.cs" />
2018-06-13 09:42:31 +08:00
<Compile Include= "Objects\Tools\SerializationInformation\Serialization_ExtendedAxe.cs" />
2018-06-13 14:25:36 +08:00
<Compile Include= "Objects\Tools\SerializationInformation\Serialization_ExtendedHoe.cs" />
<Compile Include= "Objects\Tools\SerializationInformation\Serialization_ExtendedPickaxe.cs" />
<Compile Include= "Objects\Tools\SerializationInformation\Serialization_ExtendedWateringCan.cs" />
2018-06-13 09:42:31 +08:00
<Compile Include= "Objects\Tools\SerializationInformation\SerializedObjectBase.cs" />
2018-03-06 12:46:45 +08:00
<Compile Include= "UIUtilities\IClickableMenuExtended.cs" />
2018-02-06 18:13:21 +08:00
<Compile Include= "UIUtilities\LayeredTexture.cs" />
2018-03-06 15:06:39 +08:00
<Compile Include= "UIUtilities\MenuComponents\Delegates\Delegates.cs" />
<Compile Include= "UIUtilities\MenuComponents\Delegates\DelegatePairing.cs" />
<Compile Include= "UIUtilities\MenuComponents\Delegates\Functionality\ButtonFunctionality.cs" />
2018-08-25 09:52:43 +08:00
<Compile Include= "UIUtilities\MenuComponents\SliderButton.cs" />
2018-02-06 17:27:28 +08:00
<Compile Include= "UIUtilities\SpriteFonts\CharacterSheets\GenericCharacterSheets.cs" />
<Compile Include= "UIUtilities\SpriteFonts\CharacterSheets\VanillaCharacterSheet.cs" />
<Compile Include= "UIUtilities\SpriteFonts\Fonts\Components\CharacterSpacing.cs" />
<Compile Include= "UIUtilities\SpriteFonts\Fonts\GenericFont.cs" />
<Compile Include= "UIUtilities\SpriteFonts\Fonts\Components\TexturedCharacter.cs" />
<Compile Include= "UIUtilities\SpriteFonts\Fonts\Components\TexturedString.cs" />
2017-09-05 19:13:42 +08:00
<Compile Include= "ModCore.cs" />
2018-06-13 09:42:31 +08:00
<Compile Include= "Objects\CoreObject.cs" />
2017-09-12 14:39:59 +08:00
<Compile Include= "ModInfo\Metadata.cs" />
2017-08-22 07:18:21 +08:00
<Compile Include= "Properties\AssemblyInfo.cs" />
2017-09-05 19:13:42 +08:00
<Compile Include= "Serialization\Serialization.cs" />
<Compile Include= "Serialization\SerializerDataNode.cs" />
2017-12-06 08:39:34 +08:00
<Compile Include= "StaticClass.cs" />
2018-02-06 17:27:28 +08:00
<Compile Include= "UIUtilities\MenuComponents\Button.cs" />
<Compile Include= "UIUtilities\SpriteFonts\Fonts\VanillaFont.cs" />
<Compile Include= "UIUtilities\SpriteFonts\SpriteFont.cs" />
2018-02-06 18:13:21 +08:00
<Compile Include= "UIUtilities\Texture2DExtended.cs" />
2018-03-06 12:46:45 +08:00
<Compile Include= "UIUtilities\TextureManager.cs" />
2017-09-13 17:39:50 +08:00
<Compile Include= "Utilities.cs" />
2017-08-22 07:18:21 +08:00
</ItemGroup>
<ItemGroup >
2017-10-12 03:57:36 +08:00
<None Include= "manifest.json" />
2017-08-22 07:18:21 +08:00
<None Include= "packages.config" />
</ItemGroup>
2018-05-19 05:24:59 +08:00
<ItemGroup >
<Content Include= "Content\Fonts\Vanilla\0.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\1.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\2.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\3.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\4.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\5.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\6.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\7.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\8.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\9.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\ampersand.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\asterisk.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\backSlash.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\blankBackground.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\capitalA.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\capitalB.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\capitalC.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\capitalD.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\capitalE.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\capitalF.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\capitalG.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\capitalH.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\capitalI.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\capitalJ.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\capitalK.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\capitalL.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\capitalM.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\capitalN.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\capitalO.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\capitalP.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\capitalQ.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\capitalR.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\capitalS.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\capitalT.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\capitalU.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\capitalV.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\capitalW.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\capitalX.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\capitalY.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\capitalZ.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\caret.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\coin.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\colon.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\comma.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\doubleQuotes.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\exclamationMark.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\forwardSlash.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\grave.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\heart.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\leftArrow.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\leftBracket.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\leftCurlyBracket.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\leftParenthesis.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\lowercaseA.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\lowercaseB.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\lowercaseC.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\lowercaseD.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\lowercaseE.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\lowercaseF.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\lowercaseG.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\lowercaseH.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\lowercaseI.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\lowercaseJ.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\lowercaseK.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\lowercaseL.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\lowercaseM.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\lowercaseN.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\lowercaseO.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\lowercaseP.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\lowercaseQ.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\lowercaseR.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\lowercaseS.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\lowercaseT.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\lowercaseU.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\lowercaseV.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\lowercaseW.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\lowercaseX.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\lowercaseY.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\lowercaseZ.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\minus.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\percent.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\period.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\plus.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\pound.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\questionMark.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\rightArrow.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\rightBracket.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\rightCurlyBracket.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\rightParenthesis.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\semicolon.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\singleQuote.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\space.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\star.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\tilde.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\underScore.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Fonts\Vanilla\verticalLine.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
2018-06-13 09:42:31 +08:00
<Content Include= "Content\Graphics\Icons\Prismatic Star Big.png" />
<Content Include= "Content\Graphics\Icons\Prismatic Star.png" />
2018-06-13 17:36:52 +08:00
<Content Include= "Content\Graphics\MultiTest\Test1.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Graphics\MultiTest\Test2.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "Content\Graphics\MultiTest\Test3.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
2018-06-13 09:42:31 +08:00
<Content Include= "Content\Graphics\Tools\CustomAxe.png" >
<CopyToOutputDirectory > PreserveNewest</CopyToOutputDirectory>
</Content>
2018-05-19 05:24:59 +08:00
</ItemGroup>
2018-08-07 11:01:59 +08:00
<ItemGroup >
<Folder Include= "NetCode\NetDictionaries\" />
<Folder Include= "NetCode\NetLists\" />
</ItemGroup>
2018-08-14 03:41:11 +08:00
<ItemGroup >
<Analyzer Include= "..\packages\Pathoschild.Stardew.ModBuildConfig.2.1.0\analyzers\dotnet\cs\StardewModdingAPI.ModBuildConfig.Analyzer.dll" />
</ItemGroup>
2017-08-22 07:18:21 +08:00
<Import Project= "$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project= "$(SolutionDir)\deploy.targets" />
2018-08-14 03:41:11 +08:00
<Import Project= "..\packages\Pathoschild.Stardew.ModBuildConfig.2.1.0\build\Pathoschild.Stardew.ModBuildConfig.targets" Condition= "Exists('..\packages\Pathoschild.Stardew.ModBuildConfig.2.1.0\build\Pathoschild.Stardew.ModBuildConfig.targets')" />
2017-08-22 07:18:21 +08:00
<Target Name= "EnsureNuGetPackageBuildImports" BeforeTargets= "PrepareForBuild" >
<PropertyGroup >
<ErrorText > This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
2018-08-14 03:41:11 +08:00
<Error Condition= "!Exists('..\packages\Pathoschild.Stardew.ModBuildConfig.2.1.0\build\Pathoschild.Stardew.ModBuildConfig.targets')" Text= "$([System.String]::Format('$(ErrorText)', '..\packages\Pathoschild.Stardew.ModBuildConfig.2.1.0\build\Pathoschild.Stardew.ModBuildConfig.targets'))" />
2017-08-22 07:18:21 +08:00
</Target>
</Project>