I’m wondering if anyone knows if Rhino.Inside is compatible with .Net 6.0 yet.
I did the following, but the tests no longer run after the changes I made.
- Used VS2022 to upgrade the Rhino.Inside project to .Net 6.0
- Used VS2022 to upgrade the RhinoCommonUnitTesting (GitHub - tmakin/RhinoCommonUnitTesting: Example of unit testing RhinoCommon from within the Visual Studio test runner on windows) project to .Net 6.0
- Updated the RhinoCommonUnitTesting project to depend on the upgraded Rhino.Inside
The XUnit tests no longer run successfully, failing at the point where the test fixture attempts to create a new instance of RhinoCore.
_rhinoCore = new Rhino.Runtime.InProcess.RhinoCore(null,
Rhino.Runtime.InProcess.WindowStyle.NoWindow);