I have a web application that uses the 64-bit version of SharpSvn , a managed DLL with unmanaged dependency. It will not work in IIS Express 7.0. Switching to the 32-bit version of the assembly works fine.
I installed the 64-bit version of IIS 8 RC . However, Visual Studio 2010 launches the 32-bit version of IIS Express.
.
I can start the 64-bit version of IIS manually with the following command:
"C:\Program Files\IIS Express\iisexpress.exe" /config:"C:\Users\zippy\Documents\IISExpress\config\applicationhost.config" /site:"MrDVCS" /apppool:"Clr4IntegratedAppPool"
In my WebProject.csproj, the Corresponding XML seems to be <UseIISExpress>true</UseIISExpress> . If I edit the file in Visual Studio, Intellisense will not offer a similar tag for 64 bits, and it does not offer me an attribute.
So, how do I get Visual Studio to run the 64-bit version of IIS Express RC?
visual-studio-2010 iis-8 iis-express
Justin Dearing Aug 19 '12 at 12:14 2012-08-19 12:14
source share