Create directories for coreclr / corefx
[platform/core/dotnet/launcher.git] / README.md
1 # Launcher for .NET Application
2
3 ### Usage
4
5 ```
6 dotnet-launcher [options...] [args...]
7 ```
8
9 #### options
10
11 * --version  
12    print version and exit.
13
14 * --standalone [assembly path]  
15    Run assembly with the current user environment.
16
17 #### environment
18
19 * DOTNET_LAUNCHER_INJECT  
20    A list of additional libraries to be loaded with `dlopen()` and call to
21    `int dotnet_launcher_inject()` initialization hook. If hook returns non-zero
22    status initialization will be failed. The items of the list can be separated
23    by spaces or colons, and there is no support for escaping either separator.
24
25 ----
26
27 ### Anatomy
28
29 ```
30 -----------------------------
31 |     Tizen.Runtime.dll     |
32 ------------+---------------+
33 |           | libcoreclr.so |
34 |           +---------------+
35 |  CoreClr Native Launcher  |
36 +---------------------------+
37 |      Dotnet launcher      |
38 +---------------------------+
39
40 ```