-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathControls.csproj
More file actions
50 lines (45 loc) · 2.45 KB
/
Controls.csproj
File metadata and controls
50 lines (45 loc) · 2.45 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
47
48
49
50
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<LangVersion>10</LangVersion>
<TargetFrameworks>net6.0;netstandard2.0</TargetFrameworks>
<AssemblyName>Playwright.ReactUI.Controls</AssemblyName>
<RootNamespace>Playwright.ReactUI.Controls</RootNamespace>
<OutputPath>..\..\bin</OutputPath>
<AppendTargetFrameworkToOutputPath>true</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Playwright" Version="1.51.0" />
<PackageReference Include="System.Linq.Async" Version="6.0.1" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>
<!-- NuGet package -->
<PropertyGroup>
<PackageId>Playwright.ReactUI.Controls</PackageId>
<Title>Playwright.ReactUI.Controls</Title>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0</FileVersion>
<Version>3.1.1</Version>
<Authors>Evgeniy Ivanov</Authors>
<Product>Playwright.ReactUI.Controls</Product>
<PackageReadmeFile>README-Controls.md</PackageReadmeFile>
<Description>The library is designed to interact with @skbkontur/react-ui components using Playwright.NET</Description>
<Summary>The library is designed to interact with @skbkontur/react-ui components using Playwright.NET</Summary>
<PackageTags>playwright pageobjects @skbkontur/react-ui</PackageTags>
<PackageProjectUrl>https://github.com/SephVin/Playwright.React-UI.Controls</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<MinClientVersion>2.12</MinClientVersion>
<IncludeSymbols>true</IncludeSymbols>
<IncludeSource>true</IncludeSource>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)../../readme/README-Controls.md" Pack="true" PackagePath="/" />
</ItemGroup>
</Project>