Ejemplo n.º 1
0
            protected override void Configure(Dictionary<string, string> environment)
            {
                if (string.IsNullOrEmpty(this.Version))
                {
                    string version;
                    if (!environment.TryGetValue(Resources.CacheRuntimeVersionKey, out version))
                    {
                        version = new AzureTool().AzureSdkVersion;
                    }

                    this.Version = version;
                }
            }
 public EnableAzureMemcacheRoleCommand()
 {
     CacheRuntimeVersion = new AzureTool().AzureSdkVersion;
 }