|
| 1 | +<?xml version="1.0" encoding="utf-8"?> |
| 2 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 3 | + <PropertyGroup> |
| 4 | + <Title>Microsoft.Playwright.MSTest.v4</Title> |
| 5 | + <PackageId>Microsoft.Playwright.MSTest.v4</PackageId> |
| 6 | + <Summary>A set of helpers and fixtures to enable using Playwright in MSTest 4 tests.</Summary> |
| 7 | + <Description> |
| 8 | + Playwright enables reliable end-to-end testing for modern web apps. This package brings in additional helpers |
| 9 | + and fixtures to enable using it within MSTest. |
| 10 | + </Description> |
| 11 | + <PackageIcon>icon.png</PackageIcon> |
| 12 | + <TargetFramework>netstandard2.0</TargetFramework> |
| 13 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 14 | + <RunWithWarnings>true</RunWithWarnings> |
| 15 | + <RootNamespace>Microsoft.Playwright.MSTest</RootNamespace> |
| 16 | + <ReleaseVersion>0.0.0</ReleaseVersion> |
| 17 | + <BuildFromSource>True</BuildFromSource> |
| 18 | + <AssemblyName>Microsoft.Playwright.MSTest.v4</AssemblyName> |
| 19 | + <PackageOutputPath>./nupkg</PackageOutputPath> |
| 20 | + <IsPackable>true</IsPackable> |
| 21 | + <Nullable>enable</Nullable> |
| 22 | + <!--<EnablePackageValidation>true</EnablePackageValidation> |
| 23 | + <PackageValidationBaselineVersion>1.52.0</PackageValidationBaselineVersion>--> |
| 24 | + </PropertyGroup> |
| 25 | + |
| 26 | + <Import Project="../Common/Version.props" /> |
| 27 | + <Import Project="../Common/SignAssembly.props" /> |
| 28 | + <Import Project="../Common/SignFiles.props" /> |
| 29 | + <ItemGroup> |
| 30 | + <ProjectReference Include="..\Playwright\Playwright.csproj" /> |
| 31 | + <ProjectReference Include="..\Playwright.TestAdapter\Playwright.TestAdapter.csproj" /> |
| 32 | + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0"> |
| 33 | + <PrivateAssets>all</PrivateAssets> |
| 34 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 35 | + </PackageReference> |
| 36 | + <PackageReference Include="Microsoft.VisualStudioEng.MicroBuild.Core" Version="1.0.0"> |
| 37 | + <PrivateAssets>all</PrivateAssets> |
| 38 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 39 | + </PackageReference> |
| 40 | + <PackageReference Include="MSTest.TestFramework" Version="4.0.0-preview.25372.6" /> |
| 41 | + </ItemGroup> |
| 42 | + <ItemGroup> |
| 43 | + <None Include="..\Common\icon.png" Pack="true" Visible="false" PackagePath="icon.png" /> |
| 44 | + </ItemGroup> |
| 45 | + <ItemGroup> |
| 46 | + <Compile Include="$(MSBuildThisFileDirectory)..\Playwright.MSTest\*.cs"> |
| 47 | + <Link>%(RecursiveDir)%(FileName)%(Extension)</Link> |
| 48 | + </Compile> |
| 49 | + </ItemGroup> |
| 50 | +</Project> |
0 commit comments