What I have is a Asp.Net MVC project which references a c++/cli assembly which in turn references some native c++ dlls. This is ultimately published ta a azure web service in a web role.
This recommends copying the native dlls to the "%windir%\system32\inetsrv" folder in a startup task so that web role can find them when the role starts up. This works as expected on the cloud.
However when debugging locally I want these dll's available to IIS Express. These are 64 bit dlls so I have to run the 64 bit version of IIS express. I am trying to figure what the equivalent of %windir%\system32\inetsrv for IIS Express 64 bit.
