FlexitimeTracker/DataCenter_Windows/WindowsDataCenter/WebApiServerHostInstaller/CoreComponents.wxs

29 lines
1009 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Fragment>
<ComponentGroup Id="CoreComponents">
<ComponentGroupRef Id="InterfacesGroup"/>
<ComponentGroupRef Id="ConfigurationHandlerGroup"/>
</ComponentGroup>
<ComponentGroup Id="InterfacesGroup" Directory="INSTALLFOLDER">
<Component Id="interfaces.dll" Guid="{FF7287A9-2583-413B-921A-A7E399AD82B9}">
<File Id="InterfacesDll"
Source="$(var.Interfaces.TargetDir)\Interfaces.dll"
KeyPath="yes"
Checksum="yes"/>
</Component>
</ComponentGroup>
<ComponentGroup Id="ConfigurationHandlerGroup" Directory="INSTALLFOLDER">
<Component Id="ConfigurationHandler">
<File Id="ConfigurationHandler.dll"
Source="$(var.ConfigurationHandler.TargetDir)ConfigurationHandler.dll"
KeyPath="yes"
Checksum="yes" />
</Component>
</ComponentGroup>
</Fragment>
</Wix>