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
With .Net 5, the .Net framework runtime will be replaced with .Net Core, As such, I will need to investigate what changes, If any, are required to add support.
A .Net Core build was done for done when investigation solutions for the Linux, so some work has been partilly completed.
Invistigate missing managed API's and workaround if needed
.NET Core does not have all the APIs of .NET Framework, however, This project was only effected by the lack of Winforms. This should be resolved as of .NET 3.0
A C++/CLI wrapper might be possible, I've had issues surrounding plugin reloads as the wrapper and main plugin would be different assemblies, leading to "assembly hell" if multiple version of the same plugin was present. This was ogrinaly solved with the use of AppDomanins (before switiching to DllExport) but that technology is now absent.
A C++ hosting wrapper (as was tested for Linux) might be possible if the COM api provides more control over the runtime vs the linux api (which was lacking). Plugin reloads will lickly still be a hard problem to fully solve.
With .Net 5, the .Net framework runtime will be replaced with .Net Core, As such, I will need to investigate what changes, If any, are required to add support.
A .Net Core build was done for done when investigation solutions for the Linux, so some work has been partilly completed.
Invistigate missing managed API's and workaround if needed
.NET Core does not have all the APIs of .NET Framework, however, This project was only effected by the lack of Winforms. This should be resolved as of .NET 3.0
Native Exports
Core 3.0 brings support for C++/CLI, so the required IL added by DllExport should be supported)
Runtime/PCX2 Interaction
While the .Net Framework had almost no issues running within PCSX2, CoreCLR and Mono have both presented issues;
The text was updated successfully, but these errors were encountered: