Rhinocommon.dll

Hello,

We were currently developing our plugin using version 8.18.
When we updated to 8.23, the rhinocommon.dll gets copied into the build folder of the plugin inspite of setting CopyLocal Property to False.

To fix this we have currently written a post-build event to remove the dll.
But earlier this copy never occured.

Any insights on this?

@dale @stevebaer

Hi @maya_puundale,

I am unable to reproduce this with a newly created plug-in project.

Here is the package reference in the project’s .csproj file:

<ItemGroup>
  <PackageReference Include="RhinoCommon" Version="8.23.25251.13001" ExcludeAssets="runtime" />
</ItemGroup>

– Dale

Thank you.

It did the job.