-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathXnb.Exporter.csproj
29 lines (25 loc) · 1.16 KB
/
Xnb.Exporter.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<Authors>Modz2014</Authors>
<Company />
<Description>Xnb.Exporter is a lightweight library for extracting and exporting assets from XNB files. Ideal for developers using XNA and MonoGame, it supports textures, models, and animations. Simplify your asset management with Xnb.Exporter.</Description>
<Title>Xnb.Exporter: Export Textures, Models, and More</Title>
<PackageProjectUrl>https://github.com/modz2014/Xnb.Exporter</PackageProjectUrl>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<None Include="LICENSE.txt">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="MonoGame.Framework.WindowsDX" Version="3.8.1.303" />
</ItemGroup>
</Project>