From ba67b04d9d82f962c0947968f6f454a4b8e387d6 Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Fri, 26 Oct 2018 12:26:16 -0700 Subject: [PATCH] Ensure IsTestProject=false in Microsoft.AspNetCore.Identity.Specification.Tests.csproj This isn't really a test project. It's a class library which contains testing compontents. Because 'xunit' is referenced, IsTestProject=true, which messes up some of the build logic we have for handling code signing and test runners --- .../Microsoft.AspNetCore.Identity.Specification.Tests.csproj | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Specification.Tests/Microsoft.AspNetCore.Identity.Specification.Tests.csproj b/src/Specification.Tests/Microsoft.AspNetCore.Identity.Specification.Tests.csproj index c987d8fa30..73155b6e2d 100644 --- a/src/Specification.Tests/Microsoft.AspNetCore.Identity.Specification.Tests.csproj +++ b/src/Specification.Tests/Microsoft.AspNetCore.Identity.Specification.Tests.csproj @@ -6,6 +6,7 @@ true aspnetcore;identity;membership true + false