Skip to content

Commit 29f7dc3

Browse files
authored
Merge pull request #5 from thewbman/add-dotnet-5-and-6
add runtimes for dotnet 5 and 6
2 parents 536e128 + 3a5ffe0 commit 29f7dc3

File tree

2 files changed

+27
-3
lines changed

2 files changed

+27
-3
lines changed

changelog.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
---
44

5+
## [1.1.3] 2022-11-08
6+
7+
### Added
8+
9+
- Add `dotnet5.0` and `dotnet6`
10+
11+
---
12+
513
## [1.1.2] 2022-05-09
614

715
### Added

cjs/index.js

+19-3
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ let runtimes = {
2525
'go1.x',
2626
],
2727
dotnet: [
28+
'dotnet6',
29+
'dotnet5.0',
2830
'dotnetcore3.1',
2931
],
3032
custom: [
@@ -118,11 +120,25 @@ let runtimeVersions = {
118120
patch: null,
119121
wildcard: '1.*.*',
120122
},
121-
'dotnetcore3.1': {
123+
'dotnet6': {
122124
runtime: 'dotnet',
123-
major: '3',
124-
minor: '1',
125+
major: '6',
126+
minor: null,
125127
patch: null,
128+
wildcard: '6.*',
129+
},
130+
'dotnet5.0': {
131+
runtime: 'dotnet',
132+
major: '5',
133+
minor: '0',
134+
patch: null,
135+
wildcard: '5.0.*',
136+
},
137+
'dotnetcore3.1': {
138+
runtime: 'dotnet',
139+
major: '3',
140+
minor: '1',
141+
patch: null,
126142
wildcard: '3.1.*',
127143
},
128144
}

0 commit comments

Comments
 (0)