Skip to content

Commit

Permalink
Test with Net6 (#193)
Browse files Browse the repository at this point in the history
* feat: move to net6

* feat:  update paket

* feat: dependencies update

* fix: docs proj

* feat: update fake

* fix:  no macOS for faster and  cheaper ci
  • Loading branch information
sergey-tihon authored Sep 16, 2022
1 parent 9f69ce1 commit 6afc6a5
Show file tree
Hide file tree
Showing 13 changed files with 720 additions and 301 deletions.
4 changes: 2 additions & 2 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
"isRoot": true,
"tools": {
"fake-cli": {
"version": "5.20.4",
"version": "5.23.0",
"commands": [
"fake"
]
},
"paket": {
"version": "6.0.13",
"version": "7.1.5",
"commands": [
"paket"
]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
dotnet: [6.0.100]
os: [ubuntu-latest, windows-latest]
dotnet: [6.0.401]
node: ['14']
runs-on: ${{ matrix.os }}

Expand Down
6 changes: 3 additions & 3 deletions build.fsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#r @"paket:
source https://api.nuget.org/v3/index.json
framework netstandard2.0
nuget FSharp.Core 4.7.2
framework net6.0
nuget FSharp.Core
nuget Fake.Core.Target
nuget Fake.Core.ReleaseNotes
nuget Fake.IO.FileSystem
Expand Down Expand Up @@ -63,7 +63,7 @@ Target.create "AssemblyInfo" (fun _ ->
AssemblyInfo.FileVersion release.AssemblyVersion
AssemblyInfo.Configuration configuration ]

let getProjectDetails projectPath =
let getProjectDetails (projectPath:string) =
let projectName = System.IO.Path.GetFileNameWithoutExtension(projectPath)
( projectPath,
projectName,
Expand Down
Loading

0 comments on commit 6afc6a5

Please sign in to comment.