mirror of
https://github.com/quamotion/dotnet-packaging.git
synced 2026-02-16 13:55:09 +00:00
Deb creation, setting the install path? #28
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 @danielmoncada on GitHub (May 2, 2018).
Is there any way we can set the install path for a deb package? Right now, it defaults to
/usr/share, I'd like to specify a different directory, such as/opt/<company name>/@qmfrederik commented on GitHub (May 3, 2018):
You should be able to set the Prefix property in your
.csprojfile.The default
/usr/shareprefix is calculated here.So if you add:
the
dotnet debcommand should pick up that path.@danielmoncada commented on GitHub (May 3, 2018):
@qmfrederik thank you very much. great work on this. 👍
on a side note, are there plans to support .net core 2.1?
@qmfrederik commented on GitHub (Sep 5, 2018):
@danielmoncada It seems like I've answered your question, so I'll go ahead and close this issue for now :). I also believe we're compatible with .NET Core 2.1, let me know if you find any issues.