diff options
Diffstat (limited to 'src/ext/Http/test/WixToolsetTest.Http/TestData/Ssl/PackageComponents.wxs')
-rw-r--r-- | src/ext/Http/test/WixToolsetTest.Http/TestData/Ssl/PackageComponents.wxs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/ext/Http/test/WixToolsetTest.Http/TestData/Ssl/PackageComponents.wxs b/src/ext/Http/test/WixToolsetTest.Http/TestData/Ssl/PackageComponents.wxs new file mode 100644 index 00000000..126d2944 --- /dev/null +++ b/src/ext/Http/test/WixToolsetTest.Http/TestData/Ssl/PackageComponents.wxs | |||
@@ -0,0 +1,17 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" | ||
3 | xmlns:http="http://wixtoolset.org/schemas/v4/wxs/http"> | ||
4 | <Fragment> | ||
5 | <Property Id="PORTMANTEAU" Value="8088" /> | ||
6 | <Property Id="SOME_THUMBPRINT" Value="8E64C2AB0A9F730C7D06C58441362A6376BD72FB" /> | ||
7 | <Property Id="SOME_OTHER_THUMBPRINT" Value="14C1B207A930E29AE34778F3CE0680A1811E1AE1" /> | ||
8 | |||
9 | <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER"> | ||
10 | <Component> | ||
11 | <File Source="example.txt" /> | ||
12 | <http:SniSslCertificate Host="example.com" Port="8080" Thumbprint="[SOME_THUMBPRINT]" HandleExisting="fail" /> | ||
13 | <http:SslCertificate Port="[PORTMANTEAU]" Thumbprint="[SOME_OTHER_THUMBPRINT]" HandleExisting="replace" /> | ||
14 | </Component> | ||
15 | </ComponentGroup> | ||
16 | </Fragment> | ||
17 | </Wix> | ||