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
This commit is contained in:
Nate McMaster 2018-10-26 12:26:16 -07:00
Родитель ee8e882d17
Коммит ba67b04d9d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: A778D9601BD78810
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -6,6 +6,7 @@
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageTags>aspnetcore;identity;membership</PackageTags>
<IsPackable>true</IsPackable>
<IsTestProject>false</IsTestProject>
</PropertyGroup>
<ItemGroup>