- Notifications
You must be signed in to change notification settings - Fork749
-
I have an add-in into a larger application that runs python scripts, using python.NET. I have noticed that if I modify only the python script I am running everything is ok. I assume there is a class cache somewhere that causes this behavior. |
BetaWas this translation helpful?Give feedback.
All reactions
This is not a Python.NET but a .NET problem. You will need to use AppDomains in .NET Framework or Mono andAssemblyLoadContext in .NET Core (or 5-6) to be able to reload DLLs.
Replies: 1 comment
-
This is not a Python.NET but a .NET problem. You will need to use AppDomains in .NET Framework or Mono andAssemblyLoadContext in .NET Core (or 5-6) to be able to reload DLLs. |
BetaWas this translation helpful?Give feedback.