Skip to content
Merged

Net6 #193

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
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