File tree Expand file tree Collapse file tree 4 files changed +7
-10
lines changed
BinarySerializer.Performance Expand file tree Collapse file tree 4 files changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -16,10 +16,10 @@ jobs:
16
16
steps :
17
17
- uses : actions/checkout@v3
18
18
19
- - name : Setup .NET Core
20
- uses : actions/setup-dotnet@v3
19
+ - name : Setup .NET
20
+ uses : actions/setup-dotnet@v4
21
21
with :
22
- dotnet-version : 3.1.101
22
+ dotnet-version : 8.0.x
23
23
24
24
- name : Install dependencies
25
25
run : dotnet restore
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" ToolsVersion =" 15.0" >
2
2
<PropertyGroup >
3
3
<OutputType >Exe</OutputType >
4
- <TargetFramework >netcoreapp3.1 </TargetFramework >
4
+ <TargetFramework >net8.0 </TargetFramework >
5
5
<PublishRepositoryUrl >true</PublishRepositoryUrl >
6
6
<IncludeSymbols >true</IncludeSymbols >
7
7
<SymbolPackageFormat >snupkg</SymbolPackageFormat >
14
14
<PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Release|AnyCPU'" >
15
15
<PlatformTarget >AnyCPU</PlatformTarget >
16
16
</PropertyGroup >
17
- <ItemGroup >
18
- <PackageReference Include =" System.Runtime.Serialization.Formatters" Version =" 4.3.0" />
19
- </ItemGroup >
20
17
<ItemGroup >
21
18
<ProjectReference Include =" ..\BinarySerializer\BinarySerializer.csproj" />
22
19
</ItemGroup >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
- <TargetFramework >net7 .0</TargetFramework >
3
+ <TargetFramework >net8 .0</TargetFramework >
4
4
<RootNamespace >BinarySerialization.Test</RootNamespace >
5
5
</PropertyGroup >
6
6
<PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Debug|AnyCPU'" >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" ToolsVersion =" 15.0" >
2
2
<PropertyGroup >
3
- <TargetFrameworks >netstandard1.3;net462</TargetFrameworks >
3
+ <TargetFrameworks >netstandard1.3;net462;net8.0 </TargetFrameworks >
4
4
<Description >A declarative serialization framework for controlling formatting of data using field bindings.</Description >
5
5
<AssemblyName >BinarySerializer</AssemblyName >
6
6
<PackageTags >Serialization;Serializer;Binary;Format;Protocol</PackageTags >
19
19
<IncludeSymbols >true</IncludeSymbols >
20
20
<SymbolPackageFormat >snupkg</SymbolPackageFormat >
21
21
<PackageReadmeFile >README.md</PackageReadmeFile >
22
- <AssemblyVersion >8.6.4.1 </AssemblyVersion >
22
+ <AssemblyVersion >8.6.4.2 </AssemblyVersion >
23
23
<Version >$(AssemblyVersion)</Version >
24
24
<FileVersion >$(AssemblyVersion)</FileVersion >
25
25
</PropertyGroup >
You can’t perform that action at this time.
0 commit comments