C#: Add missing parameter to interface

This commit is contained in:
Tamas Vajk
2023-07-07 16:10:41 +02:00
parent 9cef290bc3
commit 65ed244f34
2 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using Semmle.Util;
@@ -7,7 +7,7 @@ namespace Semmle.BuildAnalyser
{
internal interface IDotNet
{
bool RestoreToDirectory(string project, string directory);
bool RestoreToDirectory(string project, string directory, string? pathToNugetConfig = null);
bool New(string folder);
bool AddPackage(string folder, string package);
public IList<string> GetListedRuntimes();