2018-02-24 11:10:56 +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>
<ProjectGuid > {89C7DF45-8AE5-49AC-ADA9-6312E9590829}</ProjectGuid>
<OutputType > Library</OutputType>
<AppDesignerFolder > Properties</AppDesignerFolder>
<RootNamespace > CustomNPCFramework</RootNamespace>
<AssemblyName > CustomNPCFramework</AssemblyName>
<TargetFrameworkVersion > v4.5</TargetFrameworkVersion>
<FileAlignment > 512</FileAlignment>
<NuGetPackageImportStamp >
</NuGetPackageImportStamp>
2018-05-01 09:21:31 +08:00
<TargetFrameworkProfile />
2018-02-24 11:10:56 +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>
2018-02-24 11:10:56 +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>
2018-02-24 11:10:56 +08:00
</PropertyGroup>
<ItemGroup >
<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 >
<Compile Include= "Class1.cs" />
2018-03-04 23:53:55 +08:00
<Compile Include= "Framework\Enums\AnimationType.cs" />
2018-02-24 11:10:56 +08:00
<Compile Include= "Framework\Graphics\AssetInfo.cs" />
<Compile Include= "Framework\Graphics\AssetManager.cs" />
<Compile Include= "Framework\Graphics\AssetSheet.cs" />
2018-03-04 23:53:55 +08:00
<Compile Include= "Framework\Enums\PartType.cs" />
<Compile Include= "Framework\Enums\Seasons.cs" />
<Compile Include= "Framework\Graphics\DirectionalTexture.cs" />
<Compile Include= "Framework\Graphics\ExtendedAssetInfo.cs" />
<Compile Include= "Framework\Enums\Genders.cs" />
<Compile Include= "Framework\Graphics\AssetPool.cs" />
2018-03-05 05:23:40 +08:00
<Compile Include= "Framework\Graphics\TextureGroups\TextureGroup.cs" />
2018-02-24 17:36:41 +08:00
<Compile Include= "Framework\ModularNPCS\AnimatedSpriteCollection.cs" />
<Compile Include= "Framework\ModularNPCS\AnimatedSpriteExtended.cs" />
<Compile Include= "Framework\ModularNPCS\CharacterAnimationBases\StandardCharacterAnimation.cs" />
<Compile Include= "Framework\ModularNPCS\CharacterAnimationBases\CharacterAnimationBase.cs" />
2018-03-04 23:53:55 +08:00
<Compile Include= "Framework\Enums\Direction.cs" />
2018-03-18 18:20:06 +08:00
<Compile Include= "Framework\ModularNPCS\ColorCollections\StandardColorCollection.cs" />
2018-02-24 17:36:41 +08:00
<Compile Include= "Framework\ModularNPCS\ModularRenderers\AnimationKeys.cs" />
<Compile Include= "Framework\ModularNPCS\ModularRenderers\BasicRenderer.cs" />
<Compile Include= "Framework\ModularNPCS\Portrait.cs" />
<Compile Include= "Framework\ModularNPCS\Sprite.cs" />
2018-03-04 23:53:55 +08:00
<Compile Include= "Framework\NPCNames.cs" />
2018-02-24 11:10:56 +08:00
<Compile Include= "Framework\NPCS\ExtendedNPC.cs" />
2018-03-17 19:39:46 +08:00
<Compile Include= "Framework\NPCS\MerchantNPC.cs" />
2018-03-04 19:36:19 +08:00
<Compile Include= "Framework\Utilities\NPCTracker.cs" />
2018-02-24 11:10:56 +08:00
<Compile Include= "Properties\AssemblyInfo.cs" />
</ItemGroup>
2018-05-01 09:21:31 +08:00
<ItemGroup >
<ProjectReference Include= "..\StardustCore\StardustCore.csproj" >
<Project > {0756D36A-95C8-480D-8EA6-4584C03010C6}</Project>
<Name > StardustCore</Name>
</ProjectReference>
</ItemGroup>
2018-08-14 03:41:11 +08:00
<ItemGroup >
<None Include= "packages.config" />
</ItemGroup>
<ItemGroup >
2018-12-10 11:57:12 +08:00
<Analyzer Include= "..\packages\Pathoschild.Stardew.ModBuildConfig.2.2.0-beta-20180819\analyzers\dotnet\cs\StardewModdingAPI.ModBuildConfig.Analyzer.dll" />
2018-08-14 03:41:11 +08:00
</ItemGroup>
2018-02-24 11:10:56 +08:00
<Import Project= "$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
2018-12-10 11:57:12 +08:00
<Import Project= "..\packages\Pathoschild.Stardew.ModBuildConfig.2.2.0-beta-20180819\build\Pathoschild.Stardew.ModBuildConfig.targets" Condition= "Exists('..\packages\Pathoschild.Stardew.ModBuildConfig.2.2.0-beta-20180819\build\Pathoschild.Stardew.ModBuildConfig.targets')" />
2018-02-24 11:10:56 +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-12-10 11:57:12 +08:00
<Error Condition= "!Exists('..\packages\Pathoschild.Stardew.ModBuildConfig.2.2.0-beta-20180819\build\Pathoschild.Stardew.ModBuildConfig.targets')" Text= "$([System.String]::Format('$(ErrorText)', '..\packages\Pathoschild.Stardew.ModBuildConfig.2.2.0-beta-20180819\build\Pathoschild.Stardew.ModBuildConfig.targets'))" />
2018-02-24 11:10:56 +08:00
</Target>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name= "BeforeBuild" >
</Target>
<Target Name= "AfterBuild" >
</Target>
-->
</Project>