mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
19 lines
456 B
C#
19 lines
456 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Semmle.Autobuild
|
|
{
|
|
/// <summary>
|
|
/// XML extraction.
|
|
/// </summary>
|
|
class XmlBuildRule : IBuildRule
|
|
{
|
|
public BuildScript Analyse(Autobuilder builder)
|
|
{
|
|
var command = new CommandBuilder(builder.Actions).
|
|
RunCommand(builder.Odasa).
|
|
Argument("index --xml --extensions config");
|
|
return command.Script;
|
|
}
|
|
}
|
|
}
|