MS
This commit is contained in:
21
SchaumKommiCollo/SetupWix/Config.wxi
Normal file
21
SchaumKommiCollo/SetupWix/Config.wxi
Normal file
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Include>
|
||||
<!-- Der Name der Haupt-EXE -->
|
||||
<?define ProgramName="KommiCollo"?>
|
||||
<!-- Der Volle Name des Programms -->
|
||||
<?define ProductName="KommiCollo"?>
|
||||
<!-- Der Hersteller des Programms -->
|
||||
<?define Manufacturer="Digital Data"?>
|
||||
<!-- Kurze Beschreibung des Programms (optional) -->
|
||||
<?define Description="Beschreibung des Programms"?>
|
||||
<!-- Kurzer Kommentar zum Programm (optional) -->
|
||||
<?define Comments="Kommentar wie Copyright-Hinweis"?>
|
||||
<!--
|
||||
UPGRADE CODE
|
||||
|
||||
Sorgt dafür, dass Programm-Updates mit dem Installer
|
||||
die alte Version ersetzen. Darf sich nicht mehr ändern,
|
||||
wenn einmal festgelegt.
|
||||
-->
|
||||
<?define UpgradeCode="b1a174ad-fbf8-4125-a9f5-28eb50131185"?>
|
||||
</Include>
|
||||
174
SchaumKommiCollo/SetupWix/Product.wxs
Normal file
174
SchaumKommiCollo/SetupWix/Product.wxs
Normal file
@@ -0,0 +1,174 @@
|
||||
<?include Config.wxi?>
|
||||
|
||||
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
|
||||
<Product Id="*" Name="$(var.ProductName)" Language="1031" Codepage="1252" Version="$(var.ProductVersion)" Manufacturer="$(var.Manufacturer)" UpgradeCode="$(var.UpgradeCode)">
|
||||
<Package
|
||||
Id="*"
|
||||
Keywords="Installer"
|
||||
Description="$(var.Description)"
|
||||
Comments="$(var.Comments)"
|
||||
Manufacturer="$(var.Manufacturer)"
|
||||
InstallerVersion="100"
|
||||
Languages="1031"
|
||||
Compressed="yes"
|
||||
SummaryCodepage="1252"
|
||||
InstallScope="perMachine"
|
||||
/>
|
||||
|
||||
<Media Id='1' Cabinet='$(var.ProgramName).cab' EmbedCab='yes' DiskPrompt='$(var.ProgramName)' />
|
||||
<Property Id='DiskPrompt' Value="$(var.ProgramName) Install" />
|
||||
|
||||
<MajorUpgrade
|
||||
AllowDowngrades="no"
|
||||
AllowSameVersionUpgrades="no"
|
||||
DowngradeErrorMessage="Eine neuere Version von [ProductName] ist bereits installiert. Das Setup wird beendet."
|
||||
/>
|
||||
|
||||
<Property Id="PREVIOUSVERSIONSINSTALLED" Secure="yes" />
|
||||
<Upgrade Id="$(var.UpgradeCode)">
|
||||
<UpgradeVersion
|
||||
Minimum="1.0.0.0" Maximum="99.0.0.0"
|
||||
Property="PREVIOUSVERSIONSINSTALLED"
|
||||
IncludeMinimum="yes" IncludeMaximum="no" />
|
||||
</Upgrade>
|
||||
|
||||
<!-- Legt das Icon fest -->
|
||||
<Icon Id="AppIcon.exe" SourceFile="$(var.ProgramName).exe" />
|
||||
<!-- Zeige Icon in Systemsteuerung > Programme entfernen -->
|
||||
<Property Id="ARPPRODUCTICON" Value="AppIcon" />
|
||||
|
||||
<Directory Id="TARGETDIR" Name="SourceDir">
|
||||
<Directory Id="ProgramFilesFolder">
|
||||
<Directory Id="INSTALLDIR" Name="$(var.ProductName)"/>
|
||||
</Directory>
|
||||
|
||||
<Directory Id="ProgramMenuFolder" Name="Programs">
|
||||
<Directory Id="ProgramMenuDir" Name="KommiCollo">
|
||||
<Component Id="ProgramMenuDir" Guid="5200DF59-FED6-4C5A-8393-90B8ED526432">
|
||||
<RemoveFolder Id="ProgramMenuDir" On="uninstall" />
|
||||
<RegistryValue Root="HKMU" Key="Software\[Manufacturer]\[ProductName]" Type="string" Value="" KeyPath="yes" />
|
||||
</Component>
|
||||
</Directory>
|
||||
</Directory>
|
||||
|
||||
<!-- Desktop Ordner -->
|
||||
<Directory Id="DesktopFolder" Name="Desktop" />
|
||||
</Directory>
|
||||
|
||||
<DirectoryRef Id="INSTALLDIR">
|
||||
<Component Id="MainApplicationExe" Guid="0b68a602-807c-4f68-b373-b586845253f2">
|
||||
<File Id="MainApplicationExe" Name="$(var.ProgramName).exe" KeyPath="yes" Checksum="yes">
|
||||
<Shortcut Id="DesktopShortcut" Directory="DesktopFolder" Name="$(var.ProductName)" WorkingDirectory="INSTALLDIR" Icon="AppIcon.exe" IconIndex="0" Advertise="yes" />
|
||||
<Shortcut Id="StartMenuShortcut" Directory="ProgramMenuDir" Name="$(var.ProductName)" WorkingDirectory="INSTALLDIR" Icon="AppIcon.exe" IconIndex="0" Advertise="yes" />
|
||||
</File>
|
||||
</Component>
|
||||
|
||||
<!-- Für weitere Dateien hier Component Elemente anlegen!! -->
|
||||
<Component Id="DevExpressLibs" Guid="86c8025c-0cf2-4c79-9c4f-409388e01a10">
|
||||
<File Id="DevExpress.Charts.v15.2.Core" Name="DevExpress.Charts.v15.2.Core.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.Charts.v15.2.Core.dll" KeyPath="yes" />
|
||||
<File Id="DevExpress.CodeParser.v15.2" Name="DevExpress.CodeParser.v15.2.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.CodeParser.v15.2.dll" KeyPath="no"/>
|
||||
<File Id="DevExpress.Data.v15.2" Name="DevExpress.Data.v15.2.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.Data.v15.2.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.DataAccess.v15.2" Name="DevExpress.DataAccess.v15.2.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.DataAccess.v15.2.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.DataAccess.v15.2.UI.dll" Name="DevExpress.DataAccess.v15.2.UI.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.DataAccess.v15.2.UI.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.Office.v15.2.Core" Name="DevExpress.Office.v15.2.Core.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.Office.v15.2.Core.dll" KeyPath="no"/>
|
||||
<File Id="DevExpress.PivotGrid.v15.2.Core" Name="DevExpress.PivotGrid.v15.2.Core.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.PivotGrid.v15.2.Core.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.Printing.v15.2.Core" Name="DevExpress.Printing.v15.2.Core.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.Printing.v15.2.Core.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.RichEdit.v15.2.Core" Name="DevExpress.RichEdit.v15.2.Core.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.RichEdit.v15.2.Core.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.Sparkline.v15.2.Core" Name="DevExpress.Sparkline.v15.2.Core.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.Sparkline.v15.2.Core.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.Utils.v15.2" Name="DevExpress.Utils.v15.2.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.Utils.v15.2.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.Utils.v15.2.UI" Name="DevExpress.Utils.v15.2.UI.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.Utils.v15.2.UI.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.Xpo.v15.2" Name="DevExpress.Xpo.v15.2.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.Xpo.v15.2.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.XtraBars.v15.2" Name="DevExpress.XtraBars.v15.2.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.XtraBars.v15.2.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.XtraCharts.v15.2" Name="DevExpress.XtraCharts.v15.2.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.XtraCharts.v15.2.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.XtraCharts.v15.2.Extensions" Name="DevExpress.XtraCharts.v15.2.Extensions.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.XtraCharts.v15.2.Extensions.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.XtraCharts.v15.2.Wizard" Name="DevExpress.XtraCharts.v15.2.Wizard.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.XtraCharts.v15.2.Wizard.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.XtraEditors.v15.2" Name="DevExpress.XtraEditors.v15.2.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.XtraEditors.v15.2.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.XtraGauges.v15.2.Core" Name="DevExpress.XtraGauges.v15.2.Core.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.XtraGauges.v15.2.Core.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.XtraGrid.v15.2" Name="DevExpress.XtraGrid.v15.2.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.XtraGrid.v15.2.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.XtraLayout.v15.2" Name="DevExpress.XtraLayout.v15.2.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.XtraLayout.v15.2.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.XtraNavBar.v15.2" Name="DevExpress.XtraNavBar.v15.2.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.XtraNavBar.v15.2.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.XtraPivotGrid.v15.2" Name="DevExpress.XtraPivotGrid.v15.2.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.XtraPivotGrid.v15.2.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.XtraPrinting.v15.2" Name="DevExpress.XtraPrinting.v15.2.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.XtraPrinting.v15.2.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.XtraReports.v15.2" Name="DevExpress.XtraReports.v15.2.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.XtraReports.v15.2.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.XtraReports.v15.2.Extensions" Name="DevExpress.XtraReports.v15.2.Extensions.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.XtraReports.v15.2.Extensions.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.XtraVerticalGrid.v15.2" Name="DevExpress.XtraVerticalGrid.v15.2.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.XtraVerticalGrid.v15.2.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.XtraRichEdit.v15.2" Name="DevExpress.XtraRichEdit.v15.2.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.XtraRichEdit.v15.2.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.XtraTreeList.v15.2" Name="DevExpress.XtraTreeList.v15.2.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.XtraTreeList.v15.2.dll" KeyPath="no" />
|
||||
</Component>
|
||||
|
||||
<Directory Id="Locale_DE" Name="de">
|
||||
<Component Id="DevExpressLibs_Resources_de" Guid="9abed2d9-3438-44dd-8921-52106116833e">
|
||||
<File Id="DevExpress.Data.v15.2.resources" Name="DevExpress.Data.v15.2.resources.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.Data.v15.2.resources.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.DataAccess.v15.2.resources" Name="DevExpress.DataAccess.v15.2.resources.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.DataAccess.v15.2.resources.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.DataAccess.v15.2.UI.dll.resources" Name="DevExpress.DataAccess.v15.2.UI.resources.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.DataAccess.v15.2.UI.resources.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.Office.v15.2.Core.resources" Name="DevExpress.Office.v15.2.Core.resources.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.Office.v15.2.Core.resources.dll" KeyPath="no"/>
|
||||
<File Id="DevExpress.PivotGrid.v15.2.Core.resources" Name="DevExpress.PivotGrid.v15.2.Core.resources.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.PivotGrid.v15.2.Core.resources.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.Printing.v15.2.Core.resources" Name="DevExpress.Printing.v15.2.Core.resources.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.Printing.v15.2.Core.resources.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.RichEdit.v15.2.Core.resources" Name="DevExpress.RichEdit.v15.2.Core.resources.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.RichEdit.v15.2.Core.resources.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.Sparkline.v15.2.Core.resources" Name="DevExpress.Sparkline.v15.2.Core.resources.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.Sparkline.v15.2.Core.resources.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.Utils.v15.2.resources" Name="DevExpress.Utils.v15.2.resources.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.Utils.v15.2.resources.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.Utils.v15.2.UI.resources" Name="DevExpress.Utils.v15.2.UI.resources.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.Utils.v15.2.UI.resources.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.Xpo.v15.2.resources" Name="DevExpress.Xpo.v15.2.resources.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.Xpo.v15.2.resources.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.XtraBars.v15.2.resources" Name="DevExpress.XtraBars.v15.2.resources.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.XtraBars.v15.2.resources.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.XtraCharts.v15.2.resources" Name="DevExpress.XtraCharts.v15.2.resources.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.XtraCharts.v15.2.resources.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.XtraCharts.v15.2.Wizard.resources" Name="DevExpress.XtraCharts.v15.2.Wizard.resources.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.XtraCharts.v15.2.Wizard.resources.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.XtraEditors.v15.2.resources" Name="DevExpress.XtraEditors.v15.2.resources.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.XtraEditors.v15.2.resources.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.XtraGauges.v15.2.Core.resources" Name="DevExpress.XtraGauges.v15.2.Core.resources.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.XtraGauges.v15.2.Core.resources.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.XtraGrid.v15.2.resources" Name="DevExpress.XtraGrid.v15.2.resources.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.XtraGrid.v15.2.resources.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.XtraLayout.v15.2.resources" Name="DevExpress.XtraLayout.v15.2.resources.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.XtraLayout.v15.2.resources.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.XtraNavBar.v15.2.resources" Name="DevExpress.XtraNavBar.v15.2.resources.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.XtraNavBar.v15.2.resources.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.XtraPivotGrid.v15.2.resources" Name="DevExpress.XtraPivotGrid.v15.2.resources.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.XtraPivotGrid.v15.2.resources.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.XtraPrinting.v15.2.resources" Name="DevExpress.XtraPrinting.v15.2.resources.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.XtraPrinting.v15.2.resources.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.XtraReports.v15.2.resources" Name="DevExpress.XtraReports.v15.2.resources.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.XtraReports.v15.2.resources.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.XtraReports.v15.2.Extensions.resources" Name="DevExpress.XtraReports.v15.2.Extensions.resources.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.XtraReports.v15.2.Extensions.resources.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.XtraVerticalGrid.v15.2.resources" Name="DevExpress.XtraVerticalGrid.v15.2.resources.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.XtraVerticalGrid.v15.2.resources.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.XtraRichEdit.v15.2.resources" Name="DevExpress.XtraRichEdit.v15.2.resources.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.XtraRichEdit.v15.2.resources.dll" KeyPath="no" />
|
||||
<File Id="DevExpress.XtraTreeList.v15.2.resources" Name="DevExpress.XtraTreeList.v15.2.resources.dll" Source="D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.XtraTreeList.v15.2.resources.dll" KeyPath="no" />
|
||||
</Component>
|
||||
</Directory>
|
||||
|
||||
<Component Id="MicrosoftLibs" Guid="ba507dee-86f8-4651-a5a8-ef6fc8fb87ee">
|
||||
<File Id="Microsoft.ReportViewer.ProcessingObjectModel" Name="Microsoft.ReportViewer.ProcessingObjectModel.dll" Source="Microsoft.ReportViewer.ProcessingObjectModel.dll" KeyPath="yes" />
|
||||
<File Id="Microsoft.ReportViewer.WinForms" Name="Microsoft.ReportViewer.WinForms.dll" Source="Microsoft.ReportViewer.WinForms.dll" KeyPath="no" />
|
||||
<File Id="Microsoft.SqlServer.Types" Name="Microsoft.SqlServer.Types.dll" Source="Microsoft.SqlServer.Types.dll" KeyPath="no" />
|
||||
<File Id="Microsoft.ReportViewer.Common" Name="Microsoft.ReportViewer.Common.dll" Source="Microsoft.ReportViewer.Common.dll" KeyPath="no" />
|
||||
</Component>
|
||||
|
||||
<Component Id="RegistryEntries" Guid="57CCE36E-F152-4D17-81A0-CCAAEFA777A3">
|
||||
<RegistryKey Root="HKCU" Key="Software\[Manufacturer]\[ProductName]">
|
||||
<RegistryValue Type="string" Name="Path" Value="[INSTALLDIR]" KeyPath="yes" />
|
||||
</RegistryKey>
|
||||
</Component>
|
||||
|
||||
</DirectoryRef>
|
||||
|
||||
<!-- Legt das Standard-Installationsverzeichnis fest-->
|
||||
<Property Id="WIXUI_INSTALLDIR" Value="INSTALLDIR" />
|
||||
|
||||
<Feature Id="MainApplication" Title="Main Application" Level="1">
|
||||
<ComponentRef Id="MainApplicationExe" />
|
||||
<ComponentRef Id="DevExpressLibs" />
|
||||
<ComponentRef Id="DevExpressLibs_Resources_de"/>
|
||||
<ComponentRef Id="ProgramMenuDir" />
|
||||
<ComponentRef Id="MicrosoftLibs" />
|
||||
<ComponentRef Id="RegistryEntries" />
|
||||
</Feature>
|
||||
|
||||
<UI>
|
||||
<UIRef Id="WixUI_InstallDir" />
|
||||
<UIRef Id="WixUI_ErrorProgressText" />
|
||||
<Publish Dialog="WelcomeDlg"
|
||||
Control="Next"
|
||||
Event="NewDialog"
|
||||
Value="InstallDirDlg"
|
||||
Order="2">1</Publish>
|
||||
<Publish Dialog="InstallDirDlg"
|
||||
Control="Back"
|
||||
Event="NewDialog"
|
||||
Value="WelcomeDlg"
|
||||
Order="2">1</Publish>
|
||||
</UI>
|
||||
|
||||
<!--Konfiguration-->
|
||||
</Product>
|
||||
</Wix>
|
||||
72
SchaumKommiCollo/SetupWix/SetupWix.wixproj
Normal file
72
SchaumKommiCollo/SetupWix/SetupWix.wixproj
Normal file
@@ -0,0 +1,72 @@
|
||||
<Project ToolsVersion="4.0" DefaultTargets="Build" InitialTargets="EnsureWixToolsetInstalled" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
|
||||
<ProductVersion>3.10</ProductVersion>
|
||||
<ProjectGuid>2bbeef27-0909-4522-8937-8e2d64233b36</ProjectGuid>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
<OutputName>SetupWix</OutputName>
|
||||
<OutputType>Package</OutputType>
|
||||
<WixTargetsPath Condition=" '$(WixTargetsPath)' == '' AND '$(MSBuildExtensionsPath32)' != '' ">$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath>
|
||||
<WixTargetsPath Condition=" '$(WixTargetsPath)' == '' ">$(MSBuildExtensionsPath)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
||||
<OutputPath>bin\$(Configuration)\</OutputPath>
|
||||
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
|
||||
<DefineConstants>Debug</DefineConstants>
|
||||
<LinkerAdditionalOptions>
|
||||
-b "$(SolutionDir)KommiCollo\bin\$(Configuration)"
|
||||
</LinkerAdditionalOptions>
|
||||
<Cultures>de-DE</Cultures>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
||||
<OutputPath>bin\$(Configuration)\</OutputPath>
|
||||
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Product.wxs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<WixExtension Include="WixUtilExtension">
|
||||
<HintPath>$(WixExtDir)\WixUtilExtension.dll</HintPath>
|
||||
<Name>WixUtilExtension</Name>
|
||||
</WixExtension>
|
||||
<WixExtension Include="WixUIExtension">
|
||||
<HintPath>$(WixExtDir)\WixUIExtension.dll</HintPath>
|
||||
<Name>WixUIExtension</Name>
|
||||
</WixExtension>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="Config.wxi" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(WixTargetsPath)" Condition=" Exists('$(WixTargetsPath)') " />
|
||||
<Target Name="EnsureWixToolsetInstalled" Condition=" !Exists('$(WixTargetsPath)') ">
|
||||
<Error Text="The WiX Toolset v3 build tools must be installed to build this project. To download the WiX Toolset, see http://wixtoolset.org/releases/" />
|
||||
</Target>
|
||||
<!--
|
||||
To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Wix.targets.
|
||||
<Target Name="BeforeBuild">
|
||||
</Target>
|
||||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
<Target Name="BeforeBuild">
|
||||
<!-- Get the programs assembly version from the .exe file -->
|
||||
<GetAssemblyIdentity AssemblyFiles="..\KommiCollo\bin\$(Configuration)\KommiCollo.exe">
|
||||
<Output TaskParameter="Assemblies" ItemName="AsmInfo" />
|
||||
</GetAssemblyIdentity>
|
||||
<!-- Store the assembly version number in ProductVersion preprocessor variable -->
|
||||
<CreateProperty Value="$(DefineConstants);ProductVersion=%(AsmInfo.Version)">
|
||||
<Output TaskParameter="Value" PropertyName="DefineConstants" />
|
||||
</CreateProperty>
|
||||
<!-- Name the .msi file after the solution platform and assembly version e.g TestService-x86-1.4.0.0.msi -->
|
||||
<CreateProperty Value="$(SolutionName)-$(Platform)-%(AsmInfo.Version)">
|
||||
<Output TaskParameter="Value" PropertyName="TargetName" />
|
||||
</CreateProperty>
|
||||
<!-- Name the .wixpdb file after the solution platform and assembly version e.g TestService-x86-1.4.0.0.msi -->
|
||||
<CreateProperty Value="$(TargetName)$(TargetPdbExt)">
|
||||
<Output TaskParameter="Value" PropertyName="TargetPdbName" />
|
||||
</CreateProperty>
|
||||
</Target>
|
||||
</Project>
|
||||
BIN
SchaumKommiCollo/SetupWix/bin/Debug/KommiCollo-x86-2.0.0.0.msi
Normal file
BIN
SchaumKommiCollo/SetupWix/bin/Debug/KommiCollo-x86-2.0.0.0.msi
Normal file
Binary file not shown.
Binary file not shown.
1
SchaumKommiCollo/SetupWix/obj/Debug/Product.wixobj
Normal file
1
SchaumKommiCollo/SetupWix/obj/Debug/Product.wixobj
Normal file
File diff suppressed because one or more lines are too long
@@ -0,0 +1,2 @@
|
||||
E:\SchreiberM\Visual Studio\GIT\SetupWix\bin\Debug\KommiCollo-x86-2.0.0.0.msi
|
||||
E:\SchreiberM\Visual Studio\GIT\SetupWix\bin\Debug\KommiCollo-x86-2.0.0.0.wixpdb
|
||||
@@ -0,0 +1,60 @@
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.Charts.v15.2.Core.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.CodeParser.v15.2.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.Data.v15.2.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.Data.v15.2.resources.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.DataAccess.v15.2.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.DataAccess.v15.2.resources.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.DataAccess.v15.2.UI.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.DataAccess.v15.2.UI.resources.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.Office.v15.2.Core.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.Office.v15.2.Core.resources.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.PivotGrid.v15.2.Core.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.PivotGrid.v15.2.Core.resources.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.Printing.v15.2.Core.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.Printing.v15.2.Core.resources.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.RichEdit.v15.2.Core.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.RichEdit.v15.2.Core.resources.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.Sparkline.v15.2.Core.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.Sparkline.v15.2.Core.resources.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.Utils.v15.2.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.Utils.v15.2.resources.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.Utils.v15.2.UI.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.Utils.v15.2.UI.resources.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.Xpo.v15.2.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.Xpo.v15.2.resources.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.XtraBars.v15.2.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.XtraBars.v15.2.resources.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.XtraCharts.v15.2.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.XtraCharts.v15.2.Extensions.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.XtraCharts.v15.2.resources.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.XtraCharts.v15.2.Wizard.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.XtraCharts.v15.2.Wizard.resources.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.XtraEditors.v15.2.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.XtraEditors.v15.2.resources.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.XtraGauges.v15.2.Core.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.XtraGauges.v15.2.Core.resources.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.XtraGrid.v15.2.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.XtraGrid.v15.2.resources.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.XtraLayout.v15.2.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.XtraLayout.v15.2.resources.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.XtraNavBar.v15.2.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.XtraNavBar.v15.2.resources.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.XtraPivotGrid.v15.2.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.XtraPivotGrid.v15.2.resources.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.XtraPrinting.v15.2.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.XtraPrinting.v15.2.resources.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.XtraReports.v15.2.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.XtraReports.v15.2.Extensions.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.XtraReports.v15.2.Extensions.resources.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.XtraReports.v15.2.resources.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.XtraRichEdit.v15.2.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.XtraRichEdit.v15.2.resources.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.XtraTreeList.v15.2.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.XtraTreeList.v15.2.resources.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\DevExpress.XtraVerticalGrid.v15.2.dll
|
||||
D:\ProgramFiles\DevExpress 15.2\Bin\Framework\de\DevExpress.XtraVerticalGrid.v15.2.resources.dll
|
||||
E:\SchreiberM\Visual Studio\GIT\KommiCollo\bin\Debug\KommiCollo.exe
|
||||
E:\SchreiberM\Visual Studio\GIT\KommiCollo\bin\Debug\Microsoft.ReportViewer.Common.dll
|
||||
E:\SchreiberM\Visual Studio\GIT\KommiCollo\bin\Debug\Microsoft.ReportViewer.ProcessingObjectModel.dll
|
||||
E:\SchreiberM\Visual Studio\GIT\KommiCollo\bin\Debug\Microsoft.ReportViewer.WinForms.dll
|
||||
E:\SchreiberM\Visual Studio\GIT\KommiCollo\bin\Debug\Microsoft.SqlServer.Types.dll
|
||||
@@ -0,0 +1,2 @@
|
||||
E:\SchreiberM\Visual Studio\GIT\SetupWix\bin\Debug\KommiCollo-x86-2.0.0.0.msi
|
||||
E:\SchreiberM\Visual Studio\GIT\SetupWix\bin\Debug\KommiCollo-x86-2.0.0.0.wixpdb
|
||||
@@ -0,0 +1,8 @@
|
||||
E:\JenneJ\Visual Studio\SchaumKommi\SetupWix\bin\Debug\KommiCollo-x86-1.0.0.0.msi
|
||||
E:\JenneJ\Visual Studio\SchaumKommi\SetupWix\bin\Debug\KommiCollo-x86-1.0.0.0.wixpdb
|
||||
obj\Debug\Product.wixobj
|
||||
obj\Debug\SetupWix.wixproj.BindContentsFileListde-DE.txt
|
||||
obj\Debug\SetupWix.wixproj.BindOutputsFileListde-DE.txt
|
||||
obj\Debug\SetupWix.wixproj.BindBuiltOutputsFileListde-DE.txt
|
||||
E:\SchreiberM\Visual Studio\GIT\SetupWix\bin\Debug\KommiCollo-x86-2.0.0.0.msi
|
||||
E:\SchreiberM\Visual Studio\GIT\SetupWix\bin\Debug\KommiCollo-x86-2.0.0.0.wixpdb
|
||||
Reference in New Issue
Block a user