Skip to content

Commit

Permalink
Added Start Menu shortcut to Web site.
Browse files Browse the repository at this point in the history
  • Loading branch information
NickMRamirez committed Nov 26, 2014
1 parent 052f445 commit d7300ef
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
<Compile Include="Components.wxs" />
<Compile Include="Directories.wxs" />
<Compile Include="Product.wxs" />
<Compile Include="StartMenuComponents.wxs" />
<Compile Include="VS2008Components.wxs" />
<Compile Include="VS2010Components.wxs" />
<Compile Include="VS2012Components.wxs" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
<Directory Id="INSTALLFOLDER" Name="ContinuousTests" />
</Directory>

<Directory Id="ProgramMenuFolder">
<Directory Id="AppStartMenuFolder" Name="ContinuousTests" />
</Directory>
</Directory>
</Fragment>
</Wix>
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Version="1.0.48.0"
Manufacturer="ContinuousTests"
UpgradeCode="759731e0-c984-4959-8d21-4ff66899fe9f">

<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />

<!--NOTE: Components.wxs is autogenerated by HeatDirectory task in .wixproj-->
Expand All @@ -22,6 +22,7 @@

<Feature Id="ProductFeature" Title="ContinuousTests" Level="1">
<ComponentGroupRef Id="ProductComponents" />
<ComponentGroupRef Id="StartMenuComponents" />
<ComponentGroupRef Id="VS2008Components" />
<ComponentGroupRef Id="VS2010Components" />
<ComponentGroupRef Id="VS2012Components" />
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
<Fragment>
<ComponentGroup Id="StartMenuComponents" Directory="AppStartMenuFolder">
<Component Id="cmpWebPageShortcut" Guid="{182268E6-CD5E-48BB-B8E8-DBFE570386D7}">
<util:InternetShortcut Id="internetShortcut_SeeWebPage"
Directory="AppStartMenuFolder"
Name="Quick Intros"
Target="http://continuoustests.com/see.html"
Type="url" />

<RemoveFolder Id="removeStartMenuFolder"
Directory="AppStartMenuFolder"
On="uninstall" />

<RegistryValue Root="HKCU"
Key="Software\ContinuousTests"
Name="installed"
Type="integer"
Value="1"
KeyPath="yes" />
</Component>
</ComponentGroup>
</Fragment>
</Wix>

0 comments on commit d7300ef

Please sign in to comment.