You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/actions/automating-builds-and-tests/building-and-testing-net.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ jobs:
45
45
runs-on: ubuntu-latest
46
46
strategy:
47
47
matrix:
48
-
dotnet-version: ['3.0', '3.1.x', '5.0.x' ]
48
+
dotnet-version: [ '3.1.x', '6.0.x' ]
49
49
50
50
steps:
51
51
- uses: {% data reusables.actions.action-checkout %}
@@ -80,7 +80,7 @@ jobs:
80
80
runs-on: ubuntu-latest
81
81
strategy:
82
82
matrix:
83
-
dotnet-version: [ '3.0', '3.1.x', '5.0.x' ]
83
+
dotnet-version: [ '3.1.x', '6.0.x' ]
84
84
85
85
steps:
86
86
- uses: {% data reusables.actions.action-checkout %}
@@ -98,11 +98,11 @@ jobs:
98
98
You can configure your job to use a specific version of .NET, such as `3.1.3`. Alternatively, you can use semantic version syntax to get the latest minor release. This example uses the latest minor release of .NET 3.
99
99
100
100
```yaml
101
-
- name: Setup .NET 3.x
101
+
- name: Setup .NET SDK
102
102
uses: {% data reusables.actions.action-setup-dotnet %}
103
103
with:
104
104
# Semantic version range syntax or exact version of a dotnet version
105
-
dotnet-version: '3.x'
105
+
dotnet-version: '6.0.x'
106
106
```
107
107
108
108
## Installing dependencies
@@ -115,7 +115,7 @@ steps:
115
115
- name: Setup dotnet
116
116
uses: {% data reusables.actions.action-setup-dotnet %}
0 commit comments