Skip to content

Commit 59d72c2

Browse files
authored
Merge pull request #1 from c49nu5/net8_support
Upgrading to .Net 8
2 parents 681090a + 710bbb4 commit 59d72c2

File tree

4 files changed

+7
-10
lines changed

4 files changed

+7
-10
lines changed

.github/workflows/dotnetcore.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@v3
1818

19-
- name: Setup .NET Core
20-
uses: actions/setup-dotnet@v3
19+
- name: Setup .NET
20+
uses: actions/setup-dotnet@v4
2121
with:
22-
dotnet-version: 3.1.101
22+
dotnet-version: 8.0.x
2323

2424
- name: Install dependencies
2525
run: dotnet restore

BinarySerializer.Performance/BinarySerializer.Performance.csproj

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFramework>netcoreapp3.1</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<PublishRepositoryUrl>true</PublishRepositoryUrl>
66
<IncludeSymbols>true</IncludeSymbols>
77
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
@@ -14,9 +14,6 @@
1414
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
1515
<PlatformTarget>AnyCPU</PlatformTarget>
1616
</PropertyGroup>
17-
<ItemGroup>
18-
<PackageReference Include="System.Runtime.Serialization.Formatters" Version="4.3.0" />
19-
</ItemGroup>
2017
<ItemGroup>
2118
<ProjectReference Include="..\BinarySerializer\BinarySerializer.csproj" />
2219
</ItemGroup>

BinarySerializer.Test/BinarySerializer.Test.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net7.0</TargetFramework>
3+
<TargetFramework>net8.0</TargetFramework>
44
<RootNamespace>BinarySerialization.Test</RootNamespace>
55
</PropertyGroup>
66
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

BinarySerializer/BinarySerializer.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
22
<PropertyGroup>
3-
<TargetFrameworks>netstandard1.3;net462</TargetFrameworks>
3+
<TargetFrameworks>netstandard1.3;net462;net8.0</TargetFrameworks>
44
<Description>A declarative serialization framework for controlling formatting of data using field bindings.</Description>
55
<AssemblyName>BinarySerializer</AssemblyName>
66
<PackageTags>Serialization;Serializer;Binary;Format;Protocol</PackageTags>
@@ -19,7 +19,7 @@
1919
<IncludeSymbols>true</IncludeSymbols>
2020
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
2121
<PackageReadmeFile>README.md</PackageReadmeFile>
22-
<AssemblyVersion>8.6.4.1</AssemblyVersion>
22+
<AssemblyVersion>8.6.4.2</AssemblyVersion>
2323
<Version>$(AssemblyVersion)</Version>
2424
<FileVersion>$(AssemblyVersion)</FileVersion>
2525
</PropertyGroup>

0 commit comments

Comments
 (0)