-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For Clr/C++ and C# mix-programming #58
Comments
|
This wrong is "Unhandled exception: System. I0. FileNotFound Exception: Could not load file or assembly 'System. Runtime, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the specified file." |
How exactly are you starting your process? The new version uses .NET 6.0 and therefore might need a change in how you start the application. |
Yea, you need to use the /clr:netcore setting, and then (in one of the other dropdown boxes) select .NET 6.0. You might need to close and reopen the dialog to get the correct list of options there. About your other questions: We don't know. We need to wait until the new CPUs come out and then add the new family IDs. |
Does C++/CLI even exist for .NET Core? |
@mcendu Yes, C++/CLI support is still available in .NET 6.0 and above. It looks like it's not getting that much attention, so things may get a bit ugly (e.g. referencing other C# libraries may need a bit of trickery), but if you just need it as a wrapper for an unmanaged library, it still works. |
No description provided.
The text was updated successfully, but these errors were encountered: