mirror of
https://bitbucket.org/cjdskunkworks/lynxastrodewcontroller.git
synced 2026-05-03 09:18:51 +00:00
24 lines
804 B
XML
24 lines
804 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
|
<?include $(sys.CURRENTDIR)\Config.wxi?>
|
|
<!--
|
|
ASCOM Switch Driver with COM registry entries suitable for a LocalServer Served Class
|
|
-->
|
|
<Fragment>
|
|
<DirectoryRef Id="INSTALLFOLDER" />
|
|
<ComponentGroup Id="cgAscomSwitchDriver">
|
|
<Component Id="cmpAscomSwitchDriver"
|
|
Directory="INSTALLFOLDER"
|
|
Guid="*"
|
|
Win64="no">
|
|
<File Id="filSwitchDriverAssembly"
|
|
Source="$(var.LynxAstro.DewController.Switch.TargetPath)"
|
|
KeyPath="yes"
|
|
Vital="yes"
|
|
Assembly=".net"
|
|
AssemblyApplication="filSwitchDriverAssembly" />
|
|
</Component>
|
|
</ComponentGroup>
|
|
</Fragment>
|
|
</Wix> |