-
Notifications
You must be signed in to change notification settings - Fork 464
Expand file tree
/
Copy pathosu.Framework.csproj
More file actions
61 lines (58 loc) · 3.6 KB
/
osu.Framework.csproj
File metadata and controls
61 lines (58 loc) · 3.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Label="Project">
<TargetFramework>net8.0</TargetFramework>
<OutputType>Library</OutputType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AssemblyTitle>osu!framework</AssemblyTitle>
<AssemblyName>osu.Framework</AssemblyName>
<Description>A 2D application/game framework written with rhythm games in mind.</Description>
<!-- Enabling this breaks iOS projects from building due to silly naming conflicts (https://github.com/dotnet/runtime/issues/79500#issuecomment-1345624309).
It's still enabled externally on packaging scripts so should be fine to disable in project. -->
<!--<GenerateDocumentationFile>true</GenerateDocumentationFile>-->
<NoWarn>$(NoWarn);CS1591;NU5104</NoWarn>
<DefineConstants>$(DefineConstants);JETBRAINS_ANNOTATIONS</DefineConstants>
</PropertyGroup>
<PropertyGroup Label="Nuget">
<Title>osu!framework</Title>
<PackageId>ppy.osu.Framework</PackageId>
<PackageReleaseNotes>Automated release.</PackageReleaseNotes>
<PackageTags>osu game framework</PackageTags>
</PropertyGroup>
<ItemGroup Label="Package References">
<PackageReference Include="managed-midi" Version="1.10.1" />
<PackageReference Include="FFmpeg.AutoGen" Version="4.3.0.1" />
<PackageReference Include="Microsoft.Extensions.ObjectPool" Version="5.0.11" />
<PackageReference Include="Microsoft.Windows.CsWin32" Version="0.3.205">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="ppy.ManagedBass" Version="2022.1216.0" />
<PackageReference Include="ppy.ManagedBass.Fx" Version="2022.1216.0" />
<PackageReference Include="ppy.ManagedBass.Mix" Version="2022.1216.0" />
<PackageReference Include="ppy.ManagedBass.Wasapi" Version="2022.1216.0" />
<PackageReference Include="ppy.Veldrid" Version="4.9.69-ga405fe8484" />
<PackageReference Include="ppy.Veldrid.SPIRV" Version="1.0.15-g5911265ec3" />
<PackageReference Include="SharpFNT" Version="2.0.0" />
<!-- Preview version of ImageSharp causes NU5104. -->
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.11" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="OpenTabletDriver" Version="0.6.6.0" />
<PackageReference Include="JetBrains.Annotations" Version="2023.3.0" />
<PackageReference Include="ppy.osuTK.NS20" Version="1.0.211" />
<PackageReference Include="StbiSharp" Version="1.1.0" />
<PackageReference Include="ppy.SDL2-CS" Version="1.0.741-alpha" />
<PackageReference Include="ppy.SDL3-CS" Version="2025.920.0" />
<PackageReference Include="ppy.osu.Framework.SourceGeneration" Version="2024.1128.0" />
<!-- DO NOT use ProjectReference for native packaging project.
See https://github.com/NuGet/Home/issues/4514 and https://github.com/dotnet/sdk/issues/765 . -->
<PackageReference Include="ppy.osu.Framework.NativeLibs" Version="2025.806.0-nativelibs" />
<!-- Any version ahead of this will cause AOT issues with iOS
See https://github.com/mono/mono/issues/21188 -->
<PackageReference Include="Microsoft.Diagnostics.Runtime" Version="2.0.161401" />
<!-- Any version ahead of this will cause runtime issues on iOS
See https://github.com/xoofx/markdig/issues/564 -->
<PackageReference Include="Markdig" Version="0.23.0" />
<PackageReference Include="System.Numerics.Tensors" Version="8.0.0" />
</ItemGroup>
</Project>