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 17, 2020
1 parent 6551fd8 commit 83c00dc
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
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 }}

Expand Down
13 changes: 9 additions & 4 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
version 6.0.0-beta8
framework: netstandard20
source https://api.nuget.org/v3/index.json
nuget Be.Vlaanderen.Basisregisters.Build.Pipeline 4.2.5 //"
nuget Be.Vlaanderen.Basisregisters.Build.Pipeline 5.0.1 //"

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

Expand All @@ -14,14 +14,19 @@ 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 publish = publish assemblyVersionNumber
let pack = packSolution nugetVersionNumber

supportedRuntimeIdentifiers <- [ "linux-x64" ]

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

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

Target.create "Lib_Publish" (fun _ -> publish "Be.Vlaanderen.Basisregisters.Utilities.HashCodeCalculator")
Expand Down
2 changes: 1 addition & 1 deletion build.fsx.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ STORAGE: NONE
RESTRICTION: == netstandard2.0
NUGET
remote: https://api.nuget.org/v3/index.json
Be.Vlaanderen.Basisregisters.Build.Pipeline (4.2.5)
Be.Vlaanderen.Basisregisters.Build.Pipeline (5.0.1)
Fake.Core.Environment (>= 5.20.3)
Fake.Core.Process (>= 5.20.3)
Fake.Core.Target (>= 5.20.3)
Expand Down
2 changes: 1 addition & 1 deletion paket.dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ framework: net5.0
source https://api.nuget.org/v3/index.json

// VBR STUFF
nuget Be.Vlaanderen.Basisregisters.Build.Pipeline 4.2.5
nuget Be.Vlaanderen.Basisregisters.Build.Pipeline 5.0.1

// TEST STUFF
nuget Microsoft.NET.Test.Sdk 16.8.3
Expand Down
2 changes: 1 addition & 1 deletion paket.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
RESTRICTION: == net50
NUGET
remote: https://api.nuget.org/v3/index.json
Be.Vlaanderen.Basisregisters.Build.Pipeline (4.2.5)
Be.Vlaanderen.Basisregisters.Build.Pipeline (5.0.1)
Fake.Core.Environment (>= 5.20.3)
Fake.Core.Process (>= 5.20.3)
Fake.Core.Target (>= 5.20.3)
Expand Down

0 comments on commit 83c00dc

Please sign in to comment.