Skip to content

Commit c963095

Browse files
committed
Keypress
1 parent 87697a1 commit c963095

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

CHANGES

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
+ Version 1.0.2; 2023-04-18
22
- The pupnet.conf file upgraded to version 1.3.0
33
- Now builds using .NET6, rather than .NET7 (you can change this in csproj file if needed)
4+
- Reinstated key-press to exit on all deployments
45

56
+ Version 1.0.1; 2023-03-26
67
- Programs now asks for key-press only on Windows

HelloWorld.pupnet.conf

+6-6
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ AppId = zone.kuiper.helloworld
2121
# brackets to denote package release, i.e. '1.2.3[1]'. Release refers to a change to the deployment
2222
# package, rather the application. If release part is absent (i.e. '1.2.3'), the release value defaults
2323
# to '1'. Note that the version-release value given here may be overridden from the command line.
24-
AppVersionRelease = 1.0.1[3]
24+
AppVersionRelease = 1.0.2[1]
2525

2626
# Mandatory single line application description.
2727
AppShortSummary = A Hello World application
@@ -119,7 +119,7 @@ IconFiles = """
119119
# file, or the directory containing it. If empty (default), a single project or solution file is
120120
# expected under the same directory as this file. IMPORTANT. If set to 'NONE', dotnet publish
121121
# is disabled (not called). Instead, only DotnetPostPublish is called.
122-
DotnetProjectPath =
122+
DotnetProjectPath =
123123

124124
# Optional arguments supplied to 'dotnet publish'. Do NOT include '-r' (runtime), app version, or '-c'
125125
# (configuration) here as they will be added (i.e. via AppVersionRelease). Typically you want as a
@@ -163,7 +163,7 @@ OutputDirectory = Deploy/bin
163163
########################################
164164

165165
# Additional arguments for use with appimagetool. Useful for signing. Default is empty.
166-
AppImageArgs =
166+
AppImageArgs =
167167

168168
# Boolean (true or false) which sets whether to include the application version in the AppImage filename,
169169
# i.e. 'HelloWorld-1.2.3-x86_64.AppImage'. Default is false. It is ignored if the output filename is
@@ -199,7 +199,7 @@ FlatpakFinishArgs = """
199199

200200
# Additional arguments for use with flatpak-builder. Useful for signing. Default is empty.
201201
# See flatpak-builder --help.
202-
FlatpakBuilderArgs =
202+
FlatpakBuilderArgs =
203203

204204
########################################
205205
# RPM OPTIONS
@@ -267,12 +267,12 @@ SetupMinWindowsVersion = 10
267267
# Optional name and parameters of the Sign Tool to be used to digitally sign: the installer,
268268
# uninstaller, and contained exe and dll files. If empty, files will not be signed.
269269
# See: https://jrsoftware.org/ishelp/topic_setup_signtool.htm
270-
SetupSignTool =
270+
SetupSignTool =
271271

272272
# Optional suffix for the installer output filename. The default is empty, but you may wish set it to:
273273
# 'Setup' or similar. This, for example, will output a file of name: HelloWorldSetup-x86_64.exe
274274
# Ignored if the output filename is specified at command line.
275-
SetupSuffixOutput =
275+
SetupSuffixOutput =
276276

277277
# Boolean (true or false) which sets whether to include the application version in the setup filename,
278278
# i.e. 'HelloWorld-1.2.3-x86_64.exe'. Default is false. Ignored if the output filename is specified

HelloWorld/Program.cs

+6-7
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,12 @@ static void Main(string[] args)
6767
Console.WriteLine("pupnet was NOT called with: --property DefineConstants=CUSTOM_FLAG");
6868
#endif
6969

70-
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
71-
{
72-
Console.WriteLine();
73-
Console.WriteLine();
74-
Console.WriteLine("Press any key to finish");
75-
Console.ReadKey(false);
76-
}
70+
Console.WriteLine();
71+
Console.WriteLine();
72+
Console.WriteLine("Press any key to finish");
73+
74+
// This line was proving problematic on arm64 AppImage (but have changed runtime since)
75+
Console.ReadKey(false);
7776

7877
Console.WriteLine();
7978
}

0 commit comments

Comments
 (0)