Example #1
0
 public UserLevelCacheWriter(CliFolderPathCalculator cliFolderPathCalculator) :
     this(
         CliFolderPathCalculator.DotnetUserProfileFolderPath,
         FileSystemWrapper.Default.File,
         FileSystemWrapper.Default.Directory)
 {
 }
Example #2
0
 public AspNetCertificateSentinel(CliFolderPathCalculator cliFallbackFolderPathCalculator) :
     this(
         CliFolderPathCalculator.DotnetUserProfileFolderPath,
         FileSystemWrapper.Default.File,
         FileSystemWrapper.Default.Directory)
 {
 }
Example #3
0
 public FirstTimeUseNoticeSentinel(CliFolderPathCalculator cliFolderPathCalculator) :
     this(
         CliFolderPathCalculator.DotnetUserProfileFolderPath,
         FileSystemWrapper.Default.File,
         FileSystemWrapper.Default.Directory)
 {
 }
Example #4
0
 public NuGetCachePrimer(
     INuGetPackagesArchiver nugetPackagesArchiver,
     INuGetCacheSentinel nuGetCacheSentinel,
     CliFolderPathCalculator cliFolderPathCalculator)
     : this(nugetPackagesArchiver,
            nuGetCacheSentinel,
            cliFolderPathCalculator,
            FileSystemWrapper.Default.File)
 {
 }
Example #5
0
        internal NuGetCachePrimer(
            INuGetPackagesArchiver nugetPackagesArchiver,
            INuGetCacheSentinel nuGetCacheSentinel,
            CliFolderPathCalculator cliFolderPathCalculator,
            IFile file)
        {
            _nugetPackagesArchiver = nugetPackagesArchiver;

            _nuGetCacheSentinel = nuGetCacheSentinel;

            _cliFolderPathCalculator = cliFolderPathCalculator;

            _file = file;
        }
Example #6
0
 public NuGetCacheSentinel(CliFolderPathCalculator cliFolderPathCalculator) :
     this(cliFolderPathCalculator.CliFallbackFolderPath,
          FileSystemWrapper.Default.File,
          FileSystemWrapper.Default.Directory)
 {
 }