Please begin testing your releases in projects where they are all referenced.
I’ve run into many instances where multiple products don’t like to be referenced in the same project.
For instance I get the following error using Aspose.Imaging and Aspose.CAD in the same project:
The type ‘Image’ exists in both ‘Aspose.CAD, Version=20.8.0.0, Culture=neutral, PublicKeyToken=716fcc553a201e56’ and ‘Aspose.Imaging, Version=20.8.0.0, Culture=neutral, PublicKeyToken=716fcc553a201e56’|
I have both these statements in my code…
if (!Aspose.Imaging.Image.CanLoad(FilePath))
throw new Exception(Properties.Resources.ImageFileError);
and
Aspose.CAD.Image CADDoc = Aspose.CAD.Image.Load(FilePath);