File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
- using System ;
1
+ using System ;
2
2
using System . Collections . Generic ;
3
3
using System . Diagnostics ;
4
4
using Semmle . Util ;
@@ -7,7 +7,7 @@ namespace Semmle.BuildAnalyser
7
7
{
8
8
internal interface IDotNet
9
9
{
10
- bool RestoreToDirectory ( string project , string directory ) ;
10
+ bool RestoreToDirectory ( string project , string directory , string ? pathToNugetConfig = null ) ;
11
11
bool New ( string folder ) ;
12
12
bool AddPackage ( string folder , string package ) ;
13
13
public IList < string > GetListedRuntimes ( ) ;
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ internal class DotNetStub : IDotNet
15
15
16
16
public bool New ( string folder ) => true ;
17
17
18
- public bool RestoreToDirectory ( string project , string directory ) => true ;
18
+ public bool RestoreToDirectory ( string project , string directory , string ? pathToNugetConfig = null ) => true ;
19
19
20
20
public IList < string > GetListedRuntimes ( ) => runtimes ;
21
21
}
You can’t perform that action at this time.
0 commit comments