parent
a63a4923a4
commit
693355380d
@ -22,8 +22,11 @@
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="CardReaderServiceComponents.wxs" />
|
||||
<Compile Include="Common.wxs" />
|
||||
<Compile Include="DirectoryStructure.wxs" />
|
||||
<Compile Include="LoggerComponents.wxs" />
|
||||
<Compile Include="Product.wxs" />
|
||||
<Compile Include="Properties.wxs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\CardReaderService\CardReaderService.csproj">
|
||||
@ -34,6 +37,22 @@
|
||||
<RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>
|
||||
<RefTargetDir>INSTALLFOLDER</RefTargetDir>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\Interfaces\Interfaces.csproj">
|
||||
<Name>Interfaces</Name>
|
||||
<Project>{b7347b72-e208-423a-9d99-723b558ea3d7}</Project>
|
||||
<Private>True</Private>
|
||||
<DoNotHarvest>True</DoNotHarvest>
|
||||
<RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>
|
||||
<RefTargetDir>INSTALLFOLDER</RefTargetDir>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\NLogLogger\NLogLogger.csproj">
|
||||
<Name>NLogLogger</Name>
|
||||
<Project>{1c5220d6-9166-4f47-b57d-beb4d09d2a3f}</Project>
|
||||
<Private>True</Private>
|
||||
<DoNotHarvest>True</DoNotHarvest>
|
||||
<RefProjectOutputGroups>Binaries;Content;Satellites</RefProjectOutputGroups>
|
||||
<RefTargetDir>INSTALLFOLDER</RefTargetDir>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<WixExtension Include="WixUtilExtension">
|
||||
|
||||
@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
||||
<Fragment>
|
||||
<ComponentGroup Id="CommonComponents" Directory="INSTALLFOLDER">
|
||||
<Component Id="Interfaces" Guid="{B13D293D-FCA6-49C3-878A-0ECDCE724672}">
|
||||
<File Id="Interfaces.dll"
|
||||
Checksum="yes"
|
||||
KeyPath="yes"
|
||||
Source="$(var.Interfaces.TargetDir)Interfaces.dll" />
|
||||
</Component>
|
||||
</ComponentGroup>
|
||||
</Fragment>
|
||||
</Wix>
|
||||
@ -4,7 +4,9 @@
|
||||
|
||||
<Directory Id="TARGETDIR" Name="SourceDir">
|
||||
<Directory Id="ProgramFilesFolder">
|
||||
<Directory Id="INSTALLFOLDER" Name="CardReaderServiceInstaller" />
|
||||
<Directory Id="INSTALLFOLDER" Name="CardReaderServiceInstaller" >
|
||||
<Directory Id="CONFIGSFOLDER" Name="Configs" />
|
||||
</Directory>
|
||||
</Directory>
|
||||
</Directory>
|
||||
|
||||
|
||||
@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
||||
<Fragment>
|
||||
<ComponentGroup Id="LoggerComponents">
|
||||
<ComponentGroupRef Id="LoggerConfigComponents"/>
|
||||
<ComponentGroupRef Id="LoggerBinaryComponents"/>
|
||||
</ComponentGroup>
|
||||
|
||||
<ComponentGroup Id="LoggerBinaryComponents" Directory="INSTALLFOLDER">
|
||||
<Component Id="NLog" Guid="{3CF61D98-23E5-4042-9325-B1CB25752B6E}">
|
||||
<File Id="NLog.dll"
|
||||
Checksum="yes"
|
||||
KeyPath="yes"
|
||||
Source="$(var.NLogLogger.TargetDir)NLog.dll" />
|
||||
</Component>
|
||||
<Component Id="NLogLogger" Guid="{37C18A51-7934-469E-8DA3-8214754798A6}">
|
||||
<File Id="NLogLogger.dll"
|
||||
Checksum="yes"
|
||||
KeyPath="yes"
|
||||
Source="$(var.NLogLogger.TargetDir)NLogLogger.dll" />
|
||||
</Component>
|
||||
</ComponentGroup>
|
||||
|
||||
<ComponentGroup Id="LoggerConfigComponents" Directory="CONFIGSFOLDER">
|
||||
<Component Id="NLogConfig" Guid="{B4252427-AE6A-4AC5-AA7C-B87C37AF3EB4}">
|
||||
<File Id="NLogConfig.xml"
|
||||
Checksum="yes"
|
||||
KeyPath="yes"
|
||||
Source="$(var.NLogLogger.TargetDir)NLogConfig.xml" />
|
||||
</Component>
|
||||
</ComponentGroup>
|
||||
</Fragment>
|
||||
</Wix>
|
||||
@ -21,6 +21,8 @@
|
||||
|
||||
<Fragment>
|
||||
<ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
|
||||
<ComponentGroupRef Id="CommonComponents"/>
|
||||
<ComponentGroupRef Id="LoggerComponents"/>
|
||||
<ComponentGroupRef Id="CardReaderServiceComponents"/>
|
||||
</ComponentGroup>
|
||||
</Fragment>
|
||||
|
||||
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
||||
<Fragment>
|
||||
<Property Id="STARTSERVICEONINSTALL" Value="false" />
|
||||
</Fragment>
|
||||
</Wix>
|
||||
Loading…
Reference in New Issue
Block a user