From 489c9be5df7b259c4099337f74f8d2a467ad6da2 Mon Sep 17 00:00:00 2001 From: Kevin Bronsdijk Date: Mon, 29 Jun 2020 11:50:02 +0700 Subject: [PATCH] update version and fix CI (#23) --- build.bat | 2 +- build.fsx | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/build.bat b/build.bat index 204cb1d..ca06012 100644 --- a/build.bat +++ b/build.bat @@ -2,6 +2,6 @@ cls "tools\NuGet\NuGet.exe" "restore" "src\kraken-net-v2\kraken-net-v2.csproj" "tools\NuGet\NuGet.exe" "restore" "src\kraken-net-v2-tests\kraken-net-v2-tests.csproj" -"tools\NuGet\NuGet.exe" "Install" "FAKE" "-OutputDirectory" "tools" "-ExcludeVersion" +"tools\NuGet\NuGet.exe" "Install" "FAKE" "-OutputDirectory" "tools" "-ExcludeVersion" "-version" "4.64.18" "tools\Fake\tools\Fake.exe" build.fsx pause \ No newline at end of file diff --git a/build.fsx b/build.fsx index 8505620..534ced5 100644 --- a/build.fsx +++ b/build.fsx @@ -19,10 +19,10 @@ let project = "Kraken" let product = "kraken.NET 4.5" let authors = ["Kraken.io, Kevin Bronsdijk"] let summary = "The official Kraken.io .Net client" -let version = "0.2.0.0" +let version = "0.2.0.1" let description = "The official kraken-net client interacts with the Kraken.io REST API allowing you to utilize Krakens features using a .NET interface." -let notes = "Added None as a strategy. For more information and documentation, please visit the project site on GitHub." -let nugetVersion = "2.0.0" +let notes = "form data fix kraken-net/pull/22" +let nugetVersion = "2.0.1" let tags = "kraken.io C# API image optimization official" let gitHome = "https://github.com/kraken-io" let gitName = "kraken-net" @@ -55,7 +55,7 @@ Target "AssemblyInfo" (fun _ -> Attribute.Description summary Attribute.Version version Attribute.FileVersion version - Attribute.Copyright "2017" + Attribute.Copyright "2020" ] CreateCSharpAssemblyInfo "src/kraken-net/Properties/AssemblyInfo.cs" attributes @@ -75,6 +75,7 @@ Target "RestorePackages" (fun _ -> // -------------------------------------------------------------------------------------- Target "Build" (fun _ -> + EnvironmentHelper.setBuildParam "VisualStudioVersion" "16.0" !! "src/kraken-net.sln" |> MSBuildRelease buildDir "Build" |> Log "AppBuild-Output: "