I made an application which exports an Excel worksheet. My friend told me that he wants to use it. The problem is, it uses EPPlus which has a LOT of dependencies. How do I send him the application without including all of the nasty DLLs (totaling over 180 MB)?
P.S. Costura.Fody does not work. It only packaged EPPlus.dll, but it didn't include its dependencies. I have also tried the dotnet publish
with PublishSingleFile
and IncludeNativeLibrariesInSingleFile
set to true, but it still outputted some leftover DLLs.
Also, I am using .NET 5.