Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/setup
diff options
context:
space:
mode:
authorDuncan Mak <duncan.mak@xamarin.com>2012-04-24 20:44:45 +0400
committerDuncan Mak <duncan.mak@xamarin.com>2012-04-24 20:46:59 +0400
commit656b5297e3218f43e76014f21780ef4a25da4902 (patch)
treef72841e06648ec91796b0488e9e8166e649d3fe8 /setup
parent5089ddffd29d07a3e8c491e08330b14ec7a1272c (diff)
An attempt to fix #3598, and make the Windows MSI installer put Shortcuts for all users.
Diffstat (limited to 'setup')
-rw-r--r--setup/WixSetup/Product.wxs8
1 files changed, 8 insertions, 0 deletions
diff --git a/setup/WixSetup/Product.wxs b/setup/WixSetup/Product.wxs
index b12a70412a..f611259872 100644
--- a/setup/WixSetup/Product.wxs
+++ b/setup/WixSetup/Product.wxs
@@ -763,5 +763,13 @@
<!-- This is for the icon that is shown in the Add/Remove Programs dialog and menu shortcut -->
<Icon Id="MonoDevelop.exe" SourceFile="Bitmaps\MonoDevelop.ico" />
<Property Id="ARPPRODUCTICON" Value="MonoDevelop.exe" />
+
+ <!--
+ Install Start Menu shortcuts for all users,
+ according to http://stackoverflow.com/questions/2211218/how-to-create-desktop-shortcut-for-all-users-in-wix
+
+ MSDN: http://msdn.microsoft.com/en-us/library/aa367559.aspx
+ -->
+ <Property Id="ALLUSERS">1</Property>
</Product>
</Wix>