Browse Source

Add missing license headers

pull/469/head
Kévin Chalet 9 years ago
parent
commit
df6bafb723
  1. 8
      test/OpenIddict.Core.Tests/OpenIddictBuilderTests.cs
  2. 8
      test/OpenIddict.Core.Tests/OpenIddictExtensionsTests.cs
  3. 6
      test/OpenIddict.EntityFramework.Tests/OpenIddictExtensionsTests.cs
  4. 8
      test/OpenIddict.EntityFrameworkCore.Tests/OpenIddictExtensionsTests.cs
  5. 8
      test/OpenIddict.Mvc.Tests/OpenIddictExtensionsTests.cs
  6. 8
      test/OpenIddict.Mvc.Tests/OpenIddictModelBinderTests.cs
  7. 8
      test/OpenIddict.Tests/OpenIddictExtensionsTests.cs
  8. 8
      test/OpenIddict.Tests/OpenIddictInitializerTests.cs
  9. 8
      test/OpenIddict.Tests/OpenIddictProviderTests.Authentication.cs
  10. 8
      test/OpenIddict.Tests/OpenIddictProviderTests.Discovery.cs
  11. 8
      test/OpenIddict.Tests/OpenIddictProviderTests.Exchange.cs
  12. 8
      test/OpenIddict.Tests/OpenIddictProviderTests.Introspection.cs
  13. 8
      test/OpenIddict.Tests/OpenIddictProviderTests.Revocation.cs
  14. 8
      test/OpenIddict.Tests/OpenIddictProviderTests.Serialization.cs
  15. 8
      test/OpenIddict.Tests/OpenIddictProviderTests.Session.cs
  16. 8
      test/OpenIddict.Tests/OpenIddictProviderTests.Userinfo.cs
  17. 8
      test/OpenIddict.Tests/OpenIddictProviderTests.cs

8
test/OpenIddict.Core.Tests/OpenIddictBuilderTests.cs

@ -1,4 +1,10 @@
using System; /*
* Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
* See https://github.com/openiddict/openiddict-core for more information concerning
* the license and the contributors participating to this project.
*/
using System;
using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging;
using Moq; using Moq;

8
test/OpenIddict.Core.Tests/OpenIddictExtensionsTests.cs

@ -1,4 +1,10 @@
using System; /*
* Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
* See https://github.com/openiddict/openiddict-core for more information concerning
* the license and the contributors participating to this project.
*/
using System;
using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection;
using OpenIddict.Models; using OpenIddict.Models;
using Xunit; using Xunit;

6
test/OpenIddict.EntityFramework.Tests/OpenIddictExtensionsTests.cs

@ -1,3 +1,9 @@
/*
* Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
* See https://github.com/openiddict/openiddict-core for more information concerning
* the license and the contributors participating to this project.
*/
using System; using System;
using System.Data.Entity; using System.Data.Entity;
using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection;

8
test/OpenIddict.EntityFrameworkCore.Tests/OpenIddictExtensionsTests.cs

@ -1,4 +1,10 @@
using System; /*
* Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
* See https://github.com/openiddict/openiddict-core for more information concerning
* the license and the contributors participating to this project.
*/
using System;
using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection;
using OpenIddict.Models; using OpenIddict.Models;

8
test/OpenIddict.Mvc.Tests/OpenIddictExtensionsTests.cs

@ -1,4 +1,10 @@
using Microsoft.AspNetCore.Mvc; /*
* Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
* See https://github.com/openiddict/openiddict-core for more information concerning
* the license and the contributors participating to this project.
*/
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Options; using Microsoft.Extensions.Options;
using Xunit; using Xunit;

8
test/OpenIddict.Mvc.Tests/OpenIddictModelBinderTests.cs

@ -1,4 +1,10 @@
using System; /*
* Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
* See https://github.com/openiddict/openiddict-core for more information concerning
* the license and the contributors participating to this project.
*/
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Threading.Tasks; using System.Threading.Tasks;
using AspNet.Security.OpenIdConnect.Primitives; using AspNet.Security.OpenIdConnect.Primitives;

8
test/OpenIddict.Tests/OpenIddictExtensionsTests.cs

@ -1,4 +1,10 @@
using System; /*
* Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
* See https://github.com/openiddict/openiddict-core for more information concerning
* the license and the contributors participating to this project.
*/
using System;
using System.IdentityModel.Tokens.Jwt; using System.IdentityModel.Tokens.Jwt;
using System.Reflection; using System.Reflection;
using AspNet.Security.OpenIdConnect.Primitives; using AspNet.Security.OpenIdConnect.Primitives;

8
test/OpenIddict.Tests/OpenIddictInitializerTests.cs

@ -1,4 +1,10 @@
using System; /*
* Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
* See https://github.com/openiddict/openiddict-core for more information concerning
* the license and the contributors participating to this project.
*/
using System;
using System.Threading.Tasks; using System.Threading.Tasks;
using AspNet.Security.OpenIdConnect.Client; using AspNet.Security.OpenIdConnect.Client;
using AspNet.Security.OpenIdConnect.Primitives; using AspNet.Security.OpenIdConnect.Primitives;

8
test/OpenIddict.Tests/OpenIddictProviderTests.Authentication.cs

@ -1,4 +1,10 @@
using System.IO; /*
* Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
* See https://github.com/openiddict/openiddict-core for more information concerning
* the license and the contributors participating to this project.
*/
using System.IO;
using System.Threading; using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
using AspNet.Security.OpenIdConnect.Client; using AspNet.Security.OpenIdConnect.Client;

8
test/OpenIddict.Tests/OpenIddictProviderTests.Discovery.cs

@ -1,4 +1,10 @@
using System.Threading.Tasks; /*
* Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
* See https://github.com/openiddict/openiddict-core for more information concerning
* the license and the contributors participating to this project.
*/
using System.Threading.Tasks;
using AspNet.Security.OpenIdConnect.Client; using AspNet.Security.OpenIdConnect.Client;
using AspNet.Security.OpenIdConnect.Primitives; using AspNet.Security.OpenIdConnect.Primitives;
using Microsoft.AspNetCore.Authentication.Cookies; using Microsoft.AspNetCore.Authentication.Cookies;

8
test/OpenIddict.Tests/OpenIddictProviderTests.Exchange.cs

@ -1,4 +1,10 @@
using System.Security.Claims; /*
* Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
* See https://github.com/openiddict/openiddict-core for more information concerning
* the license and the contributors participating to this project.
*/
using System.Security.Claims;
using System.Threading; using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
using AspNet.Security.OpenIdConnect.Client; using AspNet.Security.OpenIdConnect.Client;

8
test/OpenIddict.Tests/OpenIddictProviderTests.Introspection.cs

@ -1,4 +1,10 @@
using System.Security.Claims; /*
* Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
* See https://github.com/openiddict/openiddict-core for more information concerning
* the license and the contributors participating to this project.
*/
using System.Security.Claims;
using System.Threading; using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
using AspNet.Security.OpenIdConnect.Client; using AspNet.Security.OpenIdConnect.Client;

8
test/OpenIddict.Tests/OpenIddictProviderTests.Revocation.cs

@ -1,4 +1,10 @@
using System; /*
* Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
* See https://github.com/openiddict/openiddict-core for more information concerning
* the license and the contributors participating to this project.
*/
using System;
using System.IdentityModel.Tokens.Jwt; using System.IdentityModel.Tokens.Jwt;
using System.Security.Claims; using System.Security.Claims;
using System.Threading; using System.Threading;

8
test/OpenIddict.Tests/OpenIddictProviderTests.Serialization.cs

@ -1,4 +1,10 @@
using System; /*
* Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
* See https://github.com/openiddict/openiddict-core for more information concerning
* the license and the contributors participating to this project.
*/
using System;
using System.Threading; using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
using AspNet.Security.OpenIdConnect.Client; using AspNet.Security.OpenIdConnect.Client;

8
test/OpenIddict.Tests/OpenIddictProviderTests.Session.cs

@ -1,4 +1,10 @@
using System.Threading; /*
* Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
* See https://github.com/openiddict/openiddict-core for more information concerning
* the license and the contributors participating to this project.
*/
using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
using AspNet.Security.OpenIdConnect.Client; using AspNet.Security.OpenIdConnect.Client;
using AspNet.Security.OpenIdConnect.Primitives; using AspNet.Security.OpenIdConnect.Primitives;

8
test/OpenIddict.Tests/OpenIddictProviderTests.Userinfo.cs

@ -1,4 +1,10 @@
using System.Threading.Tasks; /*
* Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
* See https://github.com/openiddict/openiddict-core for more information concerning
* the license and the contributors participating to this project.
*/
using System.Threading.Tasks;
using AspNet.Security.OpenIdConnect.Client; using AspNet.Security.OpenIdConnect.Client;
using AspNet.Security.OpenIdConnect.Primitives; using AspNet.Security.OpenIdConnect.Primitives;
using Xunit; using Xunit;

8
test/OpenIddict.Tests/OpenIddictProviderTests.cs

@ -1,4 +1,10 @@
using System; /*
* Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
* See https://github.com/openiddict/openiddict-core for more information concerning
* the license and the contributors participating to this project.
*/
using System;
using System.Reflection; using System.Reflection;
using System.Security.Claims; using System.Security.Claims;
using System.Threading.Tasks; using System.Threading.Tasks;

Loading…
Cancel
Save