Difference between revisions of "SourceTree"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(GIT client)
 
(Added category & link to .NET silent installer)
 
Line 1: Line 1:
 
A GIT and Mercurial client for Windows.
 
A GIT and Mercurial client for Windows.
  
Download the client and run it with /extract to get the msi and cab file.  It depends on .Net 4+
+
Download the client and run it with /extract to get the msi and cab file.  It depends on [[Microsoft .NET Framework|.Net 4+]]
  
 
<source lang="xml">
 
<source lang="xml">
Line 18: Line 18:
 
</package>
 
</package>
 
</source>
 
</source>
 +
 +
[[Category: Silent Installers]]

Latest revision as of 17:42, 18 March 2015

A GIT and Mercurial client for Windows.

Download the client and run it with /extract to get the msi and cab file. It depends on .Net 4+

<package 
    id="sourcetree" 
    name="SourceTree" 
    revision="%VERSION%" 
    priority="1"
    reboot="false">
    <depends package-id="dotnet4"/>
    <variable name="VERSION" value="1.6.14" />
    <check type="uninstall" condition="versionequalto" path="SourceTree" value="%version%" />
    <install cmd='msiexec /i %SOFTWARE%\sourcetree\SourceTreeSetup_%VERSION%.msi /QN /NORESTART '/>
    <upgrade include='install' /> 
    <remove cmd='MsiExec.exe /X{946CDE9B-9863-48F8-B184-A3460FE5DAE7} /QN /NORESTART '/> <!-- 1.6.14 -->
</package>