Skip to content
Open
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
8 changes: 7 additions & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,16 @@
"isRoot": true,
"tools": {
"paket": {
"version": "6.2.1",
"version": "8.0.0",
"commands": [
"paket"
]
},
"fasmi": {
"version": "1.2.1",
"commands": [
"fasmi"
]
}
}
}
10 changes: 8 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.100
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: Tool restore
run: dotnet tool restore
- name: Restore
Expand Down Expand Up @@ -73,7 +76,10 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.100
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: Create Release NuGet package
run: |
arrTag=(${GITHUB_REF//\// })
Expand Down
7 changes: 7 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# 1.4.0
* Support for net8.0

# 1.3.0
* Support for net7.0

# 1.2.1
* Support for net6.0 version 6.0.1


# 1.1.0
* Support for net 6.0

Expand Down
2 changes: 1 addition & 1 deletion paket.dependencies
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
source https://api.nuget.org/v3/index.json

storage: none
framework: net5.0, net6.0
framework: net6.0, net7.0, net8.0

nuget Argu
nuget coverlet.collector
Expand Down
Loading