Expands SDK support to 8 additional languages/frameworks: - Java SDK with Maven/OkHttp/Jackson - Kotlin SDK with Gradle/Ktor/kotlinx.serialization - Swift SDK with Swift Package Manager/async-await - C SDK with CMake/libcurl - C++ SDK with CMake/Modern C++20 - C# SDK with .NET 8.0/HttpClient - Ruby SDK with Bundler/Faraday - Rust SDK with Cargo/reqwest/tokio All SDKs include: - Tensor operations (matmul, conv2d, attention) - LLM inference with streaming support - Model registry, pricing, and usage APIs - Builder patterns where idiomatic - Full type safety
21 lines
749 B
XML
21 lines
749 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<LangVersion>12.0</LangVersion>
|
|
<PackageId>SynorCompute</PackageId>
|
|
<Version>0.1.0</Version>
|
|
<Authors>Synor</Authors>
|
|
<Description>C# SDK for Synor Compute - Distributed Heterogeneous Computing</Description>
|
|
<PackageTags>compute;gpu;ai;ml;distributed;heterogeneous</PackageTags>
|
|
<RepositoryUrl>https://github.com/synor/synor-compute-csharp</RepositoryUrl>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Text.Json" Version="8.0.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|