2016-11-14 18:54:24 +09:00
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion= "14.0" DefaultTargets= "Build" xmlns= "http://schemas.microsoft.com/developer/msbuild/2003" >
2017-11-30 00:45:37 +09:00
<Import Project= "..\osu.Game.props" />
2016-11-14 18:54:24 +09:00
<PropertyGroup >
<Configuration Condition= " '$(Configuration)' == '' " > Debug</Configuration>
<Platform Condition= " '$(Platform)' == '' " > AnyCPU</Platform>
<ProjectGuid > {58F6C80C-1253-4A0E-A465-B8C85EBEADF3}</ProjectGuid>
<OutputType > Library</OutputType>
<AppDesignerFolder > Properties</AppDesignerFolder>
2017-04-18 16:05:58 +09:00
<RootNamespace > osu.Game.Rulesets.Catch</RootNamespace>
<AssemblyName > osu.Game.Rulesets.Catch</AssemblyName>
2017-09-11 12:35:40 +09:00
<TargetFrameworkVersion > v4.6.1</TargetFrameworkVersion>
2016-11-14 18:54:24 +09:00
<FileAlignment > 512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition= " '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' " >
<DebugSymbols > true</DebugSymbols>
<DebugType > full</DebugType>
<Optimize > false</Optimize>
2017-10-14 02:10:21 +09:00
<OutputPath > bin\Debug\</OutputPath>
2016-11-14 18:54:24 +09:00
<DefineConstants > DEBUG;TRACE</DefineConstants>
<ErrorReport > prompt</ErrorReport>
<WarningLevel > 4</WarningLevel>
2017-02-12 01:42:20 -05:00
<TreatWarningsAsErrors > false</TreatWarningsAsErrors>
2016-11-14 18:54:24 +09:00
</PropertyGroup>
<PropertyGroup Condition= " '$(Configuration)|$(Platform)' == 'Release|AnyCPU' " >
<DebugType > pdbonly</DebugType>
<Optimize > true</Optimize>
2017-10-14 02:10:21 +09:00
<OutputPath > bin\Release\</OutputPath>
2016-11-14 18:54:24 +09:00
<DefineConstants > TRACE</DefineConstants>
<ErrorReport > prompt</ErrorReport>
<WarningLevel > 4</WarningLevel>
2017-02-12 01:42:20 -05:00
<TreatWarningsAsErrors > false</TreatWarningsAsErrors>
2016-11-14 18:54:24 +09:00
</PropertyGroup>
<ItemGroup >
2018-01-26 12:46:28 +01:00
<Reference Include= "JetBrains.Annotations, Version=11.1.0.0, Culture=neutral, PublicKeyToken=1010a0d8d6380325, processorArchitecture=MSIL" >
<HintPath > $(SolutionDir)\packages\JetBrains.Annotations.11.1.0\lib\net20\JetBrains.Annotations.dll</HintPath>
<Private > True</Private>
</Reference>
2017-09-18 22:32:49 +09:00
<Reference Include= "nunit.framework, Version=3.8.1.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL" >
2017-09-19 00:07:06 +09:00
<HintPath > $(SolutionDir)\packages\NUnit.3.8.1\lib\net45\nunit.framework.dll</HintPath>
2017-10-23 20:58:50 +09:00
<Private > True</Private>
2017-09-18 22:32:49 +09:00
</Reference>
2017-12-27 13:18:34 +09:00
<Reference Include= "OpenTK, Version=3.0.0.0, Culture=neutral, PublicKeyToken=bad199fe84eb3df4" >
2018-02-06 13:47:54 +09:00
<HintPath > $(SolutionDir)\packages\ppy.OpenTK.3.0.13\lib\net45\OpenTK.dll</HintPath>
2017-10-23 20:58:50 +09:00
<Private > True</Private>
2016-11-14 18:54:24 +09:00
</Reference>
2018-02-07 14:11:54 +09:00
<Reference Include= "SQLitePCLRaw.batteries_green, Version=1.0.0.0, Culture=neutral, PublicKeyToken=a84b7dcfb1391f7f, processorArchitecture=MSIL" >
<HintPath > $(SolutionDir)\packages\SQLitePCLRaw.bundle_green.1.1.8\lib\net45\SQLitePCLRaw.batteries_green.dll</HintPath>
</Reference>
<Reference Include= "SQLitePCLRaw.batteries_v2, Version=1.0.0.0, Culture=neutral, PublicKeyToken=8226ea5df37bcae9, processorArchitecture=MSIL" >
<HintPath > $(SolutionDir)\packages\SQLitePCLRaw.bundle_green.1.1.8\lib\net45\SQLitePCLRaw.batteries_v2.dll</HintPath>
</Reference>
<Reference Include= "SQLitePCLRaw.core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=1488e028ca7ab535, processorArchitecture=MSIL" >
<HintPath > $(SolutionDir)\packages\SQLitePCLRaw.core.1.1.8\lib\net45\SQLitePCLRaw.core.dll</HintPath>
</Reference>
<Reference Include= "SQLitePCLRaw.provider.e_sqlite3, Version=1.0.0.0, Culture=neutral, PublicKeyToken=9c301db686d0bd12, processorArchitecture=MSIL" >
<HintPath > $(SolutionDir)\packages\SQLitePCLRaw.provider.e_sqlite3.net45.1.1.8\lib\net45\SQLitePCLRaw.provider.e_sqlite3.dll</HintPath>
</Reference>
2016-11-14 18:54:24 +09:00
<Reference Include= "System" />
2017-08-09 11:50:34 +09:00
<Reference Include= "System.Collections" />
2016-11-14 18:54:24 +09:00
<Reference Include= "System.Core" />
</ItemGroup>
<ItemGroup >
2017-03-12 00:34:21 +09:00
<Compile Include= "Beatmaps\CatchBeatmapConverter.cs" />
2017-09-15 20:54:34 +09:00
<Compile Include= "Beatmaps\CatchBeatmapProcessor.cs" />
2017-02-19 17:41:51 +01:00
<Compile Include= "CatchDifficultyCalculator.cs" />
2017-08-09 15:15:41 +09:00
<Compile Include= "CatchInputManager.cs" />
2018-01-09 13:41:57 +09:00
<Compile Include= "Mods\CatchModDaycore.cs" />
<Compile Include= "Mods\CatchModDoubleTime.cs" />
<Compile Include= "Mods\CatchModEasy.cs" />
<Compile Include= "Mods\CatchModFlashlight.cs" />
<Compile Include= "Mods\CatchModHalfTime.cs" />
<Compile Include= "Mods\CatchModHardRock.cs" />
<Compile Include= "Mods\CatchModHidden.cs" />
<Compile Include= "Mods\CatchModNightcore.cs" />
<Compile Include= "Mods\CatchModPerfect.cs" />
<Compile Include= "Mods\CatchModRelax.cs" />
<Compile Include= "Mods\CatchModSuddenDeath.cs" />
2018-01-12 18:35:28 +09:00
<Compile Include= "Mods\CatchModAutoplay.cs" />
2018-01-10 14:52:22 +09:00
<Compile Include= "Objects\BananaShower.cs" />
<Compile Include= "Objects\Drawable\DrawableBananaShower.cs" />
2017-10-09 19:42:55 +09:00
<Compile Include= "Objects\Drawable\DrawableCatchHitObject.cs" />
2017-10-10 16:34:01 +09:00
<Compile Include= "Objects\Drawable\DrawableDroplet.cs" />
<Compile Include= "Objects\Drawable\DrawableJuiceStream.cs" />
<Compile Include= "Objects\Drawable\Pieces\Pulp.cs" />
<Compile Include= "Objects\JuiceStream.cs" />
2018-01-12 18:35:28 +09:00
<Compile Include= "Replays\CatchAutoGenerator.cs" />
<Compile Include= "Replays\CatchFramedReplayInputHandler.cs" />
<Compile Include= "Replays\CatchReplayFrame.cs" />
2017-03-24 09:51:52 +09:00
<Compile Include= "Scoring\CatchScoreProcessor.cs" />
2017-03-23 19:00:18 +09:00
<Compile Include= "Judgements\CatchJudgement.cs" />
2017-11-28 18:37:41 +09:00
<Compile Include= "Objects\CatchHitObject.cs" />
2016-11-14 18:54:24 +09:00
<Compile Include= "Objects\Drawable\DrawableFruit.cs" />
<Compile Include= "Objects\Droplet.cs" />
<Compile Include= "Objects\Fruit.cs" />
2017-10-11 20:11:29 +09:00
<Compile Include= "Objects\TinyDroplet.cs" />
2016-11-14 18:54:24 +09:00
<Compile Include= "Properties\AssemblyInfo.cs" />
2018-01-10 14:52:22 +09:00
<Compile Include= "Tests\TestCaseBananaShower.cs" />
2017-11-28 18:39:45 +09:00
<Compile Include= "Tests\TestCaseCatcherArea.cs" />
2017-10-10 16:34:01 +09:00
<Compile Include= "Tests\TestCaseCatchStacker.cs" />
2018-01-03 16:32:09 +09:00
<Compile Include= "Tests\TestCaseFruitObjects.cs" />
2017-11-16 17:35:10 +09:00
<Compile Include= "Tests\TestCasePerformancePoints.cs" />
2017-09-19 21:40:57 +09:00
<Compile Include= "Tests\TestCaseCatchPlayer.cs" />
2017-11-28 21:22:57 +09:00
<Compile Include= "Tests\TestCaseHyperdash.cs" />
2017-11-28 18:39:45 +09:00
<Compile Include= "UI\CatcherArea.cs" />
2017-08-09 13:28:29 +09:00
<Compile Include= "UI\CatchRulesetContainer.cs" />
2016-11-14 18:54:24 +09:00
<Compile Include= "UI\CatchPlayfield.cs" />
<Compile Include= "CatchRuleset.cs" />
2018-01-09 13:41:57 +09:00
<Compile Include= "Mods\CatchModNoFail.cs" />
2016-11-14 18:54:24 +09:00
</ItemGroup>
<ItemGroup >
2017-09-13 20:25:40 +09:00
<None Include= "app.config" />
2016-11-14 18:54:24 +09:00
<None Include= "OpenTK.dll.config" />
<None Include= "packages.config" />
</ItemGroup>
<ItemGroup >
<ProjectReference Include= "..\osu-framework\osu.Framework\osu.Framework.csproj" >
<Project > {C76BF5B3-985E-4D39-95FE-97C9C879B83A}</Project>
<Name > osu.Framework</Name>
2017-10-23 20:58:50 +09:00
<Private > True</Private>
2016-11-14 18:54:24 +09:00
</ProjectReference>
<ProjectReference Include= "..\osu.Game\osu.Game.csproj" >
2017-09-18 22:32:49 +09:00
<Project > {2a66dd92-adb1-4994-89e2-c94e04acda0d}</Project>
2016-11-14 18:54:24 +09:00
<Name > osu.Game</Name>
2017-10-23 20:58:50 +09:00
<Private > True</Private>
2016-11-14 18:54:24 +09:00
</ProjectReference>
</ItemGroup>
2017-12-08 11:05:00 +01:00
<ItemGroup >
<Service Include= "{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
</ItemGroup>
2016-11-14 18:54:24 +09:00
<Import Project= "$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
2018-02-07 14:11:54 +09:00
<Import Project= "$(SolutionDir)\packages\SQLitePCLRaw.lib.e_sqlite3.linux.1.1.8\build\net35\SQLitePCLRaw.lib.e_sqlite3.linux.targets" Condition= "Exists('$(SolutionDir)\packages\SQLitePCLRaw.lib.e_sqlite3.linux.1.1.8\build\net35\SQLitePCLRaw.lib.e_sqlite3.linux.targets')" />
<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>
<Error Condition= "!Exists('$(SolutionDir)\packages\SQLitePCLRaw.lib.e_sqlite3.linux.1.1.8\build\net35\SQLitePCLRaw.lib.e_sqlite3.linux.targets')" Text= "$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\packages\SQLitePCLRaw.lib.e_sqlite3.linux.1.1.8\build\net35\SQLitePCLRaw.lib.e_sqlite3.linux.targets'))" />
<Error Condition= "!Exists('$(SolutionDir)\packages\SQLitePCLRaw.lib.e_sqlite3.osx.1.1.8\build\net35\SQLitePCLRaw.lib.e_sqlite3.osx.targets')" Text= "$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\packages\SQLitePCLRaw.lib.e_sqlite3.osx.1.1.8\build\net35\SQLitePCLRaw.lib.e_sqlite3.osx.targets'))" />
<Error Condition= "!Exists('$(SolutionDir)\packages\SQLitePCLRaw.lib.e_sqlite3.v110_xp.1.1.8\build\net35\SQLitePCLRaw.lib.e_sqlite3.v110_xp.targets')" Text= "$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\packages\SQLitePCLRaw.lib.e_sqlite3.v110_xp.1.1.8\build\net35\SQLitePCLRaw.lib.e_sqlite3.v110_xp.targets'))" />
2016-11-14 18:54:24 +09:00
</Target>
2018-02-07 14:11:54 +09:00
<Import Project= "$(SolutionDir)\packages\SQLitePCLRaw.lib.e_sqlite3.osx.1.1.8\build\net35\SQLitePCLRaw.lib.e_sqlite3.osx.targets" Condition= "Exists('$(SolutionDir)\packages\SQLitePCLRaw.lib.e_sqlite3.osx.1.1.8\build\net35\SQLitePCLRaw.lib.e_sqlite3.osx.targets')" />
<Import Project= "$(SolutionDir)\packages\SQLitePCLRaw.lib.e_sqlite3.v110_xp.1.1.8\build\net35\SQLitePCLRaw.lib.e_sqlite3.v110_xp.targets" Condition= "Exists('$(SolutionDir)\packages\SQLitePCLRaw.lib.e_sqlite3.v110_xp.1.1.8\build\net35\SQLitePCLRaw.lib.e_sqlite3.v110_xp.targets')" />
2016-11-14 18:54:24 +09:00
</Project>