Skip to content

Commit

Permalink
migrate build system to net8 / fake v6
Browse files Browse the repository at this point in the history
  • Loading branch information
anpin committed Apr 18, 2024
1 parent fe49a6b commit 94922c3
Show file tree
Hide file tree
Showing 11 changed files with 235 additions and 379 deletions.
6 changes: 6 additions & 0 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@
"commands": [
"jb"
]
},
"docfx": {
"version": "2.76.0",
"commands": [
"docfx"
]
}
}
}
3 changes: 1 addition & 2 deletions Akka.Persistence.Sql.sln
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "_", "_", "{20C26B2D-59EA-42
src\Directory.Build.props = src\Directory.Build.props
src\Directory.Packages.props = src\Directory.Packages.props
build.cmd = build.cmd
build.fsx = build.fsx
build.ps1 = build.ps1
build.sh = build.sh
build.fsx = build.fsx
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "build-system", "build-system", "{7537908B-6A42-4E34-889F-6004A97D4987}"
Expand Down
4 changes: 2 additions & 2 deletions build-system/azure-pipeline.template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
persistCredentials: true

- task: UseDotNet@2
displayName: 'Use .NET 7'
displayName: 'Use .NET 8'
inputs:
version: '7.x'
version: '8.x'

# Linux or macOS
- task: Bash@3
Expand Down
4 changes: 2 additions & 2 deletions build-system/windows-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ variables:

steps:
- task: UseDotNet@2
displayName: 'Use .NET 7'
displayName: 'Use .NET 8'
inputs:
version: '7.x'
version: '8.x'

- task: BatchScript@1
displayName: 'FAKE Build'
Expand Down
2 changes: 1 addition & 1 deletion build.cmd
Original file line number Diff line number Diff line change
@@ -1 +1 @@
PowerShell.exe -file "build.ps1" %*
dotnet fsi build.fsx -- -t %*
Loading

0 comments on commit 94922c3

Please sign in to comment.