From a2c983c1fb33937b11f5480695dc4bded77d4045 Mon Sep 17 00:00:00 2001 From: Hao Kung Date: Fri, 20 Nov 2020 15:02:20 -0800 Subject: [PATCH] Ship the Identity.Specification.Tests package again (#28024) Description This package is a collection of tests which we have shipped which allows customers who have implemented their own identity stores to verify that their stores behave as expected. Our quarantine process introduced some internal dependencies to this package during 5.0, which resulted in us no longer shipping this package. Customer impact Customers were relying on using this library to ensure that their implementations worked against our identity manager implementations. Regression Yes. Regression from 3.2 Risk Low. We currently run our CI tests against this package, this just allows customers to once again be able to run our tests on their CI builds. --- .../src/Microsoft.AspNetCore.Identity.Specification.Tests.csproj | 1 - .../Specification.Tests/src/UserManagerSpecificationTests.cs | 1 - 2 files changed, 2 deletions(-) diff --git a/src/Identity/Specification.Tests/src/Microsoft.AspNetCore.Identity.Specification.Tests.csproj b/src/Identity/Specification.Tests/src/Microsoft.AspNetCore.Identity.Specification.Tests.csproj index c823e9ec89..141b4cd301 100644 --- a/src/Identity/Specification.Tests/src/Microsoft.AspNetCore.Identity.Specification.Tests.csproj +++ b/src/Identity/Specification.Tests/src/Microsoft.AspNetCore.Identity.Specification.Tests.csproj @@ -5,7 +5,6 @@ $(DefaultNetCoreTargetFramework) false aspnetcore;identity;membership - false diff --git a/src/Identity/Specification.Tests/src/UserManagerSpecificationTests.cs b/src/Identity/Specification.Tests/src/UserManagerSpecificationTests.cs index 73d48be2f8..79ce682a26 100644 --- a/src/Identity/Specification.Tests/src/UserManagerSpecificationTests.cs +++ b/src/Identity/Specification.Tests/src/UserManagerSpecificationTests.cs @@ -7,7 +7,6 @@ using System.Linq; using System.Linq.Expressions; using System.Security.Claims; using System.Threading.Tasks; -using Microsoft.AspNetCore.Testing; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using Xunit;