-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathKameleo.LocalApiClient.csproj
29 lines (27 loc) · 1.33 KB
/
Kameleo.LocalApiClient.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Authors>Kameleo Team</Authors>
<Company>Kameleo</Company>
<PackageTags>kameleo; stealth browsing platform; anti-detect browser; selenium; webdriver; browser automation; web scraping; puppeteer; playwright; headless; chrome; firefox; chromium; edge</PackageTags>
<Version>3.4.0</Version>
<Description>This .NET Standard package provides convenient access to the Local API REST interface of the Kameleo Client.</Description>
<PackageProjectUrl>https://kameleo.io</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/kameleo-io/local-api-client-csharp</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageId>Kameleo.LocalApiClient</PackageId>
<DocumentationFile>Kameleo.LocalApiClient.xml</DocumentationFile>
<NoWarn>1701;1702;1573;1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Rest.ClientRuntime" Version="2.3.*" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
<None Remove="examples\**" />
<Compile Remove="examples\**" />
<EmbeddedResource Remove="examples\**" />
</ItemGroup>
</Project>