Skip to content

Commit

Permalink
#528 optimise dependencies for net 6 (#530)
Browse files Browse the repository at this point in the history
  • Loading branch information
thompson-tomo committed Apr 21, 2024
1 parent 3f6835c commit 4e636f0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@
<PackageReference Include="Autofac.Extras.DynamicProxy" Version="6.0.1" />
<PackageReference Include="Autofac" Version="6.3.0" />
<PackageReference Include="Autofac.Extensions.DependencyInjection" Version="7.2.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'== 'netStandard2.0'">
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<None Include="../../media/nuget-icon.png" Pack="true" Visible="false" PackagePath="" />
</ItemGroup>

<ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'== 'netStandard2.0'">
<PackageReference Include="System.Text.Json" Version="6.0.3" />
</ItemGroup>

Expand Down
3 changes: 1 addition & 2 deletions src/EasyCaching.Core/EasyCaching.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="6.0.0" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions src/EasyCaching.SQLite/EasyCaching.SQLite.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@
<ItemGroup>
<PackageReference Include="Dapper" Version="2.0.30" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Microsoft.Data.SQLite" Version="3.1.0" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
<PackageReference Include="Microsoft.Data.SQLite" Version="6.0.0" />
</ItemGroup>

</Project>

0 comments on commit 4e636f0

Please sign in to comment.