Skip to content

Commit

Permalink
Fix #16
Browse files Browse the repository at this point in the history
  • Loading branch information
reisenberger committed May 9, 2019
1 parent 8f8407b commit 00a9202
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ var configuration = Argument<string>("configuration", "Release");
//////////////////////////////////////////////////////////////////////

#addin "Cake.FileHelpers"
#addin "System.Text.Json"
using System.Text.Json;

///////////////////////////////////////////////////////////////////////////////
// GLOBAL VARIABLES
Expand Down Expand Up @@ -130,7 +128,7 @@ Task("__UpdateAssemblyVersionInformation")
StartProcess(gitVersionPath, gitVersionSettings, out outputLines);

var output = string.Join("\n", outputLines);
gitVersionOutput = new JsonParser().Parse<Dictionary<string, object>>(output);
gitVersionOutput = Newtonsoft.Json.JsonConvert.DeserializeObject<Dictionary<string, object>>(output);

Information("Updated GlobalAssemblyInfo");

Expand Down

0 comments on commit 00a9202

Please sign in to comment.