Skip to content

Commit 00a9202

Browse files
committed
Fix #16
1 parent 8f8407b commit 00a9202

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

build.cake

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ var configuration = Argument<string>("configuration", "Release");
1818
//////////////////////////////////////////////////////////////////////
1919

2020
#addin "Cake.FileHelpers"
21-
#addin "System.Text.Json"
22-
using System.Text.Json;
2321

2422
///////////////////////////////////////////////////////////////////////////////
2523
// GLOBAL VARIABLES
@@ -130,7 +128,7 @@ Task("__UpdateAssemblyVersionInformation")
130128
StartProcess(gitVersionPath, gitVersionSettings, out outputLines);
131129

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

135133
Information("Updated GlobalAssemblyInfo");
136134

0 commit comments

Comments
 (0)