-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
kuiper
committed
Mar 18, 2024
1 parent
c1c1e62
commit f9bb38c
Showing
4 changed files
with
15 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# PUPNET DEPLOY: 1.7.1 | ||
# PUPNET DEPLOY: 1.8.0 | ||
# Use: 'pupnet --help conf' for information. | ||
|
||
# APP PREAMBLE | ||
|
@@ -10,19 +10,19 @@ AppShortSummary = Cross-platform deployment utility which packages your .NET pro | |
AppDescription = """ | ||
PupNet Deploy is a cross-platform deployment utility which packages your .NET project as a ready-to-ship | ||
installation file in a single step. | ||
|
||
It has been possible to cross-compile console C# applications for sometime now. More recently, the cross-platform | ||
Avalonia replacement for WPF allows fully-featured GUI applications to target a range of platforms, including: | ||
Linux, Windows, MacOS and Android. | ||
|
||
Now, PupNet Deploy allows you to ship your dotnet application as: | ||
* AppImage for Linux | ||
* Setup File for Windows | ||
* Flatpak | ||
* Debian Binary Package | ||
* RPM Binary Package | ||
* Plain old Zip | ||
|
||
PupNet has good support for internationalization, desktop icons, publisher metadata and custom build operations. | ||
Although developed for .NET, it is also possible to use it to deploy C++ and other kinds of applications. | ||
""" | ||
|
@@ -40,7 +40,7 @@ PublisherEmail = [email protected] | |
# DESKTOP INTEGRATION | ||
DesktopNoDisplay = true | ||
DesktopTerminal = true | ||
DesktopFile = | ||
DesktopFile = | ||
StartCommand = pupnet | ||
PrimeCategory = Development | ||
MetaFile = Deploy/PupNet.metainfo.xml | ||
|
@@ -59,15 +59,15 @@ IconFiles = """ | |
# DOTNET PUBLISH | ||
DotnetProjectPath = PupNet | ||
DotnetPublishArgs = -p:Version=${APP_VERSION} --self-contained true -p:PublishReadyToRun=true -p:DebugType=None -p:DebugSymbols=false | ||
DotnetPostPublish = | ||
DotnetPostPublishOnWindows = | ||
DotnetPostPublish = | ||
DotnetPostPublishOnWindows = | ||
|
||
# PACKAGE OUTPUT | ||
PackageName = PupNet-Deploy | ||
OutputDirectory = Deploy/OUT | ||
|
||
# APPIMAGE OPTIONS | ||
AppImageArgs = | ||
AppImageArgs = | ||
AppImageVersionOutput = true | ||
|
||
# FLATPAK OPTIONS | ||
|
@@ -80,7 +80,7 @@ FlatpakFinishArgs = """ | |
--filesystem=host | ||
--share=network | ||
""" | ||
FlatpakBuilderArgs = | ||
FlatpakBuilderArgs = | ||
|
||
# RPM OPTIONS | ||
RpmAutoReq = false | ||
|
@@ -106,9 +106,10 @@ DebianRecommends = """ | |
""" | ||
|
||
# WINDOWS SETUP OPTIONS | ||
SetupGroupName = | ||
SetupAdminInstall = false | ||
SetupCommandPrompt = PupNet Console | ||
SetupMinWindowsVersion = 10 | ||
SetupSignTool = | ||
SetupSuffixOutput = | ||
SetupSignTool = | ||
SetupSuffixOutput = | ||
SetupVersionOutput = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters