コード例 #1
0
 public static QuarkConfigurationBuilder ManagePackage(
     this QuarkConfigurationBuilder builder,
     IQuarkPackage package,
     bool shouldExist = true)
 {
     builder.AddQuarkTask(new ManagePackageTask(package, shouldExist));
     return(builder);
 }
コード例 #2
0
 public ManagePackageTask(IQuarkPackage packageDescription, bool shouldExist)
 {
     this.PackageDescription = packageDescription;
     this.ShouldExist        = shouldExist;
 }