コード例 #1
0
 public LocalToolInstallingPackageDiscoveryStrategy(DirectoryInfo workingDirectory, PackageSource addSource = null)
 {
     _workingDirectory = workingDirectory;
     _locator          = new ToolPackageLocator(workingDirectory);
     _addSource        = addSource;
 }
コード例 #2
0
 public PackageInstallingWebAssemblyAssetFinder(IDirectoryAccessor workingDirectory, PackageSource addSource = null)
     : base(workingDirectory)
 {
     _addSource = addSource;
 }
コード例 #3
0
 public WebAssemblyAssetFinder(DirectoryInfo workingDirectory, PackageSource addSource = null)
 {
     _workingDirectory = workingDirectory;
     _locator          = new ToolPackageLocator(workingDirectory);
     _addSource        = addSource;
 }