From 00435ee349f3e193ca3ba4eb76877f709880993b Mon Sep 17 00:00:00 2001 From: Pascal Berger Date: Mon, 5 Aug 2024 10:36:38 +0200 Subject: [PATCH] Output InspectCode result in XML format --- Source/Cake.Recipe/Content/analyzing.cake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Cake.Recipe/Content/analyzing.cake b/Source/Cake.Recipe/Content/analyzing.cake index e360dc01..a02682df 100644 --- a/Source/Cake.Recipe/Content/analyzing.cake +++ b/Source/Cake.Recipe/Content/analyzing.cake @@ -10,7 +10,7 @@ BuildParameters.Tasks.InspectCodeTask = Task("InspectCode") var settings = new InspectCodeSettings() { SolutionWideAnalysis = true, OutputFile = inspectCodeLogFilePath, - ArgumentCustomization = x => x.Append("--no-build") + ArgumentCustomization = x => x.Append("--no-build").Append("-f=xml") }; if (FileExists(BuildParameters.SourceDirectoryPath.CombineWithFilePath(BuildParameters.ResharperSettingsFileName)))