fix: added comments to GenericRESTClient

- recommended that non-s+ users utilize system.net.http directly
- added in Microsoft.Net.Http for net472 for full httpClient compatibility
This commit is contained in:
Nick Genovese
2024-10-31 09:40:20 -04:00
parent 2755377a17
commit 98d0ca54cf
2 changed files with 22 additions and 20 deletions

View File

@@ -38,6 +38,10 @@
<PackageReference Include="WebSocketSharp" Version="1.0.3-rc11" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net472'">
<PackageReference Include="Microsoft.Net.Http" Version="2.2.29" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>