Skip to content

Commit

Permalink
fix: move to 5.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
CumpsD committed Dec 18, 2020
1 parent 43d24cd commit 0f6abfb
Show file tree
Hide file tree
Showing 11 changed files with 516 additions and 793 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.19.0",
"version": "5.20.4-alpha.1642",
"commands": [
"fake"
]
},
"paket": {
"version": "5.241.6",
"version": "6.0.0-beta8",
"commands": [
"paket"
]
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: Checkout Code
uses: actions/checkout@v2.1.0
uses: actions/checkout@v2.3.4

- name: Cache NPM
uses: actions/cache@v2
Expand Down Expand Up @@ -48,15 +48,15 @@ jobs:
shell: bash

- name: Setup Node.js
uses: actions/setup-node@v2.1.2
uses: actions/setup-node@v2.1.4

- name: Setup .NET Core
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v1.7.2
with:
dotnet-version: ${{ secrets.VBR_DOTNET_VERSION }}

- name: Set up Python
uses: actions/setup-python@v2.1.4
uses: actions/setup-python@v2.2.0
with:
python-version: '3.x'

Expand Down
18 changes: 12 additions & 6 deletions build.fsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#r "paket:
version 5.241.6
version 6.0.0-beta8
framework: netstandard20
source https://api.nuget.org/v3/index.json
nuget Be.Vlaanderen.Basisregisters.Build.Pipeline 4.2.3 //"
nuget Be.Vlaanderen.Basisregisters.Build.Pipeline 5.0.1 //"

#load "packages/Be.Vlaanderen.Basisregisters.Build.Pipeline/Content/build-generic.fsx"

Expand All @@ -14,21 +14,27 @@ open ``Build-generic``
let assemblyVersionNumber = (sprintf "%s.0")
let nugetVersionNumber = (sprintf "%s")

let build = buildSolution assemblyVersionNumber
let publish = publishSolution assemblyVersionNumber
let buildSource = build assemblyVersionNumber
let buildTest = buildTest assemblyVersionNumber
let publishSource = publish assemblyVersionNumber
let pack = packSolution nugetVersionNumber

supportedRuntimeIdentifiers <- [ "linux-x64" ]

// Library ------------------------------------------------------------------------
Target.create "Lib_Build" (fun _ -> build "Be.Vlaanderen.Basisregisters.Shaperon")
Target.create "Lib_Build" (fun _ ->
buildSource "Be.Vlaanderen.Basisregisters.Shaperon"
buildSource "Be.Vlaanderen.Basisregisters.Shaperon.Geometries"
buildTest "Be.Vlaanderen.Basisregisters.Shaperon.Tests"
)

Target.create "Lib_Test" (fun _ ->
[
"test" @@ "Be.Vlaanderen.Basisregisters.Shaperon.Tests" ]
|> List.iter testWithDotNet
)

Target.create "Lib_Publish" (fun _ -> publish "Be.Vlaanderen.Basisregisters.Shaperon")
Target.create "Lib_Publish" (fun _ -> publishSource "Be.Vlaanderen.Basisregisters.Shaperon")
Target.create "Lib_Pack" (fun _ -> pack "Be.Vlaanderen.Basisregisters.Shaperon")

// --------------------------------------------------------------------------------
Expand Down
Loading

0 comments on commit 0f6abfb

Please sign in to comment.