mirror of
https://github.com/quamotion/dotnet-packaging.git
synced 2026-02-04 05:35:40 +00:00
24 lines
1.1 KiB
XML
24 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0;net10.0</TargetFrameworks>
|
|
<PackageTags>dotnet cli packaging deb debian ubuntu mint installer</PackageTags>
|
|
<Description>Create Debian and Ubuntu installers (.deb files ) of your .NET Core projects straight from the command line.
|
|
|
|
Once you've installed this package as a .NET CLI tool, run dotnet deb to generate a .deb file which contains the publish output of your .NET Project.
|
|
|
|
See https://github.com/qmfrederik/dotnet-packaging/ for more information on how to use dotnet deb.</Description>
|
|
<PackAsTool>true</PackAsTool>
|
|
<ToolCommandName>dotnet-deb</ToolCommandName>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.CommandLine" Version="2.0.0-beta1.21308.1" />
|
|
<PackageReference Include="Microsoft.Build" Version="16.6.0" ExcludeAssets="runtime" />
|
|
<PackageReference Include="Microsoft.Build.Locator" Version="1.4.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="..\dotnet-rpm\PackagingRunner.cs" Link="PackagingRunner.cs" />
|
|
</ItemGroup>
|
|
</Project> |