Exemplo n.º 1
0
        public Commands(IStatusInformer logger, string rootPath, string buildPath)
        {
            compiler = new Compiler(logger);
            Logger = logger;

            var config = new Config.Config();
            MobileNetConfig = config.DeSerialize(Directory.GetCurrentDirectory() + "\\MobileNet.config");
            ChangeRootPath(rootPath, buildPath);
        }
Exemplo n.º 2
0
 public Commands(IStatusInformer logger, FileSystemWatcher vendorWatcher, FileSystemWatcher appWatcher, string rootPath, string buildPath)
     : this(logger, rootPath, buildPath)
 {
     _VendorWatcher = vendorWatcher;
     _AppWatcher = appWatcher;
 }
Exemplo n.º 3
0
 public Compiler(IStatusInformer logger)
 {
     Logger = logger;
 }