Add top-level packages so vstest can detect tests (#272)

This commit is contained in:
Jakub Jareš 2022-11-08 14:00:42 +01:00 коммит произвёл GitHub
Родитель 010fea877d
Коммит bb36956881
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 8 добавлений и 1 удалений

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

@ -12,6 +12,9 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
<PackageReference Include="MSTest.TestAdapter" Version="2.2.10" />
<PackageReference Include="MSTest.TestFramework" Version="2.2.10" />
<PackageReference Include="Microsoft.Playwright.MSTest" Version="1.27.1" />
<PackageReference Include="coverlet.collector" Version="3.1.2" />
</ItemGroup>

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

@ -8,7 +8,7 @@
"groupIdentity": "Microsoft.Test.Playwright.NUnit",
"precedence": "10000",
"identity": "Microsoft.Test.Playwright.NUnit.CSharp.8.0",
"shortName": "NUnit-playwright",
"shortName": "nunit-playwright",
"tags": {
"language": "C#",
"type": "project"

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

@ -12,6 +12,10 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.2.1" />
<PackageReference Include="NUnit.Analyzers" Version="3.3.0" />
<PackageReference Include="Microsoft.Playwright.NUnit" Version="1.27.1" />
<PackageReference Include="coverlet.collector" Version="3.1.2" />
</ItemGroup>