-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAyur.csproj
More file actions
22 lines (19 loc) · 766 Bytes
/
Copy pathAyur.csproj
File metadata and controls
22 lines (19 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!-- Ayur Framework - Lightweight 2D Game Framework for C# -->
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- .NET 10 - Latest LTS with best performance -->
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Platforms>AnyCPU;x64</Platforms>
</PropertyGroup>
<!-- Only essential dependencies -->
<ItemGroup>
<!-- SDL3 for cross-platform rendering (Windows, Linux, macOS) -->
<PackageReference Include="ppy.SDL3-CS" Version="2025.816.0" />
<!-- SDL3 Image for texture loading (PNG, JPG, BMP, etc.) -->
<PackageReference Include="ppy.SDL3_image-CS" Version="2025.816.0" />
</ItemGroup>
</Project>