-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSFMLSharp.Extensions.csproj
36 lines (30 loc) · 1.07 KB
/
SFMLSharp.Extensions.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>preview</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>SFML</RootNamespace>
</PropertyGroup>
<PropertyGroup>
<PackageId>SFMLSharp.Extensions</PackageId>
<Version>2.5.1-alpha.1.0</Version>
<Authors>Yvvki Rika</Authors>
<PackageDescription>
SFML is a simple, fast, cross-platform and object-oriented multimedia API.
It provides access to windowing, graphics, audio and network.
It is originally written in C++,
and this is the extensions for SFMLSharp.
</PackageDescription>
<RepositoryUrl>https://github.com/YvvkiRika/SFMLSharp</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.HighPerformance" Version="7.1.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SFMLSharp\SFMLSharp.csproj" />
</ItemGroup>
</Project>