Skip to content

Commit

Permalink
bump .NET version to 8.0 (#1386)
Browse files Browse the repository at this point in the history
  • Loading branch information
cnix authored Apr 22, 2024
1 parent 8c45499 commit e3e86d8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/Deployment/ManualDeployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ sudo tar -xzvf bitcoin.tar.gz -C /usr/local/bin --strip-components=2 "bitcoin-$B
rm bitcoin.tar.gz
```

### 2) Install .NET 6.0 SDK
### 2) Install .NET 8.0 SDK

On my Ubuntu 20.04 (See [these instructions](https://docs.microsoft.com/en-us/dotnet/core/install/linux-ubuntu#2004-) or [here](https://dotnet.microsoft.com/en-us/download/dotnet/6.0) for different OS).
On my Ubuntu 20.04 (See [these instructions](https://docs.microsoft.com/en-us/dotnet/core/install/linux-ubuntu#2004-) or [here](https://dotnet.microsoft.com/en-us/download/dotnet/8.0) for different OS).

```bash
# Add Microsoft package repository
Expand Down
4 changes: 2 additions & 2 deletions docs/Deployment/ManualDeploymentExtended.md
Original file line number Diff line number Diff line change
Expand Up @@ -706,7 +706,7 @@ To connect another `bitcoind` instance to your new node:

##### Install

##### 1. Install .NET 6.0 SDK
##### 1. Install .NET 8.0 SDK

[Follow the install instuctions](https://docs.microsoft.com/en-us/dotnet/core/install/linux-ubuntu#2004-):

Expand All @@ -720,7 +720,7 @@ rm packages-microsoft-prod.deb
sudo apt-get update
sudo apt-get install -y apt-transport-https
sudo apt-get update
sudo apt-get install -y dotnet-sdk-6.0
sudo apt-get install -y dotnet-sdk-8.0

## Check
dotnet --version
Expand Down
2 changes: 1 addition & 1 deletion docs/Development/Altcoins.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The steps for having a coin added are:

When testing your coin, **DO NOT USE `build.sh`**, since it uses a pre-built docker image.

Instead, install [.NET 6.0 SDK](https://dotnet.microsoft.com/en-us/download/dotnet/6.0) and run:
Instead, install [.NET 8.0 SDK](https://dotnet.microsoft.com/en-us/download/dotnet/8.0) and run:

```bash
BTCPAYGEN_CRYPTO1="EXAMPLE-COIN"
Expand Down

0 comments on commit e3e86d8

Please sign in to comment.