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
1. Android requires to install additional nuget package `System.Runtime.Loader`.
31
-
2. Pythonnet requres installed python in your environment. To setup runner you have to provide path to python library via `PythonNetRunner.PythonDll` static field wich is synonim to PythonDLL static field of pythonnet library. More on pythonnet specifity you can read in [docs](https://github.com/pythonnet/pythonnet/wiki).
31
+
2. Pythonnet requires installed python in your environment. To setup runner you have to provide path to python library via `PythonNetRunner.PythonDll` static field wich is synonim to PythonDLL static field of pythonnet library. More on pythonnet specifity you can read in [docs](https://github.com/pythonnet/pythonnet/wiki).
32
32
3. You have to install native binaries for you operating system. We recommend these binaries for [ChakraCore](https://www.nuget.org/packages?q=JavaScriptEngineSwitcher.ChakraCore.Native) and these for [ClearScriptV8](https://www.nuget.org/packages?q=Microsoft.ClearScript.V8.Native).
33
+
4. Mono was added as an experimental engine for comparision with Roslyn scripting. It is not thread safe and doesn't provide all features of C#. We don't recommend it for use in production code.
ChakraCore | `string`<->`string`, `bool`<->`boolean`, numeric types ->`number` and `number`->`double` or `int`. You can't marshal JS function to `Action` or `Func` at this moment
99
+
ChakraCore | `string`↔`string`, `bool`↔`boolean`, numeric types →`number` and `number`→`double` or `int`. You can't marshal JS function to `Action` or `Func` at this moment
99
100
ClearScriptV8 | [From .NET to JS](https://microsoft.github.io/ClearScript/Reference/html/M_Microsoft_ClearScript_ScriptEngine_AddHostObject.htm), [From JS to .NET](https://microsoft.github.io/ClearScript/Reference/html/M_Microsoft_ClearScript_ScriptEngine_Evaluate_2.htm)
0 commit comments