GameBundle/GameBundle/GameBundle.csproj

24 lines
1 KiB
XML
Raw Normal View History

2020-04-09 16:18:50 +02:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
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>
<PackageLicenseUrl>https://github.com/Ellpeck/GameBundle/blob/master/LICENSE</PackageLicenseUrl>
<PackageIconUrl>https://raw.githubusercontent.com/Ellpeck/GameBundle/master/Logo.png</PackageIconUrl>
2020-04-09 18:06:01 +02:00
<PackAsTool>true</PackAsTool>
<ToolCommandName>gamebundle</ToolCommandName>
<VersionPrefix>0.0.1</VersionPrefix>
2020-04-09 16:18:50 +02:00
</PropertyGroup>
2020-04-09 18:06:01 +02:00
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.7.82" />
</ItemGroup>
2020-04-09 16:18:50 +02:00
</Project>