2017-12-01 17:50:28 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<Import Project="..\osu.Game.props" />
|
|
|
|
|
<PropertyGroup Label="Project">
|
2018-03-27 17:55:27 +08:00
|
|
|
|
<TargetFrameworks>net461;netcoreapp2.0</TargetFrameworks>
|
2018-03-26 14:12:13 +08:00
|
|
|
|
<OutputType>WinExe</OutputType>
|
2017-12-01 17:50:28 +08:00
|
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
|
|
|
<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-03-29 11:47:17 +08:00
|
|
|
|
<Version>0.0.0.0</Version>
|
|
|
|
|
<FileVersion>0.0.0.0</FileVersion>
|
2017-12-01 17:50:28 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Label="Defines">
|
|
|
|
|
<DefineConstants Condition="'$(TargetFramework)' == 'net461'">$(DefineConstants);NET_FRAMEWORK</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
2018-03-26 18:42:33 +08:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<StartupObject>osu.Desktop.Program</StartupObject>
|
|
|
|
|
</PropertyGroup>
|
2017-12-01 17:50:28 +08:00
|
|
|
|
<ItemGroup Label="Project References">
|
|
|
|
|
<ProjectReference Include="..\osu-framework\osu.Framework\osu.Framework.csproj" />
|
2018-03-28 14:19:56 +08:00
|
|
|
|
<ProjectReference Include="..\osu.Game\osu.Game.csproj" />
|
2017-12-01 17:50:28 +08: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" />
|
|
|
|
|
<ProjectReference Include="..\osu-resources\osu.Game.Resources\osu.Game.Resources.csproj" />
|
|
|
|
|
<PackageReference Include="Microsoft.Win32.Registry" Version="4.4.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup Label="Package References">
|
2018-03-26 17:40:59 +08:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="2.0.1" />
|
2017-12-01 17:50:28 +08:00
|
|
|
|
<PackageReference Include="squirrel.windows" Version="1.7.8" Condition="'$(TargetFramework)' == 'net461'" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup Label="Resources">
|
|
|
|
|
<EmbeddedResource Include="lazer.ico" />
|
|
|
|
|
</ItemGroup>
|
2017-10-14 01:10:21 +08:00
|
|
|
|
</Project>
|