void Application_ApplicationExit(object sender, EventArgs e) { try { // remove all addin assemblies from isolated storage IsolatedStorageService.ClearStorage(); // close SharpDevelop IDE SDIntegration.Instance.CloseIDE(); } catch (Exception ex) { Console.WriteLine("Something goes wrong while closing application" + ex.Message); } }
internal void CopyToIsoStorage(string outputAssemblyFullPath) { _addInBinaryFilePath = IsolatedStorageService.CopyFileToStorage(outputAssemblyFullPath); }