From: <pa...@us...> - 2010-12-05 20:25:26
|
Revision: 5295 http://nhibernate.svn.sourceforge.net/nhibernate/?rev=5295&view=rev Author: patearl Date: 2010-12-05 20:25:20 +0000 (Sun, 05 Dec 2010) Log Message: ----------- ShowBuildMenu.bat now handles paths with spaces and running from a different folder. Modified Paths: -------------- trunk/nhibernate/ShowBuildMenu.bat Modified: trunk/nhibernate/ShowBuildMenu.bat =================================================================== --- trunk/nhibernate/ShowBuildMenu.bat 2010-12-05 08:35:46 UTC (rev 5294) +++ trunk/nhibernate/ShowBuildMenu.bat 2010-12-05 20:25:20 UTC (rev 5295) @@ -1,6 +1,9 @@ @echo off -set NANT=%~dp0\Tools\nant\bin\NAnt.exe -t:net-3.5 +set OLD_CD=%CD% +cd %~dp0 +set NANT=Tools\nant\bin\NAnt.exe -t:net-3.5 + echo --- SETUP --- echo A. Set up for Visual Studio (creates AssemblyInfo.cs files). echo. @@ -86,4 +89,5 @@ goto end :end +cd %OLD_CD% pause This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |