I am trying to experiment with Microsoft.Web.Administration in my Windows 7 x64 window using Visual Studio 2010. When I add DLLs to links in my C # project, I see that its namespaces and classes appear in Intellisense.
But as soon as I build, I get "The type or name of the namespace" Web "does not exist in the namespace" Microsoft "(do you miss the assembly reference?)", And I get assembly errors in the code I'm written as if DLLs were not even there.
There are two sets of IIS7 DLL files that I can see in:
- % WINDIR% \ system32 \ Inetsrv
- % Windir% \ syswow64 \ Inetsrv
But both sets seem to do the same thing: obviously, they initially work, and then fail.
Does anyone know what I need to do to make this work?
source
share