2016-11-14 17:54:24 +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>{58F6C80C-1253-4A0E-A465-B8C85EBEADF3}</ProjectGuid>
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
2017-04-18 15:05:58 +08:00
|
|
|
|
<RootNamespace>osu.Game.Rulesets.Catch</RootNamespace>
|
|
|
|
|
<AssemblyName>osu.Game.Rulesets.Catch</AssemblyName>
|
2017-09-11 11:35:40 +08:00
|
|
|
|
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
2016-11-14 17:54:24 +08:00
|
|
|
|
<FileAlignment>512</FileAlignment>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
<Optimize>false</Optimize>
|
2017-10-14 01:10:21 +08:00
|
|
|
|
<OutputPath>bin\Debug\</OutputPath>
|
2016-11-14 17:54:24 +08:00
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
2017-02-12 14:42:20 +08:00
|
|
|
|
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
2017-04-16 05:44:08 +08:00
|
|
|
|
<LangVersion>6</LangVersion>
|
2016-11-14 17:54:24 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
|
<Optimize>true</Optimize>
|
2017-10-14 01:10:21 +08:00
|
|
|
|
<OutputPath>bin\Release\</OutputPath>
|
2016-11-14 17:54:24 +08:00
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
2017-02-12 14:42:20 +08:00
|
|
|
|
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
2016-11-14 17:54:24 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
2017-09-18 21:32:49 +08:00
|
|
|
|
<Reference Include="nunit.framework, Version=3.8.1.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
|
2017-09-18 23:07:06 +08:00
|
|
|
|
<HintPath>$(SolutionDir)\packages\NUnit.3.8.1\lib\net45\nunit.framework.dll</HintPath>
|
2017-10-23 19:58:50 +08:00
|
|
|
|
<Private>True</Private>
|
2017-09-18 21:32:49 +08:00
|
|
|
|
</Reference>
|
2017-06-13 10:50:46 +08:00
|
|
|
|
<Reference Include="OpenTK, Version=3.0.0.0, Culture=neutral, PublicKeyToken=bad199fe84eb3df4, processorArchitecture=MSIL">
|
2017-09-13 19:25:40 +08:00
|
|
|
|
<HintPath>$(SolutionDir)\packages\OpenTK.3.0.0-git00009\lib\net20\OpenTK.dll</HintPath>
|
2017-10-23 19:58:50 +08:00
|
|
|
|
<Private>True</Private>
|
2016-11-14 17:54:24 +08:00
|
|
|
|
</Reference>
|
|
|
|
|
<Reference Include="System" />
|
2017-08-09 10:50:34 +08:00
|
|
|
|
<Reference Include="System.Collections" />
|
2016-11-14 17:54:24 +08:00
|
|
|
|
<Reference Include="System.Core" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2017-03-11 23:34:21 +08:00
|
|
|
|
<Compile Include="Beatmaps\CatchBeatmapConverter.cs" />
|
2017-09-15 19:54:34 +08:00
|
|
|
|
<Compile Include="Beatmaps\CatchBeatmapProcessor.cs" />
|
2017-02-20 00:41:51 +08:00
|
|
|
|
<Compile Include="CatchDifficultyCalculator.cs" />
|
2017-08-09 14:15:41 +08:00
|
|
|
|
<Compile Include="CatchInputManager.cs" />
|
2017-10-09 18:42:55 +08:00
|
|
|
|
<Compile Include="Objects\Drawable\DrawableCatchHitObject.cs" />
|
2017-10-10 15:34:01 +08: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" />
|
2017-03-24 08:51:52 +08:00
|
|
|
|
<Compile Include="Scoring\CatchScoreProcessor.cs" />
|
2017-03-23 18:00:18 +08:00
|
|
|
|
<Compile Include="Judgements\CatchJudgement.cs" />
|
2016-11-14 17:54:24 +08:00
|
|
|
|
<Compile Include="Objects\CatchBaseHit.cs" />
|
|
|
|
|
<Compile Include="Objects\Drawable\DrawableFruit.cs" />
|
|
|
|
|
<Compile Include="Objects\Droplet.cs" />
|
|
|
|
|
<Compile Include="Objects\Fruit.cs" />
|
2017-10-11 19:11:29 +08:00
|
|
|
|
<Compile Include="Objects\TinyDroplet.cs" />
|
2016-11-14 17:54:24 +08:00
|
|
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
2017-09-18 21:32:49 +08:00
|
|
|
|
<Compile Include="Tests\TestCaseCatcher.cs" />
|
2017-10-10 15:34:01 +08:00
|
|
|
|
<Compile Include="Tests\TestCaseCatchStacker.cs" />
|
2017-09-19 20:40:57 +08:00
|
|
|
|
<Compile Include="Tests\TestCaseCatchPlayer.cs" />
|
2017-10-02 21:55:37 +08:00
|
|
|
|
<Compile Include="UI\Catcher.cs" />
|
2017-08-09 12:28:29 +08:00
|
|
|
|
<Compile Include="UI\CatchRulesetContainer.cs" />
|
2016-11-14 17:54:24 +08:00
|
|
|
|
<Compile Include="UI\CatchPlayfield.cs" />
|
|
|
|
|
<Compile Include="CatchRuleset.cs" />
|
2017-03-12 21:13:43 +08:00
|
|
|
|
<Compile Include="Mods\CatchMod.cs" />
|
2016-11-14 17:54:24 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2016-12-06 17:56:20 +08:00
|
|
|
|
<None Include="..\osu.licenseheader">
|
|
|
|
|
<Link>osu.licenseheader</Link>
|
|
|
|
|
</None>
|
2017-09-13 19:25:40 +08:00
|
|
|
|
<None Include="app.config" />
|
2016-11-14 17:54:24 +08: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 19:58:50 +08:00
|
|
|
|
<Private>True</Private>
|
2016-11-14 17:54:24 +08:00
|
|
|
|
</ProjectReference>
|
|
|
|
|
<ProjectReference Include="..\osu.Game\osu.Game.csproj">
|
2017-09-18 21:32:49 +08:00
|
|
|
|
<Project>{2a66dd92-adb1-4994-89e2-c94e04acda0d}</Project>
|
2016-11-14 17:54:24 +08:00
|
|
|
|
<Name>osu.Game</Name>
|
2017-10-23 19:58:50 +08:00
|
|
|
|
<Private>True</Private>
|
2016-11-14 17:54:24 +08:00
|
|
|
|
</ProjectReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
2017-04-12 18:20:30 +08:00
|
|
|
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
2016-11-14 17:54:24 +08:00
|
|
|
|
Other similar extension points exist, see Microsoft.Common.targets.
|
|
|
|
|
<Target Name="BeforeBuild">
|
|
|
|
|
</Target>
|
|
|
|
|
<Target Name="AfterBuild">
|
|
|
|
|
</Target>
|
|
|
|
|
-->
|
|
|
|
|
</Project>
|