The error that I'm getting is: error MSB3721: The command ""C:\Program Files (x86)\NSIS\Unicode\makensis" /DConfig="Debug" /DOutdir="../Output/Setup/Release\\"
/DInstallName="MyCompany" /DTargetName="MyInstaller.exe" /DPlatform="Win32" MyInstaller.nsi" exited with code 1.
It looks to me as the Outdir value has some extra slashes in there, but I can't seem to get them out of there.
The NSISComplier.rules file shows this:
<StringProperty
Name="OutputDirectory"
DisplayName="OuputDirectory"
Switch="/DOutdir="[value]""
DefaultValue="$(OutDir)"
/>
So I looked at the OutputDirectory of the project in VS, and it did seem to have an extra slash in there, but whatever I do, it doesn't seem to change the NSIS command line value. I even put a direct path there, but nothing.
Thanks