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\binecho get Trunk (Non-Recursive)…
svn co https://rhino-tools.svn.sourceforge.net/svnroot/rhino-tools/trunk trunk -q -N
echo doneecho get Art…
svn co https://rhino-tools.svn.sourceforge.net/svnroot/rhino-tools/trunk/Art trunk/Art -q
echo doneecho get SharedLibs…
svn co https://rhino-tools.svn.sourceforge.net/svnroot/rhino-tools/trunk/SharedLibs trunk/SharedLibs -q
echo doneecho get NHQG…
svn co https://rhino-tools.svn.sourceforge.net/svnroot/rhino-tools/trunk/NHibernate.Query.Generator trunk/NHibernate.Query.Generator -q
echo doneecho build NHQG…
pushd .
cd trunk\NHibernate.Query.Generator
%windir%\Microsoft.NET\Framework64\v2.0.50727\msbuild.exe default.build
echo doneecho build Installer
cd NHibernate.Query.Generator.Setup
%windir%\Microsoft.NET\Framework\v2.0.50727\msbuild.exe Setup.wixproj
echo done
popd
PAUSE
