Skip to content

Commit

Permalink
update version and fix CI (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin-Bronsdijk authored Jun 29, 2020
1 parent 0155fd4 commit 489c9be
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -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
9 changes: 5 additions & 4 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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
Expand All @@ -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: "
Expand Down

0 comments on commit 489c9be

Please sign in to comment.