2018-05-28 09:43:53 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2017-12-01 09:50:28 +00:00
|
|
|
|
<PropertyGroup Label="Project">
|
2019-10-10 08:45:38 +00:00
|
|
|
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
2018-03-26 06:12:13 +00:00
|
|
|
|
<OutputType>WinExe</OutputType>
|
2017-12-01 09:50:28 +00:00
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
<Description>click the circles. to the beat.</Description>
|
|
|
|
|
<AssemblyName>osu!</AssemblyName>
|
|
|
|
|
<Title>osu!lazer</Title>
|
|
|
|
|
<Product>osu!lazer</Product>
|
|
|
|
|
<ApplicationIcon>lazer.ico</ApplicationIcon>
|
2018-05-02 08:33:48 +00:00
|
|
|
|
<Version>0.0.0</Version>
|
|
|
|
|
<FileVersion>0.0.0</FileVersion>
|
2017-12-01 09:50:28 +00:00
|
|
|
|
</PropertyGroup>
|
2018-03-26 10:42:33 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<StartupObject>osu.Desktop.Program</StartupObject>
|
|
|
|
|
</PropertyGroup>
|
2017-12-01 09:50:28 +00:00
|
|
|
|
<ItemGroup Label="Project References">
|
2018-11-06 05:49:09 +00:00
|
|
|
|
<ProjectReference Include="..\osu.Game.Tournament\osu.Game.Tournament.csproj" />
|
2018-03-28 06:19:56 +00:00
|
|
|
|
<ProjectReference Include="..\osu.Game\osu.Game.csproj" />
|
2017-12-01 09:50:28 +00:00
|
|
|
|
<ProjectReference Include="..\osu.Game.Rulesets.Osu\osu.Game.Rulesets.Osu.csproj" />
|
|
|
|
|
<ProjectReference Include="..\osu.Game.Rulesets.Catch\osu.Game.Rulesets.Catch.csproj" />
|
|
|
|
|
<ProjectReference Include="..\osu.Game.Rulesets.Mania\osu.Game.Rulesets.Mania.csproj" />
|
|
|
|
|
<ProjectReference Include="..\osu.Game.Rulesets.Taiko\osu.Game.Rulesets.Taiko.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup Label="Package References">
|
2019-09-23 20:29:36 +00:00
|
|
|
|
<PackageReference Include="System.IO.Packaging" Version="4.6.0" />
|
2019-05-08 12:08:46 +00:00
|
|
|
|
<PackageReference Include="ppy.squirrel.windows" Version="1.9.0.4" />
|
2019-08-03 21:34:51 +00:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="2.2.6" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="2.2.6" />
|
2019-10-30 14:56:33 +00:00
|
|
|
|
<PackageReference Include="Microsoft.Win32.Registry" Version="4.6.0" />
|
2017-12-01 09:50:28 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup Label="Resources">
|
|
|
|
|
<EmbeddedResource Include="lazer.ico" />
|
|
|
|
|
</ItemGroup>
|
2018-07-31 17:58:39 +00:00
|
|
|
|
</Project>
|