private void UpdatePluginAsync(object info)
		{
			PluginInfo pinfo=(PluginInfo)info;
			this.Invoke(new CustomDelegates.ChangeButtonColorDelegate(ChangeButtonColor), pinfo.Id,Color.Yellow);
			try
			{
				CrmHelper crm2 = new CrmHelper();
				crm2.UpdatePlugin(pinfo,isRelease);
				this.Invoke(new CustomDelegates.ChangeButtonColorDelegate(ChangeButtonColor), pinfo.Id, Color.Green);
			}
			catch
			{
				this.Invoke(new CustomDelegates.ChangeButtonColorDelegate(ChangeButtonColor), pinfo.Id, Color.Red);
			}
			
		}