2026-08-17 23:50:24 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<RootNamespace>Yavsc.Api.Client</RootNamespace>
|
|
|
|
|
<AssemblyName>Yavsc.Api.Client</AssemblyName>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<LangVersion>latest</LangVersion>
|
|
|
|
|
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
|
|
|
|
|
<Description>
|
|
|
|
|
Thin HTTP clients for the Yavsc API. Each client is a DTO↔path
|
|
|
|
|
mapper; all transport concerns (base URL, JSON, Bearer auth,
|
|
|
|
|
silent refresh on 401) are delegated to YavscApiClient, which
|
|
|
|
|
lives in the consuming application (PostIt).
|
|
|
|
|
</Description>
|
|
|
|
|
<RepositoryUrl>https://github.com/pazof/yavsc</RepositoryUrl>
|
|
|
|
|
<Library>true</Library>
|
2026-08-18 19:18:36 +01:00
|
|
|
<AssemblyVersion>1.1.0.0</AssemblyVersion>
|
|
|
|
|
<FileVersion>1.1.0.0</FileVersion>
|
|
|
|
|
<InformationalVersion>1.1.0-beta.1+1.Branch.release-1.0.8-rc1.Sha.1167169aa89e1bf25290e9a152d27b357a500ab3</InformationalVersion>
|
|
|
|
|
<Version>1.1.0-beta.1</Version>
|
2026-08-17 23:50:24 +01:00
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="GitVersion.MsBuild" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="../Yavsc.Abstract/Yavsc.Abstract.csproj" />
|
|
|
|
|
</ItemGroup>
|
2026-08-18 19:18:36 +01:00
|
|
|
</Project>
|