MembershipProvider in .NET 4.0

mSafdel picture mSafdel · Nov 17, 2009 · Viewed 17.4k times · Source

How can I add the MembershipProvider class to my .NET 4.0 project in VS 2010 B2?

I want to customize a MembershipProvider, but I cannot without adding this class. Please guide me through this process.

Answer

Zhaph - Ben Duguid picture Zhaph - Ben Duguid · Nov 17, 2009

Interesting. However, build errors are your friend ;)

Attempting to build a class library built as you describe, I get the following build error:

The type name 'MembershipProvider' could not be found. This type has been forwarded to assembly 'System.Web.ApplicationServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'. Consider adding a reference to that assembly.

Following the instructions (adding a reference to System.Web.ApplicationServices) allows me to carry on as expected.