示例#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);
                }
            }
示例#2
0
 public void CopyToIsoStorage(string outputAssemblyFullPath)
 {
     addInBinaryFilePath = IsolatedStorageService.CopyFileToStorage(outputAssemblyFullPath);
 }