8

I am implementing OpenID+OAuth in my ASP.NET WebForm (using .NET Framework 3.5) application, found example on net

https://groups.google.com/forum/?fromgroups=#!topic/dotnetopenid/xQYkE6sUZYU

But I am missing DotNetOpenAuth.ApplicationBlock namespace, I included these libraries in my project:

DotNetOpenAuth.dll
DotNetOpenAuth.OAuth2.dll
DotNetOpenAuth.OAuth2.Client.dll

Can any one suggest me where I am doing wrong?

John Saunders
  • 160,644
  • 26
  • 247
  • 397
ANKIT
  • 431
  • 1
  • 10
  • 22
  • I have edited your title. Please see, "[Should questions include “tags” in their titles?](http://meta.stackexchange.com/questions/19190/)", where the consensus is "no, they should not". – John Saunders Sep 15 '12 at 01:09

2 Answers2

4

The ApplicationBlock is not distributed in binary form as it is intended for copy+paste of relevant source code into your project. You can get the ApplicationBlock project from the samples distribution on SourceForge.

Andrew Arnott
  • 80,040
  • 26
  • 132
  • 171
  • I think you should have ApplicationBlock as an optional download on nuget. It would make it much easier and hassle free. – Joao Leme Oct 10 '15 at 01:27
  • The latest project is now on github - https://github.com/DotNetOpenAuth/DotNetOpenAuth. Official website is http://www.dotnetopenauth.net/ – Gautam Jain Nov 13 '15 at 01:32
2

You can find the project under the DotNotOpenAuth folders at Samples/DotNetOpenAuth.ApplicationBlock

Nitay
  • 4,193
  • 6
  • 33
  • 42