summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2012-03-01 23:11:03 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2012-03-01 23:11:03 -0800
commit6cdeefcc2425979807146e0cc53b32d4d82ad42c (patch)
tree8b8aebaf93cbc2ad3113f5c64610d577bb8cb3f7
parent6d18e14045cc9a8c0926e037ede82fc2d7818079 (diff)
downloadDotNetOpenAuth-6cdeefcc2425979807146e0cc53b32d4d82ad42c.zip
DotNetOpenAuth-6cdeefcc2425979807146e0cc53b32d4d82ad42c.tar.gz
DotNetOpenAuth-6cdeefcc2425979807146e0cc53b32d4d82ad42c.tar.bz2
Added copyright messages to AspNet project.
-rw-r--r--src/DotNetOpenAuth.AspNet/AuthenticationResult.cs8
-rw-r--r--src/DotNetOpenAuth.AspNet/Clients/DictionaryExtensions.cs8
-rw-r--r--src/DotNetOpenAuth.AspNet/Clients/OAuth/DotNetOpenAuthWebConsumer.cs8
-rw-r--r--src/DotNetOpenAuth.AspNet/Clients/OAuth/IOAuthWebWorker.cs8
-rw-r--r--src/DotNetOpenAuth.AspNet/Clients/OAuth/InMemoryOAuthTokenManager.cs8
-rw-r--r--src/DotNetOpenAuth.AspNet/Clients/OAuth/LinkedInClient.cs8
-rw-r--r--src/DotNetOpenAuth.AspNet/Clients/OAuth/OAuthClient.cs8
-rw-r--r--src/DotNetOpenAuth.AspNet/Clients/OAuth/TwitterClient.cs8
-rw-r--r--src/DotNetOpenAuth.AspNet/Clients/OAuth2/FacebookClient.cs8
-rw-r--r--src/DotNetOpenAuth.AspNet/Clients/OAuth2/FacebookGraphData.cs8
-rw-r--r--src/DotNetOpenAuth.AspNet/Clients/OAuth2/JsonHelper.cs8
-rw-r--r--src/DotNetOpenAuth.AspNet/Clients/OAuth2/OAuth2AccessTokenData.cs8
-rw-r--r--src/DotNetOpenAuth.AspNet/Clients/OAuth2/OAuth2Client.cs8
-rw-r--r--src/DotNetOpenAuth.AspNet/Clients/OAuth2/WindowsLiveClient.cs20
-rw-r--r--src/DotNetOpenAuth.AspNet/Clients/OAuth2/WindowsLiveUserData.cs8
-rw-r--r--src/DotNetOpenAuth.AspNet/Clients/OpenID/GoogleOpenIdClient.cs10
-rw-r--r--src/DotNetOpenAuth.AspNet/Clients/OpenID/OpenIDClient.cs16
-rw-r--r--src/DotNetOpenAuth.AspNet/Clients/OpenID/YahooOpenIdClient.cs10
-rw-r--r--src/DotNetOpenAuth.AspNet/DotNetOpenAuth.AspNet.csproj2
-rw-r--r--src/DotNetOpenAuth.AspNet/IAuthenticationClient.cs8
-rw-r--r--src/DotNetOpenAuth.AspNet/IOpenAuthDataProvider.cs8
-rw-r--r--src/DotNetOpenAuth.AspNet/OpenAuthAuthenticationTicketHelper.cs8
-rw-r--r--src/DotNetOpenAuth.AspNet/OpenAuthSecurityManager.cs8
-rw-r--r--src/DotNetOpenAuth.AspNet/UriHelper.cs8
-rw-r--r--tools/DotNetOpenAuth.Versioning.targets2
25 files changed, 175 insertions, 37 deletions
diff --git a/src/DotNetOpenAuth.AspNet/AuthenticationResult.cs b/src/DotNetOpenAuth.AspNet/AuthenticationResult.cs
index 9656a56..24ef18d 100644
--- a/src/DotNetOpenAuth.AspNet/AuthenticationResult.cs
+++ b/src/DotNetOpenAuth.AspNet/AuthenticationResult.cs
@@ -1,4 +1,10 @@
-namespace DotNetOpenAuth.AspNet {
+//-----------------------------------------------------------------------
+// <copyright file="AuthenticationResult.cs" company="Microsoft">
+// Copyright (c) Microsoft. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
+
+namespace DotNetOpenAuth.AspNet {
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
diff --git a/src/DotNetOpenAuth.AspNet/Clients/DictionaryExtensions.cs b/src/DotNetOpenAuth.AspNet/Clients/DictionaryExtensions.cs
index ce7891d..e0f2b08 100644
--- a/src/DotNetOpenAuth.AspNet/Clients/DictionaryExtensions.cs
+++ b/src/DotNetOpenAuth.AspNet/Clients/DictionaryExtensions.cs
@@ -1,4 +1,10 @@
-namespace DotNetOpenAuth.AspNet.Clients {
+//-----------------------------------------------------------------------
+// <copyright file="DictionaryExtensions.cs" company="Microsoft">
+// Copyright (c) Microsoft. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
+
+namespace DotNetOpenAuth.AspNet.Clients {
using System;
using System.Collections.Generic;
using System.Xml.Linq;
diff --git a/src/DotNetOpenAuth.AspNet/Clients/OAuth/DotNetOpenAuthWebConsumer.cs b/src/DotNetOpenAuth.AspNet/Clients/OAuth/DotNetOpenAuthWebConsumer.cs
index 5ad709c..4dc3dcc 100644
--- a/src/DotNetOpenAuth.AspNet/Clients/OAuth/DotNetOpenAuthWebConsumer.cs
+++ b/src/DotNetOpenAuth.AspNet/Clients/OAuth/DotNetOpenAuthWebConsumer.cs
@@ -1,4 +1,10 @@
-namespace DotNetOpenAuth.AspNet.Clients {
+//-----------------------------------------------------------------------
+// <copyright file="DotNetOpenAuthWebConsumer.cs" company="Microsoft">
+// Copyright (c) Microsoft. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
+
+namespace DotNetOpenAuth.AspNet.Clients {
using System;
using System.Collections.Generic;
using System.Net;
diff --git a/src/DotNetOpenAuth.AspNet/Clients/OAuth/IOAuthWebWorker.cs b/src/DotNetOpenAuth.AspNet/Clients/OAuth/IOAuthWebWorker.cs
index cca8298..82c55fb 100644
--- a/src/DotNetOpenAuth.AspNet/Clients/OAuth/IOAuthWebWorker.cs
+++ b/src/DotNetOpenAuth.AspNet/Clients/OAuth/IOAuthWebWorker.cs
@@ -1,4 +1,10 @@
-namespace DotNetOpenAuth.AspNet.Clients {
+//-----------------------------------------------------------------------
+// <copyright file="IOAuthWebWorker.cs" company="Microsoft">
+// Copyright (c) Microsoft. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
+
+namespace DotNetOpenAuth.AspNet.Clients {
using System;
using System.Net;
using DotNetOpenAuth.Messaging;
diff --git a/src/DotNetOpenAuth.AspNet/Clients/OAuth/InMemoryOAuthTokenManager.cs b/src/DotNetOpenAuth.AspNet/Clients/OAuth/InMemoryOAuthTokenManager.cs
index 9dbf3d8..a10e777 100644
--- a/src/DotNetOpenAuth.AspNet/Clients/OAuth/InMemoryOAuthTokenManager.cs
+++ b/src/DotNetOpenAuth.AspNet/Clients/OAuth/InMemoryOAuthTokenManager.cs
@@ -1,4 +1,10 @@
-namespace DotNetOpenAuth.AspNet.Clients {
+//-----------------------------------------------------------------------
+// <copyright file="InMemoryOAuthTokenManager.cs" company="Microsoft">
+// Copyright (c) Microsoft. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
+
+namespace DotNetOpenAuth.AspNet.Clients {
using System;
using System.Collections.Generic;
using DotNetOpenAuth.OAuth.ChannelElements;
diff --git a/src/DotNetOpenAuth.AspNet/Clients/OAuth/LinkedInClient.cs b/src/DotNetOpenAuth.AspNet/Clients/OAuth/LinkedInClient.cs
index 53578ab..702501a 100644
--- a/src/DotNetOpenAuth.AspNet/Clients/OAuth/LinkedInClient.cs
+++ b/src/DotNetOpenAuth.AspNet/Clients/OAuth/LinkedInClient.cs
@@ -1,4 +1,10 @@
-namespace DotNetOpenAuth.AspNet.Clients {
+//-----------------------------------------------------------------------
+// <copyright file="LinkedInClient.cs" company="Microsoft">
+// Copyright (c) Microsoft. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
+
+namespace DotNetOpenAuth.AspNet.Clients {
using System;
using System.Collections.Generic;
using System.IO;
diff --git a/src/DotNetOpenAuth.AspNet/Clients/OAuth/OAuthClient.cs b/src/DotNetOpenAuth.AspNet/Clients/OAuth/OAuthClient.cs
index 5e57f6e..5908225 100644
--- a/src/DotNetOpenAuth.AspNet/Clients/OAuth/OAuthClient.cs
+++ b/src/DotNetOpenAuth.AspNet/Clients/OAuth/OAuthClient.cs
@@ -1,4 +1,10 @@
-namespace DotNetOpenAuth.AspNet.Clients {
+//-----------------------------------------------------------------------
+// <copyright file="OAuthClient.cs" company="Microsoft">
+// Copyright (c) Microsoft. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
+
+namespace DotNetOpenAuth.AspNet.Clients {
using System;
using System.Web;
using DotNetOpenAuth.Messaging;
diff --git a/src/DotNetOpenAuth.AspNet/Clients/OAuth/TwitterClient.cs b/src/DotNetOpenAuth.AspNet/Clients/OAuth/TwitterClient.cs
index c73deed..b99c251 100644
--- a/src/DotNetOpenAuth.AspNet/Clients/OAuth/TwitterClient.cs
+++ b/src/DotNetOpenAuth.AspNet/Clients/OAuth/TwitterClient.cs
@@ -1,4 +1,10 @@
-namespace DotNetOpenAuth.AspNet.Clients {
+//-----------------------------------------------------------------------
+// <copyright file="TwitterClient.cs" company="Microsoft">
+// Copyright (c) Microsoft. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
+
+namespace DotNetOpenAuth.AspNet.Clients {
using System;
using System.Collections.Generic;
using System.IO;
diff --git a/src/DotNetOpenAuth.AspNet/Clients/OAuth2/FacebookClient.cs b/src/DotNetOpenAuth.AspNet/Clients/OAuth2/FacebookClient.cs
index 623d595..442326e 100644
--- a/src/DotNetOpenAuth.AspNet/Clients/OAuth2/FacebookClient.cs
+++ b/src/DotNetOpenAuth.AspNet/Clients/OAuth2/FacebookClient.cs
@@ -1,4 +1,10 @@
-namespace DotNetOpenAuth.AspNet.Clients {
+//-----------------------------------------------------------------------
+// <copyright file="FacebookClient.cs" company="Microsoft">
+// Copyright (c) Microsoft. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
+
+namespace DotNetOpenAuth.AspNet.Clients {
using System;
using System.Collections.Generic;
using System.Globalization;
diff --git a/src/DotNetOpenAuth.AspNet/Clients/OAuth2/FacebookGraphData.cs b/src/DotNetOpenAuth.AspNet/Clients/OAuth2/FacebookGraphData.cs
index a2605bf..17e0acd 100644
--- a/src/DotNetOpenAuth.AspNet/Clients/OAuth2/FacebookGraphData.cs
+++ b/src/DotNetOpenAuth.AspNet/Clients/OAuth2/FacebookGraphData.cs
@@ -1,4 +1,10 @@
-namespace DotNetOpenAuth.AspNet.Clients {
+//-----------------------------------------------------------------------
+// <copyright file="FacebookGraphData.cs" company="Microsoft">
+// Copyright (c) Microsoft. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
+
+namespace DotNetOpenAuth.AspNet.Clients {
using System;
using System.Runtime.Serialization;
using System.ComponentModel;
diff --git a/src/DotNetOpenAuth.AspNet/Clients/OAuth2/JsonHelper.cs b/src/DotNetOpenAuth.AspNet/Clients/OAuth2/JsonHelper.cs
index bc8af46..7a2da18 100644
--- a/src/DotNetOpenAuth.AspNet/Clients/OAuth2/JsonHelper.cs
+++ b/src/DotNetOpenAuth.AspNet/Clients/OAuth2/JsonHelper.cs
@@ -1,4 +1,10 @@
-namespace DotNetOpenAuth.AspNet.Clients {
+//-----------------------------------------------------------------------
+// <copyright file="JsonHelper.cs" company="Microsoft">
+// Copyright (c) Microsoft. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
+
+namespace DotNetOpenAuth.AspNet.Clients {
using System;
using System.IO;
using System.Runtime.Serialization.Json;
diff --git a/src/DotNetOpenAuth.AspNet/Clients/OAuth2/OAuth2AccessTokenData.cs b/src/DotNetOpenAuth.AspNet/Clients/OAuth2/OAuth2AccessTokenData.cs
index 7cb902e..6d9d3a6 100644
--- a/src/DotNetOpenAuth.AspNet/Clients/OAuth2/OAuth2AccessTokenData.cs
+++ b/src/DotNetOpenAuth.AspNet/Clients/OAuth2/OAuth2AccessTokenData.cs
@@ -1,4 +1,10 @@
-namespace DotNetOpenAuth.AspNet.Clients {
+//-----------------------------------------------------------------------
+// <copyright file="OAuth2AccessTokenData.cs" company="Microsoft">
+// Copyright (c) Microsoft. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
+
+namespace DotNetOpenAuth.AspNet.Clients {
using System.Runtime.Serialization;
[DataContract]
diff --git a/src/DotNetOpenAuth.AspNet/Clients/OAuth2/OAuth2Client.cs b/src/DotNetOpenAuth.AspNet/Clients/OAuth2/OAuth2Client.cs
index ff50521..17a11b8 100644
--- a/src/DotNetOpenAuth.AspNet/Clients/OAuth2/OAuth2Client.cs
+++ b/src/DotNetOpenAuth.AspNet/Clients/OAuth2/OAuth2Client.cs
@@ -1,4 +1,10 @@
-namespace DotNetOpenAuth.AspNet.Clients {
+//-----------------------------------------------------------------------
+// <copyright file="OAuth2Client.cs" company="Microsoft">
+// Copyright (c) Microsoft. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
+
+namespace DotNetOpenAuth.AspNet.Clients {
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
diff --git a/src/DotNetOpenAuth.AspNet/Clients/OAuth2/WindowsLiveClient.cs b/src/DotNetOpenAuth.AspNet/Clients/OAuth2/WindowsLiveClient.cs
index bddb801..ffbbf26 100644
--- a/src/DotNetOpenAuth.AspNet/Clients/OAuth2/WindowsLiveClient.cs
+++ b/src/DotNetOpenAuth.AspNet/Clients/OAuth2/WindowsLiveClient.cs
@@ -1,4 +1,10 @@
-namespace DotNetOpenAuth.AspNet.Clients {
+//-----------------------------------------------------------------------
+// <copyright file="WindowsLiveClient.cs" company="Microsoft">
+// Copyright (c) Microsoft. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
+
+namespace DotNetOpenAuth.AspNet.Clients {
using System;
using System.Collections.Generic;
using System.IO;
@@ -30,12 +36,12 @@
var builder = new UriBuilder(AuthorizationEndpoint);
MessagingUtilities.AppendQueryArgs(builder,
new KeyValuePair<string, string>[]
- {
- new KeyValuePair<string, string>("client_id", _appId),
- new KeyValuePair<string, string>("scope", "wl.basic"),
- new KeyValuePair<string, string>("response_type", "code"),
- new KeyValuePair<string, string>("redirect_uri", returnUrl.ToString())
- });
+ {
+ new KeyValuePair<string, string>("client_id", _appId),
+ new KeyValuePair<string, string>("scope", "wl.basic"),
+ new KeyValuePair<string, string>("response_type", "code"),
+ new KeyValuePair<string, string>("redirect_uri", returnUrl.ToString())
+ });
return builder.Uri;
}
diff --git a/src/DotNetOpenAuth.AspNet/Clients/OAuth2/WindowsLiveUserData.cs b/src/DotNetOpenAuth.AspNet/Clients/OAuth2/WindowsLiveUserData.cs
index 8147e2f..6050aae 100644
--- a/src/DotNetOpenAuth.AspNet/Clients/OAuth2/WindowsLiveUserData.cs
+++ b/src/DotNetOpenAuth.AspNet/Clients/OAuth2/WindowsLiveUserData.cs
@@ -1,4 +1,10 @@
-namespace DotNetOpenAuth.AspNet.Clients {
+//-----------------------------------------------------------------------
+// <copyright file="WindowsLiveUserData.cs" company="Microsoft">
+// Copyright (c) Microsoft. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
+
+namespace DotNetOpenAuth.AspNet.Clients {
using System;
using System.Runtime.Serialization;
using System.ComponentModel;
diff --git a/src/DotNetOpenAuth.AspNet/Clients/OpenID/GoogleOpenIdClient.cs b/src/DotNetOpenAuth.AspNet/Clients/OpenID/GoogleOpenIdClient.cs
index 654fff6..2f71781 100644
--- a/src/DotNetOpenAuth.AspNet/Clients/OpenID/GoogleOpenIdClient.cs
+++ b/src/DotNetOpenAuth.AspNet/Clients/OpenID/GoogleOpenIdClient.cs
@@ -1,4 +1,10 @@
-namespace DotNetOpenAuth.AspNet.Clients {
+//-----------------------------------------------------------------------
+// <copyright file="GoogleOpenIdClient.cs" company="Microsoft">
+// Copyright (c) Microsoft. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
+
+namespace DotNetOpenAuth.AspNet.Clients {
using System.Collections.Generic;
using DotNetOpenAuth.OpenId.Extensions.AttributeExchange;
using DotNetOpenAuth.OpenId.RelyingParty;
@@ -6,7 +12,7 @@
/// <summary>
/// Represents Google OpenID client.
/// </summary>
- public sealed class GoogleOpenIdClient : OpenIDClient {
+ public sealed class GoogleOpenIdClient : OpenIdClient {
public GoogleOpenIdClient() :
base("google", "https://www.google.com/accounts/o8/id") {
}
diff --git a/src/DotNetOpenAuth.AspNet/Clients/OpenID/OpenIDClient.cs b/src/DotNetOpenAuth.AspNet/Clients/OpenID/OpenIDClient.cs
index 4bfb87e..ee1ddc1 100644
--- a/src/DotNetOpenAuth.AspNet/Clients/OpenID/OpenIDClient.cs
+++ b/src/DotNetOpenAuth.AspNet/Clients/OpenID/OpenIDClient.cs
@@ -1,16 +1,22 @@
-namespace DotNetOpenAuth.AspNet.Clients {
+//-----------------------------------------------------------------------
+// <copyright file="OpenIdClient.cs" company="Microsoft">
+// Copyright (c) Microsoft. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
+
+namespace DotNetOpenAuth.AspNet.Clients {
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Web;
+ using DotNetOpenAuth.AspNet.Resources;
using DotNetOpenAuth.OpenId;
using DotNetOpenAuth.OpenId.RelyingParty;
- using DotNetOpenAuth.AspNet.Resources;
/// <summary>
/// Base classes for OpenID clients.
/// </summary>
- public class OpenIDClient : IAuthenticationClient {
+ public class OpenIdClient : IAuthenticationClient {
private readonly Identifier _providerIdentifier;
private readonly string _providerName;
@@ -18,11 +24,11 @@
new OpenIdRelyingParty(new StandardRelyingPartyApplicationStore());
/// <summary>
- /// Initializes a new instance of the <see cref="OpenIDClient"/> class.
+ /// Initializes a new instance of the <see cref="OpenIdClient"/> class.
/// </summary>
/// <param name="providerName">Name of the provider.</param>
/// <param name="providerIdentifier">The provider identifier, which is the usually the login url of the specified provider.</param>
- public OpenIDClient(string providerName, string providerIdentifier) {
+ public OpenIdClient(string providerName, string providerIdentifier) {
if (String.IsNullOrEmpty(providerIdentifier)) {
throw new ArgumentException(
String.Format(CultureInfo.CurrentCulture, WebResources.Argument_Cannot_Be_Null_Or_Empty, "providerIdentifier"),
diff --git a/src/DotNetOpenAuth.AspNet/Clients/OpenID/YahooOpenIdClient.cs b/src/DotNetOpenAuth.AspNet/Clients/OpenID/YahooOpenIdClient.cs
index dcf6a13..d3a063f 100644
--- a/src/DotNetOpenAuth.AspNet/Clients/OpenID/YahooOpenIdClient.cs
+++ b/src/DotNetOpenAuth.AspNet/Clients/OpenID/YahooOpenIdClient.cs
@@ -1,9 +1,15 @@
-namespace DotNetOpenAuth.AspNet.Clients {
+//-----------------------------------------------------------------------
+// <copyright file="YahooOpenIdClient.cs" company="Microsoft">
+// Copyright (c) Microsoft. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
+
+namespace DotNetOpenAuth.AspNet.Clients {
using System.Collections.Generic;
using DotNetOpenAuth.OpenId.Extensions.AttributeExchange;
using DotNetOpenAuth.OpenId.RelyingParty;
- public sealed class YahooOpenIdClient : OpenIDClient {
+ public sealed class YahooOpenIdClient : OpenIdClient {
public YahooOpenIdClient() :
base("yahoo", "http://me.yahoo.com") {
}
diff --git a/src/DotNetOpenAuth.AspNet/DotNetOpenAuth.AspNet.csproj b/src/DotNetOpenAuth.AspNet/DotNetOpenAuth.AspNet.csproj
index e27febc..c2830d2 100644
--- a/src/DotNetOpenAuth.AspNet/DotNetOpenAuth.AspNet.csproj
+++ b/src/DotNetOpenAuth.AspNet/DotNetOpenAuth.AspNet.csproj
@@ -58,7 +58,7 @@
<Compile Include="Clients\OAuth\OAuthClient.cs" />
<Compile Include="Clients\OAuth\TwitterClient.cs" />
<Compile Include="Clients\OpenID\GoogleOpenIdClient.cs" />
- <Compile Include="Clients\OpenID\OpenIDClient.cs" />
+ <Compile Include="Clients\OpenID\OpenIdClient.cs" />
<Compile Include="Clients\OpenID\YahooOpenIdClient.cs" />
<Compile Include="UriHelper.cs" />
<Compile Include="IOpenAuthDataProvider.cs" />
diff --git a/src/DotNetOpenAuth.AspNet/IAuthenticationClient.cs b/src/DotNetOpenAuth.AspNet/IAuthenticationClient.cs
index b5745c3..4a9c8fb 100644
--- a/src/DotNetOpenAuth.AspNet/IAuthenticationClient.cs
+++ b/src/DotNetOpenAuth.AspNet/IAuthenticationClient.cs
@@ -1,4 +1,10 @@
-namespace DotNetOpenAuth.AspNet {
+//-----------------------------------------------------------------------
+// <copyright file="IAuthenticationClient.cs" company="Microsoft">
+// Copyright (c) Microsoft. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
+
+namespace DotNetOpenAuth.AspNet {
using System;
using System.Web;
diff --git a/src/DotNetOpenAuth.AspNet/IOpenAuthDataProvider.cs b/src/DotNetOpenAuth.AspNet/IOpenAuthDataProvider.cs
index 5eb19a5..194b02d 100644
--- a/src/DotNetOpenAuth.AspNet/IOpenAuthDataProvider.cs
+++ b/src/DotNetOpenAuth.AspNet/IOpenAuthDataProvider.cs
@@ -1,4 +1,10 @@
-namespace DotNetOpenAuth.AspNet {
+//-----------------------------------------------------------------------
+// <copyright file="IOpenAuthDataProvider.cs" company="Microsoft">
+// Copyright (c) Microsoft. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
+
+namespace DotNetOpenAuth.AspNet {
public interface IOpenAuthDataProvider {
string GetUserNameFromOpenAuth(string openAuthProvider, string openAuthId);
}
diff --git a/src/DotNetOpenAuth.AspNet/OpenAuthAuthenticationTicketHelper.cs b/src/DotNetOpenAuth.AspNet/OpenAuthAuthenticationTicketHelper.cs
index 22c1556..19c1184 100644
--- a/src/DotNetOpenAuth.AspNet/OpenAuthAuthenticationTicketHelper.cs
+++ b/src/DotNetOpenAuth.AspNet/OpenAuthAuthenticationTicketHelper.cs
@@ -1,4 +1,10 @@
-namespace DotNetOpenAuth.AspNet {
+//-----------------------------------------------------------------------
+// <copyright file="OpenAuthAuthenticationTicketHelper.cs" company="Microsoft">
+// Copyright (c) Microsoft. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
+
+namespace DotNetOpenAuth.AspNet {
using System;
using System.Diagnostics;
using System.Web;
diff --git a/src/DotNetOpenAuth.AspNet/OpenAuthSecurityManager.cs b/src/DotNetOpenAuth.AspNet/OpenAuthSecurityManager.cs
index 188307f..fefa3f5 100644
--- a/src/DotNetOpenAuth.AspNet/OpenAuthSecurityManager.cs
+++ b/src/DotNetOpenAuth.AspNet/OpenAuthSecurityManager.cs
@@ -1,4 +1,10 @@
-namespace DotNetOpenAuth.AspNet {
+//-----------------------------------------------------------------------
+// <copyright file="OpenAuthSecurityManager.cs" company="Microsoft">
+// Copyright (c) Microsoft. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
+
+namespace DotNetOpenAuth.AspNet {
using System;
using System.Diagnostics.CodeAnalysis;
using System.Diagnostics.Contracts;
diff --git a/src/DotNetOpenAuth.AspNet/UriHelper.cs b/src/DotNetOpenAuth.AspNet/UriHelper.cs
index 83e0ade..300c662 100644
--- a/src/DotNetOpenAuth.AspNet/UriHelper.cs
+++ b/src/DotNetOpenAuth.AspNet/UriHelper.cs
@@ -1,4 +1,10 @@
-namespace DotNetOpenAuth.AspNet {
+//-----------------------------------------------------------------------
+// <copyright file="UriHelper.cs" company="Microsoft">
+// Copyright (c) Microsoft. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
+
+namespace DotNetOpenAuth.AspNet {
using System;
using System.Text.RegularExpressions;
using System.Web;
diff --git a/tools/DotNetOpenAuth.Versioning.targets b/tools/DotNetOpenAuth.Versioning.targets
index 7ea18b1..0860f67 100644
--- a/tools/DotNetOpenAuth.Versioning.targets
+++ b/tools/DotNetOpenAuth.Versioning.targets
@@ -8,7 +8,7 @@
<NoWarn>$(NoWarn);1607</NoWarn>
<!-- PrereleaseVersion can be any alphanumeric identifier with a preceding hyphen, or blank. -->
- <PrereleaseVersion>-beta</PrereleaseVersion>
+ <PrereleaseVersion>-beta2</PrereleaseVersion>
</PropertyGroup>
<UsingTask AssemblyFile="$(ProjectRoot)lib\MSBuild.Community.Tasks.dll" TaskName="AssemblyInfo"/>