mirror of
https://github.com/Ellpeck/GameBundle.git
synced 2024-11-14 21:19:08 +01:00
33 lines
1.3 KiB
XML
33 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<RollForward>Major</RollForward>
|
|
|
|
<Authors>Ellpeck</Authors>
|
|
<Description>A tool to package MonoGame and other .NET Core applications into several distributable formats</Description>
|
|
<PackageTags>monogame mono xna netcore dotnet publish bundle tool library</PackageTags>
|
|
<PackageProjectUrl>https://github.com/Ellpeck/GameBundle</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/Ellpeck/GameBundle</RepositoryUrl>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<PackageIcon>Logo.png</PackageIcon>
|
|
<PackAsTool>true</PackAsTool>
|
|
<ToolCommandName>gamebundle</ToolCommandName>
|
|
<VersionPrefix>1.5.4</VersionPrefix>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="CommandLineParser" Version="2.7.82" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include=".config\dotnet-tools.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
<None Include="../README.md" Pack="true" PackagePath="" />
|
|
<None Include="../Logo.png" Pack="true" PackagePath="" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|