summaryrefslogtreecommitdiffstats
path: root/samples/TestAzureAD/App_Start/AuthConfig.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2013-05-05 16:18:01 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2013-05-05 16:18:01 -0700
commit03abe2a0b4057598bee897e3e42babedc99be5ff (patch)
treee3f2a37b0215ad98075c112835d0f95182863704 /samples/TestAzureAD/App_Start/AuthConfig.cs
parent49d654965b6cf0ee6aa171dec50b1d0b8fb86e0c (diff)
downloadDotNetOpenAuth-03abe2a0b4057598bee897e3e42babedc99be5ff.zip
DotNetOpenAuth-03abe2a0b4057598bee897e3e42babedc99be5ff.tar.gz
DotNetOpenAuth-03abe2a0b4057598bee897e3e42babedc99be5ff.tar.bz2
Removes samples\TestAzureAD
it has a build break, and I'm not sure it was ever meant to be checked in.
Diffstat (limited to 'samples/TestAzureAD/App_Start/AuthConfig.cs')
-rw-r--r--samples/TestAzureAD/App_Start/AuthConfig.cs40
1 files changed, 0 insertions, 40 deletions
diff --git a/samples/TestAzureAD/App_Start/AuthConfig.cs b/samples/TestAzureAD/App_Start/AuthConfig.cs
deleted file mode 100644
index f8b3219..0000000
--- a/samples/TestAzureAD/App_Start/AuthConfig.cs
+++ /dev/null
@@ -1,40 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Web;
-using Microsoft.AspNet.Membership.OpenAuth;
-
-namespace TestAzureAD
-{
- internal static class AuthConfig
- {
- public static void RegisterOpenAuth()
- {
- // See http://go.microsoft.com/fwlink/?LinkId=252803 for details on setting up this ASP.NET
- // application to support logging in via external services.
-
- //OpenAuth.AuthenticationClients.AddTwitter(
- // consumerKey: "your Twitter consumer key",
- // consumerSecret: "your Twitter consumer secret");
-
- OpenAuth.AuthenticationClients.AddFacebook(
- appId: "XX",
- appSecret: "YY");
-
- //OpenAuth.AuthenticationClients.AddMicrosoft(
- // clientId: "your Microsoft account client id",
- // clientSecret: "your Microsoft account client secret");
-
- //OpenAuth.AuthenticationClients.AddGoogle();
-
- OpenAuth.AuthenticationClients.Add("Azure Active Directory", () => new DotNetOpenAuth.AspNet.Clients.AzureADClient("64e0b14b-43ae-497c-b1a8-e8a841a341fd", "MySecretPassword"));
-
-
- //AddFacebook(
- //appId: "your Facebook app id",
- //appSecret: "your Facebook app secret");
-
-
- }
- }
-} \ No newline at end of file