-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
41 lines (32 loc) · 1.57 KB
/
Directory.Build.props
File metadata and controls
41 lines (32 loc) · 1.57 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
<!-- Global configuration -->
<Project>
<PropertyGroup>
<Authors>NebulaDev</Authors>
<Description>A cross-platform 2D game/application framework built with flexibility in mind.</Description>
<PackageTags>game, framework, engine, 2d, cross-platform</PackageTags>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageProjectUrl>https://github.com/nebula-developer/natsu</PackageProjectUrl>
<RepositoryUrl>https://github.com/nebula-developer/natsu</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<NativeLibsVer>0.4.1-beta</NativeLibsVer>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>CS1591, NU5104</NoWarn>
<!--
This supresses various warnings related to the
PublishTrimmed property. If you feel these may
be relevant, feel free to comment this line out.
-->
<NoWarn>$(NoWarn);IL2091;IL2111;IL2104</NoWarn>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)/README.md" Pack="true" PackagePath="" />
<None Include="$(MSBuildThisFileDirectory)/LICENSE" Pack="true" PackagePath="" />
</ItemGroup>
</Project>