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 ;
22using System . Collections . Generic ;
33using System . Diagnostics ;
44using Semmle . Util ;
@@ -7,7 +7,7 @@ namespace Semmle.BuildAnalyser
77{
88 internal interface IDotNet
99 {
10- bool RestoreToDirectory ( string project , string directory ) ;
10+ bool RestoreToDirectory ( string project , string directory , string ? pathToNugetConfig = null ) ;
1111 bool New ( string folder ) ;
1212 bool AddPackage ( string folder , string package ) ;
1313 public IList < string > GetListedRuntimes ( ) ;
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ internal class DotNetStub : IDotNet
1515
1616 public bool New ( string folder ) => true ;
1717
18- public bool RestoreToDirectory ( string project , string directory ) => true ;
18+ public bool RestoreToDirectory ( string project , string directory , string ? pathToNugetConfig = null ) => true ;
1919
2020 public IList < string > GetListedRuntimes ( ) => runtimes ;
2121 }
You can’t perform that action at this time.
0 commit comments