Skip to content

Commit b3bf4b8

Browse files
Resolves #801 Upgrade csharp console apps to use .net core 3.1 (LTS) instead of the end of life .net core 2.2. (#803)
* Upgrade csharp benchmark, samples and tests console app projects to use dotnet core 3.1 (LTS) as opposed to the end of life dotnet core 2.2 (which less people will have installed) * Update ci build for csharp to use .net core 3.1 (LTS) instead of the end of life .net core 2.2
1 parent d19a786 commit b3bf4b8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
strategy:
4848
fail-fast: false
4949
matrix:
50-
dotnet: [ '2.2.103' ]
50+
dotnet: [ '3.1.301' ]
5151
env:
5252
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
5353
DOTNET_CLI_TELEMETRY_OPTOUT: 1

csharp/sbe-benchmarks/sbe-benchmarks.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>net45;netcoreapp2.2</TargetFrameworks>
4+
<TargetFrameworks>net45;netcoreapp3.1</TargetFrameworks>
55
<RootNamespace>Org.SbeTool.Sbe.Benchmarks</RootNamespace>
66
<AssemblyName>Org.SbeTool.Sbe.Benchmarks</AssemblyName>
77
<OutputTypeEx>exe</OutputTypeEx>

csharp/sbe-samples-car/sbe-samples-car.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>net45;netcoreapp2.2</TargetFrameworks>
4+
<TargetFrameworks>net45;netcoreapp3.1</TargetFrameworks>
55
<OutputTypeEx>exe</OutputTypeEx>
66
<RootNamespace>Org.SbeTool.Sbe.Example.Car</RootNamespace>
77
<AssemblyName>Org.SbeTool.Sbe.Example.Car</AssemblyName>

csharp/sbe-tests/sbe-tests.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-
<TargetFrameworks>net45;netcoreapp2.2</TargetFrameworks>
3+
<TargetFrameworks>net45;netcoreapp3.1</TargetFrameworks>
44
<RootNamespace>Org.SbeTool.Sbe.Tests</RootNamespace>
55
<AssemblyName>Org.SbeTool.Sbe.UnitTests</AssemblyName>
66
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>

0 commit comments

Comments
 (0)