コード例 #1
0
 public static void Deploy()
 {
     if (IsDeployed())
     {
         return;
     }
     _redirects = RedirectionUtil.RedirectType(typeof(T));
 }
コード例 #2
0
 public static void Revert()
 {
     if (!IsDeployed())
     {
         return;
     }
     RedirectionUtil.RevertRedirects(_redirects);
     _redirects.Clear();
 }