Skip to content

Commit 73b32e9

Browse files
authored
Updating readme snippets to show latest SDK
Given the LTS release of .NET Core it's good practice that any samples using the SDK should use the supported versions. 2.2 is no longer a supported version in a month or so and the latest SDK should be used in examples. Minor change, but important for copy/paste folks.
1 parent e322cea commit 73b32e9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ steps:
2020
- uses: actions/checkout@master
2121
- uses: actions/setup-dotnet@v1
2222
with:
23-
dotnet-version: '2.2.103' # SDK Version to use.
23+
dotnet-version: '3.1.100' # SDK Version to use.
2424
- run: dotnet build <my project>
2525
```
2626
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ubuntu-16.04
3232
strategy:
3333
matrix:
34-
dotnet: [ '2.2.103', '3.0.100', '3.1.100-preview1-014459' ]
34+
dotnet: [ '2.2.103', '3.0.100', '3.1.100' ]
3535
name: Dotnet ${{ matrix.dotnet }} sample
3636
steps:
3737
- uses: actions/checkout@master
@@ -49,7 +49,7 @@ steps:
4949
# Authenticates packages to push to GPR
5050
- uses: actions/setup-dotnet@v1
5151
with:
52-
dotnet-version: '2.2.103' # SDK Version to use.
52+
dotnet-version: '3.1.100' # SDK Version to use.
5353
source-url: https://nuget.pkg.github.com/<owner>/index.json
5454
env:
5555
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 commit comments

Comments
 (0)