From 1346217418bed86404e41a498e3ecb4bc79f39c7 Mon Sep 17 00:00:00 2001 From: Pascal Berger Date: Wed, 27 Apr 2016 15:51:58 +0200 Subject: [PATCH] Reduce depth for JSON conversion to maximum allowed 100 --- src/GitVersionTfsTask/Update-GitVersionTfsTaskVersion.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GitVersionTfsTask/Update-GitVersionTfsTaskVersion.ps1 b/src/GitVersionTfsTask/Update-GitVersionTfsTaskVersion.ps1 index daf30f2b3c..2d223a0002 100644 --- a/src/GitVersionTfsTask/Update-GitVersionTfsTaskVersion.ps1 +++ b/src/GitVersionTfsTask/Update-GitVersionTfsTaskVersion.ps1 @@ -14,4 +14,4 @@ $task.version.Patch = $patch # get this as a string again -ConvertTo-Json $task -Depth 999 | Set-Content -Path $filePath \ No newline at end of file +ConvertTo-Json $task -Depth 100 | Set-Content -Path $filePath \ No newline at end of file