SIL.FieldWorks.FieldWorks.ArchiveProjectWithRamp C# (CSharp) Метод

ArchiveProjectWithRamp() статический приватный Метод

Archive selected project files using RAMP
static private ArchiveProjectWithRamp ( Form dialogOwner, FwApp fwApp ) : List
dialogOwner System.Windows.Forms.Form
fwApp SIL.FieldWorks.Common.Framework.FwApp
Результат List
		internal static List<string> ArchiveProjectWithRamp(Form dialogOwner, FwApp fwApp)
		{
			using (var dlg = new ArchiveWithRamp(Cache,
				GetCommandLineAbbrevForAppName(fwApp.ApplicationName), fwApp))
			{
				if (dlg.ShowDialog(dialogOwner) == DialogResult.OK)
				{
					return dlg.FilesToArchive;
				}
			}
			return null;
		}
		#endregion
FieldWorks