コード例 #1
0
ファイル: Bundle.cs プロジェクト: travcorp/aws-tools
        public Bundle(string applicationSetName, DirectoryInfo bundleDirectory, string version, string bucket, string etag, string stackName)
        {
            _applicationSetName = applicationSetName;
            _bundleDirectory = bundleDirectory;
            _bundleName = bundleDirectory.Name;
            _version = version;
            _bucket = bucket;
            _etag = etag;
            _stackName = stackName;
            _deploymentGroup = DeploymentGroupSpecification.FromFile(Path.Combine(_bundleDirectory.FullName, "deployspec.yml"));

            Console.WriteLine("Bucket initialized with bucket: " + bucket);
        }
コード例 #2
0
ファイル: Bundle.cs プロジェクト: travcorp/aws-tools
        public Bundle(string applicationSetName, DirectoryInfo bundleDirectory, string version, string bucket, string etag, string stackName)
        {
            _applicationSetName = applicationSetName;
            _bundleDirectory    = bundleDirectory;
            _bundleName         = bundleDirectory.Name;
            _version            = version;
            _bucket             = bucket;
            _etag            = etag;
            _stackName       = stackName;
            _deploymentGroup = DeploymentGroupSpecification.FromFile(Path.Combine(_bundleDirectory.FullName, "deployspec.yml"));


            Console.WriteLine("Bucket initialized with bucket: " + bucket);
        }