Update VMR's README instructions to 9.0.100 (#17638)

This commit is contained in:
Přemek Vysoký 2023-10-27 12:55:37 +02:00 committed by GitHub
parent af20dd0ff1
commit fb7c9717cf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -98,7 +98,7 @@ In case you don't want to / cannot prepare your environment per the requirements
``` ```
This builds the entire .NET SDK from source. This builds the entire .NET SDK from source.
The resulting SDK is placed at `artifacts/x64/Release/dotnet-sdk-8.0.100-your-RID.tar.gz`. The resulting SDK is placed at `artifacts/x64/Release/dotnet-sdk-9.0.100-your-RID.tar.gz`.
Currently, the `--online` flag is required to allow NuGet restore from online sources during the build. Currently, the `--online` flag is required to allow NuGet restore from online sources during the build.
This is useful for testing unsupported releases that don't yet build without downloading pre-built binaries from the internet. This is useful for testing unsupported releases that don't yet build without downloading pre-built binaries from the internet.
@ -109,7 +109,7 @@ In case you don't want to / cannot prepare your environment per the requirements
```bash ```bash
mkdir -p $HOME/dotnet mkdir -p $HOME/dotnet
tar zxf artifacts/[your-arch]/Release/dotnet-sdk-8.0.100-[your-RID].tar.gz -C $HOME/dotnet tar zxf artifacts/[your-arch]/Release/dotnet-sdk-9.0.100-[your-RID].tar.gz -C $HOME/dotnet
ln -s $HOME/dotnet/dotnet /usr/bin/dotnet ln -s $HOME/dotnet/dotnet /usr/bin/dotnet
``` ```
@ -129,7 +129,7 @@ docker run --rm -it -v vmr:/vmr -w /vmr mcr.microsoft.com/dotnet-buildtools/prer
git clone https://github.com/dotnet/dotnet . git clone https://github.com/dotnet/dotnet .
./prep.sh && ./build.sh --online ./prep.sh && ./build.sh --online
mkdir -p $HOME/.dotnet mkdir -p $HOME/.dotnet
tar -zxf artifacts/x64/Release/dotnet-sdk-8.0.100-centos.8-x64.tar.gz -C $HOME/.dotnet tar -zxf artifacts/x64/Release/dotnet-sdk-9.0.100-centos.8-x64.tar.gz -C $HOME/.dotnet
ln -s $HOME/.dotnet/dotnet /usr/bin/dotnet ln -s $HOME/.dotnet/dotnet /usr/bin/dotnet
``` ```