Microsoft.Xrm.Tooling.Connector.CrmServiceClient con = new CrmServiceClient(connString);
ExportSolutionRequest exportSolutionRequest = new ExportSolutionRequest();
exportSolutionRequest.Managed = true;
exportSolutionRequest.TargetVersion = "8.2";
exportSolutionRequest.SolutionName = "Solutionname";
ExportSolutionResponse exportSolutionResponse = (ExportSolutionResponse)con.Execute(exportSolutionRequest);
this code was working fine, from yesterday it is stopped working.
I tried this logic on other CRM it is working fine.
can anyone help me?
*This post is locked for comments