You are viewing a plain text version of this content. The canonical link for it is here.
Posted to npanday-commits@incubator.apache.org by br...@apache.org on 2014/02/27 11:09:01 UTC

svn commit: r1572513 - in /incubator/npanday/trunk/dist/npanday-installer/src/main: groovy/generateWxs.groovy wix/NPanday.VisualStudio.Addin

Author: brett
Date: Thu Feb 27 11:09:01 2014
New Revision: 1572513

URL: http://svn.apache.org/r1572513
Log:
Add support for VS 2013 in the MSI

Modified:
    incubator/npanday/trunk/dist/npanday-installer/src/main/groovy/generateWxs.groovy
    incubator/npanday/trunk/dist/npanday-installer/src/main/wix/NPanday.VisualStudio.Addin

Modified: incubator/npanday/trunk/dist/npanday-installer/src/main/groovy/generateWxs.groovy
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/dist/npanday-installer/src/main/groovy/generateWxs.groovy?rev=1572513&r1=1572512&r2=1572513&view=diff
==============================================================================
--- incubator/npanday/trunk/dist/npanday-installer/src/main/groovy/generateWxs.groovy (original)
+++ incubator/npanday/trunk/dist/npanday-installer/src/main/groovy/generateWxs.groovy Thu Feb 27 11:09:01 2014
@@ -26,7 +26,7 @@ if ( index >= 0 ) {
 def repositoryComponentIds = []
 def repositoryBasedir = new File(project.build.directory + "/repository/releases");
 def generateGuid = { "{"+java.util.UUID.randomUUID().toString().toUpperCase() + "}" }
-def visualStudioVersions = ['2005', '2008', '2010', '2012']
+def visualStudioVersions = ['2005', '2008', '2010', '2012', '2013']
 
 def addinArtifacts = []
 new File(project.build.directory + "/addin").eachFile { addinArtifacts << it }
@@ -63,6 +63,9 @@ def writer = outputFile.withWriter("UTF-
       Property(Id:"VS2012INSTALLED") {
         RegistrySearch(Id:"VS2012INSTALLED", Root:"HKCR", Key:"VisualStudio.DTE.11.0", Type: "raw")
       }
+      Property(Id:"VS2013INSTALLED") {
+        RegistrySearch(Id:"VS2013INSTALLED", Root:"HKCR", Key:"VisualStudio.DTE.12.0", Type: "raw")
+      }
 
       Condition(Message:"NPanday cannot be installed on Windows 9x/ME", "VersionNT")
       Condition(Message:"You need to be an administrator to install this product.", "AdminUser")

Modified: incubator/npanday/trunk/dist/npanday-installer/src/main/wix/NPanday.VisualStudio.Addin
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/dist/npanday-installer/src/main/wix/NPanday.VisualStudio.Addin?rev=1572513&r1=1572512&r2=1572513&view=diff
==============================================================================
Files incubator/npanday/trunk/dist/npanday-installer/src/main/wix/NPanday.VisualStudio.Addin (original) and incubator/npanday/trunk/dist/npanday-installer/src/main/wix/NPanday.VisualStudio.Addin Thu Feb 27 11:09:01 2014 differ