Files
Christoph Schwörer f045b99a25 Codebasis als Dateien ins Arbeitsrepo statt als Gitlink
QuellCode/CentronERP war nur als Gitlink (Submodul-Referenz auf 79c1142)
getrackt, ohne .gitmodules und ohne erreichbares Remote. Der
Untersuchungsgegenstand der Versuchsreihe war damit nicht reproduzierbar
gesichert: Ein Klon haette ein leeres Verzeichnis erhalten, und die Belege
der 3.287 Anforderungen waeren nicht ueberpruefbar gewesen.

Umstellung:
- Historie nach c:\DEV\CentronERP_git_snapshot_79c1142 ausgelagert
  (vollstaendig lesbar, enthaelt 79c1142 und Vorgaenger 89ccfd6)
- Gitlink aus dem Index entfernt
- Dateiinhalt aufgenommen: 24.557 Dateien, rund 333 MB

Die verschachtelte .gitignore der Codebasis gilt weiter, Build-Artefakte
bleiben ausgeschlossen. Details in Versuche/Versuch_01/_Codebasis-Nachweis.md
2026-08-26 07:43:51 +02:00

161 lines
8.3 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
>
<!-- xmlns:fga="http://www.firegiant.com/schemas/v3/wxs/fgappx.xsd"-->
<Product Id="*" Name="c-entron Web-Service" Language="1033" Version="!(bind.FileVersion.fil04C6E9A1324A0A1878612A211EC8F58D)" Manufacturer="NEXOWARE Systems GmbH" UpgradeCode="{600E09E4-BD28-495E-AA24-160432B235F8}">
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />
<!--<fga:Appx Id="CentronWebService" Publisher="CN=NEXOWARE Systems GmbH, O=NEXOWARE Systems GmbH, STREET=Einsteinstraße 59, L=Ulm, S=BW, PostalCode=89077, C=DE" Target="desktop" />-->
<Upgrade Id="{600E09E4-BD28-495E-AA24-160432B235F8}">
<UpgradeVersion Property="NEWUPGRADEENTRY1" Maximum="!(bind.FileVersion.fil04C6E9A1324A0A1878612A211EC8F58D)" IncludeMaximum="yes" IncludeMinimum="yes" />
</Upgrade>
<MajorUpgrade DowngradeErrorMessage="Eine neuere Version von [ProductName] ist bereits installiert." AllowSameVersionUpgrades="no" Schedule="afterInstallInitialize" />
<MediaTemplate EmbedCab="yes" />
<WixVariable Id="WixUISupportPerUser" Value="0" />
<!--<WixVariable Id="WixUILicenseRtf" Value="" />-->
<WixVariable Id="WixUIBannerBmp" Value="Images\Installer-Banner.bmp"/>
<WixVariable Id="WixUIDialogBmp" Value="Images\Installer-Background.bmp" />
<!--<WixVariable Id="WixUIExclamationIco" Value="Images\Installer-32.bmp" />
<WixVariable Id="WixUIInfoIco" Value="Images\Installer-32.bmp" />
<WixVariable Id="WixUINewIco" Value="Images\Installer-16.bmp" />
<WixVariable Id="WixUIUpIco" Value="Images\Installer-16.bmp" />-->
<!--<Property Id="ApplicationFolderName" Value="c-entron software gmbh\c-entron 2.0" />-->
<!--<Property Id="ApplicationFolderName" Value="c-entron 2.0" />-->
<Property Id="WixAppFolder" Value="WixPerMachineFolder" />
<Property Id="WIXUI_INSTALLDIR" Value="APPLICATIONFOLDER" />
<!-- Make sure to always re-install all files (see commit description for more details) -->
<Property Id="REINSTALLMODE" Value="amus" />
<Feature Id="ProductFeature" Title="c-entron Web-Service" Level="1">
<ComponentGroupRef Id="WebServiceProductComponentsHeat" />
<ComponentRef Id="ApplicationShortcutDesktop"/>
<ComponentRef Id="ClientRegistry"/>
</Feature>
<!--Save the current installation folder into the registry-->
<Component Id="ClientRegistry" Guid="*" Directory="APPLICATIONFOLDER">
<RegistryKey Id="Hklm_CentronReg" Root="HKLM" Key="Software\[Manufacturer]\[ProductName]" ForceDeleteOnUninstall="yes">
<RegistryValue Name="InstallFolder" Type="string" Value="[APPLICATIONFOLDER]" KeyPath="yes" />
</RegistryKey>
</Component>
<!--Load the last installation folder from the registry-->
<Property Id="APPLICATIONFOLDER">
<RegistrySearch Id="InstallFolderSearch" Root="HKLM" Key="Software\[Manufacturer]\[ProductName]" Name="InstallFolder" Type="directory" />
</Property>
<!--<UIRef Id="WixUI_Advanced" />-->
<UIRef Id="WixUI_ErrorProgressText" />
<UIRef Id="WixUI_Common" />
<UI Id="WixUI_InstallDir">
<TextStyle Id="WixUI_Font_Normal" FaceName="Tahoma" Size="8" />
<TextStyle Id="WixUI_Font_Bigger" FaceName="Tahoma" Size="12" />
<TextStyle Id="WixUI_Font_Title" FaceName="Tahoma" Size="9" Bold="yes" />
<Property Id="DefaultUIFont" Value="WixUI_Font_Normal" />
<Property Id="WixUI_Mode" Value="InstallDir" />
<DialogRef Id="BrowseDlg" />
<DialogRef Id="DiskCostDlg" />
<DialogRef Id="ErrorDlg" />
<DialogRef Id="FatalError" />
<DialogRef Id="FilesInUse" />
<DialogRef Id="MsiRMFilesInUse" />
<DialogRef Id="PrepareDlg" />
<DialogRef Id="ProgressDlg" />
<DialogRef Id="ResumeDlg" />
<DialogRef Id="UserExit" />
<Publish Dialog="BrowseDlg" Control="OK" Event="DoAction" Value="WixUIValidatePath" Order="3">1</Publish>
<Publish Dialog="BrowseDlg" Control="OK" Event="SpawnDialog" Value="InvalidDirDlg" Order="4"><![CDATA[WIXUI_INSTALLDIR_VALID<>"1"]]></Publish>
<Publish Dialog="ExitDialog" Control="Finish" Event="EndDialog" Value="Return" Order="999">1</Publish>
<Publish Dialog="ExitDialog" Control="Finish" Event="DoAction" Value="LaunchApplication">WIXUI_EXITDIALOGOPTIONALCHECKBOX = 1 and NOT Installed</Publish>
<Publish Dialog="WelcomeDlg" Control="Next" Event="NewDialog" Value="InstallDirDlg">1</Publish>
<Publish Dialog="InstallDirDlg" Control="Back" Event="NewDialog" Value="WelcomeDlg">1</Publish>
<Publish Dialog="InstallDirDlg" Control="Next" Event="SetTargetPath" Value="[WIXUI_INSTALLDIR]" Order="1">1</Publish>
<Publish Dialog="InstallDirDlg" Control="Next" Event="DoAction" Value="WixUIValidatePath" Order="2">NOT WIXUI_DONTVALIDATEPATH</Publish>
<Publish Dialog="InstallDirDlg" Control="Next" Event="SpawnDialog" Value="InvalidDirDlg" Order="3"><![CDATA[NOT WIXUI_DONTVALIDATEPATH AND WIXUI_INSTALLDIR_VALID<>"1"]]></Publish>
<Publish Dialog="InstallDirDlg" Control="Next" Event="NewDialog" Value="VerifyReadyDlg" Order="4">WIXUI_DONTVALIDATEPATH OR WIXUI_INSTALLDIR_VALID="1"</Publish>
<Publish Dialog="InstallDirDlg" Control="ChangeFolder" Property="_BrowseProperty" Value="[WIXUI_INSTALLDIR]" Order="1">1</Publish>
<Publish Dialog="InstallDirDlg" Control="ChangeFolder" Event="SpawnDialog" Value="BrowseDlg" Order="2">1</Publish>
<Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="InstallDirDlg" Order="1">NOT Installed</Publish>
<Publish Dialog="VerifyReadyDlg" Control="Back" Event="NewDialog" Value="MaintenanceTypeDlg" Order="2">Installed</Publish>
<Publish Dialog="MaintenanceWelcomeDlg" Control="Next" Event="NewDialog" Value="MaintenanceTypeDlg">1</Publish>
<Publish Dialog="MaintenanceTypeDlg" Control="RepairButton" Event="NewDialog" Value="VerifyReadyDlg">1</Publish>
<Publish Dialog="MaintenanceTypeDlg" Control="RemoveButton" Event="NewDialog" Value="VerifyReadyDlg">1</Publish>
<Publish Dialog="MaintenanceTypeDlg" Control="Back" Event="NewDialog" Value="MaintenanceWelcomeDlg">1</Publish>
<!--<Publish Dialog="ExitDialog"
Control="Finish"
Event="DoAction"
Value="LaunchApplication">WIXUI_EXITDIALOGOPTIONALCHECKBOX = 1 and NOT Installed</Publish>-->
<Property Id="ARPNOMODIFY" Value="1" />
</UI>
<Property Id="WIXUI_EXITDIALOGOPTIONALCHECKBOX" Value="1" />
<Property Id="WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT" Value="c-entron Web-Service Konfigurator starten" />
<Property Id="WixShellExecTarget" Value="[APPLICATIONFOLDER]ConnectionManager\c-entron Connection Manager.exe" />
<CustomAction Id="LaunchApplication"
BinaryKey="WixCA"
DllEntry="WixShellExec"
Impersonate="yes" />
<UI>
<ProgressText Action="NetFxExecuteNativeImageInstall">Start des c-entron Web-Services wird optimiert...</ProgressText>
</UI>
<!--<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
<MediaTemplate />
<Feature Id="ProductFeature" Title="WebServiceSetupProject" Level="1">
<ComponentGroupRef Id="ProductComponents" />
</Feature>-->
</Product>
<Fragment>
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="ProgramFilesFolder">
<Directory Id="ManufacturerFolder" Name="c-entron software gmbh">
<Directory Id="APPLICATIONFOLDER" Name="c-entron Web-Service">
</Directory>
<!--<Directory Id="APPLICATIONFOLDER" Name="ApplicationFolderName">
</Directory> for advanced ui-->
</Directory>
</Directory>
<Directory Id="DesktopFolder" Name="Desktop">
<Component Id="ApplicationShortcutDesktop" Guid="*">
<Shortcut Id="ApplicationDesktopShortcut"
Name="c-entron Connection Manager"
Target="[APPLICATIONFOLDER]ConnectionManager\c-entron Connection Manager.exe"
WorkingDirectory="dirCONNECTIONMANAGER"/>
<RemoveFolder Id="DesktopFolder" On="uninstall"/>
<RegistryValue
Root="HKCU"
Key="Software/MyAppName"
Name="installed"
Type="integer"
Value="1"
KeyPath="yes"/>
</Component>
</Directory>
</Directory>
</Fragment>
</Wix>