Skip to content

Commit cccee63

Browse files
authored
Merge pull request #172 from bobbrodie/6.0.x
#167 Update supported versions and readme
2 parents ddf72fa + 4443ed9 commit cccee63

5 files changed

Lines changed: 11 additions & 13 deletions

File tree

.dotnetexec.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
"entrypoint": "/bin/bash",
44
"commands": {
55
"setup": [
6-
"dotnet run --project BitPaySetup --framework net7.0"
6+
"dotnet run --project BitPaySetup --framework net8.0"
77
],
8-
"setup-6": [
9-
"dotnet run --project BitPaySetup --framework net6.0"
8+
"setup-9": [
9+
"dotnet run --project BitPaySetup --framework net9.0"
1010
],
1111
"setup-48": [
1212
"dotnet run --project BitPaySetup --framework net48"

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
dotnet-version: [ '6.0', '7.0', '8.0' ]
11+
dotnet-version: [ '8.0', '9.0' ]
1212

1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
16-
uses: actions/setup-dotnet@v3
16+
uses: actions/setup-dotnet@v4
1717
with:
1818
dotnet-version: ${{ matrix.dotnet-version }}
1919
- name: Install dependencies
@@ -26,9 +26,9 @@ jobs:
2626
build-and-test-48:
2727
runs-on: windows-2022
2828
steps:
29-
- uses: actions/checkout@v3
29+
- uses: actions/checkout@v4
3030
- name: Setup MSBuild path
31-
uses: microsoft/setup-msbuild@v1.0.2
31+
uses: microsoft/setup-msbuild@v2
3232
with:
3333
dotNetVersion: '4.8.x'
3434
- name: Install dependencies

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
<PropertyGroup>
33
<Nullable>enable</Nullable>
44
<LangVersion>latest</LangVersion>
5-
<TargetFrameworks>net48;net6.0;net7.0;net8.0</TargetFrameworks>
5+
<TargetFrameworks>net48;net8.0;net9.0</TargetFrameworks>
66
</PropertyGroup>
77
</Project>

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@ To get up and running with our C# library quickly, follow [The GUIDE](https://bi
1212

1313
## .NET supported versions
1414

15-
SDK | 5.x.x | 6.x.x
16-
--- | --- | ---
17-
.NET Supported version | net48, 6.0, 7.0 | net48, 6.0, 7.0, 8.0
15+
net48, 8.0, 9.0
1816

1917
## Support
2018

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "6.0",
3+
"version": "8.0.410",
44
"rollForward": "latestMajor",
55
"allowPrerelease": true
66
}

0 commit comments

Comments
 (0)