File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments