Bug fix for multiple parameters of nitool
[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 ----
18
19 ### Anatomy
20
21 ```
22 +----------------------------------------------------+
23 | Tizen.Runtime.Mono.dll | Tizen.Runtime.Coreclr.dll |
24 +-----------+------------------------+---------------+
25 |           | libmono.so |           | libcoreclr.so |
26 |           +------------+           +---------------+
27 | Mono Native Launcher   |   CoreClr Native Launcher |
28 +------------------------+---------------------------+
29 |                  Dotnet launcher                   |
30 +----------------------------------------------------+
31
32 ```