Exemplo n.º 1
0
        private static void PerformFirstRun()
        {
            var localsystem = GetReleaseManager();

            localsystem.CreateRelease(GetInitialRelease());
            Program.releaseManager = localsystem;
        }
Exemplo n.º 2
0
        public TempReleaseSide(LocalReleaseManager releaseManager)
        {
            if (releaseManager == null)
            {
                throw new ArgumentNullException("releaseManager");
            }

            this.releaseManager = releaseManager;
        }
Exemplo n.º 3
0
 public LocalTempSideFactory(LocalReleaseManager releaseManager)
 {
     this.releaseManager = releaseManager;
 }
Exemplo n.º 4
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="filesystemService"></param>
 /// <param name="siteLocation">The relative path to the root of the FTP container folder where the specific site is kept.</param>
 public LocalSiteManager(IFileSystemService filesystemService, ItemLocation siteLocation)
 {
     this.releaseManager    = new LocalReleaseManager(filesystemService, siteLocation);
     this.siteLocation      = siteLocation;
     this.fileSystemService = filesystemService;
 }