From 0fcc5ed88a8cc240078b13eba0d41e8788129c9b Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 7 Nov 2023 01:18:10 +0100 Subject: [PATCH] update docs about libicu / Invariant globalization (#32) --- INSTALL.md | 2 +- docs/src/content/docs/guides/getting-started.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index f6a100ce..b05057c2 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -4,6 +4,6 @@ 2. Download the latest release of CounterStrikeSharp from [here](https://github.com/roflmuffin/CounterStrikeSharp/actions/workflows/cmake-single-platform.yml). - If this is your first time installing, you will need to download the `with-runtime` version. This includes the .NET runtime, which is required to run the plugin. - Subsequent upgrades will not require the runtime, unless a version bump of the .NET runtime is required (i.e. from 7.0.x to 8.0.x). - - Depending on the os you might also need to install `libicu` / `icu-libs` / `libicu-dev` using your package manager for .NET to run. + - Depending on the os you might also either need to install `libicu` / `icu-libs` / `libicu-dev` using your package manager for .NET to run or setting `DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=true` in your servers environment variables. You can find more infos about that [here](https://github.com/dotnet/runtime/blob/main/docs/design/features/globalization-invariant-mode.md#enabling-the-invariant-mode) 3. Extract the `addons` folder to the `/csgo/` directory of the dedicated server. 4. Start the server. If everything is working correctly, you should see a message in the console that says `CounterStrikeSharp.API Loaded Successfully.` \ No newline at end of file diff --git a/docs/src/content/docs/guides/getting-started.md b/docs/src/content/docs/guides/getting-started.md index 915e2f19..e4d0ab38 100644 --- a/docs/src/content/docs/guides/getting-started.md +++ b/docs/src/content/docs/guides/getting-started.md @@ -15,7 +15,7 @@ Download the latest release of CounterStrikeSharp from here Subsequent upgrades will not require the runtime, unless a version bump of the .NET runtime is required (i.e. from 7.0.x to 8.0.x). We will inform you when this occurs. :::