-
Notifications
You must be signed in to change notification settings - Fork 295
Expand file tree
/
Copy pathPlaywright.TestAdapter.csproj
More file actions
46 lines (43 loc) · 2.19 KB
/
Playwright.TestAdapter.csproj
File metadata and controls
46 lines (43 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Title>Microsoft.Playwright.TestAdapter</Title>
<PackageId>Microsoft.Playwright.TestAdapter</PackageId>
<Summary>An Adapter which is used in Microsoft.Playwright.NUnit and Microsoft.Playwright.MSTest.</Summary>
<Description>
Playwright enables reliable end-to-end testing for modern web apps. This is a utility package used by the
Microsoft.Playwright.NUnit and Microsoft.Playwright.MSTest packages.
</Description>
<PackageIcon>icon.png</PackageIcon>
<TargetFramework>netstandard2.0</TargetFramework>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<RootNamespace>Microsoft.Playwright.TestAdapter</RootNamespace>
<ReleaseVersion>0.0.0</ReleaseVersion>
<BuildFromSource>True</BuildFromSource>
<AssemblyName>Microsoft.Playwright.TestAdapter</AssemblyName>
<PackageOutputPath>./nupkg</PackageOutputPath>
<IsPackable>true</IsPackable>
<Nullable>enable</Nullable>
<PackageReadmeFile>README.md</PackageReadmeFile>
<EnablePackageValidation>true</EnablePackageValidation>
<PackageValidationBaselineVersion>1.52.0</PackageValidationBaselineVersion>
</PropertyGroup>
<Import Project="../Common/Version.props" />
<Import Project="../Common/SignAssembly.props" />
<Import Project="../Common/SignFiles.props" />
<ItemGroup>
<PackageReference Include="Microsoft.TestPlatform.ObjectModel" Version="17.3.0" />
<ProjectReference Include="..\Playwright\Playwright.csproj" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.VisualStudioEng.MicroBuild.Core" Version="1.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<None Include="..\Common\icon.png" Pack="true" Visible="false" PackagePath="icon.png" />
<None Include="..\..\README.md" Pack="true" PackagePath="README.md" />
</ItemGroup>
</Project>