Skip to content

Commit

Permalink
Remove deprecated cake add-in, to fix build (#35)
Browse files Browse the repository at this point in the history
Fixes #33
  • Loading branch information
reisenberger authored May 10, 2019
1 parent f801fcb commit 9431a78
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 @@ -124,7 +122,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 9431a78

Please sign in to comment.