示例#1
0
 public static void ExportPriFile()
 {
     EnvDTE.DTE dte = Connect._applicationObject;
     if (dte != null)
     {
         ProjectExporter proFileExporter = new ProjectExporter(dte);
         proFileExporter.ExportToPriFile(HelperFunctions.GetSelectedQtProject
             (dte));
     }
 }
示例#2
0
 public static void ExportProFile()
 {
     if (Connect._applicationObject != null)
     {
         ProjectExporter proFileExporter = new ProjectExporter(Connect._applicationObject);
         proFileExporter.ExportToProFile();
     }
 }