コード例 #1
0
ファイル: NuGet.cs プロジェクト: zellus/coapp.powershell
 public override bool Execute()
 {
     if (!Push.IsNullOrEmpty())
     {
         if (!ExecutePush())
         {
             return(false);
         }
     }
     if (!Delete.IsNullOrEmpty())
     {
         if (!ExecuteDelete())
         {
             return(false);
         }
     }
     if (!Install.IsNullOrEmpty())
     {
         if (!ExecuteInstall())
         {
             return(false);
         }
     }
     return(true);
 }