public LocalToolInstallingPackageDiscoveryStrategy(DirectoryInfo workingDirectory, PackageSource addSource = null)
 {
     _workingDirectory = workingDirectory;
     _locator          = new ToolPackageLocator(workingDirectory);
     _addSource        = addSource;
 }
 public PackageInstallingWebAssemblyAssetFinder(IDirectoryAccessor workingDirectory, PackageSource addSource = null)
     : base(workingDirectory)
 {
     _addSource = addSource;
 }
Ejemplo n.º 3
0
 public WebAssemblyAssetFinder(DirectoryInfo workingDirectory, PackageSource addSource = null)
 {
     _workingDirectory = workingDirectory;
     _locator          = new ToolPackageLocator(workingDirectory);
     _addSource        = addSource;
 }