remove dependency from multiByteToWideChar
[platform/core/dotnet/launcher.git] / README.md
index fc2c991..1ac01f9 100644 (file)
--- a/README.md
+++ b/README.md
@@ -14,19 +14,27 @@ dotnet-launcher [options...] [args...]
 * --standalone [assembly path]  
    Run assembly with the current user environment.
 
+#### environment
+
+* DOTNET_LAUNCHER_INJECT  
+   A list of additional libraries to be loaded with `dlopen()` and call to
+   `int dotnet_launcher_inject()` initialization hook. If hook returns non-zero
+   status initialization will be failed. The items of the list can be separated
+   by spaces or colons, and there is no support for escaping either separator.
+
 ----
 
 ### Anatomy
 
 ```
-+----------------------------------------------------+
-| Tizen.Runtime.Mono.dll | Tizen.Runtime.Coreclr.dll |
-+-----------+------------------------+---------------+
-|           | libmono.so |           | libcoreclr.so |
-|           +------------+           +---------------+
-| Mono Native Launcher   |   CoreClr Native Launcher |
-+------------------------+---------------------------+
-|                  Dotnet launcher                   |
-+----------------------------------------------------+
+-----------------------------
+|     Tizen.Runtime.dll     |
+------------+---------------+
+|           | libcoreclr.so |
+|           +---------------+
+|  CoreClr Native Launcher  |
++---------------------------+
+|      Dotnet launcher      |
++---------------------------+
 
 ```