clr-loader
clr-loader copied to clipboard
Loader for different .NET runtimes
Example project available in previous [pythonnet issue](https://github.com/pythonnet/pythonnet/issues/1634).
With the update to delay the load of the runtime from 0.25 to 0.26 a deadlock occurs with following code ```python import pythonnet pythonnet.set_runtime("coreclr") pythonnet.set_runtime("coreclr") ``` This is explicit a...
When the .Net code is launched from pythonnet, the `TargetFrameworkName` property of the `AppDomain.SetupInformation` is not configured / provided. Here is what AppDomain setup information returns from the normally executed...
The code that launches a non-root domain expects to use the base directory of the original root domain - which is essentially the location of python.exe. The suggestion is to...
### Environment - Pythonnet version: 3.0.1 - Python version: 3.10 - Operating System: Windows Server 2019 - .NET Runtime: .Net Framework 4.8 ### Details - Describe what you were trying...
When I was trying to setup configuration file for the py script I am running to call my .Net assembly, I've got this error: ``` Traceback (most recent call last):...
### Environment - Pythonnet version: 3.0.1 - Python version: 3.7.1 - Operating System: Windows 10 - .NET Runtime: .NET Framework 4.8 is latest version installed. ### Details - Describe what...
See [Mono embedding guide](https://www.mono-project.com/docs/advanced/embedding/) - The mono logger API now exposes only the ability to set the trace level and trace mask with the two functions: `void mono_trace_set_mask_string (const char...
The problem with `hostfxr_initialize_for_runtime_config` is that the trusted platform assemblies (TPA) will only contain that version's assemblies. If you reference a newer version of a runtime's assembly, the assembly load...