Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 5 additions & 11 deletions src/OpenFga.Sdk/OpenFga.Sdk.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
Comment thread
rhamzeh marked this conversation as resolved.

<PropertyGroup>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
Expand Down Expand Up @@ -38,18 +38,12 @@
<Nullable>enable</Nullable>
</PropertyGroup>

<!-- Common package references for all frameworks -->
<ItemGroup>
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.9" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="9.0.9" />
</ItemGroup>

<!-- Packages needed for .NET versions < .NET 8 -->
<ItemGroup Condition="'$(IsNet8OrGreater)' != 'true'">
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.9" />
<PackageReference Include="System.Net.Http.Json" Version="9.0.9" />
<PackageReference Include="System.Text.Json" Version="9.0.9" />
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="8.0.1" />
<PackageReference Include="System.Net.Http.Json" Version="8.0.1" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
Comment thread
rhamzeh marked this conversation as resolved.
Comment thread
SoulPancake marked this conversation as resolved.
</ItemGroup>

<!-- .NET Framework 4.8 specific packages -->
Expand Down
Loading