94 lines
3.6 KiB
XML
94 lines
3.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<LangVersion>latest</LangVersion>
|
|
|
|
<PackageOutputPath>C:\Users\logik\Dropbox\Nugets</PackageOutputPath>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<PackageId>ViewEngine.Client</PackageId>
|
|
<Version>1.2.1</Version>
|
|
<Authors>David H Friedel Jr</Authors>
|
|
<Company>MarketAlly</Company>
|
|
<Product>ViewEngine.Client</Product>
|
|
|
|
<Title>ViewEngine REST API Client for .NET</Title>
|
|
<Description>
|
|
Official .NET client library for consuming the ViewEngine REST API. Retrieve web pages, extract content, and process web data with ViewEngine's distributed web scraping service.
|
|
|
|
Key Features:
|
|
- Submit web page retrieval requests via MCP API
|
|
- Poll for job status and retrieve results
|
|
- Download decrypted page content with full text extraction
|
|
- Access screenshots, thumbnails, and artifacts
|
|
- Manage clients and route jobs to specific feeders
|
|
- Built-in retry logic with exponential backoff
|
|
- Full support for API key authentication
|
|
- Type-safe request/response models
|
|
- Async/await support throughout
|
|
- Dependency injection integration
|
|
- .NET 9.0 compatible
|
|
|
|
Perfect for applications requiring web scraping, content extraction, web page monitoring, and automated browsing.
|
|
</Description>
|
|
|
|
<Copyright>Copyright © 2025 MarketAlly</Copyright>
|
|
<PackageIcon>icon.png</PackageIcon>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageProjectUrl>https://www.viewengine.io</PackageProjectUrl>
|
|
<RepositoryUrl>https://git.marketally.com/viewengine/ViewEngine.Client</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
|
|
<PackageTags>viewengine dotnet rest-api api-client web-scraping webscraping webcrawler http-client content-extraction page-retrieval mcp distributed async dotnet9</PackageTags>
|
|
|
|
<PackageReleaseNotes>
|
|
Version 1.0.0 (Initial Release):
|
|
|
|
🎉 NEW FEATURES:
|
|
- ViewEngineClient - Main client for MCP API operations
|
|
- Submit retrieval requests with customizable options (timeout, priority, platform preferences)
|
|
- Poll for job status and completion
|
|
- Download decrypted page content
|
|
- Client management API support
|
|
- Type-safe DTOs for all API operations
|
|
- Built-in retry logic with exponential backoff
|
|
- Rate limit handling
|
|
- API key authentication
|
|
- Full async/await support
|
|
- Dependency injection ready
|
|
|
|
📦 ARCHITECTURE:
|
|
- Clean separation of concerns
|
|
- Strongly-typed request/response models
|
|
- Configurable via IOptions pattern
|
|
- HttpClient integration
|
|
- Production-ready error handling
|
|
</PackageReleaseNotes>
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.10" />
|
|
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.10" />
|
|
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="9.0.10" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="icon.png">
|
|
<Pack>true</Pack>
|
|
<PackagePath>\</PackagePath>
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
<Visible>true</Visible>
|
|
</None>
|
|
<None Include="README.md" Pack="true" PackagePath="\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|