-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathmake-installer-outlook.iss
37 lines (30 loc) · 1.4 KB
/
make-installer-outlook.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-outlook.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 "outlook"
#define APP_GUID "{{66EFA565-5CC1-4A03-9603-150EA08EB891}"
#define ADDIN_NAME "VstoAddinInstaller demo for Outlook"
#define ADDIN_SHORT_NAME "VstoAddinInstallerDemoOutlook"
#define COMPANY "Daniel Kraus (bovender)"
#define HOMEPAGE "https://github.com/bovender/VstoAddinInstaller"
#define DESCRIPTION "Demonstrate VstoAddinInstaller with Outlook."
#define PUB_YEARS "2017"
#define SOURCEDIR "VstoInstallerDemoOutlook\bin\Debug\"
#define VSTOFILE "VstoInstallerDemoOutlook.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