2023-03-19 16:02:50 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
2025-06-13 15:22:02 +01:00
|
|
|
<TargetFrameworks>net9.0</TargetFrameworks>
|
2023-03-19 16:02:50 +00:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
2025-06-08 15:23:46 +01:00
|
|
|
<Description> A shared model for a little client/server app, dealing about establishing some contract, between some human client and provider.
|
|
|
|
|
</Description>
|
2026-02-22 23:39:56 +00:00
|
|
|
<RootNamespace>Yavsc.Abstract</RootNamespace>
|
2023-03-19 16:02:50 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
2025-07-14 18:58:04 +01:00
|
|
|
<PackageReference Include="Newtonsoft.Json" />
|
2023-03-19 16:02:50 +00:00
|
|
|
</ItemGroup>
|
2026-02-28 21:17:54 +00:00
|
|
|
</Project>
|