GameBundle/GameBundle/GameBundle.csproj

34 lines
1.3 KiB
XML
Raw Normal View History

2020-04-09 16:18:50 +02:00
<Project Sdk="Microsoft.NET.Sdk">
2021-10-16 17:58:36 +02:00
2020-04-09 16:18:50 +02:00
<PropertyGroup>
<OutputType>Exe</OutputType>
2022-02-05 15:49:34 +01:00
<TargetFramework>net6.0</TargetFramework>
2023-02-05 14:32:47 +01:00
<RollForward>Major</RollForward>
2021-10-16 17:58:36 +02:00
2020-04-09 18:06:01 +02:00
<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>
2021-10-16 17:58:36 +02:00
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>Logo.png</PackageIcon>
2020-04-09 18:06:01 +02:00
<PackAsTool>true</PackAsTool>
<ToolCommandName>gamebundle</ToolCommandName>
2023-05-22 15:32:50 +02:00
<VersionPrefix>1.5.4</VersionPrefix>
2020-04-09 16:18:50 +02:00
</PropertyGroup>
2021-10-16 17:58:36 +02:00
2020-04-09 18:06:01 +02:00
<ItemGroup>
2021-10-16 17:58:36 +02:00
<PackageReference Include="CommandLineParser" Version="2.7.82" />
2020-04-09 18:06:01 +02:00
</ItemGroup>
2021-10-16 17:58:36 +02:00
<ItemGroup>
2021-10-16 17:58:36 +02:00
<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>
2020-04-09 16:18:50 +02:00
</Project>