michielpost / Q42.HueApi

C# helper library to talk to the Philips Hue bridge
MIT License
411 stars 114 forks source link

Problem with NuGet package HueApi 0.4.42 #274

Closed spudwebb closed 2 years ago

spudwebb commented 2 years ago

If I download the NuGet package: https://www.nuget.org/packages/HueApi/0.4.42, the HueApi.dll located in the lib/net461 directory seems to be a .NET 6 assembly rather than a .NET 4.6.1 assembly.

spudwebb commented 2 years ago

also if I compare the file sizes of the dlls between version 0.3.42 and 0.4.42, 0.4.42 are a lot smaller, so there is definitely something strange with the 0.4.42 package

michielpost commented 2 years ago

Thanks I'll have a look. I had to update the GitHub build and publish action because the old one wasn't working anymore. Probably something gone wrong there.

michielpost commented 2 years ago

I made some changes to the build, it should be fixed in version 0.5.42. Can you try it? The file size difference is because the DLL no longer contains embedded PDB/debug files. A proper snupkg file is published for debug sources.

spudwebb commented 2 years ago

It works now with the 0.5.42 version Thanks for the quick fix.