Exemple #1
0
        public static Appx By(AppxType type)
        {
            var owner = Config.Get($"github_{type}", "owner", "ancientproject");
            var repo  = Config.Get($"github_{type}", "repo", "VM");

            return(new Appx(owner, repo, type));
        }
Exemple #2
0
 public Appx(string owner, string repo, AppxType type)
 {
     _owner = owner;
     _repo  = repo;
     _type  = type;
 }