コード例 #1
0
ファイル: Program.cs プロジェクト: Antash/sda
            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
ファイル: SDIntegration.cs プロジェクト: Antash/sda
 internal void CopyToIsoStorage(string outputAssemblyFullPath)
 {
     _addInBinaryFilePath = IsolatedStorageService.CopyFileToStorage(outputAssemblyFullPath);
 }