Exemplo n.º 1
0
 public static void Deploy()
 {
     if (IsDeployed())
     {
         return;
     }
     _redirects = RedirectionUtil.RedirectType(typeof(T));
 }
Exemplo n.º 2
0
 public static void Revert()
 {
     if (!IsDeployed())
     {
         return;
     }
     RedirectionUtil.RevertRedirects(_redirects);
     _redirects.Clear();
 }