c0shea / IdParser

Parses PDF417 AAMVA-compliant driver's licenses and ID cards

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

System DLL included when build

tuanbui918 opened this issue · comments

Hi, I installed the package via Nuget. When I build my project, the build folder now include a lot of the system DLLs. Is there anyway to avoid this?

No. This is a .NET Standard package, so if your project is using .NET Framework for example, it will pull in all of the necessary system dependencies. This isn't a problem and is how .NET Standard was designed; to be xcopy deployable without relying on system dlls that may or may not be GAC'd.

See this for more info.