-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoniondeploy.xml.example
More file actions
47 lines (45 loc) · 1.67 KB
/
oniondeploy.xml.example
File metadata and controls
47 lines (45 loc) · 1.67 KB
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
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<!-- if true, the staging directory will need to contain the files and entrypoint for the package -->
<SkipBuild>false</SkipBuild>
<SolutionName>DragonFruit.OnionFruit.sln</SolutionName>
<GitHub>
<User></User>
<Repo></Repo>
<Token></Token>
</GitHub>
<Velopack>
<Enabled>true</Enabled>
<PackageId></PackageId>
</Velopack>
<Windows>
<Certificates>
<!-- each child element is treated as a signing cert entry -->
<!-- first cert = primary signature, subsequent certs use /as (append signature) -->
<Certificate>
<File></File>
<Password></Password>
</Certificate>
<Certificate2>
<File></File>
<Password></Password>
</Certificate2>
</Certificates>
<SigntoolPath>C:\Program Files (x86)\Windows Kits\10\bin\10.0.26100.0\x64\signtool.exe</SigntoolPath>
<PackageIcon></PackageIcon>
</Windows>
<MacOS>
<InfoPlist>Info.plist</InfoPlist>
<EntitlementsPlist>app.entitlements</EntitlementsPlist>
<IconsDirectory></IconsDirectory>
<launchd>
<!-- nodes accept either a folder or a single file -->
<LaunchAgents></LaunchAgents>
<LaunchDaemons></LaunchDaemons>
</launchd>
<!-- requires the create-dmg script installed (brew install create-dmg) -->
<CreateInstallDMG>true</CreateInstallDMG>
<CodeSigningIdentity>-</CodeSigningIdentity>
<NotaryKeychainProfile></NotaryKeychainProfile>
</MacOS>
</configuration>