Skip to content

Commit

Permalink
Merge pull request #1022 from pascalberger/feature/inspectcode-xml
Browse files Browse the repository at this point in the history
Output InspectCode result in XML format
  • Loading branch information
gep13 authored Aug 5, 2024
2 parents 141385b + 00435ee commit ec6f85b
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 ec6f85b

Please sign in to comment.