aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.Util/TestData/InternetShortcutModule/ModuleComponents.wxs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-03-19 12:10:19 -0700
committerRob Mensching <rob@firegiant.com>2021-03-19 12:15:11 -0700
commit4d27a43eb676e48a6ae6213e234f519b6af8c8a7 (patch)
tree698e6e87ff52229a726301341c7342f410088903 /src/test/WixToolsetTest.Util/TestData/InternetShortcutModule/ModuleComponents.wxs
parent3d5c85c88fc7440b0e232173a18f80f3363c039a (diff)
downloadwix-4d27a43eb676e48a6ae6213e234f519b6af8c8a7.tar.gz
wix-4d27a43eb676e48a6ae6213e234f519b6af8c8a7.tar.bz2
wix-4d27a43eb676e48a6ae6213e234f519b6af8c8a7.zip
Minor test clean up
Diffstat (limited to 'src/test/WixToolsetTest.Util/TestData/InternetShortcutModule/ModuleComponents.wxs')
-rw-r--r--src/test/WixToolsetTest.Util/TestData/InternetShortcutModule/ModuleComponents.wxs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.Util/TestData/InternetShortcutModule/ModuleComponents.wxs b/src/test/WixToolsetTest.Util/TestData/InternetShortcutModule/ModuleComponents.wxs
new file mode 100644
index 00000000..2a1b4347
--- /dev/null
+++ b/src/test/WixToolsetTest.Util/TestData/InternetShortcutModule/ModuleComponents.wxs
@@ -0,0 +1,11 @@
1<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util">
2 <Fragment>
3 <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
4 <Component>
5 <File Id="Package.ico" Source="Package.ico" />
6 <util:InternetShortcut Type="link" Name="WiX Toolset (link)" Target="https://wixtoolset.org" IconFile="[#Package.ico]" />
7 <util:InternetShortcut Type="url" Name="WiX Toolset (url)" Target="https://wixtoolset.org" IconFile="[#Package.ico]" />
8 </Component>
9 </ComponentGroup>
10 </Fragment>
11</Wix>