Exemplo n.º 1
0
 /// <summary>
 /// Checks if the required library version is equal with the current library version.
 /// </summary>
 private static void CheckLibrary()
 {
     if (!LibraryManager.CheckLibraryVersion())
     {
         MessageBox.Show(AppStrings.AppLibVersionMissmatch, Properties.Resources.AppName, MessageBoxButtons.OK, MessageBoxIcon.Error);
         Environment.Exit(ReturnCodes.CoreLibVersionMissmatch);
     }
 }