Files
ironservices-dotnet/IronServices.Client.csproj
David Friedel d64072a334 Initial commit: IronServices.Client SDK
Unified client for Iron Services APIs with:
- Session-based authentication
- Automatic token persistence
- Access to IronLicensing, IronNotify, and IronTelemetry APIs
- Generic HTTP methods for custom endpoints
2025-12-25 09:09:12 +00:00

22 lines
773 B
XML
Executable File

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<RootNamespace>IronServices.Client</RootNamespace>
<AssemblyName>IronServices.Client</AssemblyName>
<Description>Client library for IronServices API (IronLicensing, IronTelemetry and IronNotify)</Description>
<Authors>David H Friedel Jr</Authors>
<Company>MarketAlly</Company>
<PackageId>IronServices.Client</PackageId>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Net.Http.Json" Version="9.0.0" />
</ItemGroup>
</Project>