NHibernate Query Generator Installer for Visual Studio 2008
Posted
Friday, December 07, 2007 1:45 AM
by
cromwellryan
I posted recently a manual .reg file for adding the NHibernate Query Generator custom tool to Visual Studio 2008. I just sent Ayende an update to the .Setup Product.wxs, a WiX file, which adds a new fixture specifically for 2008.
If you are interested in building the installer and running the trunk of NHQG, below is my batch script. Obviously, you'll have to change a couple of paths, but it should get you started.
You can download the Product.wxs pending Ayende approving the new Product.wxs file here.
echo Off
set path=%path%;c:\tools\svn-win32-1.4.4\bin
echo get Trunk (Non-Recursive)...
svn co https://rhino-tools.svn.sourceforge.net/svnroot/rhino-tools/trunk trunk -q -N
echo done
echo get Art...
svn co https://rhino-tools.svn.sourceforge.net/svnroot/rhino-tools/trunk/Art trunk/Art -q
echo done
echo get SharedLibs...
svn co https://rhino-tools.svn.sourceforge.net/svnroot/rhino-tools/trunk/SharedLibs trunk/SharedLibs -q
echo done
echo get NHQG...
svn co https://rhino-tools.svn.sourceforge.net/svnroot/rhino-tools/trunk/NHibernate.Query.Generator trunk/NHibernate.Query.Generator -q
echo done
echo build NHQG...
pushd .
cd trunk\NHibernate.Query.Generator
%windir%\Microsoft.NET\Framework64\v2.0.50727\msbuild.exe default.build
echo done
echo build Installer
cd NHibernate.Query.Generator.Setup
%windir%\Microsoft.NET\Framework\v2.0.50727\msbuild.exe Setup.wixproj
echo done
popd
PAUSE