PageRenderTime 89ms CodeModel.GetById 20ms RepoModel.GetById 4ms app.codeStats 0ms

/Resources/Companion/AdminRole/VMManagerService/MySQLCommunityServerInstaller.cs

https://bitbucket.org/zgramana/azure-accelerators-project
C# | 25 lines | 24 code | 1 blank | 0 comment | 0 complexity | 8ac0140689471af4b9c88ccb6b44bfca MD5 | raw file
Possible License(s): LGPL-2.0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.ServiceModel.Syndication;
  6. using System.Diagnostics;
  7. using System.IO;
  8. using Microsoft.WindowsAzure.ServiceRuntime;
  9. using System.Threading;
  10. using System.Collections.Specialized;
  11. namespace WindowsAzureCompanion.VMManagerService
  12. {
  13. class MySQLCommunityServerInstaller : MySQLBasedDBInstaller
  14. {
  15. public MySQLCommunityServerInstaller(string installationFolder,
  16. string downloadFolder,
  17. SyndicationItem product,
  18. string productVersion,
  19. NameValueCollection productProperties)
  20. : base(installationFolder, downloadFolder, product, productVersion, productProperties)
  21. {
  22. }
  23. }
  24. }