Skip to content

Commit d444640

Browse files
committed
Other: v0.16.0.0 alpha release.
This installer hosts a self-contained single-file x64 version of the app, hopefully avoiding the need for users to install and .NET runtimes.
1 parent 9c4c185 commit d444640

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

ShaderShrinker/InnoSetupProject/InstallScript.iss

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[Setup]
55
AppId={{996B4B28-98DA-451F-ED15-8777E28DBDE4}
66
AppName={#MyAppName}
7-
AppVersion=0.15
7+
AppVersion=0.16
88
AppPublisher=Dean Edis
99
AppPublisherURL=https://github.com/deanthecoder/GLSLShaderShrinker
1010
DefaultDirName={commonpf}\ShaderShrinker
@@ -13,16 +13,14 @@ UninstallDisplayIcon={app}\Inno_Setup_Project.exe
1313
Compression=lzma2
1414
SolidCompression=yes
1515
SourceDir=..\Shrinker.WpfApp\
16-
OutputDir=Setup
16+
OutputDir=..\InnoSetupProject\
1717
OutputBaseFilename={#MyAppName} Installer
1818

1919
[Tasks]
2020
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
2121

2222
[Files]
23-
Source: "bin\Release\net5.0-windows\win-x64\*.dll"; DestDir: "{app}"; Flags: ignoreversion
24-
Source: "bin\Release\net5.0-windows\win-x64\*.exe"; DestDir: "{app}"; Flags: ignoreversion
25-
Source: "bin\Release\net5.0-windows\win-x64\*.json"; DestDir: "{app}"; Flags: ignoreversion
23+
Source: "bin\Release\net5.0-windows\publish\win-x64\*.*"; DestDir: "{app}"; Excludes: "*.pdb"; Flags: ignoreversion
2624

2725
[Icons]
2826
Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"

ShaderShrinker/Shrinker.WpfApp/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@
4949
// You can specify all the values or you can default the Build and Revision Numbers
5050
// by using the '*' as shown below:
5151
// [assembly: AssemblyVersion("1.0.*")]
52-
[assembly: AssemblyVersion("0.15.0.0")]
53-
[assembly: AssemblyFileVersion("0.15.0.0")]
52+
[assembly: AssemblyVersion("0.16.0.0")]
53+
[assembly: AssemblyFileVersion("0.16.0.0")]

0 commit comments

Comments
 (0)