Menu

[r403]: / trunk / src / Setup / Setup.wxs  Maximize  Restore  History

Download this file

72 lines (60 with data), 3.6 kB

<?xml version='1.0' encoding='windows-1252'?>
<Wix xmlns='http://schemas.microsoft.com/wix/2003/01/wi'>
	<Product
	UpgradeCode="B49D2664-0941-465d-A704-CAC63D1D0789"
	Name='CommitMonitor'
	Id='????????-????-????-????-????????????'
	Language='1033'
	Codepage='1252'
	Version='1.4.0'
	Manufacturer='Stefans Tools'>

		<Package Id='????????-????-????-????-????????????' Keywords='Installer'
		  Description="Subversion Commit Monitor"
		  Comments='http://tools.tortoisesvn.net' Manufacturer='Stefans Tools'
		  InstallerVersion='100' Languages='1033' Compressed='yes' SummaryCodepage='1252' />

		<Upgrade Id="B49D2664-0941-465d-A704-CAC63D1D0789" >
			<!-- flag is set if the install will trigger an upgrade of an existing install -->
			<UpgradeVersion Property="PREVIOUSVERSIONSINSTALLED" Maximum="1.4.0" IncludeMaximum="no" />
		</Upgrade>

		<Media Id='1' Cabinet='cmtmonitor.cab' EmbedCab='yes' />
		<Property Id="WIXUI_INSTALLDIR" Value="INSTALLDIR" />
		<Condition Message='This application only runs on Windows 2000 and later.'>VersionNT &gt;= 500</Condition>

		<Directory Id='TARGETDIR' Name='SourceDir'>
			<Directory Id='ProgramFilesFolder' Name='PFiles'>
				<Directory Id='INSTALLDIR' Name='cMonitor' LongName='CommitMonitor'>

					<Component Id='MainEXE' Guid='325E1EEF-97EE-4b0e-8FCB-7A0CADE42934'>
						<File Id='CommitMonitor.EXE' Name='CMonitor.exe' LongName='CommitMonitor.exe' DiskId='1' Source='../../bin/release/CommitMonitor.exe' Vital='yes'>
						</File>
						<Shortcut Id="startMenuCommitMonitor" Directory="ProgramMenuDir" Name="cMonitor" LongName="CommitMonitor" Target="[INSTALLDIR]CommitMonitor.exe" Description="Subversion Commit Monitor" />
					</Component>

					<Component Id="C__sasl" Guid="44E0376D-ACFF-422f-A372-0AB08A1F7EE1" >
						<File Id="F__libsasl" Name="LIBSASL.DLL" LongName="libsasl.dll" DiskId="1" src="../../bin/release/libsasl.dll" KeyPath="yes" />
						<File Id="F__saslANONYMOUS" Name="saslANON.DLL" LongName="saslANONYMOUS.dll" DiskId="1" src="../../bin/release/saslANONYMOUS.dll" />
						<File Id="F__saslCRAMMD5" Name="saslCRAM.DLL" LongName="saslCRAMMD5.dll" DiskId="1" src="../../bin/release/saslCRAMMD5.dll" />
						<File Id="F__saslDIGESTMD5" Name="saslDIGE.DLL" LongName="saslDIGESTMD5.dll" DiskId="1" src="../../bin/release/saslDIGESTMD5.dll" />
						<File Id="F__saslLOGIN" Name="saslLOGI.DLL" LongName="saslLOGIN.dll" DiskId="1" src="../../bin/release/saslLOGIN.dll" />
						<File Id="F__saslNTLM" Name="saslNTLM.DLL" LongName="saslNTLM.dll" DiskId="1" src="../../bin/release/saslNTLM.dll" />
						<File Id="F__saslPLAIN" Name="saslPLAI.DLL" LongName="saslPLAIN.dll" DiskId="1" src="../../bin/release/saslPLAIN.dll" />
					</Component>
				</Directory>
			</Directory>

		</Directory>
		<Directory Id="ProgramMenuFolder" Name="PMenu" LongName="Programs">
			<Directory Id="ProgramMenuDir" Name='CMonitor' LongName="CommitMonitor" />
		</Directory>

		<Feature Id='Complete' Title='CommitMonitor' Description='The complete package.'
		  Display='expand' Level='1' ConfigurableDirectory='INSTALLDIR'>
			<Feature Id='MainEXE' Title='Program' Description='The main executable.' Level='1'>
				<ComponentRef Id='MainEXE' />
				<ComponentRef Id='C__sasl' />
			</Feature>
		</Feature>

		<UIRef Id="WixUI_Custom" />
		<UIRef Id="WixUI_ErrorProgressText" />

		<InstallExecuteSequence>
			<AppSearch Sequence="1"></AppSearch>
			<LaunchConditions After="AppSearch" />
			<RemoveExistingProducts After="InstallValidate"><![CDATA[PREVIOUSVERSIONSINSTALLED]]></RemoveExistingProducts>
		</InstallExecuteSequence>

	</Product>
</Wix>
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.