Vahid Nasiri

Results 39 comments of Vahid Nasiri

> symlink /lib64/libdl.so.2 to /lib64/libdl.so [More info](https://github.com/dotnet/corefx/issues/25102)

Revert to v1.5.2 which uses `CoreCompat.System.Drawing.v2` for now. v1.5.4 uses Microsoft's `System.Drawing.Common` library. It's in the preview phase right now. ``` Install-Package EPPlus.Core -Version 1.5.2 ``` Also you need to...

For CentOS 7 and above: ``` yum install autoconf automake libtool yum install freetype-devel fontconfig libXft-devel yum install libjpeg-turbo-devel libpng-devel giflib-devel libtiff-devel libexif-devel yum install glib2-devel cairo-devel git clone https://github.com/mono/libgdiplus...

If you are using 1.5.4, update your `System.Drawing.Common` dependency. This official package has 3 updates now: https://www.nuget.org/packages/System.Drawing.Common/

About `Unable to load DLL 'libdl'` error in containers, [they are suggesting](https://github.com/dotnet/corefx/issues/25102): - Install `libgdiplus` **and** `libc6-dev` in your container (If you're on Ubuntu or Debian, you can try to...

Those are not dependencies. It's called multi-targeting. You can create a NuGet package which supports a lot of different target frameworks and at the end, NuGet installer knows which one...

v1.5.4 uses the official [System.Drawing.Common](https://www.nuget.org/packages/System.Drawing.Common/) for .NET Core 2.0. Give it a try. ``` dotnet add package EPPlus.Core --version 1.5.4 ```

If you are using 1.5.4, update your `System.Drawing.Common` dependency. This official package has 3 updates now: https://www.nuget.org/packages/System.Drawing.Common/

- Sample1 and 2? [Sample 2](https://github.com/VahidN/EPPlus.Core/blob/master/src/EPPlus.Core.FunctionalTests/SampleApp/Sample02.cs) doesn't produce any files. - Usually `Removed Records: Named range from /xl/workbook.xml part (Workbook)` means you have badly named worksheets. [more info](https://stackoverflow.com/questions/18539267/xlsx-error-removed-records-named-range-from-xl-workbook-xml-part-when-tried/44416204#44416204)

- You should start using the original library. [It has been updated to support .NET Core too](https://github.com/VahidN/EPPlus.Core/issues/37). - [You will need](https://developer.xamarin.com/api/type/System.Drawing.Color/) `OpenTK-1.0.dll` for `System.Drawing` to work in Android and iOS...