Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .dotnetexec.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"entrypoint": "/bin/bash",
"commands": {
"setup": [
"dotnet run --project BitPaySetup --framework net7.0"
"dotnet run --project BitPaySetup --framework net8.0"
],
"setup-6": [
"dotnet run --project BitPaySetup --framework net6.0"
"setup-9": [
"dotnet run --project BitPaySetup --framework net9.0"
],
"setup-48": [
"dotnet run --project BitPaySetup --framework net48"
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ jobs:
strategy:
fail-fast: false
matrix:
dotnet-version: [ '6.0', '7.0', '8.0' ]
dotnet-version: [ '8.0', '9.0' ]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install dependencies
Expand All @@ -26,9 +26,9 @@ jobs:
build-and-test-48:
runs-on: windows-2022
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup MSBuild path
uses: microsoft/setup-msbuild@v1.0.2
uses: microsoft/setup-msbuild@v2
with:
dotNetVersion: '4.8.x'
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
<PropertyGroup>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<TargetFrameworks>net48;net6.0;net7.0;net8.0</TargetFrameworks>
<TargetFrameworks>net48;net8.0;net9.0</TargetFrameworks>
</PropertyGroup>
</Project>
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ To get up and running with our C# library quickly, follow [The GUIDE](https://bi

## .NET supported versions

SDK | 5.x.x | 6.x.x
--- | --- | ---
.NET Supported version | net48, 6.0, 7.0 | net48, 6.0, 7.0, 8.0
net48, 8.0, 9.0

## Support

Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "6.0",
"version": "8.0.410",
"rollForward": "latestMajor",
"allowPrerelease": true
}
Expand Down
Loading