mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
13 lines
289 B
C#
13 lines
289 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Semmle.Extraction.CSharp.DependencyFetching
|
|
{
|
|
public interface ISourceGenerator
|
|
{
|
|
/// <summary>
|
|
/// Returns the paths to the generated source files.
|
|
/// </summary>
|
|
IEnumerable<string> Generate();
|
|
}
|
|
}
|