Example #1
0
 public DotNetAssemblyLocator(IFileIO io)
 {
     this.dotNetInstallationLocator = new DotNetCoreInstallationLocator(io);
     this.io = io;
 }
Example #2
0
 public DotNetAssemblyLocator(Func <Process> processRunner, FileIO io)
 {
     this.dotNetInstallationLocator = new DotNetCoreInstallationLocator(processRunner);
     this.io = io;
 }