-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathmake-installer-excel.iss
37 lines (30 loc) · 1.39 KB
/
make-installer-excel.iss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
; =====================================================================
; == demo\make-installer-excel.iss
; == Part of VstoAddinInstaller
; == (https://github.com/bovender/VstoAddinInstaller)
; == (c) 2016-2018 Daniel Kraus <[email protected]>
; == Published under the Apache License 2.0
; == See http://www.apache.org/licenses
; =====================================================================
;
; This is the configuration file for the demo installer.
; To try out this script, you must first build the VSTO project in
; Visual Studio with Debug configuration.
#define VERSIONFILE "VERSION.TXT"
#define TARGET_HOST "excel"
#define APP_GUID "{{4915C6C4-11CB-420F-98D4-3609A24D8AC5}"
#define ADDIN_NAME "VstoAddinInstaller demo for Excel"
#define ADDIN_SHORT_NAME "VstoAddinInstallerDemoExcel"
#define COMPANY "Daniel Kraus (bovender)"
#define HOMEPAGE "https://github.com/bovender/VstoAddinInstaller"
#define DESCRIPTION "Demonstrate VstoAddinInstaller with Excel."
#define PUB_YEARS "2017"
#define SOURCEDIR "VstoInstallerDemoExcel\bin\Debug\"
#define VSTOFILE "VstoInstallerDemoExcel.vsto"
#define OUTPUTDIR "releases\"
; #define LOGFILE "INST-LOG.TXT"
#define SETUPFILESDIR "setup-files\"
; If the VstoAddinInstaller files are in a different subdirectory
; than 'VstoAddinInstaller', change the path below.
#include "..\vsto-installer.iss"
; vim: ts=2 sts=2 sw=2 et