Duplicate types in Magick.NET.Core.dll and Magick.NET-Q8-AnyCPU.dll
See original GitHub issueI noticed that there are some duplicate types/members since you separated the DLLs. Some of us may like to merge DLLs to get a single deployable DLL and these duplicates cause conflicts (e.g. when using ILRepack).
For example, ImageMagick.IMagickImageExtensions
(static class for extension methods) is found in Magick.NET.Core.dll and Magick.NET-Q8-AnyCPU.dll.
Here are other duplicates I noticed:
ImageMagick.ByteConverter
ImageMagick.FileHelper
ImageMagick.Bytes
ImageMagick.EnumHelper
ImageMagick.Throw
ImageMagick.TypeHelper
ImageMagick.ValidatedNotNullAttribute
Maybe the ones in Magick.NET.Core.dll could be used or extended when necessary?
Issue Analytics
- State:
- Created 3 years ago
- Comments:7 (5 by maintainers)
Top Results From Across the Web
Magick.NET does not copy libraries to the correct location ...
Magick.NET does not copy libraries to the correct location on macOS (or Linux). When running I get the following error: Magick.NET-Q8-AnyCPU: ...
Read more >Could not load file or assembly 'Magick.NET-x86.DLL' or ...
I have used Magick.NET which is a .NET wrapper for ImageMagick, and it throws the above error on a client machine. It works...
Read more >Magick.net crashes but doesn't throw any errors in Windows
I am building the program in VS2013 in Windows 7 64bit on a VMware machine. Runs fine. I'm able to loop through hundreds...
Read more >Magick.NET.Core 13.2.0
ImageMagick is a powerful image manipulation library that supports over 100 major file formats (not including sub-formats). With Magick.NET you can use ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
The new release has just been published @catester. Are the duplicate names now gone?
This appears to be a mistake in my code. There is an old “quantum” check that was copied to the Core library and should not be there. I think I will need to rename the
SetPixels
andSetArea
methods that have a non quantum overload. Do you have any suggestions for the method names?