Files
2025-05-18 13:04:45 +08:00

20 lines
1.1 KiB
XML

<?xml version='1.0'?>
<Wix xmlns='http://schemas.microsoft.com/wix/2003/01/wi'>
<Product Id='G-U-I-D-Here' Name='TestAssemblyProduct' Language='1033' Version='0.0.0.0' Manufacturer='Your name goes here'>
<Package Description='Test Assembly in a Product' Comments='Demonstrate Assembly COM Interop Regsitration' InstallerVersion='200' Compressed='yes' />
<Media Id='1' Cabinet='product.cab' EmbedCab='yes' />
<Directory Id='TARGETDIR' Name='SourceDir'>
<Directory Id='ProgramFilesFolder' Name='PFiles'>
<Directory Id='TestAssemblyProductDirectory' Name='testassm' LongName='Test Assembly'>
<Component Id='TestAssemblyProductComponent' Guid='G-U-I-D-Here'>
<File Id='TestAssemblyProductFile' Name='assembly.dll' Assembly='.net' AssemblyRegisterComInterop='yes' KeyPath='yes' DiskId='1' />
</Component>
</Directory>
</Directory>
</Directory>
<Feature Id='TestAssemblyProductFeature' Title='Test "ssembly Product Feature' Level='1'>
<ComponentRef Id='TestAssemblyProductComponent' />
</Feature>
</Product>
</Wix>