mirror of
https://github.com/quamotion/dotnet-packaging.git
synced 2026-02-17 05:45:08 +00:00
Create a RPM for specific project in solution #137
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Motke84 on GitHub (Aug 3, 2023).
Hi,
I am trying to create RPM packages for a specific project in the solution. I am using the msbuild command on the solution file, like this:
dotnet msbuild "C:\repo\repo.sln" /t:CreateRpm ...This command creates RPM packages for all my projects. However, I am wondering if there is a way to specify only the projects that I need to create RPM packages for. Is there a way to do this?
@sbannikov commented on GitHub (Aug 5, 2023):
as far as I know, you can use such command:
for Debian packaging it's working
alternate method:
dotnet msbuild "C:\repo\specificProject.csproj" /t:CreateRpm ...