예제 #1
0
 /// <summary>
 /// Forcibly shut down all of the azure emulators
 /// </summary>
 public static void StopAllAzureEmulatorServices()
 {
     foreach (var process in Process.GetProcessesByName("DFService"))
     {
         AzureEmulatorHelper.KillProcess(process);
         // the process isn't owned by the caller so we can't check its exit code
     }
 }