I have some old code from Visual Basic Powerpack which I want to use in some C# projects (Framework and Core).
I was able to install Microsoft.VisualBasic 10.3.0 using Nuget
However Nuget does not have an option to install the Powerpack
I get
Error CS0246 The type or namespace name 'ShapeContainer' could not be found (are you missing a using directive or an assembly reference?)
Both projects reference a package Microsoft.VisualBasic V10.3.0
Both projects are C#
I notice that the .Net Core project references a Framework Microsoft.WindowsDesktop.App.WindowsForms
Is there a way I can get the code working in the C# projects?