Is there a way to compile a NSIS package as part of a build? I use MSBuild.
Update: There is a command tool called makensis as part of the NSIS download. I just executed that from my build script and handed it my .nsi file.
Example:
<Target Name="MakeDistributable">
<Exec command="..\Tools\NSIS\makensis.exe MyDistScript.nsi" WorkingDirectory="..\Installation" />
</Target>