2018-05-28 18:43:53 +09:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2017-12-01 18:50:28 +09:00
|
|
|
|
<PropertyGroup Label="Project">
|
2022-02-10 15:25:54 +09:00
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2018-03-26 15:12:13 +09:00
|
|
|
|
<OutputType>WinExe</OutputType>
|
2017-12-01 18:50:28 +09:00
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2020-08-16 12:53:31 +02:00
|
|
|
|
<Description>A free-to-win rhythm game. Rhythm is just a *click* away!</Description>
|
2017-12-01 18:50:28 +09:00
|
|
|
|
<AssemblyName>osu!</AssemblyName>
|
2021-07-04 12:39:50 +09:00
|
|
|
|
<Title>osu!</Title>
|
2021-07-19 11:38:28 +09:00
|
|
|
|
<Product>osu!(lazer)</Product>
|
2017-12-01 18:50:28 +09:00
|
|
|
|
<ApplicationIcon>lazer.ico</ApplicationIcon>
|
2019-12-07 19:51:54 +01:00
|
|
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
2018-05-02 16:33:48 +08:00
|
|
|
|
<Version>0.0.0</Version>
|
|
|
|
|
<FileVersion>0.0.0</FileVersion>
|
2017-12-01 18:50:28 +09:00
|
|
|
|
</PropertyGroup>
|
2018-03-26 19:42:33 +09:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<StartupObject>osu.Desktop.Program</StartupObject>
|
|
|
|
|
</PropertyGroup>
|
2017-12-01 18:50:28 +09:00
|
|
|
|
<ItemGroup Label="Project References">
|
2018-11-06 14:49:09 +09:00
|
|
|
|
<ProjectReference Include="..\osu.Game.Tournament\osu.Game.Tournament.csproj" />
|
2018-03-28 15:19:56 +09:00
|
|
|
|
<ProjectReference Include="..\osu.Game\osu.Game.csproj" />
|
2017-12-01 18:50:28 +09: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">
|
2022-05-11 19:51:22 +09:00
|
|
|
|
<PackageReference Include="Clowd.Squirrel" Version="2.9.40" />
|
2021-04-26 22:37:08 -04:00
|
|
|
|
<PackageReference Include="Mono.Posix.NETStandard" Version="1.0.0" />
|
2022-02-15 13:22:14 +09:00
|
|
|
|
<PackageReference Include="System.IO.Packaging" Version="6.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="5.0.14" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.14">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2021-02-01 18:09:07 +00:00
|
|
|
|
<PackageReference Include="DiscordRichPresence" Version="1.0.175" />
|
2017-12-01 18:50:28 +09:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup Label="Resources">
|
|
|
|
|
<EmbeddedResource Include="lazer.ico" />
|
|
|
|
|
</ItemGroup>
|
2018-08-01 02:58:39 +09:00
|
|
|
|
</Project>
|