Skip to content

Commit

Permalink
Output InspectCode result in XML format
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalberger committed Aug 5, 2024
1 parent 141385b commit 00435ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Cake.Recipe/Content/analyzing.cake
Original file line number Diff line number Diff line change
Expand Up @@ -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)))
Expand Down

0 comments on commit 00435ee

Please sign in to comment.