forked from flibitijibibo/SDL2-CS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SDL2-CS.Core.csproj
58 lines (55 loc) · 2.39 KB
/
SDL2-CS.Core.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Platforms>x64</Platforms>
</PropertyGroup>
<PropertyGroup>
<EnableDefaultItems>false</EnableDefaultItems>
<AssemblyName>SDL2-CS</AssemblyName>
<RootNamespace>SDL2</RootNamespace>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' != 'net40' ">
<IsTrimmable>true</IsTrimmable>
<EnableAOTAnalyzer>true</EnableAOTAnalyzer>
</PropertyGroup>
<PropertyGroup>
<SDLSettingsPropsFilePath>$(SolutionDir)SDL2-CS.Settings.props</SDLSettingsPropsFilePath>
</PropertyGroup>
<Import Project="$(SDLSettingsPropsFilePath)" Condition="Exists('$(SDLSettingsPropsFilePath)')" />
<Target Name="ValidatePropsFilePath" BeforeTargets="BeforeBuild">
<Message Importance="High" Text="No property overrides found at '$(SDLSettingsPropsFilePath)'" Condition="!Exists('$(SDLSettingsPropsFilePath)')" />
<Message Importance="High" Text="Loaded property overrides from '$(SDLSettingsPropsFilePath)'" Condition="Exists('$(SDLSettingsPropsFilePath)')" />
</Target>
<ItemGroup>
<Compile Include="src\SDL2.cs" />
<Compile Include="src\SDL2_gfx.cs" />
<Compile Include="src\SDL2_image.cs" />
<Compile Include="src\SDL2_mixer.cs" />
<Compile Include="src\SDL2_ttf.cs" />
</ItemGroup>
<ItemGroup>
<None Include="app.config" Pack="true" PackagePath="lib/$(TargetFramework)/$(TargetName).dll.config" />
<None Include="README" Pack="true" PackagePath="./" />
</ItemGroup>
<PropertyGroup>
<PackageId>SDL2-CS</PackageId>
<Version Condition="'$(Version)' == ''">2.0.30</Version>
<Authors>flibitijibibo</Authors>
<Owners>beannaich</Owners>
<Description>SDL2# - C# Wrapper for SDL2</Description>
<Copyright>Copyright 2013-2024</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/flibitijibibo/SDL2-CS</PackageProjectUrl>
<PackageReadmeFile>README</PackageReadmeFile>
<RepositoryUrl>https://github.com/flibitijibibo/SDL2-CS</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<PackageTags>SDL2# SDL2 SDL</PackageTags>
<!--
NU5128 - Sub directories don't match in all first level directories.
This is okay because tooling binaries are executables.
-->
<NoWarn>NU5128</NoWarn>
</PropertyGroup>
</Project>