-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Start Menu shortcut to Web site.
- Loading branch information
1 parent
052f445
commit d7300ef
Showing
4 changed files
with
31 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
Installer/ContinuousTests.WixInstaller/ContinuousTests.WixInstaller/StartMenuComponents.wxs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |