-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdefault.xml
38 lines (31 loc) · 1.22 KB
/
default.xml
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
<?xml version="1.0" encoding="utf-8"?>
<artifact-configuration xmlns="http://signpath.io/artifact-configuration/v1">
<zip-file>
<msi-file path="DemoExample.msi">
<directory path="application/SignPath Demo">
<pe-file-set>
<include path="Microsoft.*.dll" min-matches="0" max-matches="unbounded" />
<include path="Microsoft.*.exe" min-matches="0" max-matches="unbounded" />
<for-each>
<authenticode-verify />
</for-each>
</pe-file-set>
<pe-file-set>
<include path="Serilog.dll" product-name="Serilog" min-matches="0" />
<include path="Serilog.AspNetCore.dll" product-name="Serilog" product-version="7.0.0" min-matches="0" />
</pe-file-set>
<pe-file-set>
<include path="DemoExample.dll" />
<include path="DemoExample.exe" />
<for-each>
<authenticode-sign />
</for-each>
</pe-file-set>
</directory>
<authenticode-sign />
</msi-file>
<xml-file path="bom.xml" root-element-namespace="http://cyclonedx.org/schema/bom/1.5" root-element-name="bom">
<xml-sign/>
</xml-file>
</zip-file>
</artifact-configuration>