PageRenderTime 49ms CodeModel.GetById 27ms RepoModel.GetById 1ms app.codeStats 0ms

/Resources/Companion/AdminRole/VMManagerService/MariaDBInstaller.cs

https://bitbucket.org/zgramana/azure-accelerators-project
C# | 25 lines | 24 code | 1 blank | 0 comment | 0 complexity | 1b1f1c158617a7bf05c3c78cc5192207 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 MariaDBInstaller : MySQLBasedDBInstaller
  14. {
  15. public MariaDBInstaller(string installationFolder,
  16. string downloadFolder,
  17. SyndicationItem product,
  18. string productVersion,
  19. NameValueCollection properties)
  20. : base(installationFolder, downloadFolder, product, productVersion, properties)
  21. {
  22. }
  23. }
  24. }