mirror of
https://github.com/quamotion/dotnet-packaging.git
synced 2026-02-15 13:46:36 +00:00
Cannot set DebSection #89
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 @kuenzign on GitHub (Sep 14, 2020).
I am unable to set the
DebSectionmsbuild variable and have the Section field of the .deb be modified. I am able to properly set theDebPriorityandDebPackageArchitecture, but notDebSection. I believe that this is caused by theCreateDebtarget referencing$(Section)instead of$(DebSection)here:9941587984/Packaging.Targets/build/Packaging.Targets.targets (L128)If I use
DebSection, then the .deb has the Section field set to the default 'misc'. If I useSection, then the .deb has no Section field.@qmfrederik commented on GitHub (Sep 17, 2020):
Thanks for reporting this. Yes, it's probably a bug. You should be able to verify this by setting both
DebSectionandSection.If this works for you, would you mind opening a PR which fixes this?
@kuenzign commented on GitHub (Sep 17, 2020):
Yes, setting both
DebSectionandSection, did work. I will set up a PR.