Example #1
0
 public void SetUp()
 {
     variables  = new CalamariVariableDictionary();
     fileSystem = Substitute.For <ICalamariFileSystem>();
     iis        = Substitute.For <IInternetInformationServer>();
     deployment = new RunningDeployment("C:\\packages", variables)
     {
         StagingDirectory = stagingDirectory
     };
 }
 public void SetUp()
 {
     variables = new VariableDictionary();
     fileSystem = Substitute.For<ICalamariFileSystem>();
     iis = Substitute.For<IInternetInformationServer>();
     deployment = new RunningDeployment("C:\\packages", variables)
     {
         StagingDirectory = stagingDirectory
     };
 }
 public LegacyIisWebSiteConvention(ICalamariFileSystem fileSystem, IInternetInformationServer iis)
 {
     this.fileSystem = fileSystem;
     this.iis        = iis;
 }
 public LegacyIisWebSiteConvention(ICalamariFileSystem fileSystem, IInternetInformationServer iis)
 {
     this.fileSystem = fileSystem;
     this.iis = iis;
 }