예제 #1
0
 public NuGetCachePrimer(
     INuGetPackagesArchiver nugetPackagesArchiver,
     INuGetCacheSentinel nuGetCacheSentinel,
     CliFallbackFolderPathCalculator cliFallbackFolderPathCalculator)
     : this(nugetPackagesArchiver,
            nuGetCacheSentinel,
            cliFallbackFolderPathCalculator,
            FileSystemWrapper.Default.File)
 {
 }
예제 #2
0
 public NuGetCachePrimer(
     ICommandFactory commandFactory,
     INuGetPackagesArchiver nugetPackagesArchiver,
     INuGetCacheSentinel nuGetCacheSentinel)
     : this(commandFactory,
            nugetPackagesArchiver,
            nuGetCacheSentinel,
            FileSystemWrapper.Default.Directory,
            FileSystemWrapper.Default.File)
 {
 }
예제 #3
0
        internal NuGetCachePrimer(
            INuGetPackagesArchiver nugetPackagesArchiver,
            INuGetCacheSentinel nuGetCacheSentinel,
            IFile file)
        {
            _nugetPackagesArchiver = nugetPackagesArchiver;

            _nuGetCacheSentinel = nuGetCacheSentinel;

            _file = file;
        }
예제 #4
0
 public NuGetCachePrimer(
     ICommandFactory commandFactory,
     INuGetPackagesArchiver nugetPackagesArchiver,
     INuGetCacheSentinel nuGetCacheSentinel)
     : this(commandFactory,
         nugetPackagesArchiver,
         nuGetCacheSentinel,
         FileSystemWrapper.Default.Directory,
         FileSystemWrapper.Default.File)
 {
 }
예제 #5
0
 internal NuGetCachePrimer(
     ICommandFactory commandFactory,
     INuGetPackagesArchiver nugetPackagesArchiver,
     INuGetCacheSentinel nuGetCacheSentinel,
     IDirectory directory,
     IFile file)
 {
     _commandFactory        = commandFactory;
     _directory             = directory;
     _nugetPackagesArchiver = nugetPackagesArchiver;
     _nuGetCacheSentinel    = nuGetCacheSentinel;
     _file = file;
 }
예제 #6
0
 internal NuGetCachePrimer(
     ICommandFactory commandFactory,
     INuGetPackagesArchiver nugetPackagesArchiver,
     INuGetCacheSentinel nuGetCacheSentinel,
     IDirectory directory,
     IFile file)
 {
     _commandFactory = commandFactory;
     _directory = directory;
     _nugetPackagesArchiver = nugetPackagesArchiver;
     _nuGetCacheSentinel = nuGetCacheSentinel;
     _file = file;
 }
예제 #7
0
        internal NuGetCachePrimer(
            INuGetPackagesArchiver nugetPackagesArchiver,
            INuGetCacheSentinel nuGetCacheSentinel,
            CliFallbackFolderPathCalculator cliFallbackFolderPathCalculator,
            IFile file)
        {
            _nugetPackagesArchiver = nugetPackagesArchiver;

            _nuGetCacheSentinel = nuGetCacheSentinel;

            _cliFallbackFolderPathCalculator = cliFallbackFolderPathCalculator;

            _file = file;
        }
예제 #8
0
 public NuGetCachePrimer(INuGetPackagesArchiver nugetPackagesArchiver, INuGetCacheSentinel nuGetCacheSentinel)
     : this(nugetPackagesArchiver, nuGetCacheSentinel, FileSystemWrapper.Default.File)
 {
 }