![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [github.com/Microsoft/hcsshim](https://github.com/Microsoft/hcsshim) from 0.8.20 to 0.9.6. - [Release notes](https://github.com/Microsoft/hcsshim/releases) - [Commits](https://github.com/Microsoft/hcsshim/compare/v0.8.20...v0.9.6) --- updated-dependencies: - dependency-name: github.com/Microsoft/hcsshim dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Signed-off-by: Matthieu MOREL <matthieu.morel35@gmail.com>
51 lines
1.5 KiB
Go
51 lines
1.5 KiB
Go
package osversion
|
|
|
|
const (
|
|
// RS1 (version 1607, codename "Redstone 1") corresponds to Windows Server
|
|
// 2016 (ltsc2016) and Windows 10 (Anniversary Update).
|
|
RS1 = 14393
|
|
|
|
// RS2 (version 1703, codename "Redstone 2") was a client-only update, and
|
|
// corresponds to Windows 10 (Creators Update).
|
|
RS2 = 15063
|
|
|
|
// RS3 (version 1709, codename "Redstone 3") corresponds to Windows Server
|
|
// 1709 (Semi-Annual Channel (SAC)), and Windows 10 (Fall Creators Update).
|
|
RS3 = 16299
|
|
|
|
// RS4 (version 1803, codename "Redstone 4") corresponds to Windows Server
|
|
// 1803 (Semi-Annual Channel (SAC)), and Windows 10 (April 2018 Update).
|
|
RS4 = 17134
|
|
|
|
// RS5 (version 1809, codename "Redstone 5") corresponds to Windows Server
|
|
// 2019 (ltsc2019), and Windows 10 (October 2018 Update).
|
|
RS5 = 17763
|
|
|
|
// V19H1 (version 1903) corresponds to Windows Server 1903 (semi-annual
|
|
// channel).
|
|
V19H1 = 18362
|
|
|
|
// V19H2 (version 1909) corresponds to Windows Server 1909 (semi-annual
|
|
// channel).
|
|
V19H2 = 18363
|
|
|
|
// V20H1 (version 2004) corresponds to Windows Server 2004 (semi-annual
|
|
// channel).
|
|
V20H1 = 19041
|
|
|
|
// V20H2 corresponds to Windows Server 20H2 (semi-annual channel).
|
|
V20H2 = 19042
|
|
|
|
// V21H1 corresponds to Windows Server 21H1 (semi-annual channel).
|
|
V21H1 = 19043
|
|
|
|
// V21H2Win10 corresponds to Windows 10 (November 2021 Update).
|
|
V21H2Win10 = 19044
|
|
|
|
// V21H2Server corresponds to Windows Server 2022 (ltsc2022).
|
|
V21H2Server = 20348
|
|
|
|
// V21H2Win11 corresponds to Windows 11 (original release).
|
|
V21H2Win11 = 22000
|
|
)
|