FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cloudflared/cloudflared.wxs at master · 4cecoder/cloudflared · GitHub
4cecoder
/
cloudflared
Public
forked from
cloudflare/cloudflared
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
cloudflared
/
cloudflared.wxs
Copy path
More file actions
More file actions
Latest commit
History
History
History
62 lines (53 loc) · 2.24 KB
Breadcrumbs
cloudflared
/
cloudflared.wxs
Copy path
File metadata and controls
62 lines (53 loc) · 2.24 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?
xml
version
=
"
1.0
"
?>
<?
if
$(var.Platform)=
"
x86
"
?>
<?
define
Program
_Files=
"
ProgramFilesFolder
"
?>
<?
else
?>
<?
define
Program
_Files=
"
ProgramFiles64Folder
"
?>
<?
endif
?>
<?
ifndef
var
.Version?>
<?
error
Undefined Version variable
?>
<?
endif
?>
<?
ifndef
var
.Path?>
<?
error
Undefined Path variable
?>
<?
endif
?>
<
Wix
xmlns
=
"
http://schemas.microsoft.com/wix/2006/wi
"
>
<
Product
Id
=
"
35e5e858-9372-4449-bf73-1cd6f7267128
"
UpgradeCode
=
"
23f90fdd-9328-47ea-ab52-5380855a4b12
"
Name
=
"
cloudflared
"
Version
=
"
$(var.Version)
"
Manufacturer
=
"
cloudflare
"
Language
=
"
1033
"
>
<
Package
InstallerVersion
=
"
200
"
Compressed
=
"
yes
"
Comments
=
"
Windows Installer Package
"
InstallScope
=
"
perMachine
"
/>
<
Media
Id
=
"
1
"
Cabinet
=
"
product.cab
"
EmbedCab
=
"
yes
"
/>
<
Upgrade
Id
=
"
23f90fdd-9328-47ea-ab52-5380855a4b12
"
>
<
UpgradeVersion
Minimum
=
"
$(var.Version)
"
OnlyDetect
=
"
yes
"
Property
=
"
NEWERVERSIONDETECTED
"
/>
<
UpgradeVersion
Minimum
=
"
2020.8.0
"
Maximum
=
"
$(var.Version)
"
IncludeMinimum
=
"
yes
"
IncludeMaximum
=
"
no
"
Property
=
"
OLDERVERSIONBEINGUPGRADED
"
/>
</
Upgrade
>
<
Condition
Message
=
"
A newer version of this software is already installed.
"
>NOT NEWERVERSIONDETECTED</
Condition
>
<
Directory
Id
=
"
TARGETDIR
"
Name
=
"
SourceDir
"
>
<!--
This specifies where the cloudflared.exe is moved to in the windows Operation System
-->
<
Directory
Id
=
"
$(var.Program_Files)
"
>
<
Directory
Id
=
"
INSTALLDIR
"
Name
=
"
cloudflared
"
>
<
Component
Id
=
"
ApplicationFiles
"
Guid
=
"
35e5e858-9372-4449-bf73-1cd6f7267128
"
>
<
File
Id
=
"
ApplicationFile0
"
Source
=
"
$(var.Path)
"
/>
</
Component
>
</
Directory
>
</
Directory
>
<
Component
Id
=
"
ENVS
"
Guid
=
"
6bb74449-d10d-4f4a-933e-6fc9fa006eae
"
>
<!--
Set the cloudflared bin location to the Path Environment Variable
-->
<
Environment
Id
=
"
ENV0
"
Name
=
"
PATH
"
Value
=
"
[INSTALLDIR].
"
Permanent
=
"
no
"
Part
=
"
last
"
Action
=
"
create
"
System
=
"
yes
"
/>
</
Component
>
</
Directory
>
<
Feature
Id
=
'
Complete
'
Level
=
'
1
'
>
<
ComponentRef
Id
=
"
ENVS
"
/>
<
ComponentRef
Id
=
'
ApplicationFiles
'
/>
</
Feature
>
</
Product
>
</
Wix
>
Back
|
FazBrowse Home
|
New Git URL