Ejemplo n.º 1
0
            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);
                }
            }
Ejemplo n.º 2
0
 internal void CopyToIsoStorage(string outputAssemblyFullPath)
 {
     _addInBinaryFilePath = IsolatedStorageService.CopyFileToStorage(outputAssemblyFullPath);
 }