Skip to content

Commit 48a397b

Browse files
committed
feat: add net8.0 to list of frameworks
1 parent 29c04e5 commit 48a397b

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

TonLibDotNet.Tests/TonLibDotNet.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
4+
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<RootNamespace>TonLibDotNet</RootNamespace>

TonLibDotNet/TonLibDotNet.csproj

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
4+
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<Platforms>AnyCPU</Platforms>
@@ -49,4 +49,10 @@
4949
<PackageReference Include="System.Text.Json" Version="7.0.0" />
5050
</ItemGroup>
5151

52+
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
53+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" />
54+
<PackageReference Include="Microsoft.Extensions.Options" Version="8.0.0" />
55+
<PackageReference Include="System.Text.Json" Version="8.0.0" />
56+
</ItemGroup>
57+
5258
</Project>

0 commit comments

Comments
 (0)