Rhino 8 Plugin does not copy (nuget) dlls to net7.0

Hi there,

I got a question when building a plugin for Rhino8.
When I use nuget packages and complie the dllls are copied in the net48 folder but not to the net7.0 folder.
As far as I undestand Rhino8 is using the net7.0 folder, right?
Is it a setting when compiling then or am I completely on the wrong track?

Thanks,
T.

Hi,
You could try the suggestions here.
For me adding

<PropertyGroup>
    <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>

to the csproj file solved this. Maybe there’s a better way as well.