I have a .NET assembly that needs to be 32-Bit and needs to be /LARGEADDRESSAWARE
.
I know how to do this with EditBin
, but I wonder if there is a built-in way in Visual Studio 2010? Or alternatively, did someone write an MSBuild Task for this?
Edit: This is for a C# app, so no linker options sadly :(
You can do it as a Post-build task. In "Build Events" tab, put following command
into the "Post-build event command line:"
This is the case for VS2008. I think it should work in the same way for VS2010.