Fix compile issues after rebase

This commit is contained in:
Tamas Vajk
2023-08-21 10:43:36 +02:00
parent 62666915b4
commit b5cdaa2f94
4 changed files with 4 additions and 6 deletions

View File

@@ -0,0 +1,14 @@
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);
}
}