Example #1
0
 public DotnetFirstTimeUseConfigurer(
     IFirstTimeUseNoticeSentinel firstTimeUseNoticeSentinel,
     IAspNetCertificateSentinel aspNetCertificateSentinel,
     IAspNetCoreCertificateGenerator aspNetCoreCertificateGenerator,
     IFileSentinel toolPathSentinel,
     DotnetFirstRunConfiguration dotnetFirstRunConfiguration,
     IReporter reporter,
     string cliFallbackFolderPath,
     IEnvironmentPath pathAdder)
 {
     _firstTimeUseNoticeSentinel     = firstTimeUseNoticeSentinel;
     _aspNetCertificateSentinel      = aspNetCertificateSentinel;
     _aspNetCoreCertificateGenerator = aspNetCoreCertificateGenerator;
     _toolPathSentinel            = toolPathSentinel;
     _dotnetFirstRunConfiguration = dotnetFirstRunConfiguration;
     _reporter = reporter;
     _cliFallbackFolderPath = cliFallbackFolderPath;
     _pathAdder             = pathAdder ?? throw new ArgumentNullException(nameof(pathAdder));
 }
Example #2
0
 public DotnetFirstTimeUseConfigurer(
     INuGetCachePrimer nugetCachePrimer,
     INuGetCacheSentinel nugetCacheSentinel,
     IFirstTimeUseNoticeSentinel firstTimeUseNoticeSentinel,
     IAspNetCertificateSentinel aspNetCertificateSentinel,
     IAspNetCoreCertificateGenerator aspNetCoreCertificateGenerator,
     IEnvironmentProvider environmentProvider,
     IReporter reporter,
     string cliFallbackFolderPath,
     IEnvironmentPath pathAdder)
 {
     _nugetCachePrimer               = nugetCachePrimer;
     _nugetCacheSentinel             = nugetCacheSentinel;
     _firstTimeUseNoticeSentinel     = firstTimeUseNoticeSentinel;
     _aspNetCertificateSentinel      = aspNetCertificateSentinel;
     _aspNetCoreCertificateGenerator = aspNetCoreCertificateGenerator;
     _environmentProvider            = environmentProvider;
     _reporter = reporter;
     _cliFallbackFolderPath = cliFallbackFolderPath;
     _pathAdder             = pathAdder ?? throw new ArgumentNullException(nameof(pathAdder));
 }