Skip to content

Commit

Permalink
Fix publish to use .NET 6 (#94)
Browse files Browse the repository at this point in the history
* Fix publish to use .NET 6

* Remove obsolete file

* Fix formatting
  • Loading branch information
dbrattli authored Jan 27, 2022
1 parent 0b87ece commit cf493d3
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 135 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.100
dotnet-version: 6.0.101

- name: Setup tools
run: dotnet tool restore
Expand Down
133 changes: 0 additions & 133 deletions src/Middleware/Error.fs

This file was deleted.

2 changes: 1 addition & 1 deletion src/Pipeline/Core.fs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ module Core =
let tcs = TaskCompletionSource<'TResult>()

task {
do! (finish tcs) |||> handler
do! finish tcs |||> handler
return! tcs.Task
}

Expand Down

0 comments on commit cf493d3

Please sign in to comment.