Skip to content

Commit 489c9be

Browse files
update version and fix CI (#23)
1 parent 0155fd4 commit 489c9be

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

build.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
cls
33
"tools\NuGet\NuGet.exe" "restore" "src\kraken-net-v2\kraken-net-v2.csproj"
44
"tools\NuGet\NuGet.exe" "restore" "src\kraken-net-v2-tests\kraken-net-v2-tests.csproj"
5-
"tools\NuGet\NuGet.exe" "Install" "FAKE" "-OutputDirectory" "tools" "-ExcludeVersion"
5+
"tools\NuGet\NuGet.exe" "Install" "FAKE" "-OutputDirectory" "tools" "-ExcludeVersion" "-version" "4.64.18"
66
"tools\Fake\tools\Fake.exe" build.fsx
77
pause

build.fsx

+5-4
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ let project = "Kraken"
1919
let product = "kraken.NET 4.5"
2020
let authors = ["Kraken.io, Kevin Bronsdijk"]
2121
let summary = "The official Kraken.io .Net client"
22-
let version = "0.2.0.0"
22+
let version = "0.2.0.1"
2323
let description = "The official kraken-net client interacts with the Kraken.io REST API allowing you to utilize Krakens features using a .NET interface."
24-
let notes = "Added None as a strategy. For more information and documentation, please visit the project site on GitHub."
25-
let nugetVersion = "2.0.0"
24+
let notes = "form data fix kraken-net/pull/22"
25+
let nugetVersion = "2.0.1"
2626
let tags = "kraken.io C# API image optimization official"
2727
let gitHome = "https://github.com/kraken-io"
2828
let gitName = "kraken-net"
@@ -55,7 +55,7 @@ Target "AssemblyInfo" (fun _ ->
5555
Attribute.Description summary
5656
Attribute.Version version
5757
Attribute.FileVersion version
58-
Attribute.Copyright "2017"
58+
Attribute.Copyright "2020"
5959
]
6060

6161
CreateCSharpAssemblyInfo "src/kraken-net/Properties/AssemblyInfo.cs" attributes
@@ -75,6 +75,7 @@ Target "RestorePackages" (fun _ ->
7575
// --------------------------------------------------------------------------------------
7676

7777
Target "Build" (fun _ ->
78+
EnvironmentHelper.setBuildParam "VisualStudioVersion" "16.0"
7879
!! "src/kraken-net.sln"
7980
|> MSBuildRelease buildDir "Build"
8081
|> Log "AppBuild-Output: "

0 commit comments

Comments
 (0)