Closed fdipuma closed 7 years ago
have you looked at the official nuget package? I downloaded the official version and the folder with netstandard15 contains a PDB, DLL and XML file.
Yes I have. The assembly (.dll) contains only EntryPointNotFoundException
and SerialPort
classes. You can verify it by using any assembly disassembler/explorer (dotPeek/ILSpy). Also you may notice that the assembly does not contain any of the other classes because the dll file is just 5kB and the .xml file contains references to only those classes I mentioned earlier.
This is now merged in 2.1.1. I've just pushed package version 2.1.1 to NuGet if you'd like to test.
Adding this library via NuGet to a .NET Core / .NET Standard project result in an empty assembly (without any of the project classes).
This is caused by wrong import paths in the project.json file:
"../code/*.cs",
Relative to the project.json path
"../code
folder does not exist.Removed the
/code
part in the pull request.