The marked answer helped to reach the final solution (so it receives a +1 from me).
However had to spent several frustrating minutes figuring out how to create an AssemblyInfo.cpp in VS2010.
Below is the "more" complete answer to the problem.
#include "stdafx.h"
using namespace System;
using namespace System::Reflection;
using namespace System::Runtime::CompilerServices;
using namespace System::Runtime::InteropServices;
using namespace System::Security::Permissions;
[assembly:AssemblyKeyFileAttribute("YourAssembly.snk")];
[assembly:AssemblyDelaySignAttribute(true)];
Then as a post-build step, run sn -Ra YourAssembly.dll YourAssembly.snk