コード例 #1
0
ファイル: Program.cs プロジェクト: tme5092/DistDeploy
        static void Main(string[] args)
        {
            DeployWorker p = new DeployWorker();

            if (args.Length > 0)
            {
                p.Logger.Debug("Acting as Server");
                p.StartListener();
            }
            else
            {
                p.Logger.Debug("Acting as Client");
                p.StartClient();
            }
        }