summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2016-12-14Exclude arm64 and i586 architecturesubmit/tizen/20161214.063015accepted/tizen/mobile/20161215.072340JongHeon Choi1-0/+2
Change-Id: I52410a37cdb4dacf5c3789c23d0a0b5211e88a5b
2016-12-14bug-fix : load app ni dll fileCho Woong Suk1-1/+7
Change-Id: Iaf03cfb5893bf5ace992c48cbc96756dbdf3f814
2016-12-14generate ni file for dotnet-launcher for nitool --system commandCho Woong Suk1-2/+2
Change-Id: I6b2f15085b2e63f11951d0ba3e67e271bacfc77e
2016-12-14preload native libraries and pre-create windows to optimize app launching ↵Cho Woong Suk4-2/+84
performance Change-Id: Ia9065c5b2a1470aa3c72675b7bb953bd4bf00dc1 Signed-off-by: Cho Woong Suk <ws77.cho@samsung.com>
2016-12-14Fix Preload DLLpius.lee2-17/+41
Use LoadFromNativeImagePath for ni dlls. Change directory to text file for reading dll lists. Change-Id: Icc2142a80765e4551ef6b85bdb1e1643f5c9404d
2016-12-14Fix unused native image in application.pius.lee3-1/+40
Now launcher use Native image in application's bin, lib directory. --native option is added to dotnet-launcher. It must be use with --standalone. --native launch dll without managed launcher. But it can't launch ni.dll. Change-Id: Icf0ab0e9330ec1e94db5440e517e76710f1d81e1
2016-12-14Fix failed to launch on Exception.pius.lee1-0/+9
Fix Failed to launch on exception happend when unhandled exception handler failed to set. Make catch a exception on failed but it goes to launching normally. If unhandled exception handler is not set, unhandled exception is not print out to dlog but print into journal log. Change-Id: I3679470a2fa8d750cfbb1f47fc705dcf3a69e53b
2016-11-29Add License file and comments to sourcespius.lee23-0/+554
Change-Id: I2d4993dd798ebac2666018289f6359a579e328a0
2016-11-29Change dotnet core directorypius.lee1-1/+1
Change-Id: I174dda342cc9d60f60a08c09d9ee78ba6d35c54d
2016-11-24Fix missed ni.dll in tpa listpius.lee1-1/+8
Change-Id: I42a2bad8ebde5b6c056b2f12a5145ba31eda1d98
2016-11-15Add Unhandled Exception handler for Dlog outputpius.lee1-0/+23
Add temporarily implmentation until become Appdomain on API Change-Id: I6c622d701d94cf3cc29262e066a490f102cfd46b
2016-11-11Add installer plugin and tool for create a NIpius.lee18-59/+736
nitool : native image maker for system dlls and apps libui-application.so : native image creating plugin for app installer Fix bug on getting trusted platform dll. Change-Id: Ie0b18c9fcca2fa0b814d4056d87c2e5d67e4e0e4
2016-10-27Add dotnet.debugger into /usr/share/aulchunseok lee3-0/+8
This patch works after https://review.tizen.org/gerrit/#/c/90185/ has landed. Change-Id: I745699fd59be991dd842daffbefdeaaf557720fc Signed-off-by: chunseok lee <chunseok.lee@samsung.com>
2016-10-21Change managed build to use Nuget package.pius.lee5-57/+54
Change-Id: Ib93ee9123cb406ac3e50aea5eeb51ddbed683d29
2016-10-20Now --standalone mode don't use managed launcherpius.lee5-71/+118
Launched assembly start on native directly on standalone mode. It does not use assembly launcher. Change-Id: I64536ed0bf48a7a9254f51189b53d219b8e4777b
2016-10-19Add README.md for simple explanation.pius.lee1-0/+32
Change-Id: Id90846de24756eb8ebc79117ee282431fb61a36a
2016-10-17Fix missed 0 args on standalonepius.lee3-5/+9
Add argv[0] to args on standalone. Fix Console.WriteLine to Dlog debug print out. Change-Id: Iffc0eed1d0c7a9a538c12f9693b68e58011bea41
2016-10-17Fix App Root on standalone and support direct execpius.lee4-5/+29
Set application root with aul_get_app_root_path() if AUL_APPID is exist. Add dotnet.launcher direct execute in launchpad. Change-Id: I4e45731c791449e3afa4e698b8bbb8ea3bede91f
2016-10-11Add "--version" option for dotnet-launcherpius.lee4-3/+22
Change-Id: I74e371732fd617e753711bcf9f1e9d9ba4c7e6a9
2016-10-10Now options will be pass to managed launcherpius.lee1-3/+17
Commanline options will be pass to managed launcher except --standalone and assembly path. Change-Id: I2e853c23553152fb9291b4d586b50c133a5781ee
2016-10-10Coreclr & Mono Supported launcher and standalonepius.lee20-676/+887
Switch launcher engine with "/etc/.use_mono" file Now can run assembly standalone with "--standalone" option Change-Id: I120053756f4d86107dfe716cf5675389b7a9760d
2016-09-23initialize new launcherpius.lee18-650/+980
Change-Id: I52436781fcc1e00d5e0eace4500b999e4a69ed80
2016-08-31Fix build configuration for Device api dependencypius.lee2-1/+2
Change-Id: I2517445abaa925531cc92e8e7ec73f658b2992dc
2016-08-31Remove ini file and fix argument problem for appfwpius.lee11-128/+174
Change-Id: I0aaae6699ebc1a469e546d89f96a91183d307b91
2016-08-26Modify default managed launcher name in configpius.lee2-3/+4
update version to 0.0.2 modify Tizen.Runtime.dll to Tizen.Runtime.exe in config
2016-08-26Split Native Parts to SharedObject and Executablepius.lee15-239/+755
Make libdnclauncher.so for waiting and launchpad callbacks. Modify dotnet-launcher to execute managed launcher with libcoreclr.so. Managed Launcher read ini file to read dll lists for preloading. Add Targets file building csproj with corefx and device apis.
2016-08-19Add managed launcher partpius.lee18-3/+309
Move native launcher part from src to NativeLauncher Add Tizen.Runtime.dll to Tizen.Runtime Tizen.Runtime can preload and launching another assembly
2016-08-12fix coreclr path and add launching time measure featurepius.lee3-3/+39
2016-08-04Ignore case file extension on search TPA.pius.lee4-82/+123
Now ignore case on searching trusted platform assemblies. Launching path (App path) include "lib" direcotry under application root.
2016-08-01fix unreleased exit and errata in inipius.lee3-27/+20
2016-07-28Make it runnable with dotnet packagespius.lee8-82/+209
add build option for desktop -DNO_TIZEN=1 add config file path build option -DLAUNCHER_PATH=dotnet-launcher.ini fix bugs in default TPL paths
2016-07-28fix base config file depends on other dotnet directoriespius.lee1-3/+3
2016-07-28add manifest for smack labelpius.lee1-0/+5
2016-07-25Add Launcher and Waiter for dotnet-launcherpius.lee12-0/+881
2016-07-25initialize commitpius.lee0-0/+0