Skip to content

Commit ca904bf

Browse files
authored
Change order of Ubuntu version selector and fix libicu version on Ubuntu 25.04 (#48306)
* change order of ubuntu version selector Changing the order of the Ubuntu version selector to - Ubuntu LTS versions from newest to oldest, then - Ubuntu Interim versions from newest to oldest, then - other (unsupported) Ubuntu versions. Rationale: Some users skip over the article and miss the version selecter. This leads to them beeing unable to install .NET. The new order ensures that an LTS is displayed first. The Ubuntu LTS install instructions let users successfully install .NET on an Ubuntu interim machine. In the worst case they run the command `sudo add-apt-repository ppa:dotnet/backports`, which has no major side-effect. Fixes: #47461 Signed-off-by: Dominik Viererbe <[email protected]> * fix dependency version for Ubuntu 25.04 The version of libicu on Ubuntu 25.04 is 76. See: https://launchpad.net/ubuntu/plucky/+source/icu Signed-off-by: Dominik Viererbe <[email protected]> --------- Signed-off-by: Dominik Viererbe <[email protected]>
1 parent 4042824 commit ca904bf

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

docs/core/install/linux-ubuntu-install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ When you install with a package manager, these libraries are installed for you.
5555
- ca-certificates
5656
- libc6
5757
- libgcc-s1
58-
- libicu74
58+
- libicu76
5959
- liblttng-ust1
6060
- libssl3
6161
- libstdc++6

docs/zone-pivot-groups.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,12 +120,14 @@ groups:
120120
title: Ubuntu Version
121121
prompt: Choose the Ubuntu distribution version
122122
pivots:
123-
- id: os-linux-ubuntu-2504
124-
title: "25.04"
123+
# order: lts versions (newest to oldest), interim versions (newest to oldest), other
124+
# see: https://github.com/dotnet/docs/issues/47461
125125
- id: os-linux-ubuntu-2404
126126
title: "24.04"
127127
- id: os-linux-ubuntu-2204
128128
title: "22.04"
129+
- id: os-linux-ubuntu-2504
130+
title: "25.04"
129131
- id: os-linux-ubuntu-other
130132
title: "Other"
131133
- id: openai-library

0 commit comments

Comments
 (0)