[commit] r2076 - trunk/Install/Build

GMESRC Repository Notifications gme-commit at list.isis.vanderbilt.edu
Fri Sep 28 07:46:30 CDT 2012


Author: ksmyth
Date: Fri Sep 28 07:46:30 2012
New Revision: 2076

Log:
Need to regrelease.bat before DotNetPIAs, since tlbimp reads dependency tlb paths from the registry

Modified:
   trunk/Install/Build/build.py

Modified: trunk/Install/Build/build.py
==============================================================================
--- trunk/Install/Build/build.py	Fri Sep 28 07:46:20 2012	(r2075)
+++ trunk/Install/Build/build.py	Fri Sep 28 07:46:30 2012	(r2076)
@@ -101,10 +101,10 @@
     tools.build_VS( sln_file, "Release" )
     sln_file = os.path.join(GME_ROOT, "GME", "GMEDecorators.sln")
     tools.build_VS( sln_file, "Release" )
-    sln_file = os.path.join(GME_ROOT, "GME", "DotNetPIAs", "DotNetPIAs.vcxproj")
-    tools.build_VS( sln_file, "Release" )
     cmd_dir = os.path.join(GME_ROOT, "GME")
     tools.system( ['call', 'regrelease.bat'] + (['x64'] if prefs['arch'] == 'x64' else []) + ['<NUL'], cmd_dir)
+    sln_file = os.path.join(GME_ROOT, "GME", "DotNetPIAs", "DotNetPIAs.vcxproj")
+    tools.build_VS( sln_file, "Release" )
 
 def _Release_PGO_dir():
     if prefs['arch'] == 'x64':


More information about the gme-commit mailing list