Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Missing DotNetOpenAuth.ApplicationBlock in OpenID+OAuth

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?

like image 267
ANKIT Avatar asked Sep 15 '12 00:09

ANKIT


2 Answers

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.

like image 168
Andrew Arnott Avatar answered Nov 19 '22 21:11

Andrew Arnott


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

like image 42
Nitay Avatar answered Nov 19 '22 23:11

Nitay