Skip to content

Commit

Permalink
Correct version numbers for Clean target akkadotnet#3668
Browse files Browse the repository at this point in the history
  • Loading branch information
transmax-open-source committed May 16, 2019
1 parent 4f22c7a commit a018536
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ let outputPerfTests = __SOURCE_DIRECTORY__ @@ "PerfResults"
let outputBinaries = output @@ "binaries"
let outputNuGet = output @@ "nuget"
let outputMultiNode = outputTests @@ "multinode"
let outputBinariesNet45 = outputBinaries @@ "net45"
let outputBinariesNetStandard = outputBinaries @@ "netstandard1.6"
let outputBinariesNet45 = outputBinaries @@ "net452"
let outputBinariesNetStandard = outputBinaries @@ "netstandard2.0"

let buildNumber = environVarOrDefault "BUILD_NUMBER" "0"
let hasTeamCity = (not (buildNumber = "0")) // check if we have the TeamCity environment variable for build # set
Expand Down Expand Up @@ -313,7 +313,7 @@ open Fake.TemplateHelper
Target "PublishMntr" (fun _ ->
let executableProjects = !! "./src/**/Akka.MultiNodeTestRunner.csproj"

// Windows .NET 4.5.2
// Restore
executableProjects |> Seq.iter (fun project ->
DotNetCli.Restore
(fun p ->
Expand All @@ -322,7 +322,7 @@ Target "PublishMntr" (fun _ ->
AdditionalArgs = ["-r win7-x64"; sprintf "/p:VersionSuffix=%s" versionSuffix] })
)

// Windows .NET 4.5.2
// Windows .NET 4.6.1
executableProjects |> Seq.iter (fun project ->
DotNetCli.Publish
(fun p ->
Expand Down

0 comments on commit a018536

Please sign in to comment.