Skip to content

Commit 17f849b

Browse files
authored
Remove .NET Core 3.1 support and standardize on .NET 6 (#1045)
* Remove .NET Core 3.1 support and standardize on .NET 6 Signed-off-by: Yash Nisar <[email protected]> * Remove support for .NET 5 as well Signed-off-by: Yash Nisar <[email protected]> --------- Signed-off-by: Yash Nisar <[email protected]>
1 parent 667dcaf commit 17f849b

File tree

47 files changed

+60
-87
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+60
-87
lines changed

.github/workflows/itests.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,22 +19,14 @@ jobs:
1919
runs-on: ubuntu-latest
2020
strategy:
2121
matrix:
22-
dotnet-version: ['3.1', '6.0', '7.0']
22+
dotnet-version: ['6.0', '7.0']
2323
include:
24-
- dotnet-version: '3.1'
25-
install-3: true
26-
display-name: '.NET Core 3.1'
27-
framework: 'netcoreapp3.1'
28-
prefix: 'netcoreapp31'
29-
install-version: '3.1.x' # We always need a new .NET
3024
- dotnet-version: '6.0'
31-
install-3: false
3225
display-name: '.NET 6.0'
3326
framework: 'net6'
3427
prefix: 'net6'
3528
install-version: '6.0.x'
3629
- dotnet-version: '7.0'
37-
install-3: false
3830
display-name: '.NET 7.0'
3931
framework: 'net7'
4032
prefix: 'net7'

.github/workflows/sdk_build.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,8 @@ jobs:
4242
runs-on: ubuntu-latest
4343
strategy:
4444
matrix:
45-
dotnet-version: ['3.1', '6.0', '7.0']
45+
dotnet-version: ['6.0', '7.0']
4646
include:
47-
- dotnet-version: '3.1'
48-
install-3: true
49-
display-name: '.NET Core 3.1'
50-
framework: 'netcoreapp3.1'
51-
prefix: 'netcoreapp31'
52-
install-version: '3.1.x' # We always need a new .NET
5347
- dotnet-version: '6.0'
5448
install-3: false
5549
display-name: '.NET 6.0'

examples/Actor/ActorClient/ActorClient.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>netcoreapp3.1</TargetFramework>
5+
<TargetFramework>net6</TargetFramework>
66
</PropertyGroup>
77

88
<ItemGroup>

examples/Actor/DemoActor/DemoActor.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.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.1</TargetFramework>
4+
<TargetFramework>net6</TargetFramework>
55
</PropertyGroup>
66

77
<ItemGroup>

examples/Actor/IDemoActor/IDemoActor.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-
<TargetFramework>netcoreapp3.1</TargetFramework>
4+
<TargetFramework>net6</TargetFramework>
55
</PropertyGroup>
66

77
<ItemGroup>

examples/AspNetCore/ControllerSample/ControllerSample.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.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.1</TargetFramework>
4+
<TargetFramework>net6</TargetFramework>
55
</PropertyGroup>
66

77
<ItemGroup>

examples/AspNetCore/ControllerSample/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The application also registers for pub/sub with the `deposit`, `multideposit` an
1212

1313
## Prerequisitess
1414

15-
- [.NET Core 3.1 or .NET 5+](https://dotnet.microsoft.com/download) installed
15+
- [.NET 6+](https://dotnet.microsoft.com/download) installed
1616
- [Dapr CLI](https://docs.dapr.io/getting-started/install-dapr-cli/)
1717
- [Initialized Dapr environment](https://docs.dapr.io/getting-started/install-dapr-selfhost/)
1818
- [Dapr .NET SDK](https://docs.dapr.io/developing-applications/sdks/dotnet/)

examples/AspNetCore/GrpcServiceSample/GrpcServiceSample.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.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.1</TargetFramework>
4+
<TargetFramework>net6</TargetFramework>
55
<RunAnalyzersDuringBuild>true</RunAnalyzersDuringBuild>
66
</PropertyGroup>
77

examples/AspNetCore/GrpcServiceSample/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The application also registers for pub/sub with the `deposit` and `withdraw` top
1111

1212
## Prerequisitess
1313

14-
- [.NET Core 3.1 or .NET 5+](https://dotnet.microsoft.com/download) installed
14+
- [.NET 6+](https://dotnet.microsoft.com/download) installed
1515
- [Dapr CLI](https://docs.dapr.io/getting-started/install-dapr-cli/)
1616
- [Initialized Dapr environment](https://docs.dapr.io/getting-started/install-dapr-selfhost/)
1717
- [Dapr .NET SDK](https://docs.dapr.io/developing-applications/sdks/dotnet/)

examples/AspNetCore/RoutingSample/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The application also registers for pub/sub with the `deposit`, `multideposit`, a
1212

1313
## Prerequisites
1414

15-
- [.NET Core 3.1 or .NET 5+](https://dotnet.microsoft.com/download) installed
15+
- [.NET 6+](https://dotnet.microsoft.com/download) installed
1616
- [Dapr CLI](https://docs.dapr.io/getting-started/install-dapr-cli/)
1717
- [Initialized Dapr environment](https://docs.dapr.io/getting-started/install-dapr-selfhost/)
1818
- [Dapr .NET SDK](https://docs.dapr.io/developing-applications/sdks/dotnet/)

0 commit comments

Comments
 (0)