Files
codeql/csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/IDotNet.cs
2023-08-21 10:43:36 +02:00

15 lines
444 B
C#

using System.Collections.Generic;
namespace Semmle.Extraction.CSharp.DependencyFetching
{
internal interface IDotNet
{
bool RestoreToDirectory(string project, string directory, string? pathToNugetConfig = null);
bool New(string folder);
bool AddPackage(string folder, string package);
IList<string> GetListedRuntimes();
IList<string> GetListedSdks();
bool Exec(string execArgs);
}
}