Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

LaunchInstaller.cs 643B

1234567891011121314151617181920212223
  1. using System.Diagnostics;
  2. using Codice.Utils;
  3. namespace Unity.PlasticSCM.Editor.Tool
  4. {
  5. internal static class LaunchInstaller
  6. {
  7. internal static Process ForPlatform(string installerPath)
  8. {
  9. if (PlatformIdentifier.IsMac())
  10. {
  11. return Process.Start(
  12. ToolConstants.Installer.INSTALLER_MACOS_OPEN,
  13. string.Format(ToolConstants.Installer.INSTALLER_MACOS_OPEN_ARGS, installerPath));
  14. }
  15. return Process.Start(
  16. installerPath,
  17. ToolConstants.Installer.INSTALLER_WINDOWS_ARGS);
  18. }
  19. }
  20. }