You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AFAIK SketchUpNET only works on Windows right? You are using a vcxproj project, that has C++ sources.
This articles discusses how to port a C++ project to .NET Core: https://docs.microsoft.com/en-us/dotnet/core/porting/cpp-cli. However, it notes that C++/CLI support for .NET Core is Windows only. Support for macOS or Linux isn't probably to come (for a long time).
They recommend using platform invoke to support .NET core. What's your view on this? Do you have any plans on making it work for .NET Core (and thereby Linux and macOS)?
The text was updated successfully, but these errors were encountered:
Just checked this one again, currently there is no planned support of C++/CLI for linux mac in any near future. One option would be to get rid of C++/CLI and use Pinvoke instead. Would be a larger rewrite but could be worth it. I'd first try a simple implementation, eg. reading one vertex to see if the SketchUp C API works in Linux.
AFAIK SketchUpNET only works on Windows right? You are using a vcxproj project, that has C++ sources.
This articles discusses how to port a C++ project to .NET Core: https://docs.microsoft.com/en-us/dotnet/core/porting/cpp-cli. However, it notes that C++/CLI support for .NET Core is Windows only. Support for macOS or Linux isn't probably to come (for a long time).
They recommend using platform invoke to support .NET core. What's your view on this? Do you have any plans on making it work for .NET Core (and thereby Linux and macOS)?
The text was updated successfully, but these errors were encountered: