upload nlp csharp library source and demo code 83/179983/8
authorxiaochn.wang <xiaochn.wang@samsung.com>
Thu, 24 May 2018 01:07:46 +0000 (09:07 +0800)
committerJihoon Kim <jihoon48.kim@samsung.com>
Wed, 20 Jun 2018 04:50:34 +0000 (04:50 +0000)
Change-Id: Iac2b03477432ebcf820cacd89ec2968097a3d132
Signed-off-by: xiaochn.wang <xiaochn.wang@samsung.com>
18 files changed:
nltk_csharp_library/Nltk_Common_Library/InteropPythonLibrary.cs [new file with mode: 0644]
nltk_csharp_library/Nltk_Common_Library/Nltk_Common_Library.cs [new file with mode: 0644]
nltk_csharp_library/Nltk_Common_Library/Nltk_Common_Library.csproj [new file with mode: 0644]
nltk_csharp_library/Nltk_Common_Library/obj/Nltk_Common_Library.csproj.nuget.cache [new file with mode: 0644]
nltk_csharp_library/Nltk_Common_Library/obj/Nltk_Common_Library.csproj.nuget.g.props [new file with mode: 0644]
nltk_csharp_library/Nltk_Common_Library/obj/Nltk_Common_Library.csproj.nuget.g.targets [new file with mode: 0644]
nltk_csharp_library/Nltk_Common_Library/obj/project.assets.json [new file with mode: 0644]
nltk_csharp_library/Nltk_Csharp_Library.sln [new file with mode: 0644]
nltk_csharp_library/Nltk_Demo_App/Nltk_Demo_App.csproj [new file with mode: 0644]
nltk_csharp_library/Nltk_Demo_App/Nltk_Demo_App.csproj.user [new file with mode: 0644]
nltk_csharp_library/Nltk_Demo_App/Nltk_Demo_App_App.cs [new file with mode: 0644]
nltk_csharp_library/Nltk_Demo_App/obj/Nltk_Demo_App.csproj.nuget.cache [new file with mode: 0644]
nltk_csharp_library/Nltk_Demo_App/obj/Nltk_Demo_App.csproj.nuget.g.props [new file with mode: 0644]
nltk_csharp_library/Nltk_Demo_App/obj/Nltk_Demo_App.csproj.nuget.g.targets [new file with mode: 0644]
nltk_csharp_library/Nltk_Demo_App/obj/project.assets.json [new file with mode: 0644]
nltk_csharp_library/Nltk_Demo_App/shared/res/Nltk_Demo_App.png [new file with mode: 0644]
nltk_csharp_library/Nltk_Demo_App/tizen-manifest.xml [new file with mode: 0644]
nltk_csharp_library/nltk_common_library.csproj [new file with mode: 0644]

diff --git a/nltk_csharp_library/Nltk_Common_Library/InteropPythonLibrary.cs b/nltk_csharp_library/Nltk_Common_Library/InteropPythonLibrary.cs
new file mode 100644 (file)
index 0000000..4ec2cfc
--- /dev/null
@@ -0,0 +1,51 @@
+using System;\r
+using System.Collections.Generic;\r
+using System.Text;\r
+using System.Runtime.InteropServices;\r
+\r
+internal static partial class InteropPythonLibrary\r
+{\r
+\r
+    public const string NLTKLIB = "/usr/lib/libnltk_native_library.so";\r
+\r
+    internal static partial class MyLib\r
+    {\r
+        [DllImport(NLTKLIB, EntryPoint = "initialize", CallingConvention = CallingConvention.Cdecl)]\r
+        public static extern void initialize();\r
+\r
+        [DllImport(NLTKLIB, EntryPoint = "finalize", CallingConvention = CallingConvention.Cdecl)]\r
+        public static extern void finalize();\r
+\r
+        [DllImport(NLTKLIB, EntryPoint = "getModule", CallingConvention = CallingConvention.Cdecl)]\r
+        public static extern IntPtr getModule(string m_name);\r
+\r
+        [DllImport(NLTKLIB, EntryPoint = "getFunctionHandle", CallingConvention = CallingConvention.Cdecl)]\r
+        public static extern IntPtr getFunctionHandle(IntPtr hfunc, string f_name);\r
+\r
+        [DllImport(NLTKLIB, EntryPoint = "callFunctionWithArgs", CallingConvention = CallingConvention.Cdecl)]\r
+        public static extern IntPtr callFunctionWithArgs(IntPtr hfunc, IntPtr args);\r
+\r
+        [DllImport(NLTKLIB, EntryPoint = "getSizeFromList", CallingConvention = CallingConvention.Cdecl)]\r
+        public static extern int getSizeFromList(IntPtr obj);\r
+\r
+        [DllImport(NLTKLIB, EntryPoint = "getSizeFromTuple", CallingConvention = CallingConvention.Cdecl)]\r
+        public static extern int getSizeFromTuple(IntPtr obj);\r
+\r
+        [DllImport(NLTKLIB, EntryPoint = "makeArgsFromPyObject", CallingConvention = CallingConvention.Cdecl)]\r
+        public static extern IntPtr makeArgsFromPyObject(IntPtr obj);\r
+\r
+        [DllImport(NLTKLIB, EntryPoint = "makeArgsFromString", CallingConvention = CallingConvention.Cdecl)]\r
+        public static extern IntPtr makeArgsFromString(string info);\r
+\r
+        [DllImport(NLTKLIB, EntryPoint = "getElementFromListByIndex", CallingConvention = CallingConvention.Cdecl)]\r
+        public static extern IntPtr getElementFromListByIndex(IntPtr obj, int idx);\r
+\r
+        [DllImport(NLTKLIB, EntryPoint = "getElementFromTupleByIndex", CallingConvention = CallingConvention.Cdecl)]\r
+        public static extern IntPtr getElementFromTupleByIndex(IntPtr obj, int idx);\r
+\r
+        [DllImport(NLTKLIB, EntryPoint = "getStringFromElement", CallingConvention = CallingConvention.Cdecl)]\r
+        public static extern string getStringFromElement(IntPtr obj);\r
+\r
+    }\r
+\r
+}\r
diff --git a/nltk_csharp_library/Nltk_Common_Library/Nltk_Common_Library.cs b/nltk_csharp_library/Nltk_Common_Library/Nltk_Common_Library.cs
new file mode 100644 (file)
index 0000000..e209690
--- /dev/null
@@ -0,0 +1,106 @@
+using System;\r
+using System.Collections.Generic;\r
+using System.Linq;\r
+using System.Text;\r
+using System.Collections;\r
+\r
+namespace Nltk_Common_Library\r
+{\r
+    public class NLTK_Class\r
+    {\r
+        public static string lemmatize(string str)\r
+        {\r
+            IntPtr nltk_stem_module = InteropPythonLibrary.MyLib.getModule("nltk.stem");\r
+            IntPtr wordnet_func = InteropPythonLibrary.MyLib.getFunctionHandle(nltk_stem_module, "WordNetLemmatizer");\r
+            IntPtr arg = InteropPythonLibrary.MyLib.makeArgsFromString(str);\r
+            IntPtr lemma_obj = InteropPythonLibrary.MyLib.callFunctionWithArgs(wordnet_func, IntPtr.Zero);\r
+            IntPtr lemmatize_func = InteropPythonLibrary.MyLib.getFunctionHandle(lemma_obj, "lemmatize");\r
+            IntPtr lemma_result = InteropPythonLibrary.MyLib.callFunctionWithArgs(lemmatize_func, arg);\r
+            return InteropPythonLibrary.MyLib.getStringFromElement(lemma_result);\r
+        }\r
+\r
+        //example call for word_tokenize of nltk , and return an element of list\r
+        public static ArrayList word_tokenize(string str)\r
+        {\r
+            IntPtr nltk_module = InteropPythonLibrary.MyLib.getModule("nltk");\r
+            IntPtr tokenize_func = InteropPythonLibrary.MyLib.getFunctionHandle(nltk_module, "word_tokenize");\r
+            IntPtr arg = InteropPythonLibrary.MyLib.makeArgsFromString(str);\r
+            IntPtr token_result = InteropPythonLibrary.MyLib.callFunctionWithArgs(tokenize_func, arg);\r
+            ArrayList al = new ArrayList();\r
+            for (int i = 0; i < InteropPythonLibrary.MyLib.getSizeFromList(token_result); i++)\r
+            {\r
+                al.Add(InteropPythonLibrary.MyLib.getStringFromElement(InteropPythonLibrary.MyLib.getElementFromListByIndex(token_result, i)));\r
+            }\r
+            return al;\r
+        }\r
+\r
+        public static void init()\r
+        {\r
+            InteropPythonLibrary.MyLib.initialize();\r
+        }\r
+\r
+        public static void release()\r
+        {\r
+            InteropPythonLibrary.MyLib.finalize();\r
+        }\r
+\r
+        //example call for pos_tag of nltk , and return an element of tuple under an element of list\r
+        public static ArrayList pos_tag(string str)\r
+        {\r
+            IntPtr nltk_module = InteropPythonLibrary.MyLib.getModule("nltk");\r
+            IntPtr tokenize_func = InteropPythonLibrary.MyLib.getFunctionHandle(nltk_module, "word_tokenize");\r
+            IntPtr arg = InteropPythonLibrary.MyLib.makeArgsFromString(str);\r
+            IntPtr token_result = InteropPythonLibrary.MyLib.callFunctionWithArgs(tokenize_func, arg);\r
+            IntPtr postag_func = InteropPythonLibrary.MyLib.getFunctionHandle(nltk_module, "pos_tag");\r
+            arg = InteropPythonLibrary.MyLib.makeArgsFromPyObject(token_result);\r
+            IntPtr postag_result = InteropPythonLibrary.MyLib.callFunctionWithArgs(postag_func, arg);\r
+            ArrayList al = new ArrayList();\r
+            for (int i = 0; i < InteropPythonLibrary.MyLib.getSizeFromList(postag_result); i++)\r
+            {\r
+                IntPtr pos_elm_tuple = InteropPythonLibrary.MyLib.getElementFromListByIndex(postag_result, i);\r
+                string[] str_pair = new string[2] {null,null};\r
+                str_pair[0] = InteropPythonLibrary.MyLib.getStringFromElement(InteropPythonLibrary.MyLib.getElementFromTupleByIndex(pos_elm_tuple, 0));\r
+                str_pair[1] = InteropPythonLibrary.MyLib.getStringFromElement(InteropPythonLibrary.MyLib.getElementFromTupleByIndex(pos_elm_tuple, 1));\r
+                al.Add(str_pair);\r
+            }\r
+            return al;\r
+        }\r
+\r
+        //example call for ne_chunk of nltk , but because the ne_chunk return Tree struct ,so far ,we only convert it to List ,and return an element of tuple under an element of list\r
+        public static ArrayList ne_chunk(string str)\r
+        {\r
+            IntPtr nltk_module = InteropPythonLibrary.MyLib.getModule("nltk");\r
+            IntPtr tokenize_func = InteropPythonLibrary.MyLib.getFunctionHandle(nltk_module, "word_tokenize");\r
+            IntPtr arg = InteropPythonLibrary.MyLib.makeArgsFromString(str);\r
+            IntPtr token_result = InteropPythonLibrary.MyLib.callFunctionWithArgs(tokenize_func, arg);\r
+            IntPtr postag_func = InteropPythonLibrary.MyLib.getFunctionHandle(nltk_module, "pos_tag");\r
+            arg = InteropPythonLibrary.MyLib.makeArgsFromPyObject(token_result);\r
+            IntPtr postag_result = InteropPythonLibrary.MyLib.callFunctionWithArgs(postag_func, arg);\r
+            IntPtr ne_func = InteropPythonLibrary.MyLib.getFunctionHandle(nltk_module, "ne_chunk");\r
+            arg = InteropPythonLibrary.MyLib.makeArgsFromPyObject(postag_result);\r
+            IntPtr ne_result = InteropPythonLibrary.MyLib.callFunctionWithArgs(ne_func, arg);\r
+            IntPtr leaves_func = InteropPythonLibrary.MyLib.getFunctionHandle(ne_result, "leaves");\r
+            IntPtr leaves_result = InteropPythonLibrary.MyLib.callFunctionWithArgs(leaves_func, IntPtr.Zero);\r
+            ArrayList al = new ArrayList();\r
+            for (int i = 0; i < InteropPythonLibrary.MyLib.getSizeFromList(postag_result); i++)\r
+            {\r
+                IntPtr pos_elm_tuple = InteropPythonLibrary.MyLib.getElementFromListByIndex(leaves_result, i);\r
+                string[] str_pair = new string[2] { null, null };\r
+                str_pair[0] = InteropPythonLibrary.MyLib.getStringFromElement(InteropPythonLibrary.MyLib.getElementFromTupleByIndex(pos_elm_tuple, 0));\r
+                str_pair[1] = InteropPythonLibrary.MyLib.getStringFromElement(InteropPythonLibrary.MyLib.getElementFromTupleByIndex(pos_elm_tuple, 1));\r
+                al.Add(two);\r
+            }\r
+            return al;\r
+        }\r
+\r
+        //example call for langdetect of langdetect , and return a string about language\r
+        public static string lang_detect(string str)\r
+        {\r
+            IntPtr lang_module = InteropPythonLibrary.MyLib.getModule("langdetect");\r
+            IntPtr detect_func = InteropPythonLibrary.MyLib.getFunctionHandle(lang_module, "detect");\r
+            IntPtr arg = InteropPythonLibrary.MyLib.makeArgsFromString(str);\r
+            IntPtr detect_result = InteropPythonLibrary.MyLib.callFunctionWithArgs(detect_func, arg);\r
+            return InteropPythonLibrary.MyLib.getStringFromElement(detect_result);\r
+        }\r
+    }\r
+}\r
diff --git a/nltk_csharp_library/Nltk_Common_Library/Nltk_Common_Library.csproj b/nltk_csharp_library/Nltk_Common_Library/Nltk_Common_Library.csproj
new file mode 100644 (file)
index 0000000..769753b
--- /dev/null
@@ -0,0 +1,24 @@
+<Project Sdk="Microsoft.NET.Sdk">\r
+\r
+  <!-- Property Group for Tizen Project -->\r
+  <PropertyGroup>\r
+    <TargetFramework>netstandard2.0</TargetFramework>\r
+    <TizenCreateTpkOnBuild>false</TizenCreateTpkOnBuild>\r
+  </PropertyGroup>\r
+\r
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">\r
+    <DebugType>portable</DebugType>\r
+  </PropertyGroup>\r
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">\r
+    <DebugType>None</DebugType>\r
+  </PropertyGroup>\r
+\r
+  <!-- Include Nuget Package for Tizen Project building -->\r
+  <ItemGroup>\r
+    <PackageReference Include="Tizen.NET" Version="4.0.0">\r
+      <ExcludeAssets>Runtime</ExcludeAssets>\r
+    </PackageReference>\r
+    <PackageReference Include="Tizen.NET.Sdk" Version="1.0.1" />\r
+  </ItemGroup>\r
+\r
+</Project>
\ No newline at end of file
diff --git a/nltk_csharp_library/Nltk_Common_Library/obj/Nltk_Common_Library.csproj.nuget.cache b/nltk_csharp_library/Nltk_Common_Library/obj/Nltk_Common_Library.csproj.nuget.cache
new file mode 100644 (file)
index 0000000..593049e
--- /dev/null
@@ -0,0 +1,5 @@
+{\r
+  "version": 1,\r
+  "dgSpecHash": "RqEVKuj7kQ3LgFAjvDyDtrPcCYTBdFtrqNrtKtpG/tbv94Ivy4NA0Cas/epBdw835hbTyDzn0kEdNZ4gTiIArA==",\r
+  "success": true\r
+}
\ No newline at end of file
diff --git a/nltk_csharp_library/Nltk_Common_Library/obj/Nltk_Common_Library.csproj.nuget.g.props b/nltk_csharp_library/Nltk_Common_Library/obj/Nltk_Common_Library.csproj.nuget.g.props
new file mode 100644 (file)
index 0000000..d7aac5f
--- /dev/null
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="utf-8" standalone="no"?>\r
+<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+  <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">\r
+    <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>\r
+    <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>\r
+    <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">C:\Users\Administrator\source\repos\nltk_csharp_library\Nltk_Common_Library\obj\project.assets.json</ProjectAssetsFile>\r
+    <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>\r
+    <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Administrator\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder</NuGetPackageFolders>\r
+    <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>\r
+    <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">4.7.0</NuGetToolVersion>\r
+  </PropertyGroup>\r
+  <PropertyGroup>\r
+    <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>\r
+  </PropertyGroup>\r
+  <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">\r
+    <Import Project="$(NuGetPackageRoot)tizen.net.sdk\1.0.1\build\Tizen.NET.Sdk.props" Condition="Exists('$(NuGetPackageRoot)tizen.net.sdk\1.0.1\build\Tizen.NET.Sdk.props')" />\r
+  </ImportGroup>\r
+</Project>
\ No newline at end of file
diff --git a/nltk_csharp_library/Nltk_Common_Library/obj/Nltk_Common_Library.csproj.nuget.g.targets b/nltk_csharp_library/Nltk_Common_Library/obj/Nltk_Common_Library.csproj.nuget.g.targets
new file mode 100644 (file)
index 0000000..6ad35c3
--- /dev/null
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="utf-8" standalone="no"?>\r
+<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+  <PropertyGroup>\r
+    <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>\r
+  </PropertyGroup>\r
+  <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">\r
+    <Import Project="$(NuGetPackageRoot)tizen.net.sdk\1.0.1\build\Tizen.NET.Sdk.targets" Condition="Exists('$(NuGetPackageRoot)tizen.net.sdk\1.0.1\build\Tizen.NET.Sdk.targets')" />\r
+    <Import Project="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\netstandard.library\2.0.1\build\netstandard2.0\NETStandard.Library.targets" Condition="Exists('C:\Program Files\dotnet\sdk\NuGetFallbackFolder\netstandard.library\2.0.1\build\netstandard2.0\NETStandard.Library.targets')" />\r
+  </ImportGroup>\r
+</Project>
\ No newline at end of file
diff --git a/nltk_csharp_library/Nltk_Common_Library/obj/project.assets.json b/nltk_csharp_library/Nltk_Common_Library/obj/project.assets.json
new file mode 100644 (file)
index 0000000..9218922
--- /dev/null
@@ -0,0 +1,804 @@
+{\r
+  "version": 3,\r
+  "targets": {\r
+    ".NETStandard,Version=v2.0": {\r
+      "Microsoft.NETCore.Platforms/1.1.0": {\r
+        "type": "package",\r
+        "compile": {\r
+          "lib/netstandard1.0/_._": {}\r
+        },\r
+        "runtime": {\r
+          "lib/netstandard1.0/_._": {}\r
+        }\r
+      },\r
+      "NETStandard.Library/2.0.1": {\r
+        "type": "package",\r
+        "dependencies": {\r
+          "Microsoft.NETCore.Platforms": "1.1.0"\r
+        },\r
+        "compile": {\r
+          "lib/netstandard1.0/_._": {}\r
+        },\r
+        "runtime": {\r
+          "lib/netstandard1.0/_._": {}\r
+        },\r
+        "build": {\r
+          "build/netstandard2.0/NETStandard.Library.targets": {}\r
+        }\r
+      },\r
+      "Tizen.NET/4.0.0": {\r
+        "type": "package",\r
+        "compile": {\r
+          "lib/netstandard2.0/ElmSharp.Wearable.dll": {},\r
+          "lib/netstandard2.0/ElmSharp.dll": {},\r
+          "lib/netstandard2.0/Tizen.Account.AccountManager.dll": {},\r
+          "lib/netstandard2.0/Tizen.Account.FidoClient.dll": {},\r
+          "lib/netstandard2.0/Tizen.Account.OAuth2.dll": {},\r
+          "lib/netstandard2.0/Tizen.Account.SyncManager.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.Alarm.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.AttachPanel.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.Badge.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.Common.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.DataControl.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.MessagePort.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.Notification.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.NotificationEventListener.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.PackageManager.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.Preference.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.RemoteView.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.Service.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.Shortcut.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.ToastMessage.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.UI.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.WatchApplication.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.WidgetApplication.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.WidgetControl.dll": {},\r
+          "lib/netstandard2.0/Tizen.Content.Download.dll": {},\r
+          "lib/netstandard2.0/Tizen.Content.MediaContent.dll": {},\r
+          "lib/netstandard2.0/Tizen.Content.MimeType.dll": {},\r
+          "lib/netstandard2.0/Tizen.Context.dll": {},\r
+          "lib/netstandard2.0/Tizen.Location.Geofence.dll": {},\r
+          "lib/netstandard2.0/Tizen.Location.dll": {},\r
+          "lib/netstandard2.0/Tizen.Log.dll": {},\r
+          "lib/netstandard2.0/Tizen.Maps.dll": {},\r
+          "lib/netstandard2.0/Tizen.Messaging.Push.dll": {},\r
+          "lib/netstandard2.0/Tizen.Messaging.dll": {},\r
+          "lib/netstandard2.0/Tizen.Multimedia.AudioIO.dll": {},\r
+          "lib/netstandard2.0/Tizen.Multimedia.Camera.dll": {},\r
+          "lib/netstandard2.0/Tizen.Multimedia.MediaCodec.dll": {},\r
+          "lib/netstandard2.0/Tizen.Multimedia.MediaPlayer.dll": {},\r
+          "lib/netstandard2.0/Tizen.Multimedia.Metadata.dll": {},\r
+          "lib/netstandard2.0/Tizen.Multimedia.Radio.dll": {},\r
+          "lib/netstandard2.0/Tizen.Multimedia.Recorder.dll": {},\r
+          "lib/netstandard2.0/Tizen.Multimedia.Remoting.dll": {},\r
+          "lib/netstandard2.0/Tizen.Multimedia.StreamRecorder.dll": {},\r
+          "lib/netstandard2.0/Tizen.Multimedia.Util.dll": {},\r
+          "lib/netstandard2.0/Tizen.Multimedia.Vision.dll": {},\r
+          "lib/netstandard2.0/Tizen.Multimedia.dll": {},\r
+          "lib/netstandard2.0/Tizen.NUI.dll": {},\r
+          "lib/netstandard2.0/Tizen.Network.Bluetooth.dll": {},\r
+          "lib/netstandard2.0/Tizen.Network.Connection.dll": {},\r
+          "lib/netstandard2.0/Tizen.Network.IoTConnectivity.dll": {},\r
+          "lib/netstandard2.0/Tizen.Network.Nfc.dll": {},\r
+          "lib/netstandard2.0/Tizen.Network.Nsd.dll": {},\r
+          "lib/netstandard2.0/Tizen.Network.Smartcard.dll": {},\r
+          "lib/netstandard2.0/Tizen.Network.WiFi.dll": {},\r
+          "lib/netstandard2.0/Tizen.Network.WiFiDirect.dll": {},\r
+          "lib/netstandard2.0/Tizen.PhonenumberUtils.dll": {},\r
+          "lib/netstandard2.0/Tizen.Pims.Calendar.dll": {},\r
+          "lib/netstandard2.0/Tizen.Pims.Contacts.dll": {},\r
+          "lib/netstandard2.0/Tizen.Security.PrivacyPrivilegeManager.dll": {},\r
+          "lib/netstandard2.0/Tizen.Security.SecureRepository.dll": {},\r
+          "lib/netstandard2.0/Tizen.Security.TEEC.dll": {},\r
+          "lib/netstandard2.0/Tizen.Security.dll": {},\r
+          "lib/netstandard2.0/Tizen.Sensor.dll": {},\r
+          "lib/netstandard2.0/Tizen.System.Feedback.dll": {},\r
+          "lib/netstandard2.0/Tizen.System.Information.dll": {},\r
+          "lib/netstandard2.0/Tizen.System.MediaKey.dll": {},\r
+          "lib/netstandard2.0/Tizen.System.PlatformConfig.dll": {},\r
+          "lib/netstandard2.0/Tizen.System.Storage.dll": {},\r
+          "lib/netstandard2.0/Tizen.System.SystemSettings.dll": {},\r
+          "lib/netstandard2.0/Tizen.System.Usb.dll": {},\r
+          "lib/netstandard2.0/Tizen.System.dll": {},\r
+          "lib/netstandard2.0/Tizen.Telephony.dll": {},\r
+          "lib/netstandard2.0/Tizen.Tracer.dll": {},\r
+          "lib/netstandard2.0/Tizen.Uix.InputMethod.dll": {},\r
+          "lib/netstandard2.0/Tizen.Uix.InputMethodManager.dll": {},\r
+          "lib/netstandard2.0/Tizen.Uix.Stt.dll": {},\r
+          "lib/netstandard2.0/Tizen.Uix.SttEngine.dll": {},\r
+          "lib/netstandard2.0/Tizen.Uix.Tts.dll": {},\r
+          "lib/netstandard2.0/Tizen.Uix.TtsEngine.dll": {},\r
+          "lib/netstandard2.0/Tizen.Uix.VoiceControl.dll": {},\r
+          "lib/netstandard2.0/Tizen.WebView.dll": {},\r
+          "lib/netstandard2.0/Tizen.dll": {}\r
+        },\r
+        "runtime": {\r
+          "lib/netstandard2.0/_._": {}\r
+        }\r
+      },\r
+      "Tizen.NET.Sdk/1.0.1": {\r
+        "type": "package",\r
+        "build": {\r
+          "build/Tizen.NET.Sdk.props": {},\r
+          "build/Tizen.NET.Sdk.targets": {}\r
+        }\r
+      }\r
+    }\r
+  },\r
+  "libraries": {\r
+    "Microsoft.NETCore.Platforms/1.1.0": {\r
+      "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",\r
+      "type": "package",\r
+      "path": "microsoft.netcore.platforms/1.1.0",\r
+      "files": [\r
+        "ThirdPartyNotices.txt",\r
+        "dotnet_library_license.txt",\r
+        "lib/netstandard1.0/_._",\r
+        "microsoft.netcore.platforms.1.1.0.nupkg.sha512",\r
+        "microsoft.netcore.platforms.nuspec",\r
+        "runtime.json"\r
+      ]\r
+    },\r
+    "NETStandard.Library/2.0.1": {\r
+      "sha512": "oA6nwv9MhEKYvLpjZ0ggSpb1g4CQViDVQjLUcDWg598jtvJbpfeP2reqwI1GLW2TbxC/Ml7xL6BBR1HmKPXlTg==",\r
+      "type": "package",\r
+      "path": "netstandard.library/2.0.1",\r
+      "files": [\r
+        "LICENSE.TXT",\r
+        "THIRD-PARTY-NOTICES.TXT",\r
+        "build/NETStandard.Library.targets",\r
+        "build/netstandard2.0/NETStandard.Library.targets",\r
+        "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll",\r
+        "build/netstandard2.0/ref/System.AppContext.dll",\r
+        "build/netstandard2.0/ref/System.Collections.Concurrent.dll",\r
+        "build/netstandard2.0/ref/System.Collections.NonGeneric.dll",\r
+        "build/netstandard2.0/ref/System.Collections.Specialized.dll",\r
+        "build/netstandard2.0/ref/System.Collections.dll",\r
+        "build/netstandard2.0/ref/System.ComponentModel.Composition.dll",\r
+        "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll",\r
+        "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll",\r
+        "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll",\r
+        "build/netstandard2.0/ref/System.ComponentModel.dll",\r
+        "build/netstandard2.0/ref/System.Console.dll",\r
+        "build/netstandard2.0/ref/System.Core.dll",\r
+        "build/netstandard2.0/ref/System.Data.Common.dll",\r
+        "build/netstandard2.0/ref/System.Data.dll",\r
+        "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll",\r
+        "build/netstandard2.0/ref/System.Diagnostics.Debug.dll",\r
+        "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll",\r
+        "build/netstandard2.0/ref/System.Diagnostics.Process.dll",\r
+        "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll",\r
+        "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll",\r
+        "build/netstandard2.0/ref/System.Diagnostics.Tools.dll",\r
+        "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll",\r
+        "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll",\r
+        "build/netstandard2.0/ref/System.Drawing.Primitives.dll",\r
+        "build/netstandard2.0/ref/System.Drawing.dll",\r
+        "build/netstandard2.0/ref/System.Dynamic.Runtime.dll",\r
+        "build/netstandard2.0/ref/System.Globalization.Calendars.dll",\r
+        "build/netstandard2.0/ref/System.Globalization.Extensions.dll",\r
+        "build/netstandard2.0/ref/System.Globalization.dll",\r
+        "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll",\r
+        "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll",\r
+        "build/netstandard2.0/ref/System.IO.Compression.dll",\r
+        "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll",\r
+        "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll",\r
+        "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll",\r
+        "build/netstandard2.0/ref/System.IO.FileSystem.dll",\r
+        "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll",\r
+        "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll",\r
+        "build/netstandard2.0/ref/System.IO.Pipes.dll",\r
+        "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll",\r
+        "build/netstandard2.0/ref/System.IO.dll",\r
+        "build/netstandard2.0/ref/System.Linq.Expressions.dll",\r
+        "build/netstandard2.0/ref/System.Linq.Parallel.dll",\r
+        "build/netstandard2.0/ref/System.Linq.Queryable.dll",\r
+        "build/netstandard2.0/ref/System.Linq.dll",\r
+        "build/netstandard2.0/ref/System.Net.Http.dll",\r
+        "build/netstandard2.0/ref/System.Net.NameResolution.dll",\r
+        "build/netstandard2.0/ref/System.Net.NetworkInformation.dll",\r
+        "build/netstandard2.0/ref/System.Net.Ping.dll",\r
+        "build/netstandard2.0/ref/System.Net.Primitives.dll",\r
+        "build/netstandard2.0/ref/System.Net.Requests.dll",\r
+        "build/netstandard2.0/ref/System.Net.Security.dll",\r
+        "build/netstandard2.0/ref/System.Net.Sockets.dll",\r
+        "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll",\r
+        "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll",\r
+        "build/netstandard2.0/ref/System.Net.WebSockets.dll",\r
+        "build/netstandard2.0/ref/System.Net.dll",\r
+        "build/netstandard2.0/ref/System.Numerics.dll",\r
+        "build/netstandard2.0/ref/System.ObjectModel.dll",\r
+        "build/netstandard2.0/ref/System.Reflection.Extensions.dll",\r
+        "build/netstandard2.0/ref/System.Reflection.Primitives.dll",\r
+        "build/netstandard2.0/ref/System.Reflection.dll",\r
+        "build/netstandard2.0/ref/System.Resources.Reader.dll",\r
+        "build/netstandard2.0/ref/System.Resources.ResourceManager.dll",\r
+        "build/netstandard2.0/ref/System.Resources.Writer.dll",\r
+        "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll",\r
+        "build/netstandard2.0/ref/System.Runtime.Extensions.dll",\r
+        "build/netstandard2.0/ref/System.Runtime.Handles.dll",\r
+        "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll",\r
+        "build/netstandard2.0/ref/System.Runtime.InteropServices.dll",\r
+        "build/netstandard2.0/ref/System.Runtime.Numerics.dll",\r
+        "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll",\r
+        "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll",\r
+        "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll",\r
+        "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll",\r
+        "build/netstandard2.0/ref/System.Runtime.Serialization.dll",\r
+        "build/netstandard2.0/ref/System.Runtime.dll",\r
+        "build/netstandard2.0/ref/System.Security.Claims.dll",\r
+        "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll",\r
+        "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll",\r
+        "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll",\r
+        "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll",\r
+        "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll",\r
+        "build/netstandard2.0/ref/System.Security.Principal.dll",\r
+        "build/netstandard2.0/ref/System.Security.SecureString.dll",\r
+        "build/netstandard2.0/ref/System.ServiceModel.Web.dll",\r
+        "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll",\r
+        "build/netstandard2.0/ref/System.Text.Encoding.dll",\r
+        "build/netstandard2.0/ref/System.Text.RegularExpressions.dll",\r
+        "build/netstandard2.0/ref/System.Threading.Overlapped.dll",\r
+        "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll",\r
+        "build/netstandard2.0/ref/System.Threading.Tasks.dll",\r
+        "build/netstandard2.0/ref/System.Threading.Thread.dll",\r
+        "build/netstandard2.0/ref/System.Threading.ThreadPool.dll",\r
+        "build/netstandard2.0/ref/System.Threading.Timer.dll",\r
+        "build/netstandard2.0/ref/System.Threading.dll",\r
+        "build/netstandard2.0/ref/System.Transactions.dll",\r
+        "build/netstandard2.0/ref/System.ValueTuple.dll",\r
+        "build/netstandard2.0/ref/System.Web.dll",\r
+        "build/netstandard2.0/ref/System.Windows.dll",\r
+        "build/netstandard2.0/ref/System.Xml.Linq.dll",\r
+        "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll",\r
+        "build/netstandard2.0/ref/System.Xml.Serialization.dll",\r
+        "build/netstandard2.0/ref/System.Xml.XDocument.dll",\r
+        "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll",\r
+        "build/netstandard2.0/ref/System.Xml.XPath.dll",\r
+        "build/netstandard2.0/ref/System.Xml.XmlDocument.dll",\r
+        "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll",\r
+        "build/netstandard2.0/ref/System.Xml.dll",\r
+        "build/netstandard2.0/ref/System.dll",\r
+        "build/netstandard2.0/ref/mscorlib.dll",\r
+        "build/netstandard2.0/ref/netstandard.dll",\r
+        "build/netstandard2.0/ref/netstandard.xml",\r
+        "lib/netstandard1.0/_._",\r
+        "netstandard.library.2.0.1.nupkg.sha512",\r
+        "netstandard.library.nuspec"\r
+      ]\r
+    },\r
+    "Tizen.NET/4.0.0": {\r
+      "sha512": "e/q/gwwzrcR6LRsQiZbpKYN+GJsiA7/lh6p8ztANDoJLnIlKPmiNsBXxm6Tt8yHzwMywmAXBwyp4mpLCRG0J+A==",\r
+      "type": "package",\r
+      "path": "tizen.net/4.0.0",\r
+      "files": [\r
+        "build/tizen40/LICENSE.Microsoft.NETCore.App.txt",\r
+        "build/tizen40/Tizen.NET.PlatformManifest.txt",\r
+        "build/tizen40/Tizen.NET.props",\r
+        "build/tizen40/Tizen.NET.targets",\r
+        "build/tizen40/ref/Microsoft.CSharp.dll",\r
+        "build/tizen40/ref/Microsoft.CSharp.xml",\r
+        "build/tizen40/ref/Microsoft.VisualBasic.dll",\r
+        "build/tizen40/ref/Microsoft.VisualBasic.xml",\r
+        "build/tizen40/ref/Microsoft.Win32.Primitives.dll",\r
+        "build/tizen40/ref/Microsoft.Win32.Primitives.xml",\r
+        "build/tizen40/ref/System.AppContext.dll",\r
+        "build/tizen40/ref/System.AppContext.xml",\r
+        "build/tizen40/ref/System.Buffers.dll",\r
+        "build/tizen40/ref/System.Buffers.xml",\r
+        "build/tizen40/ref/System.Collections.Concurrent.dll",\r
+        "build/tizen40/ref/System.Collections.Concurrent.xml",\r
+        "build/tizen40/ref/System.Collections.Immutable.dll",\r
+        "build/tizen40/ref/System.Collections.Immutable.xml",\r
+        "build/tizen40/ref/System.Collections.NonGeneric.dll",\r
+        "build/tizen40/ref/System.Collections.NonGeneric.xml",\r
+        "build/tizen40/ref/System.Collections.Specialized.dll",\r
+        "build/tizen40/ref/System.Collections.Specialized.xml",\r
+        "build/tizen40/ref/System.Collections.dll",\r
+        "build/tizen40/ref/System.Collections.xml",\r
+        "build/tizen40/ref/System.ComponentModel.Annotations.dll",\r
+        "build/tizen40/ref/System.ComponentModel.Annotations.xml",\r
+        "build/tizen40/ref/System.ComponentModel.Composition.dll",\r
+        "build/tizen40/ref/System.ComponentModel.DataAnnotations.dll",\r
+        "build/tizen40/ref/System.ComponentModel.EventBasedAsync.dll",\r
+        "build/tizen40/ref/System.ComponentModel.EventBasedAsync.xml",\r
+        "build/tizen40/ref/System.ComponentModel.Primitives.dll",\r
+        "build/tizen40/ref/System.ComponentModel.Primitives.xml",\r
+        "build/tizen40/ref/System.ComponentModel.TypeConverter.dll",\r
+        "build/tizen40/ref/System.ComponentModel.TypeConverter.xml",\r
+        "build/tizen40/ref/System.ComponentModel.dll",\r
+        "build/tizen40/ref/System.ComponentModel.xml",\r
+        "build/tizen40/ref/System.Configuration.dll",\r
+        "build/tizen40/ref/System.Console.dll",\r
+        "build/tizen40/ref/System.Console.xml",\r
+        "build/tizen40/ref/System.Core.dll",\r
+        "build/tizen40/ref/System.Data.Common.dll",\r
+        "build/tizen40/ref/System.Data.Common.xml",\r
+        "build/tizen40/ref/System.Data.dll",\r
+        "build/tizen40/ref/System.Diagnostics.Contracts.dll",\r
+        "build/tizen40/ref/System.Diagnostics.Contracts.xml",\r
+        "build/tizen40/ref/System.Diagnostics.Debug.dll",\r
+        "build/tizen40/ref/System.Diagnostics.Debug.xml",\r
+        "build/tizen40/ref/System.Diagnostics.DiagnosticSource.dll",\r
+        "build/tizen40/ref/System.Diagnostics.DiagnosticSource.xml",\r
+        "build/tizen40/ref/System.Diagnostics.FileVersionInfo.dll",\r
+        "build/tizen40/ref/System.Diagnostics.FileVersionInfo.xml",\r
+        "build/tizen40/ref/System.Diagnostics.Process.dll",\r
+        "build/tizen40/ref/System.Diagnostics.Process.xml",\r
+        "build/tizen40/ref/System.Diagnostics.StackTrace.dll",\r
+        "build/tizen40/ref/System.Diagnostics.StackTrace.xml",\r
+        "build/tizen40/ref/System.Diagnostics.TextWriterTraceListener.dll",\r
+        "build/tizen40/ref/System.Diagnostics.TextWriterTraceListener.xml",\r
+        "build/tizen40/ref/System.Diagnostics.Tools.dll",\r
+        "build/tizen40/ref/System.Diagnostics.Tools.xml",\r
+        "build/tizen40/ref/System.Diagnostics.TraceSource.dll",\r
+        "build/tizen40/ref/System.Diagnostics.TraceSource.xml",\r
+        "build/tizen40/ref/System.Diagnostics.Tracing.dll",\r
+        "build/tizen40/ref/System.Diagnostics.Tracing.xml",\r
+        "build/tizen40/ref/System.Drawing.Primitives.dll",\r
+        "build/tizen40/ref/System.Drawing.Primitives.xml",\r
+        "build/tizen40/ref/System.Drawing.dll",\r
+        "build/tizen40/ref/System.Dynamic.Runtime.dll",\r
+        "build/tizen40/ref/System.Dynamic.Runtime.xml",\r
+        "build/tizen40/ref/System.Globalization.Calendars.dll",\r
+        "build/tizen40/ref/System.Globalization.Calendars.xml",\r
+        "build/tizen40/ref/System.Globalization.Extensions.dll",\r
+        "build/tizen40/ref/System.Globalization.Extensions.xml",\r
+        "build/tizen40/ref/System.Globalization.dll",\r
+        "build/tizen40/ref/System.Globalization.xml",\r
+        "build/tizen40/ref/System.IO.Compression.FileSystem.dll",\r
+        "build/tizen40/ref/System.IO.Compression.ZipFile.dll",\r
+        "build/tizen40/ref/System.IO.Compression.ZipFile.xml",\r
+        "build/tizen40/ref/System.IO.Compression.dll",\r
+        "build/tizen40/ref/System.IO.Compression.xml",\r
+        "build/tizen40/ref/System.IO.FileSystem.DriveInfo.dll",\r
+        "build/tizen40/ref/System.IO.FileSystem.DriveInfo.xml",\r
+        "build/tizen40/ref/System.IO.FileSystem.Primitives.dll",\r
+        "build/tizen40/ref/System.IO.FileSystem.Primitives.xml",\r
+        "build/tizen40/ref/System.IO.FileSystem.Watcher.dll",\r
+        "build/tizen40/ref/System.IO.FileSystem.Watcher.xml",\r
+        "build/tizen40/ref/System.IO.FileSystem.dll",\r
+        "build/tizen40/ref/System.IO.FileSystem.xml",\r
+        "build/tizen40/ref/System.IO.IsolatedStorage.dll",\r
+        "build/tizen40/ref/System.IO.IsolatedStorage.xml",\r
+        "build/tizen40/ref/System.IO.MemoryMappedFiles.dll",\r
+        "build/tizen40/ref/System.IO.MemoryMappedFiles.xml",\r
+        "build/tizen40/ref/System.IO.Pipes.dll",\r
+        "build/tizen40/ref/System.IO.Pipes.xml",\r
+        "build/tizen40/ref/System.IO.UnmanagedMemoryStream.dll",\r
+        "build/tizen40/ref/System.IO.UnmanagedMemoryStream.xml",\r
+        "build/tizen40/ref/System.IO.dll",\r
+        "build/tizen40/ref/System.IO.xml",\r
+        "build/tizen40/ref/System.Linq.Expressions.dll",\r
+        "build/tizen40/ref/System.Linq.Expressions.xml",\r
+        "build/tizen40/ref/System.Linq.Parallel.dll",\r
+        "build/tizen40/ref/System.Linq.Parallel.xml",\r
+        "build/tizen40/ref/System.Linq.Queryable.dll",\r
+        "build/tizen40/ref/System.Linq.Queryable.xml",\r
+        "build/tizen40/ref/System.Linq.dll",\r
+        "build/tizen40/ref/System.Linq.xml",\r
+        "build/tizen40/ref/System.Net.Http.dll",\r
+        "build/tizen40/ref/System.Net.Http.xml",\r
+        "build/tizen40/ref/System.Net.HttpListener.dll",\r
+        "build/tizen40/ref/System.Net.HttpListener.xml",\r
+        "build/tizen40/ref/System.Net.Mail.dll",\r
+        "build/tizen40/ref/System.Net.Mail.xml",\r
+        "build/tizen40/ref/System.Net.NameResolution.dll",\r
+        "build/tizen40/ref/System.Net.NameResolution.xml",\r
+        "build/tizen40/ref/System.Net.NetworkInformation.dll",\r
+        "build/tizen40/ref/System.Net.NetworkInformation.xml",\r
+        "build/tizen40/ref/System.Net.Ping.dll",\r
+        "build/tizen40/ref/System.Net.Ping.xml",\r
+        "build/tizen40/ref/System.Net.Primitives.dll",\r
+        "build/tizen40/ref/System.Net.Primitives.xml",\r
+        "build/tizen40/ref/System.Net.Requests.dll",\r
+        "build/tizen40/ref/System.Net.Requests.xml",\r
+        "build/tizen40/ref/System.Net.Security.dll",\r
+        "build/tizen40/ref/System.Net.Security.xml",\r
+        "build/tizen40/ref/System.Net.ServicePoint.dll",\r
+        "build/tizen40/ref/System.Net.ServicePoint.xml",\r
+        "build/tizen40/ref/System.Net.Sockets.dll",\r
+        "build/tizen40/ref/System.Net.Sockets.xml",\r
+        "build/tizen40/ref/System.Net.WebClient.dll",\r
+        "build/tizen40/ref/System.Net.WebClient.xml",\r
+        "build/tizen40/ref/System.Net.WebHeaderCollection.dll",\r
+        "build/tizen40/ref/System.Net.WebHeaderCollection.xml",\r
+        "build/tizen40/ref/System.Net.WebProxy.dll",\r
+        "build/tizen40/ref/System.Net.WebProxy.xml",\r
+        "build/tizen40/ref/System.Net.WebSockets.Client.dll",\r
+        "build/tizen40/ref/System.Net.WebSockets.Client.xml",\r
+        "build/tizen40/ref/System.Net.WebSockets.dll",\r
+        "build/tizen40/ref/System.Net.WebSockets.xml",\r
+        "build/tizen40/ref/System.Net.dll",\r
+        "build/tizen40/ref/System.Numerics.Vectors.dll",\r
+        "build/tizen40/ref/System.Numerics.Vectors.xml",\r
+        "build/tizen40/ref/System.Numerics.dll",\r
+        "build/tizen40/ref/System.ObjectModel.dll",\r
+        "build/tizen40/ref/System.ObjectModel.xml",\r
+        "build/tizen40/ref/System.Reflection.DispatchProxy.dll",\r
+        "build/tizen40/ref/System.Reflection.DispatchProxy.xml",\r
+        "build/tizen40/ref/System.Reflection.Emit.ILGeneration.dll",\r
+        "build/tizen40/ref/System.Reflection.Emit.ILGeneration.xml",\r
+        "build/tizen40/ref/System.Reflection.Emit.Lightweight.dll",\r
+        "build/tizen40/ref/System.Reflection.Emit.Lightweight.xml",\r
+        "build/tizen40/ref/System.Reflection.Emit.dll",\r
+        "build/tizen40/ref/System.Reflection.Emit.xml",\r
+        "build/tizen40/ref/System.Reflection.Extensions.dll",\r
+        "build/tizen40/ref/System.Reflection.Extensions.xml",\r
+        "build/tizen40/ref/System.Reflection.Metadata.dll",\r
+        "build/tizen40/ref/System.Reflection.Metadata.xml",\r
+        "build/tizen40/ref/System.Reflection.Primitives.dll",\r
+        "build/tizen40/ref/System.Reflection.Primitives.xml",\r
+        "build/tizen40/ref/System.Reflection.TypeExtensions.dll",\r
+        "build/tizen40/ref/System.Reflection.TypeExtensions.xml",\r
+        "build/tizen40/ref/System.Reflection.dll",\r
+        "build/tizen40/ref/System.Reflection.xml",\r
+        "build/tizen40/ref/System.Resources.Reader.dll",\r
+        "build/tizen40/ref/System.Resources.Reader.xml",\r
+        "build/tizen40/ref/System.Resources.ResourceManager.dll",\r
+        "build/tizen40/ref/System.Resources.ResourceManager.xml",\r
+        "build/tizen40/ref/System.Resources.Writer.dll",\r
+        "build/tizen40/ref/System.Resources.Writer.xml",\r
+        "build/tizen40/ref/System.Runtime.CompilerServices.VisualC.dll",\r
+        "build/tizen40/ref/System.Runtime.CompilerServices.VisualC.xml",\r
+        "build/tizen40/ref/System.Runtime.Extensions.dll",\r
+        "build/tizen40/ref/System.Runtime.Extensions.xml",\r
+        "build/tizen40/ref/System.Runtime.Handles.dll",\r
+        "build/tizen40/ref/System.Runtime.Handles.xml",\r
+        "build/tizen40/ref/System.Runtime.InteropServices.RuntimeInformation.dll",\r
+        "build/tizen40/ref/System.Runtime.InteropServices.RuntimeInformation.xml",\r
+        "build/tizen40/ref/System.Runtime.InteropServices.WindowsRuntime.dll",\r
+        "build/tizen40/ref/System.Runtime.InteropServices.WindowsRuntime.xml",\r
+        "build/tizen40/ref/System.Runtime.InteropServices.dll",\r
+        "build/tizen40/ref/System.Runtime.InteropServices.xml",\r
+        "build/tizen40/ref/System.Runtime.Loader.dll",\r
+        "build/tizen40/ref/System.Runtime.Loader.xml",\r
+        "build/tizen40/ref/System.Runtime.Numerics.dll",\r
+        "build/tizen40/ref/System.Runtime.Numerics.xml",\r
+        "build/tizen40/ref/System.Runtime.Serialization.Formatters.dll",\r
+        "build/tizen40/ref/System.Runtime.Serialization.Formatters.xml",\r
+        "build/tizen40/ref/System.Runtime.Serialization.Json.dll",\r
+        "build/tizen40/ref/System.Runtime.Serialization.Json.xml",\r
+        "build/tizen40/ref/System.Runtime.Serialization.Primitives.dll",\r
+        "build/tizen40/ref/System.Runtime.Serialization.Primitives.xml",\r
+        "build/tizen40/ref/System.Runtime.Serialization.Xml.dll",\r
+        "build/tizen40/ref/System.Runtime.Serialization.Xml.xml",\r
+        "build/tizen40/ref/System.Runtime.Serialization.dll",\r
+        "build/tizen40/ref/System.Runtime.dll",\r
+        "build/tizen40/ref/System.Runtime.xml",\r
+        "build/tizen40/ref/System.Security.Claims.dll",\r
+        "build/tizen40/ref/System.Security.Claims.xml",\r
+        "build/tizen40/ref/System.Security.Cryptography.Algorithms.dll",\r
+        "build/tizen40/ref/System.Security.Cryptography.Algorithms.xml",\r
+        "build/tizen40/ref/System.Security.Cryptography.Csp.dll",\r
+        "build/tizen40/ref/System.Security.Cryptography.Csp.xml",\r
+        "build/tizen40/ref/System.Security.Cryptography.Encoding.dll",\r
+        "build/tizen40/ref/System.Security.Cryptography.Encoding.xml",\r
+        "build/tizen40/ref/System.Security.Cryptography.Primitives.dll",\r
+        "build/tizen40/ref/System.Security.Cryptography.Primitives.xml",\r
+        "build/tizen40/ref/System.Security.Cryptography.X509Certificates.dll",\r
+        "build/tizen40/ref/System.Security.Cryptography.X509Certificates.xml",\r
+        "build/tizen40/ref/System.Security.Principal.dll",\r
+        "build/tizen40/ref/System.Security.Principal.xml",\r
+        "build/tizen40/ref/System.Security.SecureString.dll",\r
+        "build/tizen40/ref/System.Security.SecureString.xml",\r
+        "build/tizen40/ref/System.Security.dll",\r
+        "build/tizen40/ref/System.ServiceModel.Web.dll",\r
+        "build/tizen40/ref/System.ServiceProcess.dll",\r
+        "build/tizen40/ref/System.Text.Encoding.Extensions.dll",\r
+        "build/tizen40/ref/System.Text.Encoding.Extensions.xml",\r
+        "build/tizen40/ref/System.Text.Encoding.dll",\r
+        "build/tizen40/ref/System.Text.Encoding.xml",\r
+        "build/tizen40/ref/System.Text.RegularExpressions.dll",\r
+        "build/tizen40/ref/System.Text.RegularExpressions.xml",\r
+        "build/tizen40/ref/System.Threading.Overlapped.dll",\r
+        "build/tizen40/ref/System.Threading.Overlapped.xml",\r
+        "build/tizen40/ref/System.Threading.Tasks.Dataflow.dll",\r
+        "build/tizen40/ref/System.Threading.Tasks.Dataflow.xml",\r
+        "build/tizen40/ref/System.Threading.Tasks.Extensions.dll",\r
+        "build/tizen40/ref/System.Threading.Tasks.Extensions.xml",\r
+        "build/tizen40/ref/System.Threading.Tasks.Parallel.dll",\r
+        "build/tizen40/ref/System.Threading.Tasks.Parallel.xml",\r
+        "build/tizen40/ref/System.Threading.Tasks.dll",\r
+        "build/tizen40/ref/System.Threading.Tasks.xml",\r
+        "build/tizen40/ref/System.Threading.Thread.dll",\r
+        "build/tizen40/ref/System.Threading.Thread.xml",\r
+        "build/tizen40/ref/System.Threading.ThreadPool.dll",\r
+        "build/tizen40/ref/System.Threading.ThreadPool.xml",\r
+        "build/tizen40/ref/System.Threading.Timer.dll",\r
+        "build/tizen40/ref/System.Threading.Timer.xml",\r
+        "build/tizen40/ref/System.Threading.dll",\r
+        "build/tizen40/ref/System.Threading.xml",\r
+        "build/tizen40/ref/System.Transactions.Local.dll",\r
+        "build/tizen40/ref/System.Transactions.Local.xml",\r
+        "build/tizen40/ref/System.Transactions.dll",\r
+        "build/tizen40/ref/System.ValueTuple.dll",\r
+        "build/tizen40/ref/System.ValueTuple.xml",\r
+        "build/tizen40/ref/System.Web.HttpUtility.dll",\r
+        "build/tizen40/ref/System.Web.HttpUtility.xml",\r
+        "build/tizen40/ref/System.Web.dll",\r
+        "build/tizen40/ref/System.Windows.dll",\r
+        "build/tizen40/ref/System.Xml.Linq.dll",\r
+        "build/tizen40/ref/System.Xml.ReaderWriter.dll",\r
+        "build/tizen40/ref/System.Xml.ReaderWriter.xml",\r
+        "build/tizen40/ref/System.Xml.Serialization.dll",\r
+        "build/tizen40/ref/System.Xml.XDocument.dll",\r
+        "build/tizen40/ref/System.Xml.XDocument.xml",\r
+        "build/tizen40/ref/System.Xml.XPath.XDocument.dll",\r
+        "build/tizen40/ref/System.Xml.XPath.XDocument.xml",\r
+        "build/tizen40/ref/System.Xml.XPath.dll",\r
+        "build/tizen40/ref/System.Xml.XPath.xml",\r
+        "build/tizen40/ref/System.Xml.XmlDocument.dll",\r
+        "build/tizen40/ref/System.Xml.XmlDocument.xml",\r
+        "build/tizen40/ref/System.Xml.XmlSerializer.dll",\r
+        "build/tizen40/ref/System.Xml.XmlSerializer.xml",\r
+        "build/tizen40/ref/System.Xml.dll",\r
+        "build/tizen40/ref/System.dll",\r
+        "build/tizen40/ref/WindowsBase.dll",\r
+        "build/tizen40/ref/mscorlib.dll",\r
+        "build/tizen40/ref/netstandard.dll",\r
+        "lib/netstandard2.0/ElmSharp.Wearable.dll",\r
+        "lib/netstandard2.0/ElmSharp.Wearable.xml",\r
+        "lib/netstandard2.0/ElmSharp.dll",\r
+        "lib/netstandard2.0/ElmSharp.xml",\r
+        "lib/netstandard2.0/Tizen.Account.AccountManager.dll",\r
+        "lib/netstandard2.0/Tizen.Account.AccountManager.xml",\r
+        "lib/netstandard2.0/Tizen.Account.FidoClient.dll",\r
+        "lib/netstandard2.0/Tizen.Account.FidoClient.xml",\r
+        "lib/netstandard2.0/Tizen.Account.OAuth2.dll",\r
+        "lib/netstandard2.0/Tizen.Account.OAuth2.xml",\r
+        "lib/netstandard2.0/Tizen.Account.SyncManager.dll",\r
+        "lib/netstandard2.0/Tizen.Account.SyncManager.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.Alarm.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.Alarm.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.AttachPanel.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.AttachPanel.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.Badge.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.Badge.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.Common.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.Common.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.DataControl.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.DataControl.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.MessagePort.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.MessagePort.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.Notification.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.Notification.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.NotificationEventListener.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.NotificationEventListener.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.PackageManager.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.PackageManager.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.Preference.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.Preference.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.RemoteView.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.RemoteView.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.Service.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.Service.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.Shortcut.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.Shortcut.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.ToastMessage.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.ToastMessage.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.UI.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.UI.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.WatchApplication.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.WatchApplication.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.WidgetApplication.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.WidgetApplication.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.WidgetControl.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.WidgetControl.xml",\r
+        "lib/netstandard2.0/Tizen.Content.Download.dll",\r
+        "lib/netstandard2.0/Tizen.Content.Download.xml",\r
+        "lib/netstandard2.0/Tizen.Content.MediaContent.dll",\r
+        "lib/netstandard2.0/Tizen.Content.MediaContent.xml",\r
+        "lib/netstandard2.0/Tizen.Content.MimeType.dll",\r
+        "lib/netstandard2.0/Tizen.Content.MimeType.xml",\r
+        "lib/netstandard2.0/Tizen.Context.dll",\r
+        "lib/netstandard2.0/Tizen.Context.xml",\r
+        "lib/netstandard2.0/Tizen.Location.Geofence.dll",\r
+        "lib/netstandard2.0/Tizen.Location.Geofence.xml",\r
+        "lib/netstandard2.0/Tizen.Location.dll",\r
+        "lib/netstandard2.0/Tizen.Location.xml",\r
+        "lib/netstandard2.0/Tizen.Log.dll",\r
+        "lib/netstandard2.0/Tizen.Log.xml",\r
+        "lib/netstandard2.0/Tizen.Maps.dll",\r
+        "lib/netstandard2.0/Tizen.Maps.xml",\r
+        "lib/netstandard2.0/Tizen.Messaging.Push.dll",\r
+        "lib/netstandard2.0/Tizen.Messaging.Push.xml",\r
+        "lib/netstandard2.0/Tizen.Messaging.dll",\r
+        "lib/netstandard2.0/Tizen.Messaging.xml",\r
+        "lib/netstandard2.0/Tizen.Multimedia.AudioIO.dll",\r
+        "lib/netstandard2.0/Tizen.Multimedia.AudioIO.xml",\r
+        "lib/netstandard2.0/Tizen.Multimedia.Camera.dll",\r
+        "lib/netstandard2.0/Tizen.Multimedia.Camera.xml",\r
+        "lib/netstandard2.0/Tizen.Multimedia.MediaCodec.dll",\r
+        "lib/netstandard2.0/Tizen.Multimedia.MediaCodec.xml",\r
+        "lib/netstandard2.0/Tizen.Multimedia.MediaPlayer.dll",\r
+        "lib/netstandard2.0/Tizen.Multimedia.MediaPlayer.xml",\r
+        "lib/netstandard2.0/Tizen.Multimedia.Metadata.dll",\r
+        "lib/netstandard2.0/Tizen.Multimedia.Metadata.xml",\r
+        "lib/netstandard2.0/Tizen.Multimedia.Radio.dll",\r
+        "lib/netstandard2.0/Tizen.Multimedia.Radio.xml",\r
+        "lib/netstandard2.0/Tizen.Multimedia.Recorder.dll",\r
+        "lib/netstandard2.0/Tizen.Multimedia.Recorder.xml",\r
+        "lib/netstandard2.0/Tizen.Multimedia.Remoting.dll",\r
+        "lib/netstandard2.0/Tizen.Multimedia.Remoting.xml",\r
+        "lib/netstandard2.0/Tizen.Multimedia.StreamRecorder.dll",\r
+        "lib/netstandard2.0/Tizen.Multimedia.StreamRecorder.xml",\r
+        "lib/netstandard2.0/Tizen.Multimedia.Util.dll",\r
+        "lib/netstandard2.0/Tizen.Multimedia.Util.xml",\r
+        "lib/netstandard2.0/Tizen.Multimedia.Vision.dll",\r
+        "lib/netstandard2.0/Tizen.Multimedia.Vision.xml",\r
+        "lib/netstandard2.0/Tizen.Multimedia.dll",\r
+        "lib/netstandard2.0/Tizen.Multimedia.xml",\r
+        "lib/netstandard2.0/Tizen.NUI.dll",\r
+        "lib/netstandard2.0/Tizen.NUI.xml",\r
+        "lib/netstandard2.0/Tizen.Network.Bluetooth.dll",\r
+        "lib/netstandard2.0/Tizen.Network.Bluetooth.xml",\r
+        "lib/netstandard2.0/Tizen.Network.Connection.dll",\r
+        "lib/netstandard2.0/Tizen.Network.Connection.xml",\r
+        "lib/netstandard2.0/Tizen.Network.IoTConnectivity.dll",\r
+        "lib/netstandard2.0/Tizen.Network.IoTConnectivity.xml",\r
+        "lib/netstandard2.0/Tizen.Network.Nfc.dll",\r
+        "lib/netstandard2.0/Tizen.Network.Nfc.xml",\r
+        "lib/netstandard2.0/Tizen.Network.Nsd.dll",\r
+        "lib/netstandard2.0/Tizen.Network.Nsd.xml",\r
+        "lib/netstandard2.0/Tizen.Network.Smartcard.dll",\r
+        "lib/netstandard2.0/Tizen.Network.Smartcard.xml",\r
+        "lib/netstandard2.0/Tizen.Network.WiFi.dll",\r
+        "lib/netstandard2.0/Tizen.Network.WiFi.xml",\r
+        "lib/netstandard2.0/Tizen.Network.WiFiDirect.dll",\r
+        "lib/netstandard2.0/Tizen.Network.WiFiDirect.xml",\r
+        "lib/netstandard2.0/Tizen.PhonenumberUtils.dll",\r
+        "lib/netstandard2.0/Tizen.PhonenumberUtils.xml",\r
+        "lib/netstandard2.0/Tizen.Pims.Calendar.dll",\r
+        "lib/netstandard2.0/Tizen.Pims.Calendar.xml",\r
+        "lib/netstandard2.0/Tizen.Pims.Contacts.dll",\r
+        "lib/netstandard2.0/Tizen.Pims.Contacts.xml",\r
+        "lib/netstandard2.0/Tizen.Security.PrivacyPrivilegeManager.dll",\r
+        "lib/netstandard2.0/Tizen.Security.PrivacyPrivilegeManager.xml",\r
+        "lib/netstandard2.0/Tizen.Security.SecureRepository.dll",\r
+        "lib/netstandard2.0/Tizen.Security.SecureRepository.xml",\r
+        "lib/netstandard2.0/Tizen.Security.TEEC.dll",\r
+        "lib/netstandard2.0/Tizen.Security.TEEC.xml",\r
+        "lib/netstandard2.0/Tizen.Security.dll",\r
+        "lib/netstandard2.0/Tizen.Security.xml",\r
+        "lib/netstandard2.0/Tizen.Sensor.dll",\r
+        "lib/netstandard2.0/Tizen.Sensor.xml",\r
+        "lib/netstandard2.0/Tizen.System.Feedback.dll",\r
+        "lib/netstandard2.0/Tizen.System.Feedback.xml",\r
+        "lib/netstandard2.0/Tizen.System.Information.dll",\r
+        "lib/netstandard2.0/Tizen.System.Information.xml",\r
+        "lib/netstandard2.0/Tizen.System.MediaKey.dll",\r
+        "lib/netstandard2.0/Tizen.System.MediaKey.xml",\r
+        "lib/netstandard2.0/Tizen.System.PlatformConfig.dll",\r
+        "lib/netstandard2.0/Tizen.System.PlatformConfig.xml",\r
+        "lib/netstandard2.0/Tizen.System.Storage.dll",\r
+        "lib/netstandard2.0/Tizen.System.Storage.xml",\r
+        "lib/netstandard2.0/Tizen.System.SystemSettings.dll",\r
+        "lib/netstandard2.0/Tizen.System.SystemSettings.xml",\r
+        "lib/netstandard2.0/Tizen.System.Usb.dll",\r
+        "lib/netstandard2.0/Tizen.System.Usb.xml",\r
+        "lib/netstandard2.0/Tizen.System.dll",\r
+        "lib/netstandard2.0/Tizen.System.xml",\r
+        "lib/netstandard2.0/Tizen.Telephony.dll",\r
+        "lib/netstandard2.0/Tizen.Telephony.xml",\r
+        "lib/netstandard2.0/Tizen.Tracer.dll",\r
+        "lib/netstandard2.0/Tizen.Tracer.xml",\r
+        "lib/netstandard2.0/Tizen.Uix.InputMethod.dll",\r
+        "lib/netstandard2.0/Tizen.Uix.InputMethod.xml",\r
+        "lib/netstandard2.0/Tizen.Uix.InputMethodManager.dll",\r
+        "lib/netstandard2.0/Tizen.Uix.InputMethodManager.xml",\r
+        "lib/netstandard2.0/Tizen.Uix.Stt.dll",\r
+        "lib/netstandard2.0/Tizen.Uix.Stt.xml",\r
+        "lib/netstandard2.0/Tizen.Uix.SttEngine.dll",\r
+        "lib/netstandard2.0/Tizen.Uix.SttEngine.xml",\r
+        "lib/netstandard2.0/Tizen.Uix.Tts.dll",\r
+        "lib/netstandard2.0/Tizen.Uix.Tts.xml",\r
+        "lib/netstandard2.0/Tizen.Uix.TtsEngine.dll",\r
+        "lib/netstandard2.0/Tizen.Uix.TtsEngine.xml",\r
+        "lib/netstandard2.0/Tizen.Uix.VoiceControl.dll",\r
+        "lib/netstandard2.0/Tizen.Uix.VoiceControl.xml",\r
+        "lib/netstandard2.0/Tizen.WebView.dll",\r
+        "lib/netstandard2.0/Tizen.WebView.xml",\r
+        "lib/netstandard2.0/Tizen.dll",\r
+        "lib/netstandard2.0/Tizen.xml",\r
+        "tizen.net.4.0.0.nupkg.sha512",\r
+        "tizen.net.nuspec"\r
+      ]\r
+    },\r
+    "Tizen.NET.Sdk/1.0.1": {\r
+      "sha512": "ZVbJ3+4mlQHPOsXLT9WD3rMSEYqvs7p1mlpvMV46kKMkn2l9qYGgj58GiFi2LJxuJ+wTxmjqw29SDUG46g7A0Q==",\r
+      "type": "package",\r
+      "path": "tizen.net.sdk/1.0.1",\r
+      "files": [\r
+        "build/Tizen.NET.Sdk.Common.targets",\r
+        "build/Tizen.NET.Sdk.Packaging.targets",\r
+        "build/Tizen.NET.Sdk.VisualStudio.targets",\r
+        "build/Tizen.NET.Sdk.props",\r
+        "build/Tizen.NET.Sdk.targets",\r
+        "certificate/author_test.p12",\r
+        "certificate/tizen-distributor-partner-manufacturer-signer.p12",\r
+        "certificate/tizen-distributor-partner-signer.p12",\r
+        "certificate/tizen-distributor-signer.p12",\r
+        "tizen.net.sdk.1.0.1.nupkg.sha512",\r
+        "tizen.net.sdk.nuspec",\r
+        "tools/net45/BouncyCastle.Crypto.dll",\r
+        "tools/net45/Tizen.NET.Build.Tasks.dll",\r
+        "tools/netstandard1.6/BouncyCastle.Crypto.dll",\r
+        "tools/netstandard1.6/Tizen.NET.Build.Tasks.dll"\r
+      ]\r
+    }\r
+  },\r
+  "projectFileDependencyGroups": {\r
+    ".NETStandard,Version=v2.0": [\r
+      "NETStandard.Library >= 2.0.1",\r
+      "Tizen.NET >= 4.0.0",\r
+      "Tizen.NET.Sdk >= 1.0.1"\r
+    ]\r
+  },\r
+  "packageFolders": {\r
+    "C:\\Users\\Administrator\\.nuget\\packages\\": {},\r
+    "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {}\r
+  },\r
+  "project": {\r
+    "version": "1.0.0",\r
+    "restore": {\r
+      "projectUniqueName": "C:\\Users\\Administrator\\source\\repos\\nltk_csharp_library\\Nltk_Common_Library\\Nltk_Common_Library.csproj",\r
+      "projectName": "Nltk_Common_Library",\r
+      "projectPath": "C:\\Users\\Administrator\\source\\repos\\nltk_csharp_library\\Nltk_Common_Library\\Nltk_Common_Library.csproj",\r
+      "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\",\r
+      "outputPath": "C:\\Users\\Administrator\\source\\repos\\nltk_csharp_library\\Nltk_Common_Library\\obj\\",\r
+      "projectStyle": "PackageReference",\r
+      "fallbackFolders": [\r
+        "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"\r
+      ],\r
+      "configFilePaths": [\r
+        "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config",\r
+        "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"\r
+      ],\r
+      "originalTargetFrameworks": [\r
+        "netstandard2.0"\r
+      ],\r
+      "sources": {\r
+        "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},\r
+        "http://www.myget.org/F/tizen/api/V2": {},\r
+        "https://api.nuget.org/v3/index.json": {}\r
+      },\r
+      "frameworks": {\r
+        "netstandard2.0": {\r
+          "projectReferences": {}\r
+        }\r
+      },\r
+      "warningProperties": {\r
+        "warnAsError": [\r
+          "NU1605"\r
+        ]\r
+      }\r
+    },\r
+    "frameworks": {\r
+      "netstandard2.0": {\r
+        "dependencies": {\r
+          "NETStandard.Library": {\r
+            "suppressParent": "All",\r
+            "target": "Package",\r
+            "version": "[2.0.1, )",\r
+            "autoReferenced": true\r
+          },\r
+          "Tizen.NET": {\r
+            "include": "Compile, Build, Native, ContentFiles, Analyzers",\r
+            "target": "Package",\r
+            "version": "[4.0.0, )"\r
+          },\r
+          "Tizen.NET.Sdk": {\r
+            "target": "Package",\r
+            "version": "[1.0.1, )"\r
+          }\r
+        },\r
+        "imports": [\r
+          "net461"\r
+        ],\r
+        "assetTargetFallback": true,\r
+        "warn": true\r
+      }\r
+    }\r
+  }\r
+}
\ No newline at end of file
diff --git a/nltk_csharp_library/Nltk_Csharp_Library.sln b/nltk_csharp_library/Nltk_Csharp_Library.sln
new file mode 100644 (file)
index 0000000..e0e9271
--- /dev/null
@@ -0,0 +1,31 @@
+\r
+Microsoft Visual Studio Solution File, Format Version 12.00\r
+# Visual Studio 15\r
+VisualStudioVersion = 15.0.27703.1\r
+MinimumVisualStudioVersion = 10.0.40219.1\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Nltk_Common_Library", "Nltk_Common_Library\Nltk_Common_Library.csproj", "{272C4111-17FA-47AB-95D2-79B444695FAB}"\r
+EndProject\r
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Nltk_Demo_App", "Nltk_Demo_App\Nltk_Demo_App.csproj", "{5E4D9002-9645-46DB-8367-C85A5CE041A1}"\r
+EndProject\r
+Global\r
+       GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
+               Debug|Any CPU = Debug|Any CPU\r
+               Release|Any CPU = Release|Any CPU\r
+       EndGlobalSection\r
+       GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
+               {272C4111-17FA-47AB-95D2-79B444695FAB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+               {272C4111-17FA-47AB-95D2-79B444695FAB}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+               {272C4111-17FA-47AB-95D2-79B444695FAB}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+               {272C4111-17FA-47AB-95D2-79B444695FAB}.Release|Any CPU.Build.0 = Release|Any CPU\r
+               {5E4D9002-9645-46DB-8367-C85A5CE041A1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU\r
+               {5E4D9002-9645-46DB-8367-C85A5CE041A1}.Debug|Any CPU.Build.0 = Debug|Any CPU\r
+               {5E4D9002-9645-46DB-8367-C85A5CE041A1}.Release|Any CPU.ActiveCfg = Release|Any CPU\r
+               {5E4D9002-9645-46DB-8367-C85A5CE041A1}.Release|Any CPU.Build.0 = Release|Any CPU\r
+       EndGlobalSection\r
+       GlobalSection(SolutionProperties) = preSolution\r
+               HideSolutionNode = FALSE\r
+       EndGlobalSection\r
+       GlobalSection(ExtensibilityGlobals) = postSolution\r
+               SolutionGuid = {9BCF4E6F-1E46-4323-9206-55FD13319CBE}\r
+       EndGlobalSection\r
+EndGlobal\r
diff --git a/nltk_csharp_library/Nltk_Demo_App/Nltk_Demo_App.csproj b/nltk_csharp_library/Nltk_Demo_App/Nltk_Demo_App.csproj
new file mode 100644 (file)
index 0000000..6665eb6
--- /dev/null
@@ -0,0 +1,32 @@
+<Project Sdk="Microsoft.NET.Sdk">\r
+\r
+  <!-- Property Group for .NET Core Project -->\r
+  <PropertyGroup>\r
+    <OutputType>Exe</OutputType>\r
+    <TargetFramework>netcoreapp2.0</TargetFramework>\r
+  </PropertyGroup>\r
+\r
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">\r
+    <DebugType>portable</DebugType>\r
+  </PropertyGroup>\r
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">\r
+    <DebugType>None</DebugType>\r
+  </PropertyGroup>\r
+\r
+  <ItemGroup>\r
+    <Folder Include="lib\" />\r
+    <Folder Include="res\" />\r
+  </ItemGroup>\r
+\r
+  <!-- Include Nuget Package for Tizen Project building -->\r
+  <ItemGroup>\r
+    <PackageReference Include="Tizen.NET" Version="4.0.0">\r
+      <ExcludeAssets>Runtime</ExcludeAssets>\r
+    </PackageReference>\r
+    <PackageReference Include="Tizen.NET.Sdk" Version="1.0.1" />\r
+  </ItemGroup>\r
+  <ItemGroup>\r
+    <ProjectReference Include="..\Nltk_Common_Library\Nltk_Common_Library.csproj" />\r
+  </ItemGroup>\r
+\r
+</Project>\r
diff --git a/nltk_csharp_library/Nltk_Demo_App/Nltk_Demo_App.csproj.user b/nltk_csharp_library/Nltk_Demo_App/Nltk_Demo_App.csproj.user
new file mode 100644 (file)
index 0000000..86e4f1f
--- /dev/null
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8"?>\r
+<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+  <PropertyGroup>\r
+    <ActiveDebugProfile>Nltk_Demo_App</ActiveDebugProfile>\r
+  </PropertyGroup>\r
+</Project>
\ No newline at end of file
diff --git a/nltk_csharp_library/Nltk_Demo_App/Nltk_Demo_App_App.cs b/nltk_csharp_library/Nltk_Demo_App/Nltk_Demo_App_App.cs
new file mode 100644 (file)
index 0000000..5fd1f69
--- /dev/null
@@ -0,0 +1,75 @@
+using Tizen.Applications;\r
+using ElmSharp;\r
+\r
+namespace Nltk_Demo_App\r
+{\r
+    class App : CoreUIApplication\r
+    {\r
+        string x;\r
+        protected override void OnCreate()\r
+        {\r
+            base.OnCreate();\r
+            try\r
+            {\r
+                Nltk_Common_Library.NLTK_Class.init();\r
+                x = Nltk_Common_Library.NLTK_Class.ne_chunk("Hello World");\r
+            }\r
+            catch (System.Exception e)\r
+            {\r
+                x = e.Message;\r
+            }\r
+            Initialize();\r
+        }\r
+\r
+        protected override void OnTerminate()\r
+        {\r
+            base.OnTerminate();\r
+            Nltk_Common_Library.NLTK_Class.release();\r
+        }\r
+\r
+        void Initialize()\r
+        {\r
+            Window window = new Window("ElmSharpApp")\r
+            {\r
+                AvailableRotations = DisplayRotation.Degree_0 | DisplayRotation.Degree_180 | DisplayRotation.Degree_270 | DisplayRotation.Degree_90\r
+            };\r
+            window.BackButtonPressed += (s, e) =>\r
+            {\r
+                Exit();\r
+            };\r
+            window.Show();\r
+\r
+            var box = new Box(window)\r
+            {\r
+                AlignmentX = -1,\r
+                AlignmentY = -1,\r
+                WeightX = 1,\r
+                WeightY = 1,\r
+            };\r
+            box.Show();\r
+            var bg = new Background(window)\r
+            {\r
+                Color = Color.White\r
+            };\r
+            bg.SetContent(box);\r
+            var conformant = new Conformant(window);\r
+            conformant.Show();\r
+            conformant.SetContent(bg);\r
+            var label = new Label(window)\r
+            {\r
+                Text = x,\r
+                Color = Color.Black\r
+            };\r
+            label.Show();\r
+            box.PackEnd(label);\r
+        }\r
+\r
+        static void Main(string[] args)\r
+        {\r
+            Elementary.Initialize();\r
+            Elementary.ThemeOverlay();\r
+            App app = new App();\r
+            app.Run(args);\r
+        }\r
+    }\r
+}\r
diff --git a/nltk_csharp_library/Nltk_Demo_App/obj/Nltk_Demo_App.csproj.nuget.cache b/nltk_csharp_library/Nltk_Demo_App/obj/Nltk_Demo_App.csproj.nuget.cache
new file mode 100644 (file)
index 0000000..6a6e746
--- /dev/null
@@ -0,0 +1,5 @@
+{\r
+  "version": 1,\r
+  "dgSpecHash": "QDJlaHtEimjzRSovqXweIXZowTRhgmqB0Pn9GcfP3iwiEcuKT8eM+HQbOidDheLk2abW4SS5CHwF/ooJCtmFiw==",\r
+  "success": true\r
+}
\ No newline at end of file
diff --git a/nltk_csharp_library/Nltk_Demo_App/obj/Nltk_Demo_App.csproj.nuget.g.props b/nltk_csharp_library/Nltk_Demo_App/obj/Nltk_Demo_App.csproj.nuget.g.props
new file mode 100644 (file)
index 0000000..5d71636
--- /dev/null
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8" standalone="no"?>\r
+<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+  <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">\r
+    <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>\r
+    <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>\r
+    <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">C:\Users\Administrator\source\repos\nltk_csharp_library\Nltk_Demo_App\obj\project.assets.json</ProjectAssetsFile>\r
+    <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>\r
+    <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Administrator\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder</NuGetPackageFolders>\r
+    <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>\r
+    <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">4.7.0</NuGetToolVersion>\r
+  </PropertyGroup>\r
+  <PropertyGroup>\r
+    <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>\r
+  </PropertyGroup>\r
+  <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">\r
+    <Import Project="$(NuGetPackageRoot)tizen.net.sdk\1.0.1\build\Tizen.NET.Sdk.props" Condition="Exists('$(NuGetPackageRoot)tizen.net.sdk\1.0.1\build\Tizen.NET.Sdk.props')" />\r
+    <Import Project="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\build\netcoreapp2.0\Microsoft.NETCore.App.props" Condition="Exists('C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\build\netcoreapp2.0\Microsoft.NETCore.App.props')" />\r
+  </ImportGroup>\r
+</Project>
\ No newline at end of file
diff --git a/nltk_csharp_library/Nltk_Demo_App/obj/Nltk_Demo_App.csproj.nuget.g.targets b/nltk_csharp_library/Nltk_Demo_App/obj/Nltk_Demo_App.csproj.nuget.g.targets
new file mode 100644 (file)
index 0000000..968fcb7
--- /dev/null
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="utf-8" standalone="no"?>\r
+<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
+  <PropertyGroup>\r
+    <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>\r
+  </PropertyGroup>\r
+  <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">\r
+    <Import Project="$(NuGetPackageRoot)tizen.net.sdk\1.0.1\build\Tizen.NET.Sdk.targets" Condition="Exists('$(NuGetPackageRoot)tizen.net.sdk\1.0.1\build\Tizen.NET.Sdk.targets')" />\r
+    <Import Project="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\netstandard.library\2.0.0\build\netstandard2.0\NETStandard.Library.targets" Condition="Exists('C:\Program Files\dotnet\sdk\NuGetFallbackFolder\netstandard.library\2.0.0\build\netstandard2.0\NETStandard.Library.targets')" />\r
+    <Import Project="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\build\netcoreapp2.0\Microsoft.NETCore.App.targets" Condition="Exists('C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.netcore.app\2.0.0\build\netcoreapp2.0\Microsoft.NETCore.App.targets')" />\r
+  </ImportGroup>\r
+</Project>
\ No newline at end of file
diff --git a/nltk_csharp_library/Nltk_Demo_App/obj/project.assets.json b/nltk_csharp_library/Nltk_Demo_App/obj/project.assets.json
new file mode 100644 (file)
index 0000000..ad776f2
--- /dev/null
@@ -0,0 +1,1314 @@
+{\r
+  "version": 3,\r
+  "targets": {\r
+    ".NETCoreApp,Version=v2.0": {\r
+      "Microsoft.NETCore.App/2.0.0": {\r
+        "type": "package",\r
+        "dependencies": {\r
+          "Microsoft.NETCore.DotNetHostPolicy": "2.0.0",\r
+          "Microsoft.NETCore.Platforms": "2.0.0",\r
+          "NETStandard.Library": "2.0.0"\r
+        },\r
+        "compile": {\r
+          "ref/netcoreapp2.0/Microsoft.CSharp.dll": {},\r
+          "ref/netcoreapp2.0/Microsoft.VisualBasic.dll": {},\r
+          "ref/netcoreapp2.0/Microsoft.Win32.Primitives.dll": {},\r
+          "ref/netcoreapp2.0/System.AppContext.dll": {},\r
+          "ref/netcoreapp2.0/System.Buffers.dll": {},\r
+          "ref/netcoreapp2.0/System.Collections.Concurrent.dll": {},\r
+          "ref/netcoreapp2.0/System.Collections.Immutable.dll": {},\r
+          "ref/netcoreapp2.0/System.Collections.NonGeneric.dll": {},\r
+          "ref/netcoreapp2.0/System.Collections.Specialized.dll": {},\r
+          "ref/netcoreapp2.0/System.Collections.dll": {},\r
+          "ref/netcoreapp2.0/System.ComponentModel.Annotations.dll": {},\r
+          "ref/netcoreapp2.0/System.ComponentModel.Composition.dll": {},\r
+          "ref/netcoreapp2.0/System.ComponentModel.DataAnnotations.dll": {},\r
+          "ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.dll": {},\r
+          "ref/netcoreapp2.0/System.ComponentModel.Primitives.dll": {},\r
+          "ref/netcoreapp2.0/System.ComponentModel.TypeConverter.dll": {},\r
+          "ref/netcoreapp2.0/System.ComponentModel.dll": {},\r
+          "ref/netcoreapp2.0/System.Configuration.dll": {},\r
+          "ref/netcoreapp2.0/System.Console.dll": {},\r
+          "ref/netcoreapp2.0/System.Core.dll": {},\r
+          "ref/netcoreapp2.0/System.Data.Common.dll": {},\r
+          "ref/netcoreapp2.0/System.Data.dll": {},\r
+          "ref/netcoreapp2.0/System.Diagnostics.Contracts.dll": {},\r
+          "ref/netcoreapp2.0/System.Diagnostics.Debug.dll": {},\r
+          "ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.dll": {},\r
+          "ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.dll": {},\r
+          "ref/netcoreapp2.0/System.Diagnostics.Process.dll": {},\r
+          "ref/netcoreapp2.0/System.Diagnostics.StackTrace.dll": {},\r
+          "ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.dll": {},\r
+          "ref/netcoreapp2.0/System.Diagnostics.Tools.dll": {},\r
+          "ref/netcoreapp2.0/System.Diagnostics.TraceSource.dll": {},\r
+          "ref/netcoreapp2.0/System.Diagnostics.Tracing.dll": {},\r
+          "ref/netcoreapp2.0/System.Drawing.Primitives.dll": {},\r
+          "ref/netcoreapp2.0/System.Drawing.dll": {},\r
+          "ref/netcoreapp2.0/System.Dynamic.Runtime.dll": {},\r
+          "ref/netcoreapp2.0/System.Globalization.Calendars.dll": {},\r
+          "ref/netcoreapp2.0/System.Globalization.Extensions.dll": {},\r
+          "ref/netcoreapp2.0/System.Globalization.dll": {},\r
+          "ref/netcoreapp2.0/System.IO.Compression.FileSystem.dll": {},\r
+          "ref/netcoreapp2.0/System.IO.Compression.ZipFile.dll": {},\r
+          "ref/netcoreapp2.0/System.IO.Compression.dll": {},\r
+          "ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.dll": {},\r
+          "ref/netcoreapp2.0/System.IO.FileSystem.Primitives.dll": {},\r
+          "ref/netcoreapp2.0/System.IO.FileSystem.Watcher.dll": {},\r
+          "ref/netcoreapp2.0/System.IO.FileSystem.dll": {},\r
+          "ref/netcoreapp2.0/System.IO.IsolatedStorage.dll": {},\r
+          "ref/netcoreapp2.0/System.IO.MemoryMappedFiles.dll": {},\r
+          "ref/netcoreapp2.0/System.IO.Pipes.dll": {},\r
+          "ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.dll": {},\r
+          "ref/netcoreapp2.0/System.IO.dll": {},\r
+          "ref/netcoreapp2.0/System.Linq.Expressions.dll": {},\r
+          "ref/netcoreapp2.0/System.Linq.Parallel.dll": {},\r
+          "ref/netcoreapp2.0/System.Linq.Queryable.dll": {},\r
+          "ref/netcoreapp2.0/System.Linq.dll": {},\r
+          "ref/netcoreapp2.0/System.Net.Http.dll": {},\r
+          "ref/netcoreapp2.0/System.Net.HttpListener.dll": {},\r
+          "ref/netcoreapp2.0/System.Net.Mail.dll": {},\r
+          "ref/netcoreapp2.0/System.Net.NameResolution.dll": {},\r
+          "ref/netcoreapp2.0/System.Net.NetworkInformation.dll": {},\r
+          "ref/netcoreapp2.0/System.Net.Ping.dll": {},\r
+          "ref/netcoreapp2.0/System.Net.Primitives.dll": {},\r
+          "ref/netcoreapp2.0/System.Net.Requests.dll": {},\r
+          "ref/netcoreapp2.0/System.Net.Security.dll": {},\r
+          "ref/netcoreapp2.0/System.Net.ServicePoint.dll": {},\r
+          "ref/netcoreapp2.0/System.Net.Sockets.dll": {},\r
+          "ref/netcoreapp2.0/System.Net.WebClient.dll": {},\r
+          "ref/netcoreapp2.0/System.Net.WebHeaderCollection.dll": {},\r
+          "ref/netcoreapp2.0/System.Net.WebProxy.dll": {},\r
+          "ref/netcoreapp2.0/System.Net.WebSockets.Client.dll": {},\r
+          "ref/netcoreapp2.0/System.Net.WebSockets.dll": {},\r
+          "ref/netcoreapp2.0/System.Net.dll": {},\r
+          "ref/netcoreapp2.0/System.Numerics.Vectors.dll": {},\r
+          "ref/netcoreapp2.0/System.Numerics.dll": {},\r
+          "ref/netcoreapp2.0/System.ObjectModel.dll": {},\r
+          "ref/netcoreapp2.0/System.Reflection.DispatchProxy.dll": {},\r
+          "ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.dll": {},\r
+          "ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.dll": {},\r
+          "ref/netcoreapp2.0/System.Reflection.Emit.dll": {},\r
+          "ref/netcoreapp2.0/System.Reflection.Extensions.dll": {},\r
+          "ref/netcoreapp2.0/System.Reflection.Metadata.dll": {},\r
+          "ref/netcoreapp2.0/System.Reflection.Primitives.dll": {},\r
+          "ref/netcoreapp2.0/System.Reflection.TypeExtensions.dll": {},\r
+          "ref/netcoreapp2.0/System.Reflection.dll": {},\r
+          "ref/netcoreapp2.0/System.Resources.Reader.dll": {},\r
+          "ref/netcoreapp2.0/System.Resources.ResourceManager.dll": {},\r
+          "ref/netcoreapp2.0/System.Resources.Writer.dll": {},\r
+          "ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.dll": {},\r
+          "ref/netcoreapp2.0/System.Runtime.Extensions.dll": {},\r
+          "ref/netcoreapp2.0/System.Runtime.Handles.dll": {},\r
+          "ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.dll": {},\r
+          "ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.dll": {},\r
+          "ref/netcoreapp2.0/System.Runtime.InteropServices.dll": {},\r
+          "ref/netcoreapp2.0/System.Runtime.Loader.dll": {},\r
+          "ref/netcoreapp2.0/System.Runtime.Numerics.dll": {},\r
+          "ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.dll": {},\r
+          "ref/netcoreapp2.0/System.Runtime.Serialization.Json.dll": {},\r
+          "ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.dll": {},\r
+          "ref/netcoreapp2.0/System.Runtime.Serialization.Xml.dll": {},\r
+          "ref/netcoreapp2.0/System.Runtime.Serialization.dll": {},\r
+          "ref/netcoreapp2.0/System.Runtime.dll": {},\r
+          "ref/netcoreapp2.0/System.Security.Claims.dll": {},\r
+          "ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.dll": {},\r
+          "ref/netcoreapp2.0/System.Security.Cryptography.Csp.dll": {},\r
+          "ref/netcoreapp2.0/System.Security.Cryptography.Encoding.dll": {},\r
+          "ref/netcoreapp2.0/System.Security.Cryptography.Primitives.dll": {},\r
+          "ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.dll": {},\r
+          "ref/netcoreapp2.0/System.Security.Principal.dll": {},\r
+          "ref/netcoreapp2.0/System.Security.SecureString.dll": {},\r
+          "ref/netcoreapp2.0/System.Security.dll": {},\r
+          "ref/netcoreapp2.0/System.ServiceModel.Web.dll": {},\r
+          "ref/netcoreapp2.0/System.ServiceProcess.dll": {},\r
+          "ref/netcoreapp2.0/System.Text.Encoding.Extensions.dll": {},\r
+          "ref/netcoreapp2.0/System.Text.Encoding.dll": {},\r
+          "ref/netcoreapp2.0/System.Text.RegularExpressions.dll": {},\r
+          "ref/netcoreapp2.0/System.Threading.Overlapped.dll": {},\r
+          "ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.dll": {},\r
+          "ref/netcoreapp2.0/System.Threading.Tasks.Extensions.dll": {},\r
+          "ref/netcoreapp2.0/System.Threading.Tasks.Parallel.dll": {},\r
+          "ref/netcoreapp2.0/System.Threading.Tasks.dll": {},\r
+          "ref/netcoreapp2.0/System.Threading.Thread.dll": {},\r
+          "ref/netcoreapp2.0/System.Threading.ThreadPool.dll": {},\r
+          "ref/netcoreapp2.0/System.Threading.Timer.dll": {},\r
+          "ref/netcoreapp2.0/System.Threading.dll": {},\r
+          "ref/netcoreapp2.0/System.Transactions.Local.dll": {},\r
+          "ref/netcoreapp2.0/System.Transactions.dll": {},\r
+          "ref/netcoreapp2.0/System.ValueTuple.dll": {},\r
+          "ref/netcoreapp2.0/System.Web.HttpUtility.dll": {},\r
+          "ref/netcoreapp2.0/System.Web.dll": {},\r
+          "ref/netcoreapp2.0/System.Windows.dll": {},\r
+          "ref/netcoreapp2.0/System.Xml.Linq.dll": {},\r
+          "ref/netcoreapp2.0/System.Xml.ReaderWriter.dll": {},\r
+          "ref/netcoreapp2.0/System.Xml.Serialization.dll": {},\r
+          "ref/netcoreapp2.0/System.Xml.XDocument.dll": {},\r
+          "ref/netcoreapp2.0/System.Xml.XPath.XDocument.dll": {},\r
+          "ref/netcoreapp2.0/System.Xml.XPath.dll": {},\r
+          "ref/netcoreapp2.0/System.Xml.XmlDocument.dll": {},\r
+          "ref/netcoreapp2.0/System.Xml.XmlSerializer.dll": {},\r
+          "ref/netcoreapp2.0/System.Xml.dll": {},\r
+          "ref/netcoreapp2.0/System.dll": {},\r
+          "ref/netcoreapp2.0/WindowsBase.dll": {},\r
+          "ref/netcoreapp2.0/mscorlib.dll": {},\r
+          "ref/netcoreapp2.0/netstandard.dll": {}\r
+        },\r
+        "build": {\r
+          "build/netcoreapp2.0/Microsoft.NETCore.App.props": {},\r
+          "build/netcoreapp2.0/Microsoft.NETCore.App.targets": {}\r
+        }\r
+      },\r
+      "Microsoft.NETCore.DotNetAppHost/2.0.0": {\r
+        "type": "package"\r
+      },\r
+      "Microsoft.NETCore.DotNetHostPolicy/2.0.0": {\r
+        "type": "package",\r
+        "dependencies": {\r
+          "Microsoft.NETCore.DotNetHostResolver": "2.0.0"\r
+        }\r
+      },\r
+      "Microsoft.NETCore.DotNetHostResolver/2.0.0": {\r
+        "type": "package",\r
+        "dependencies": {\r
+          "Microsoft.NETCore.DotNetAppHost": "2.0.0"\r
+        }\r
+      },\r
+      "Microsoft.NETCore.Platforms/2.0.0": {\r
+        "type": "package",\r
+        "compile": {\r
+          "lib/netstandard1.0/_._": {}\r
+        },\r
+        "runtime": {\r
+          "lib/netstandard1.0/_._": {}\r
+        }\r
+      },\r
+      "NETStandard.Library/2.0.0": {\r
+        "type": "package",\r
+        "dependencies": {\r
+          "Microsoft.NETCore.Platforms": "1.1.0"\r
+        },\r
+        "compile": {\r
+          "lib/netstandard1.0/_._": {}\r
+        },\r
+        "runtime": {\r
+          "lib/netstandard1.0/_._": {}\r
+        },\r
+        "build": {\r
+          "build/netstandard2.0/NETStandard.Library.targets": {}\r
+        }\r
+      },\r
+      "Tizen.NET/4.0.0": {\r
+        "type": "package",\r
+        "compile": {\r
+          "lib/netstandard2.0/ElmSharp.Wearable.dll": {},\r
+          "lib/netstandard2.0/ElmSharp.dll": {},\r
+          "lib/netstandard2.0/Tizen.Account.AccountManager.dll": {},\r
+          "lib/netstandard2.0/Tizen.Account.FidoClient.dll": {},\r
+          "lib/netstandard2.0/Tizen.Account.OAuth2.dll": {},\r
+          "lib/netstandard2.0/Tizen.Account.SyncManager.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.Alarm.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.AttachPanel.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.Badge.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.Common.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.DataControl.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.MessagePort.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.Notification.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.NotificationEventListener.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.PackageManager.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.Preference.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.RemoteView.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.Service.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.Shortcut.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.ToastMessage.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.UI.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.WatchApplication.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.WidgetApplication.dll": {},\r
+          "lib/netstandard2.0/Tizen.Applications.WidgetControl.dll": {},\r
+          "lib/netstandard2.0/Tizen.Content.Download.dll": {},\r
+          "lib/netstandard2.0/Tizen.Content.MediaContent.dll": {},\r
+          "lib/netstandard2.0/Tizen.Content.MimeType.dll": {},\r
+          "lib/netstandard2.0/Tizen.Context.dll": {},\r
+          "lib/netstandard2.0/Tizen.Location.Geofence.dll": {},\r
+          "lib/netstandard2.0/Tizen.Location.dll": {},\r
+          "lib/netstandard2.0/Tizen.Log.dll": {},\r
+          "lib/netstandard2.0/Tizen.Maps.dll": {},\r
+          "lib/netstandard2.0/Tizen.Messaging.Push.dll": {},\r
+          "lib/netstandard2.0/Tizen.Messaging.dll": {},\r
+          "lib/netstandard2.0/Tizen.Multimedia.AudioIO.dll": {},\r
+          "lib/netstandard2.0/Tizen.Multimedia.Camera.dll": {},\r
+          "lib/netstandard2.0/Tizen.Multimedia.MediaCodec.dll": {},\r
+          "lib/netstandard2.0/Tizen.Multimedia.MediaPlayer.dll": {},\r
+          "lib/netstandard2.0/Tizen.Multimedia.Metadata.dll": {},\r
+          "lib/netstandard2.0/Tizen.Multimedia.Radio.dll": {},\r
+          "lib/netstandard2.0/Tizen.Multimedia.Recorder.dll": {},\r
+          "lib/netstandard2.0/Tizen.Multimedia.Remoting.dll": {},\r
+          "lib/netstandard2.0/Tizen.Multimedia.StreamRecorder.dll": {},\r
+          "lib/netstandard2.0/Tizen.Multimedia.Util.dll": {},\r
+          "lib/netstandard2.0/Tizen.Multimedia.Vision.dll": {},\r
+          "lib/netstandard2.0/Tizen.Multimedia.dll": {},\r
+          "lib/netstandard2.0/Tizen.NUI.dll": {},\r
+          "lib/netstandard2.0/Tizen.Network.Bluetooth.dll": {},\r
+          "lib/netstandard2.0/Tizen.Network.Connection.dll": {},\r
+          "lib/netstandard2.0/Tizen.Network.IoTConnectivity.dll": {},\r
+          "lib/netstandard2.0/Tizen.Network.Nfc.dll": {},\r
+          "lib/netstandard2.0/Tizen.Network.Nsd.dll": {},\r
+          "lib/netstandard2.0/Tizen.Network.Smartcard.dll": {},\r
+          "lib/netstandard2.0/Tizen.Network.WiFi.dll": {},\r
+          "lib/netstandard2.0/Tizen.Network.WiFiDirect.dll": {},\r
+          "lib/netstandard2.0/Tizen.PhonenumberUtils.dll": {},\r
+          "lib/netstandard2.0/Tizen.Pims.Calendar.dll": {},\r
+          "lib/netstandard2.0/Tizen.Pims.Contacts.dll": {},\r
+          "lib/netstandard2.0/Tizen.Security.PrivacyPrivilegeManager.dll": {},\r
+          "lib/netstandard2.0/Tizen.Security.SecureRepository.dll": {},\r
+          "lib/netstandard2.0/Tizen.Security.TEEC.dll": {},\r
+          "lib/netstandard2.0/Tizen.Security.dll": {},\r
+          "lib/netstandard2.0/Tizen.Sensor.dll": {},\r
+          "lib/netstandard2.0/Tizen.System.Feedback.dll": {},\r
+          "lib/netstandard2.0/Tizen.System.Information.dll": {},\r
+          "lib/netstandard2.0/Tizen.System.MediaKey.dll": {},\r
+          "lib/netstandard2.0/Tizen.System.PlatformConfig.dll": {},\r
+          "lib/netstandard2.0/Tizen.System.Storage.dll": {},\r
+          "lib/netstandard2.0/Tizen.System.SystemSettings.dll": {},\r
+          "lib/netstandard2.0/Tizen.System.Usb.dll": {},\r
+          "lib/netstandard2.0/Tizen.System.dll": {},\r
+          "lib/netstandard2.0/Tizen.Telephony.dll": {},\r
+          "lib/netstandard2.0/Tizen.Tracer.dll": {},\r
+          "lib/netstandard2.0/Tizen.Uix.InputMethod.dll": {},\r
+          "lib/netstandard2.0/Tizen.Uix.InputMethodManager.dll": {},\r
+          "lib/netstandard2.0/Tizen.Uix.Stt.dll": {},\r
+          "lib/netstandard2.0/Tizen.Uix.SttEngine.dll": {},\r
+          "lib/netstandard2.0/Tizen.Uix.Tts.dll": {},\r
+          "lib/netstandard2.0/Tizen.Uix.TtsEngine.dll": {},\r
+          "lib/netstandard2.0/Tizen.Uix.VoiceControl.dll": {},\r
+          "lib/netstandard2.0/Tizen.WebView.dll": {},\r
+          "lib/netstandard2.0/Tizen.dll": {}\r
+        },\r
+        "runtime": {\r
+          "lib/netstandard2.0/_._": {}\r
+        }\r
+      },\r
+      "Tizen.NET.Sdk/1.0.1": {\r
+        "type": "package",\r
+        "build": {\r
+          "build/Tizen.NET.Sdk.props": {},\r
+          "build/Tizen.NET.Sdk.targets": {}\r
+        }\r
+      },\r
+      "Nltk_Common_Library/1.0.0": {\r
+        "type": "project",\r
+        "framework": ".NETStandard,Version=v2.0",\r
+        "dependencies": {\r
+          "Tizen.NET": "4.0.0",\r
+          "Tizen.NET.Sdk": "1.0.1"\r
+        },\r
+        "compile": {\r
+          "bin/placeholder/Nltk_Common_Library.dll": {}\r
+        },\r
+        "runtime": {\r
+          "bin/placeholder/Nltk_Common_Library.dll": {}\r
+        }\r
+      }\r
+    }\r
+  },\r
+  "libraries": {\r
+    "Microsoft.NETCore.App/2.0.0": {\r
+      "sha512": "/mzXF+UtZef+VpzzN88EpvFq5U6z4rj54ZMq/J968H6pcvyLOmcupmTRpJ3CJm8ILoCGh9WI7qpDdiKtuzswrQ==",\r
+      "type": "package",\r
+      "path": "microsoft.netcore.app/2.0.0",\r
+      "files": [\r
+        "LICENSE.TXT",\r
+        "Microsoft.NETCore.App.versions.txt",\r
+        "THIRD-PARTY-NOTICES.TXT",\r
+        "build/netcoreapp2.0/Microsoft.NETCore.App.PlatformManifest.txt",\r
+        "build/netcoreapp2.0/Microsoft.NETCore.App.props",\r
+        "build/netcoreapp2.0/Microsoft.NETCore.App.targets",\r
+        "microsoft.netcore.app.2.0.0.nupkg.sha512",\r
+        "microsoft.netcore.app.nuspec",\r
+        "ref/netcoreapp/_._",\r
+        "ref/netcoreapp2.0/Microsoft.CSharp.dll",\r
+        "ref/netcoreapp2.0/Microsoft.CSharp.xml",\r
+        "ref/netcoreapp2.0/Microsoft.VisualBasic.dll",\r
+        "ref/netcoreapp2.0/Microsoft.VisualBasic.xml",\r
+        "ref/netcoreapp2.0/Microsoft.Win32.Primitives.dll",\r
+        "ref/netcoreapp2.0/Microsoft.Win32.Primitives.xml",\r
+        "ref/netcoreapp2.0/System.AppContext.dll",\r
+        "ref/netcoreapp2.0/System.AppContext.xml",\r
+        "ref/netcoreapp2.0/System.Buffers.dll",\r
+        "ref/netcoreapp2.0/System.Buffers.xml",\r
+        "ref/netcoreapp2.0/System.Collections.Concurrent.dll",\r
+        "ref/netcoreapp2.0/System.Collections.Concurrent.xml",\r
+        "ref/netcoreapp2.0/System.Collections.Immutable.dll",\r
+        "ref/netcoreapp2.0/System.Collections.Immutable.xml",\r
+        "ref/netcoreapp2.0/System.Collections.NonGeneric.dll",\r
+        "ref/netcoreapp2.0/System.Collections.NonGeneric.xml",\r
+        "ref/netcoreapp2.0/System.Collections.Specialized.dll",\r
+        "ref/netcoreapp2.0/System.Collections.Specialized.xml",\r
+        "ref/netcoreapp2.0/System.Collections.dll",\r
+        "ref/netcoreapp2.0/System.Collections.xml",\r
+        "ref/netcoreapp2.0/System.ComponentModel.Annotations.dll",\r
+        "ref/netcoreapp2.0/System.ComponentModel.Annotations.xml",\r
+        "ref/netcoreapp2.0/System.ComponentModel.Composition.dll",\r
+        "ref/netcoreapp2.0/System.ComponentModel.DataAnnotations.dll",\r
+        "ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.dll",\r
+        "ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.xml",\r
+        "ref/netcoreapp2.0/System.ComponentModel.Primitives.dll",\r
+        "ref/netcoreapp2.0/System.ComponentModel.Primitives.xml",\r
+        "ref/netcoreapp2.0/System.ComponentModel.TypeConverter.dll",\r
+        "ref/netcoreapp2.0/System.ComponentModel.TypeConverter.xml",\r
+        "ref/netcoreapp2.0/System.ComponentModel.dll",\r
+        "ref/netcoreapp2.0/System.ComponentModel.xml",\r
+        "ref/netcoreapp2.0/System.Configuration.dll",\r
+        "ref/netcoreapp2.0/System.Console.dll",\r
+        "ref/netcoreapp2.0/System.Console.xml",\r
+        "ref/netcoreapp2.0/System.Core.dll",\r
+        "ref/netcoreapp2.0/System.Data.Common.dll",\r
+        "ref/netcoreapp2.0/System.Data.Common.xml",\r
+        "ref/netcoreapp2.0/System.Data.dll",\r
+        "ref/netcoreapp2.0/System.Diagnostics.Contracts.dll",\r
+        "ref/netcoreapp2.0/System.Diagnostics.Contracts.xml",\r
+        "ref/netcoreapp2.0/System.Diagnostics.Debug.dll",\r
+        "ref/netcoreapp2.0/System.Diagnostics.Debug.xml",\r
+        "ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.dll",\r
+        "ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.xml",\r
+        "ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.dll",\r
+        "ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.xml",\r
+        "ref/netcoreapp2.0/System.Diagnostics.Process.dll",\r
+        "ref/netcoreapp2.0/System.Diagnostics.Process.xml",\r
+        "ref/netcoreapp2.0/System.Diagnostics.StackTrace.dll",\r
+        "ref/netcoreapp2.0/System.Diagnostics.StackTrace.xml",\r
+        "ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.dll",\r
+        "ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.xml",\r
+        "ref/netcoreapp2.0/System.Diagnostics.Tools.dll",\r
+        "ref/netcoreapp2.0/System.Diagnostics.Tools.xml",\r
+        "ref/netcoreapp2.0/System.Diagnostics.TraceSource.dll",\r
+        "ref/netcoreapp2.0/System.Diagnostics.TraceSource.xml",\r
+        "ref/netcoreapp2.0/System.Diagnostics.Tracing.dll",\r
+        "ref/netcoreapp2.0/System.Diagnostics.Tracing.xml",\r
+        "ref/netcoreapp2.0/System.Drawing.Primitives.dll",\r
+        "ref/netcoreapp2.0/System.Drawing.Primitives.xml",\r
+        "ref/netcoreapp2.0/System.Drawing.dll",\r
+        "ref/netcoreapp2.0/System.Dynamic.Runtime.dll",\r
+        "ref/netcoreapp2.0/System.Dynamic.Runtime.xml",\r
+        "ref/netcoreapp2.0/System.Globalization.Calendars.dll",\r
+        "ref/netcoreapp2.0/System.Globalization.Calendars.xml",\r
+        "ref/netcoreapp2.0/System.Globalization.Extensions.dll",\r
+        "ref/netcoreapp2.0/System.Globalization.Extensions.xml",\r
+        "ref/netcoreapp2.0/System.Globalization.dll",\r
+        "ref/netcoreapp2.0/System.Globalization.xml",\r
+        "ref/netcoreapp2.0/System.IO.Compression.FileSystem.dll",\r
+        "ref/netcoreapp2.0/System.IO.Compression.ZipFile.dll",\r
+        "ref/netcoreapp2.0/System.IO.Compression.ZipFile.xml",\r
+        "ref/netcoreapp2.0/System.IO.Compression.dll",\r
+        "ref/netcoreapp2.0/System.IO.Compression.xml",\r
+        "ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.dll",\r
+        "ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.xml",\r
+        "ref/netcoreapp2.0/System.IO.FileSystem.Primitives.dll",\r
+        "ref/netcoreapp2.0/System.IO.FileSystem.Primitives.xml",\r
+        "ref/netcoreapp2.0/System.IO.FileSystem.Watcher.dll",\r
+        "ref/netcoreapp2.0/System.IO.FileSystem.Watcher.xml",\r
+        "ref/netcoreapp2.0/System.IO.FileSystem.dll",\r
+        "ref/netcoreapp2.0/System.IO.FileSystem.xml",\r
+        "ref/netcoreapp2.0/System.IO.IsolatedStorage.dll",\r
+        "ref/netcoreapp2.0/System.IO.IsolatedStorage.xml",\r
+        "ref/netcoreapp2.0/System.IO.MemoryMappedFiles.dll",\r
+        "ref/netcoreapp2.0/System.IO.MemoryMappedFiles.xml",\r
+        "ref/netcoreapp2.0/System.IO.Pipes.dll",\r
+        "ref/netcoreapp2.0/System.IO.Pipes.xml",\r
+        "ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.dll",\r
+        "ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.xml",\r
+        "ref/netcoreapp2.0/System.IO.dll",\r
+        "ref/netcoreapp2.0/System.IO.xml",\r
+        "ref/netcoreapp2.0/System.Linq.Expressions.dll",\r
+        "ref/netcoreapp2.0/System.Linq.Expressions.xml",\r
+        "ref/netcoreapp2.0/System.Linq.Parallel.dll",\r
+        "ref/netcoreapp2.0/System.Linq.Parallel.xml",\r
+        "ref/netcoreapp2.0/System.Linq.Queryable.dll",\r
+        "ref/netcoreapp2.0/System.Linq.Queryable.xml",\r
+        "ref/netcoreapp2.0/System.Linq.dll",\r
+        "ref/netcoreapp2.0/System.Linq.xml",\r
+        "ref/netcoreapp2.0/System.Net.Http.dll",\r
+        "ref/netcoreapp2.0/System.Net.Http.xml",\r
+        "ref/netcoreapp2.0/System.Net.HttpListener.dll",\r
+        "ref/netcoreapp2.0/System.Net.HttpListener.xml",\r
+        "ref/netcoreapp2.0/System.Net.Mail.dll",\r
+        "ref/netcoreapp2.0/System.Net.Mail.xml",\r
+        "ref/netcoreapp2.0/System.Net.NameResolution.dll",\r
+        "ref/netcoreapp2.0/System.Net.NameResolution.xml",\r
+        "ref/netcoreapp2.0/System.Net.NetworkInformation.dll",\r
+        "ref/netcoreapp2.0/System.Net.NetworkInformation.xml",\r
+        "ref/netcoreapp2.0/System.Net.Ping.dll",\r
+        "ref/netcoreapp2.0/System.Net.Ping.xml",\r
+        "ref/netcoreapp2.0/System.Net.Primitives.dll",\r
+        "ref/netcoreapp2.0/System.Net.Primitives.xml",\r
+        "ref/netcoreapp2.0/System.Net.Requests.dll",\r
+        "ref/netcoreapp2.0/System.Net.Requests.xml",\r
+        "ref/netcoreapp2.0/System.Net.Security.dll",\r
+        "ref/netcoreapp2.0/System.Net.Security.xml",\r
+        "ref/netcoreapp2.0/System.Net.ServicePoint.dll",\r
+        "ref/netcoreapp2.0/System.Net.ServicePoint.xml",\r
+        "ref/netcoreapp2.0/System.Net.Sockets.dll",\r
+        "ref/netcoreapp2.0/System.Net.Sockets.xml",\r
+        "ref/netcoreapp2.0/System.Net.WebClient.dll",\r
+        "ref/netcoreapp2.0/System.Net.WebClient.xml",\r
+        "ref/netcoreapp2.0/System.Net.WebHeaderCollection.dll",\r
+        "ref/netcoreapp2.0/System.Net.WebHeaderCollection.xml",\r
+        "ref/netcoreapp2.0/System.Net.WebProxy.dll",\r
+        "ref/netcoreapp2.0/System.Net.WebProxy.xml",\r
+        "ref/netcoreapp2.0/System.Net.WebSockets.Client.dll",\r
+        "ref/netcoreapp2.0/System.Net.WebSockets.Client.xml",\r
+        "ref/netcoreapp2.0/System.Net.WebSockets.dll",\r
+        "ref/netcoreapp2.0/System.Net.WebSockets.xml",\r
+        "ref/netcoreapp2.0/System.Net.dll",\r
+        "ref/netcoreapp2.0/System.Numerics.Vectors.dll",\r
+        "ref/netcoreapp2.0/System.Numerics.Vectors.xml",\r
+        "ref/netcoreapp2.0/System.Numerics.dll",\r
+        "ref/netcoreapp2.0/System.ObjectModel.dll",\r
+        "ref/netcoreapp2.0/System.ObjectModel.xml",\r
+        "ref/netcoreapp2.0/System.Reflection.DispatchProxy.dll",\r
+        "ref/netcoreapp2.0/System.Reflection.DispatchProxy.xml",\r
+        "ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.dll",\r
+        "ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.xml",\r
+        "ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.dll",\r
+        "ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.xml",\r
+        "ref/netcoreapp2.0/System.Reflection.Emit.dll",\r
+        "ref/netcoreapp2.0/System.Reflection.Emit.xml",\r
+        "ref/netcoreapp2.0/System.Reflection.Extensions.dll",\r
+        "ref/netcoreapp2.0/System.Reflection.Extensions.xml",\r
+        "ref/netcoreapp2.0/System.Reflection.Metadata.dll",\r
+        "ref/netcoreapp2.0/System.Reflection.Metadata.xml",\r
+        "ref/netcoreapp2.0/System.Reflection.Primitives.dll",\r
+        "ref/netcoreapp2.0/System.Reflection.Primitives.xml",\r
+        "ref/netcoreapp2.0/System.Reflection.TypeExtensions.dll",\r
+        "ref/netcoreapp2.0/System.Reflection.TypeExtensions.xml",\r
+        "ref/netcoreapp2.0/System.Reflection.dll",\r
+        "ref/netcoreapp2.0/System.Reflection.xml",\r
+        "ref/netcoreapp2.0/System.Resources.Reader.dll",\r
+        "ref/netcoreapp2.0/System.Resources.Reader.xml",\r
+        "ref/netcoreapp2.0/System.Resources.ResourceManager.dll",\r
+        "ref/netcoreapp2.0/System.Resources.ResourceManager.xml",\r
+        "ref/netcoreapp2.0/System.Resources.Writer.dll",\r
+        "ref/netcoreapp2.0/System.Resources.Writer.xml",\r
+        "ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.dll",\r
+        "ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.xml",\r
+        "ref/netcoreapp2.0/System.Runtime.Extensions.dll",\r
+        "ref/netcoreapp2.0/System.Runtime.Extensions.xml",\r
+        "ref/netcoreapp2.0/System.Runtime.Handles.dll",\r
+        "ref/netcoreapp2.0/System.Runtime.Handles.xml",\r
+        "ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.dll",\r
+        "ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.xml",\r
+        "ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.dll",\r
+        "ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.xml",\r
+        "ref/netcoreapp2.0/System.Runtime.InteropServices.dll",\r
+        "ref/netcoreapp2.0/System.Runtime.InteropServices.xml",\r
+        "ref/netcoreapp2.0/System.Runtime.Loader.dll",\r
+        "ref/netcoreapp2.0/System.Runtime.Loader.xml",\r
+        "ref/netcoreapp2.0/System.Runtime.Numerics.dll",\r
+        "ref/netcoreapp2.0/System.Runtime.Numerics.xml",\r
+        "ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.dll",\r
+        "ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.xml",\r
+        "ref/netcoreapp2.0/System.Runtime.Serialization.Json.dll",\r
+        "ref/netcoreapp2.0/System.Runtime.Serialization.Json.xml",\r
+        "ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.dll",\r
+        "ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.xml",\r
+        "ref/netcoreapp2.0/System.Runtime.Serialization.Xml.dll",\r
+        "ref/netcoreapp2.0/System.Runtime.Serialization.Xml.xml",\r
+        "ref/netcoreapp2.0/System.Runtime.Serialization.dll",\r
+        "ref/netcoreapp2.0/System.Runtime.dll",\r
+        "ref/netcoreapp2.0/System.Runtime.xml",\r
+        "ref/netcoreapp2.0/System.Security.Claims.dll",\r
+        "ref/netcoreapp2.0/System.Security.Claims.xml",\r
+        "ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.dll",\r
+        "ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.xml",\r
+        "ref/netcoreapp2.0/System.Security.Cryptography.Csp.dll",\r
+        "ref/netcoreapp2.0/System.Security.Cryptography.Csp.xml",\r
+        "ref/netcoreapp2.0/System.Security.Cryptography.Encoding.dll",\r
+        "ref/netcoreapp2.0/System.Security.Cryptography.Encoding.xml",\r
+        "ref/netcoreapp2.0/System.Security.Cryptography.Primitives.dll",\r
+        "ref/netcoreapp2.0/System.Security.Cryptography.Primitives.xml",\r
+        "ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.dll",\r
+        "ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.xml",\r
+        "ref/netcoreapp2.0/System.Security.Principal.dll",\r
+        "ref/netcoreapp2.0/System.Security.Principal.xml",\r
+        "ref/netcoreapp2.0/System.Security.SecureString.dll",\r
+        "ref/netcoreapp2.0/System.Security.SecureString.xml",\r
+        "ref/netcoreapp2.0/System.Security.dll",\r
+        "ref/netcoreapp2.0/System.ServiceModel.Web.dll",\r
+        "ref/netcoreapp2.0/System.ServiceProcess.dll",\r
+        "ref/netcoreapp2.0/System.Text.Encoding.Extensions.dll",\r
+        "ref/netcoreapp2.0/System.Text.Encoding.Extensions.xml",\r
+        "ref/netcoreapp2.0/System.Text.Encoding.dll",\r
+        "ref/netcoreapp2.0/System.Text.Encoding.xml",\r
+        "ref/netcoreapp2.0/System.Text.RegularExpressions.dll",\r
+        "ref/netcoreapp2.0/System.Text.RegularExpressions.xml",\r
+        "ref/netcoreapp2.0/System.Threading.Overlapped.dll",\r
+        "ref/netcoreapp2.0/System.Threading.Overlapped.xml",\r
+        "ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.dll",\r
+        "ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.xml",\r
+        "ref/netcoreapp2.0/System.Threading.Tasks.Extensions.dll",\r
+        "ref/netcoreapp2.0/System.Threading.Tasks.Extensions.xml",\r
+        "ref/netcoreapp2.0/System.Threading.Tasks.Parallel.dll",\r
+        "ref/netcoreapp2.0/System.Threading.Tasks.Parallel.xml",\r
+        "ref/netcoreapp2.0/System.Threading.Tasks.dll",\r
+        "ref/netcoreapp2.0/System.Threading.Tasks.xml",\r
+        "ref/netcoreapp2.0/System.Threading.Thread.dll",\r
+        "ref/netcoreapp2.0/System.Threading.Thread.xml",\r
+        "ref/netcoreapp2.0/System.Threading.ThreadPool.dll",\r
+        "ref/netcoreapp2.0/System.Threading.ThreadPool.xml",\r
+        "ref/netcoreapp2.0/System.Threading.Timer.dll",\r
+        "ref/netcoreapp2.0/System.Threading.Timer.xml",\r
+        "ref/netcoreapp2.0/System.Threading.dll",\r
+        "ref/netcoreapp2.0/System.Threading.xml",\r
+        "ref/netcoreapp2.0/System.Transactions.Local.dll",\r
+        "ref/netcoreapp2.0/System.Transactions.Local.xml",\r
+        "ref/netcoreapp2.0/System.Transactions.dll",\r
+        "ref/netcoreapp2.0/System.ValueTuple.dll",\r
+        "ref/netcoreapp2.0/System.ValueTuple.xml",\r
+        "ref/netcoreapp2.0/System.Web.HttpUtility.dll",\r
+        "ref/netcoreapp2.0/System.Web.HttpUtility.xml",\r
+        "ref/netcoreapp2.0/System.Web.dll",\r
+        "ref/netcoreapp2.0/System.Windows.dll",\r
+        "ref/netcoreapp2.0/System.Xml.Linq.dll",\r
+        "ref/netcoreapp2.0/System.Xml.ReaderWriter.dll",\r
+        "ref/netcoreapp2.0/System.Xml.ReaderWriter.xml",\r
+        "ref/netcoreapp2.0/System.Xml.Serialization.dll",\r
+        "ref/netcoreapp2.0/System.Xml.XDocument.dll",\r
+        "ref/netcoreapp2.0/System.Xml.XDocument.xml",\r
+        "ref/netcoreapp2.0/System.Xml.XPath.XDocument.dll",\r
+        "ref/netcoreapp2.0/System.Xml.XPath.XDocument.xml",\r
+        "ref/netcoreapp2.0/System.Xml.XPath.dll",\r
+        "ref/netcoreapp2.0/System.Xml.XPath.xml",\r
+        "ref/netcoreapp2.0/System.Xml.XmlDocument.dll",\r
+        "ref/netcoreapp2.0/System.Xml.XmlDocument.xml",\r
+        "ref/netcoreapp2.0/System.Xml.XmlSerializer.dll",\r
+        "ref/netcoreapp2.0/System.Xml.XmlSerializer.xml",\r
+        "ref/netcoreapp2.0/System.Xml.dll",\r
+        "ref/netcoreapp2.0/System.dll",\r
+        "ref/netcoreapp2.0/WindowsBase.dll",\r
+        "ref/netcoreapp2.0/mscorlib.dll",\r
+        "ref/netcoreapp2.0/netstandard.dll",\r
+        "runtime.json"\r
+      ]\r
+    },\r
+    "Microsoft.NETCore.DotNetAppHost/2.0.0": {\r
+      "sha512": "L4GGkcI/Mxl8PKLRpFdGmLb5oI8sGIR05bDTGkzCoamAjdUl1Zhkov2swjEsZvKYT8kkdiz39LtwyGYuCJxm1A==",\r
+      "type": "package",\r
+      "path": "microsoft.netcore.dotnetapphost/2.0.0",\r
+      "files": [\r
+        "LICENSE.TXT",\r
+        "THIRD-PARTY-NOTICES.TXT",\r
+        "microsoft.netcore.dotnetapphost.2.0.0.nupkg.sha512",\r
+        "microsoft.netcore.dotnetapphost.nuspec",\r
+        "runtime.json"\r
+      ]\r
+    },\r
+    "Microsoft.NETCore.DotNetHostPolicy/2.0.0": {\r
+      "sha512": "rm7mMn0A93fwyAwVhbyOCcPuu2hZNL0A0dAur9sNG9pEkONPfCEQeF7m2mC8KpqZO0Ol6tpV5J0AF3HTXT3GXA==",\r
+      "type": "package",\r
+      "path": "microsoft.netcore.dotnethostpolicy/2.0.0",\r
+      "files": [\r
+        "LICENSE.TXT",\r
+        "THIRD-PARTY-NOTICES.TXT",\r
+        "microsoft.netcore.dotnethostpolicy.2.0.0.nupkg.sha512",\r
+        "microsoft.netcore.dotnethostpolicy.nuspec",\r
+        "runtime.json"\r
+      ]\r
+    },\r
+    "Microsoft.NETCore.DotNetHostResolver/2.0.0": {\r
+      "sha512": "uBbjpeSrwsaTCADZCzRk+3aBzNnMqkC4zftJWBsL+Zk+8u+W+/lMb2thM5Y4hiVrv1YQg9t6dKldXzOKkY+pQw==",\r
+      "type": "package",\r
+      "path": "microsoft.netcore.dotnethostresolver/2.0.0",\r
+      "files": [\r
+        "LICENSE.TXT",\r
+        "THIRD-PARTY-NOTICES.TXT",\r
+        "microsoft.netcore.dotnethostresolver.2.0.0.nupkg.sha512",\r
+        "microsoft.netcore.dotnethostresolver.nuspec",\r
+        "runtime.json"\r
+      ]\r
+    },\r
+    "Microsoft.NETCore.Platforms/2.0.0": {\r
+      "sha512": "VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==",\r
+      "type": "package",\r
+      "path": "microsoft.netcore.platforms/2.0.0",\r
+      "files": [\r
+        "LICENSE.TXT",\r
+        "THIRD-PARTY-NOTICES.TXT",\r
+        "lib/netstandard1.0/_._",\r
+        "microsoft.netcore.platforms.2.0.0.nupkg.sha512",\r
+        "microsoft.netcore.platforms.nuspec",\r
+        "runtime.json",\r
+        "useSharedDesignerContext.txt",\r
+        "version.txt"\r
+      ]\r
+    },\r
+    "NETStandard.Library/2.0.0": {\r
+      "sha512": "7jnbRU+L08FXKMxqUflxEXtVymWvNOrS8yHgu9s6EM8Anr6T/wIX4nZ08j/u3Asz+tCufp3YVwFSEvFTPYmBPA==",\r
+      "type": "package",\r
+      "path": "netstandard.library/2.0.0",\r
+      "files": [\r
+        "LICENSE.TXT",\r
+        "THIRD-PARTY-NOTICES.TXT",\r
+        "build/NETStandard.Library.targets",\r
+        "build/netstandard2.0/NETStandard.Library.targets",\r
+        "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll",\r
+        "build/netstandard2.0/ref/System.AppContext.dll",\r
+        "build/netstandard2.0/ref/System.Collections.Concurrent.dll",\r
+        "build/netstandard2.0/ref/System.Collections.NonGeneric.dll",\r
+        "build/netstandard2.0/ref/System.Collections.Specialized.dll",\r
+        "build/netstandard2.0/ref/System.Collections.dll",\r
+        "build/netstandard2.0/ref/System.ComponentModel.Composition.dll",\r
+        "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll",\r
+        "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll",\r
+        "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll",\r
+        "build/netstandard2.0/ref/System.ComponentModel.dll",\r
+        "build/netstandard2.0/ref/System.Console.dll",\r
+        "build/netstandard2.0/ref/System.Core.dll",\r
+        "build/netstandard2.0/ref/System.Data.Common.dll",\r
+        "build/netstandard2.0/ref/System.Data.dll",\r
+        "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll",\r
+        "build/netstandard2.0/ref/System.Diagnostics.Debug.dll",\r
+        "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll",\r
+        "build/netstandard2.0/ref/System.Diagnostics.Process.dll",\r
+        "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll",\r
+        "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll",\r
+        "build/netstandard2.0/ref/System.Diagnostics.Tools.dll",\r
+        "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll",\r
+        "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll",\r
+        "build/netstandard2.0/ref/System.Drawing.Primitives.dll",\r
+        "build/netstandard2.0/ref/System.Drawing.dll",\r
+        "build/netstandard2.0/ref/System.Dynamic.Runtime.dll",\r
+        "build/netstandard2.0/ref/System.Globalization.Calendars.dll",\r
+        "build/netstandard2.0/ref/System.Globalization.Extensions.dll",\r
+        "build/netstandard2.0/ref/System.Globalization.dll",\r
+        "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll",\r
+        "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll",\r
+        "build/netstandard2.0/ref/System.IO.Compression.dll",\r
+        "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll",\r
+        "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll",\r
+        "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll",\r
+        "build/netstandard2.0/ref/System.IO.FileSystem.dll",\r
+        "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll",\r
+        "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll",\r
+        "build/netstandard2.0/ref/System.IO.Pipes.dll",\r
+        "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll",\r
+        "build/netstandard2.0/ref/System.IO.dll",\r
+        "build/netstandard2.0/ref/System.Linq.Expressions.dll",\r
+        "build/netstandard2.0/ref/System.Linq.Parallel.dll",\r
+        "build/netstandard2.0/ref/System.Linq.Queryable.dll",\r
+        "build/netstandard2.0/ref/System.Linq.dll",\r
+        "build/netstandard2.0/ref/System.Net.Http.dll",\r
+        "build/netstandard2.0/ref/System.Net.NameResolution.dll",\r
+        "build/netstandard2.0/ref/System.Net.NetworkInformation.dll",\r
+        "build/netstandard2.0/ref/System.Net.Ping.dll",\r
+        "build/netstandard2.0/ref/System.Net.Primitives.dll",\r
+        "build/netstandard2.0/ref/System.Net.Requests.dll",\r
+        "build/netstandard2.0/ref/System.Net.Security.dll",\r
+        "build/netstandard2.0/ref/System.Net.Sockets.dll",\r
+        "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll",\r
+        "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll",\r
+        "build/netstandard2.0/ref/System.Net.WebSockets.dll",\r
+        "build/netstandard2.0/ref/System.Net.dll",\r
+        "build/netstandard2.0/ref/System.Numerics.dll",\r
+        "build/netstandard2.0/ref/System.ObjectModel.dll",\r
+        "build/netstandard2.0/ref/System.Reflection.Extensions.dll",\r
+        "build/netstandard2.0/ref/System.Reflection.Primitives.dll",\r
+        "build/netstandard2.0/ref/System.Reflection.dll",\r
+        "build/netstandard2.0/ref/System.Resources.Reader.dll",\r
+        "build/netstandard2.0/ref/System.Resources.ResourceManager.dll",\r
+        "build/netstandard2.0/ref/System.Resources.Writer.dll",\r
+        "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll",\r
+        "build/netstandard2.0/ref/System.Runtime.Extensions.dll",\r
+        "build/netstandard2.0/ref/System.Runtime.Handles.dll",\r
+        "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll",\r
+        "build/netstandard2.0/ref/System.Runtime.InteropServices.dll",\r
+        "build/netstandard2.0/ref/System.Runtime.Numerics.dll",\r
+        "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll",\r
+        "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll",\r
+        "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll",\r
+        "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll",\r
+        "build/netstandard2.0/ref/System.Runtime.Serialization.dll",\r
+        "build/netstandard2.0/ref/System.Runtime.dll",\r
+        "build/netstandard2.0/ref/System.Security.Claims.dll",\r
+        "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll",\r
+        "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll",\r
+        "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll",\r
+        "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll",\r
+        "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll",\r
+        "build/netstandard2.0/ref/System.Security.Principal.dll",\r
+        "build/netstandard2.0/ref/System.Security.SecureString.dll",\r
+        "build/netstandard2.0/ref/System.ServiceModel.Web.dll",\r
+        "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll",\r
+        "build/netstandard2.0/ref/System.Text.Encoding.dll",\r
+        "build/netstandard2.0/ref/System.Text.RegularExpressions.dll",\r
+        "build/netstandard2.0/ref/System.Threading.Overlapped.dll",\r
+        "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll",\r
+        "build/netstandard2.0/ref/System.Threading.Tasks.dll",\r
+        "build/netstandard2.0/ref/System.Threading.Thread.dll",\r
+        "build/netstandard2.0/ref/System.Threading.ThreadPool.dll",\r
+        "build/netstandard2.0/ref/System.Threading.Timer.dll",\r
+        "build/netstandard2.0/ref/System.Threading.dll",\r
+        "build/netstandard2.0/ref/System.Transactions.dll",\r
+        "build/netstandard2.0/ref/System.ValueTuple.dll",\r
+        "build/netstandard2.0/ref/System.Web.dll",\r
+        "build/netstandard2.0/ref/System.Windows.dll",\r
+        "build/netstandard2.0/ref/System.Xml.Linq.dll",\r
+        "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll",\r
+        "build/netstandard2.0/ref/System.Xml.Serialization.dll",\r
+        "build/netstandard2.0/ref/System.Xml.XDocument.dll",\r
+        "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll",\r
+        "build/netstandard2.0/ref/System.Xml.XPath.dll",\r
+        "build/netstandard2.0/ref/System.Xml.XmlDocument.dll",\r
+        "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll",\r
+        "build/netstandard2.0/ref/System.Xml.dll",\r
+        "build/netstandard2.0/ref/System.dll",\r
+        "build/netstandard2.0/ref/mscorlib.dll",\r
+        "build/netstandard2.0/ref/netstandard.dll",\r
+        "build/netstandard2.0/ref/netstandard.xml",\r
+        "lib/netstandard1.0/_._",\r
+        "netstandard.library.2.0.0.nupkg.sha512",\r
+        "netstandard.library.nuspec"\r
+      ]\r
+    },\r
+    "Tizen.NET/4.0.0": {\r
+      "sha512": "e/q/gwwzrcR6LRsQiZbpKYN+GJsiA7/lh6p8ztANDoJLnIlKPmiNsBXxm6Tt8yHzwMywmAXBwyp4mpLCRG0J+A==",\r
+      "type": "package",\r
+      "path": "tizen.net/4.0.0",\r
+      "files": [\r
+        "build/tizen40/LICENSE.Microsoft.NETCore.App.txt",\r
+        "build/tizen40/Tizen.NET.PlatformManifest.txt",\r
+        "build/tizen40/Tizen.NET.props",\r
+        "build/tizen40/Tizen.NET.targets",\r
+        "build/tizen40/ref/Microsoft.CSharp.dll",\r
+        "build/tizen40/ref/Microsoft.CSharp.xml",\r
+        "build/tizen40/ref/Microsoft.VisualBasic.dll",\r
+        "build/tizen40/ref/Microsoft.VisualBasic.xml",\r
+        "build/tizen40/ref/Microsoft.Win32.Primitives.dll",\r
+        "build/tizen40/ref/Microsoft.Win32.Primitives.xml",\r
+        "build/tizen40/ref/System.AppContext.dll",\r
+        "build/tizen40/ref/System.AppContext.xml",\r
+        "build/tizen40/ref/System.Buffers.dll",\r
+        "build/tizen40/ref/System.Buffers.xml",\r
+        "build/tizen40/ref/System.Collections.Concurrent.dll",\r
+        "build/tizen40/ref/System.Collections.Concurrent.xml",\r
+        "build/tizen40/ref/System.Collections.Immutable.dll",\r
+        "build/tizen40/ref/System.Collections.Immutable.xml",\r
+        "build/tizen40/ref/System.Collections.NonGeneric.dll",\r
+        "build/tizen40/ref/System.Collections.NonGeneric.xml",\r
+        "build/tizen40/ref/System.Collections.Specialized.dll",\r
+        "build/tizen40/ref/System.Collections.Specialized.xml",\r
+        "build/tizen40/ref/System.Collections.dll",\r
+        "build/tizen40/ref/System.Collections.xml",\r
+        "build/tizen40/ref/System.ComponentModel.Annotations.dll",\r
+        "build/tizen40/ref/System.ComponentModel.Annotations.xml",\r
+        "build/tizen40/ref/System.ComponentModel.Composition.dll",\r
+        "build/tizen40/ref/System.ComponentModel.DataAnnotations.dll",\r
+        "build/tizen40/ref/System.ComponentModel.EventBasedAsync.dll",\r
+        "build/tizen40/ref/System.ComponentModel.EventBasedAsync.xml",\r
+        "build/tizen40/ref/System.ComponentModel.Primitives.dll",\r
+        "build/tizen40/ref/System.ComponentModel.Primitives.xml",\r
+        "build/tizen40/ref/System.ComponentModel.TypeConverter.dll",\r
+        "build/tizen40/ref/System.ComponentModel.TypeConverter.xml",\r
+        "build/tizen40/ref/System.ComponentModel.dll",\r
+        "build/tizen40/ref/System.ComponentModel.xml",\r
+        "build/tizen40/ref/System.Configuration.dll",\r
+        "build/tizen40/ref/System.Console.dll",\r
+        "build/tizen40/ref/System.Console.xml",\r
+        "build/tizen40/ref/System.Core.dll",\r
+        "build/tizen40/ref/System.Data.Common.dll",\r
+        "build/tizen40/ref/System.Data.Common.xml",\r
+        "build/tizen40/ref/System.Data.dll",\r
+        "build/tizen40/ref/System.Diagnostics.Contracts.dll",\r
+        "build/tizen40/ref/System.Diagnostics.Contracts.xml",\r
+        "build/tizen40/ref/System.Diagnostics.Debug.dll",\r
+        "build/tizen40/ref/System.Diagnostics.Debug.xml",\r
+        "build/tizen40/ref/System.Diagnostics.DiagnosticSource.dll",\r
+        "build/tizen40/ref/System.Diagnostics.DiagnosticSource.xml",\r
+        "build/tizen40/ref/System.Diagnostics.FileVersionInfo.dll",\r
+        "build/tizen40/ref/System.Diagnostics.FileVersionInfo.xml",\r
+        "build/tizen40/ref/System.Diagnostics.Process.dll",\r
+        "build/tizen40/ref/System.Diagnostics.Process.xml",\r
+        "build/tizen40/ref/System.Diagnostics.StackTrace.dll",\r
+        "build/tizen40/ref/System.Diagnostics.StackTrace.xml",\r
+        "build/tizen40/ref/System.Diagnostics.TextWriterTraceListener.dll",\r
+        "build/tizen40/ref/System.Diagnostics.TextWriterTraceListener.xml",\r
+        "build/tizen40/ref/System.Diagnostics.Tools.dll",\r
+        "build/tizen40/ref/System.Diagnostics.Tools.xml",\r
+        "build/tizen40/ref/System.Diagnostics.TraceSource.dll",\r
+        "build/tizen40/ref/System.Diagnostics.TraceSource.xml",\r
+        "build/tizen40/ref/System.Diagnostics.Tracing.dll",\r
+        "build/tizen40/ref/System.Diagnostics.Tracing.xml",\r
+        "build/tizen40/ref/System.Drawing.Primitives.dll",\r
+        "build/tizen40/ref/System.Drawing.Primitives.xml",\r
+        "build/tizen40/ref/System.Drawing.dll",\r
+        "build/tizen40/ref/System.Dynamic.Runtime.dll",\r
+        "build/tizen40/ref/System.Dynamic.Runtime.xml",\r
+        "build/tizen40/ref/System.Globalization.Calendars.dll",\r
+        "build/tizen40/ref/System.Globalization.Calendars.xml",\r
+        "build/tizen40/ref/System.Globalization.Extensions.dll",\r
+        "build/tizen40/ref/System.Globalization.Extensions.xml",\r
+        "build/tizen40/ref/System.Globalization.dll",\r
+        "build/tizen40/ref/System.Globalization.xml",\r
+        "build/tizen40/ref/System.IO.Compression.FileSystem.dll",\r
+        "build/tizen40/ref/System.IO.Compression.ZipFile.dll",\r
+        "build/tizen40/ref/System.IO.Compression.ZipFile.xml",\r
+        "build/tizen40/ref/System.IO.Compression.dll",\r
+        "build/tizen40/ref/System.IO.Compression.xml",\r
+        "build/tizen40/ref/System.IO.FileSystem.DriveInfo.dll",\r
+        "build/tizen40/ref/System.IO.FileSystem.DriveInfo.xml",\r
+        "build/tizen40/ref/System.IO.FileSystem.Primitives.dll",\r
+        "build/tizen40/ref/System.IO.FileSystem.Primitives.xml",\r
+        "build/tizen40/ref/System.IO.FileSystem.Watcher.dll",\r
+        "build/tizen40/ref/System.IO.FileSystem.Watcher.xml",\r
+        "build/tizen40/ref/System.IO.FileSystem.dll",\r
+        "build/tizen40/ref/System.IO.FileSystem.xml",\r
+        "build/tizen40/ref/System.IO.IsolatedStorage.dll",\r
+        "build/tizen40/ref/System.IO.IsolatedStorage.xml",\r
+        "build/tizen40/ref/System.IO.MemoryMappedFiles.dll",\r
+        "build/tizen40/ref/System.IO.MemoryMappedFiles.xml",\r
+        "build/tizen40/ref/System.IO.Pipes.dll",\r
+        "build/tizen40/ref/System.IO.Pipes.xml",\r
+        "build/tizen40/ref/System.IO.UnmanagedMemoryStream.dll",\r
+        "build/tizen40/ref/System.IO.UnmanagedMemoryStream.xml",\r
+        "build/tizen40/ref/System.IO.dll",\r
+        "build/tizen40/ref/System.IO.xml",\r
+        "build/tizen40/ref/System.Linq.Expressions.dll",\r
+        "build/tizen40/ref/System.Linq.Expressions.xml",\r
+        "build/tizen40/ref/System.Linq.Parallel.dll",\r
+        "build/tizen40/ref/System.Linq.Parallel.xml",\r
+        "build/tizen40/ref/System.Linq.Queryable.dll",\r
+        "build/tizen40/ref/System.Linq.Queryable.xml",\r
+        "build/tizen40/ref/System.Linq.dll",\r
+        "build/tizen40/ref/System.Linq.xml",\r
+        "build/tizen40/ref/System.Net.Http.dll",\r
+        "build/tizen40/ref/System.Net.Http.xml",\r
+        "build/tizen40/ref/System.Net.HttpListener.dll",\r
+        "build/tizen40/ref/System.Net.HttpListener.xml",\r
+        "build/tizen40/ref/System.Net.Mail.dll",\r
+        "build/tizen40/ref/System.Net.Mail.xml",\r
+        "build/tizen40/ref/System.Net.NameResolution.dll",\r
+        "build/tizen40/ref/System.Net.NameResolution.xml",\r
+        "build/tizen40/ref/System.Net.NetworkInformation.dll",\r
+        "build/tizen40/ref/System.Net.NetworkInformation.xml",\r
+        "build/tizen40/ref/System.Net.Ping.dll",\r
+        "build/tizen40/ref/System.Net.Ping.xml",\r
+        "build/tizen40/ref/System.Net.Primitives.dll",\r
+        "build/tizen40/ref/System.Net.Primitives.xml",\r
+        "build/tizen40/ref/System.Net.Requests.dll",\r
+        "build/tizen40/ref/System.Net.Requests.xml",\r
+        "build/tizen40/ref/System.Net.Security.dll",\r
+        "build/tizen40/ref/System.Net.Security.xml",\r
+        "build/tizen40/ref/System.Net.ServicePoint.dll",\r
+        "build/tizen40/ref/System.Net.ServicePoint.xml",\r
+        "build/tizen40/ref/System.Net.Sockets.dll",\r
+        "build/tizen40/ref/System.Net.Sockets.xml",\r
+        "build/tizen40/ref/System.Net.WebClient.dll",\r
+        "build/tizen40/ref/System.Net.WebClient.xml",\r
+        "build/tizen40/ref/System.Net.WebHeaderCollection.dll",\r
+        "build/tizen40/ref/System.Net.WebHeaderCollection.xml",\r
+        "build/tizen40/ref/System.Net.WebProxy.dll",\r
+        "build/tizen40/ref/System.Net.WebProxy.xml",\r
+        "build/tizen40/ref/System.Net.WebSockets.Client.dll",\r
+        "build/tizen40/ref/System.Net.WebSockets.Client.xml",\r
+        "build/tizen40/ref/System.Net.WebSockets.dll",\r
+        "build/tizen40/ref/System.Net.WebSockets.xml",\r
+        "build/tizen40/ref/System.Net.dll",\r
+        "build/tizen40/ref/System.Numerics.Vectors.dll",\r
+        "build/tizen40/ref/System.Numerics.Vectors.xml",\r
+        "build/tizen40/ref/System.Numerics.dll",\r
+        "build/tizen40/ref/System.ObjectModel.dll",\r
+        "build/tizen40/ref/System.ObjectModel.xml",\r
+        "build/tizen40/ref/System.Reflection.DispatchProxy.dll",\r
+        "build/tizen40/ref/System.Reflection.DispatchProxy.xml",\r
+        "build/tizen40/ref/System.Reflection.Emit.ILGeneration.dll",\r
+        "build/tizen40/ref/System.Reflection.Emit.ILGeneration.xml",\r
+        "build/tizen40/ref/System.Reflection.Emit.Lightweight.dll",\r
+        "build/tizen40/ref/System.Reflection.Emit.Lightweight.xml",\r
+        "build/tizen40/ref/System.Reflection.Emit.dll",\r
+        "build/tizen40/ref/System.Reflection.Emit.xml",\r
+        "build/tizen40/ref/System.Reflection.Extensions.dll",\r
+        "build/tizen40/ref/System.Reflection.Extensions.xml",\r
+        "build/tizen40/ref/System.Reflection.Metadata.dll",\r
+        "build/tizen40/ref/System.Reflection.Metadata.xml",\r
+        "build/tizen40/ref/System.Reflection.Primitives.dll",\r
+        "build/tizen40/ref/System.Reflection.Primitives.xml",\r
+        "build/tizen40/ref/System.Reflection.TypeExtensions.dll",\r
+        "build/tizen40/ref/System.Reflection.TypeExtensions.xml",\r
+        "build/tizen40/ref/System.Reflection.dll",\r
+        "build/tizen40/ref/System.Reflection.xml",\r
+        "build/tizen40/ref/System.Resources.Reader.dll",\r
+        "build/tizen40/ref/System.Resources.Reader.xml",\r
+        "build/tizen40/ref/System.Resources.ResourceManager.dll",\r
+        "build/tizen40/ref/System.Resources.ResourceManager.xml",\r
+        "build/tizen40/ref/System.Resources.Writer.dll",\r
+        "build/tizen40/ref/System.Resources.Writer.xml",\r
+        "build/tizen40/ref/System.Runtime.CompilerServices.VisualC.dll",\r
+        "build/tizen40/ref/System.Runtime.CompilerServices.VisualC.xml",\r
+        "build/tizen40/ref/System.Runtime.Extensions.dll",\r
+        "build/tizen40/ref/System.Runtime.Extensions.xml",\r
+        "build/tizen40/ref/System.Runtime.Handles.dll",\r
+        "build/tizen40/ref/System.Runtime.Handles.xml",\r
+        "build/tizen40/ref/System.Runtime.InteropServices.RuntimeInformation.dll",\r
+        "build/tizen40/ref/System.Runtime.InteropServices.RuntimeInformation.xml",\r
+        "build/tizen40/ref/System.Runtime.InteropServices.WindowsRuntime.dll",\r
+        "build/tizen40/ref/System.Runtime.InteropServices.WindowsRuntime.xml",\r
+        "build/tizen40/ref/System.Runtime.InteropServices.dll",\r
+        "build/tizen40/ref/System.Runtime.InteropServices.xml",\r
+        "build/tizen40/ref/System.Runtime.Loader.dll",\r
+        "build/tizen40/ref/System.Runtime.Loader.xml",\r
+        "build/tizen40/ref/System.Runtime.Numerics.dll",\r
+        "build/tizen40/ref/System.Runtime.Numerics.xml",\r
+        "build/tizen40/ref/System.Runtime.Serialization.Formatters.dll",\r
+        "build/tizen40/ref/System.Runtime.Serialization.Formatters.xml",\r
+        "build/tizen40/ref/System.Runtime.Serialization.Json.dll",\r
+        "build/tizen40/ref/System.Runtime.Serialization.Json.xml",\r
+        "build/tizen40/ref/System.Runtime.Serialization.Primitives.dll",\r
+        "build/tizen40/ref/System.Runtime.Serialization.Primitives.xml",\r
+        "build/tizen40/ref/System.Runtime.Serialization.Xml.dll",\r
+        "build/tizen40/ref/System.Runtime.Serialization.Xml.xml",\r
+        "build/tizen40/ref/System.Runtime.Serialization.dll",\r
+        "build/tizen40/ref/System.Runtime.dll",\r
+        "build/tizen40/ref/System.Runtime.xml",\r
+        "build/tizen40/ref/System.Security.Claims.dll",\r
+        "build/tizen40/ref/System.Security.Claims.xml",\r
+        "build/tizen40/ref/System.Security.Cryptography.Algorithms.dll",\r
+        "build/tizen40/ref/System.Security.Cryptography.Algorithms.xml",\r
+        "build/tizen40/ref/System.Security.Cryptography.Csp.dll",\r
+        "build/tizen40/ref/System.Security.Cryptography.Csp.xml",\r
+        "build/tizen40/ref/System.Security.Cryptography.Encoding.dll",\r
+        "build/tizen40/ref/System.Security.Cryptography.Encoding.xml",\r
+        "build/tizen40/ref/System.Security.Cryptography.Primitives.dll",\r
+        "build/tizen40/ref/System.Security.Cryptography.Primitives.xml",\r
+        "build/tizen40/ref/System.Security.Cryptography.X509Certificates.dll",\r
+        "build/tizen40/ref/System.Security.Cryptography.X509Certificates.xml",\r
+        "build/tizen40/ref/System.Security.Principal.dll",\r
+        "build/tizen40/ref/System.Security.Principal.xml",\r
+        "build/tizen40/ref/System.Security.SecureString.dll",\r
+        "build/tizen40/ref/System.Security.SecureString.xml",\r
+        "build/tizen40/ref/System.Security.dll",\r
+        "build/tizen40/ref/System.ServiceModel.Web.dll",\r
+        "build/tizen40/ref/System.ServiceProcess.dll",\r
+        "build/tizen40/ref/System.Text.Encoding.Extensions.dll",\r
+        "build/tizen40/ref/System.Text.Encoding.Extensions.xml",\r
+        "build/tizen40/ref/System.Text.Encoding.dll",\r
+        "build/tizen40/ref/System.Text.Encoding.xml",\r
+        "build/tizen40/ref/System.Text.RegularExpressions.dll",\r
+        "build/tizen40/ref/System.Text.RegularExpressions.xml",\r
+        "build/tizen40/ref/System.Threading.Overlapped.dll",\r
+        "build/tizen40/ref/System.Threading.Overlapped.xml",\r
+        "build/tizen40/ref/System.Threading.Tasks.Dataflow.dll",\r
+        "build/tizen40/ref/System.Threading.Tasks.Dataflow.xml",\r
+        "build/tizen40/ref/System.Threading.Tasks.Extensions.dll",\r
+        "build/tizen40/ref/System.Threading.Tasks.Extensions.xml",\r
+        "build/tizen40/ref/System.Threading.Tasks.Parallel.dll",\r
+        "build/tizen40/ref/System.Threading.Tasks.Parallel.xml",\r
+        "build/tizen40/ref/System.Threading.Tasks.dll",\r
+        "build/tizen40/ref/System.Threading.Tasks.xml",\r
+        "build/tizen40/ref/System.Threading.Thread.dll",\r
+        "build/tizen40/ref/System.Threading.Thread.xml",\r
+        "build/tizen40/ref/System.Threading.ThreadPool.dll",\r
+        "build/tizen40/ref/System.Threading.ThreadPool.xml",\r
+        "build/tizen40/ref/System.Threading.Timer.dll",\r
+        "build/tizen40/ref/System.Threading.Timer.xml",\r
+        "build/tizen40/ref/System.Threading.dll",\r
+        "build/tizen40/ref/System.Threading.xml",\r
+        "build/tizen40/ref/System.Transactions.Local.dll",\r
+        "build/tizen40/ref/System.Transactions.Local.xml",\r
+        "build/tizen40/ref/System.Transactions.dll",\r
+        "build/tizen40/ref/System.ValueTuple.dll",\r
+        "build/tizen40/ref/System.ValueTuple.xml",\r
+        "build/tizen40/ref/System.Web.HttpUtility.dll",\r
+        "build/tizen40/ref/System.Web.HttpUtility.xml",\r
+        "build/tizen40/ref/System.Web.dll",\r
+        "build/tizen40/ref/System.Windows.dll",\r
+        "build/tizen40/ref/System.Xml.Linq.dll",\r
+        "build/tizen40/ref/System.Xml.ReaderWriter.dll",\r
+        "build/tizen40/ref/System.Xml.ReaderWriter.xml",\r
+        "build/tizen40/ref/System.Xml.Serialization.dll",\r
+        "build/tizen40/ref/System.Xml.XDocument.dll",\r
+        "build/tizen40/ref/System.Xml.XDocument.xml",\r
+        "build/tizen40/ref/System.Xml.XPath.XDocument.dll",\r
+        "build/tizen40/ref/System.Xml.XPath.XDocument.xml",\r
+        "build/tizen40/ref/System.Xml.XPath.dll",\r
+        "build/tizen40/ref/System.Xml.XPath.xml",\r
+        "build/tizen40/ref/System.Xml.XmlDocument.dll",\r
+        "build/tizen40/ref/System.Xml.XmlDocument.xml",\r
+        "build/tizen40/ref/System.Xml.XmlSerializer.dll",\r
+        "build/tizen40/ref/System.Xml.XmlSerializer.xml",\r
+        "build/tizen40/ref/System.Xml.dll",\r
+        "build/tizen40/ref/System.dll",\r
+        "build/tizen40/ref/WindowsBase.dll",\r
+        "build/tizen40/ref/mscorlib.dll",\r
+        "build/tizen40/ref/netstandard.dll",\r
+        "lib/netstandard2.0/ElmSharp.Wearable.dll",\r
+        "lib/netstandard2.0/ElmSharp.Wearable.xml",\r
+        "lib/netstandard2.0/ElmSharp.dll",\r
+        "lib/netstandard2.0/ElmSharp.xml",\r
+        "lib/netstandard2.0/Tizen.Account.AccountManager.dll",\r
+        "lib/netstandard2.0/Tizen.Account.AccountManager.xml",\r
+        "lib/netstandard2.0/Tizen.Account.FidoClient.dll",\r
+        "lib/netstandard2.0/Tizen.Account.FidoClient.xml",\r
+        "lib/netstandard2.0/Tizen.Account.OAuth2.dll",\r
+        "lib/netstandard2.0/Tizen.Account.OAuth2.xml",\r
+        "lib/netstandard2.0/Tizen.Account.SyncManager.dll",\r
+        "lib/netstandard2.0/Tizen.Account.SyncManager.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.Alarm.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.Alarm.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.AttachPanel.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.AttachPanel.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.Badge.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.Badge.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.Common.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.Common.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.DataControl.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.DataControl.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.MessagePort.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.MessagePort.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.Notification.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.Notification.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.NotificationEventListener.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.NotificationEventListener.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.PackageManager.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.PackageManager.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.Preference.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.Preference.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.RemoteView.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.RemoteView.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.Service.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.Service.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.Shortcut.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.Shortcut.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.ToastMessage.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.ToastMessage.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.UI.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.UI.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.WatchApplication.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.WatchApplication.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.WidgetApplication.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.WidgetApplication.xml",\r
+        "lib/netstandard2.0/Tizen.Applications.WidgetControl.dll",\r
+        "lib/netstandard2.0/Tizen.Applications.WidgetControl.xml",\r
+        "lib/netstandard2.0/Tizen.Content.Download.dll",\r
+        "lib/netstandard2.0/Tizen.Content.Download.xml",\r
+        "lib/netstandard2.0/Tizen.Content.MediaContent.dll",\r
+        "lib/netstandard2.0/Tizen.Content.MediaContent.xml",\r
+        "lib/netstandard2.0/Tizen.Content.MimeType.dll",\r
+        "lib/netstandard2.0/Tizen.Content.MimeType.xml",\r
+        "lib/netstandard2.0/Tizen.Context.dll",\r
+        "lib/netstandard2.0/Tizen.Context.xml",\r
+        "lib/netstandard2.0/Tizen.Location.Geofence.dll",\r
+        "lib/netstandard2.0/Tizen.Location.Geofence.xml",\r
+        "lib/netstandard2.0/Tizen.Location.dll",\r
+        "lib/netstandard2.0/Tizen.Location.xml",\r
+        "lib/netstandard2.0/Tizen.Log.dll",\r
+        "lib/netstandard2.0/Tizen.Log.xml",\r
+        "lib/netstandard2.0/Tizen.Maps.dll",\r
+        "lib/netstandard2.0/Tizen.Maps.xml",\r
+        "lib/netstandard2.0/Tizen.Messaging.Push.dll",\r
+        "lib/netstandard2.0/Tizen.Messaging.Push.xml",\r
+        "lib/netstandard2.0/Tizen.Messaging.dll",\r
+        "lib/netstandard2.0/Tizen.Messaging.xml",\r
+        "lib/netstandard2.0/Tizen.Multimedia.AudioIO.dll",\r
+        "lib/netstandard2.0/Tizen.Multimedia.AudioIO.xml",\r
+        "lib/netstandard2.0/Tizen.Multimedia.Camera.dll",\r
+        "lib/netstandard2.0/Tizen.Multimedia.Camera.xml",\r
+        "lib/netstandard2.0/Tizen.Multimedia.MediaCodec.dll",\r
+        "lib/netstandard2.0/Tizen.Multimedia.MediaCodec.xml",\r
+        "lib/netstandard2.0/Tizen.Multimedia.MediaPlayer.dll",\r
+        "lib/netstandard2.0/Tizen.Multimedia.MediaPlayer.xml",\r
+        "lib/netstandard2.0/Tizen.Multimedia.Metadata.dll",\r
+        "lib/netstandard2.0/Tizen.Multimedia.Metadata.xml",\r
+        "lib/netstandard2.0/Tizen.Multimedia.Radio.dll",\r
+        "lib/netstandard2.0/Tizen.Multimedia.Radio.xml",\r
+        "lib/netstandard2.0/Tizen.Multimedia.Recorder.dll",\r
+        "lib/netstandard2.0/Tizen.Multimedia.Recorder.xml",\r
+        "lib/netstandard2.0/Tizen.Multimedia.Remoting.dll",\r
+        "lib/netstandard2.0/Tizen.Multimedia.Remoting.xml",\r
+        "lib/netstandard2.0/Tizen.Multimedia.StreamRecorder.dll",\r
+        "lib/netstandard2.0/Tizen.Multimedia.StreamRecorder.xml",\r
+        "lib/netstandard2.0/Tizen.Multimedia.Util.dll",\r
+        "lib/netstandard2.0/Tizen.Multimedia.Util.xml",\r
+        "lib/netstandard2.0/Tizen.Multimedia.Vision.dll",\r
+        "lib/netstandard2.0/Tizen.Multimedia.Vision.xml",\r
+        "lib/netstandard2.0/Tizen.Multimedia.dll",\r
+        "lib/netstandard2.0/Tizen.Multimedia.xml",\r
+        "lib/netstandard2.0/Tizen.NUI.dll",\r
+        "lib/netstandard2.0/Tizen.NUI.xml",\r
+        "lib/netstandard2.0/Tizen.Network.Bluetooth.dll",\r
+        "lib/netstandard2.0/Tizen.Network.Bluetooth.xml",\r
+        "lib/netstandard2.0/Tizen.Network.Connection.dll",\r
+        "lib/netstandard2.0/Tizen.Network.Connection.xml",\r
+        "lib/netstandard2.0/Tizen.Network.IoTConnectivity.dll",\r
+        "lib/netstandard2.0/Tizen.Network.IoTConnectivity.xml",\r
+        "lib/netstandard2.0/Tizen.Network.Nfc.dll",\r
+        "lib/netstandard2.0/Tizen.Network.Nfc.xml",\r
+        "lib/netstandard2.0/Tizen.Network.Nsd.dll",\r
+        "lib/netstandard2.0/Tizen.Network.Nsd.xml",\r
+        "lib/netstandard2.0/Tizen.Network.Smartcard.dll",\r
+        "lib/netstandard2.0/Tizen.Network.Smartcard.xml",\r
+        "lib/netstandard2.0/Tizen.Network.WiFi.dll",\r
+        "lib/netstandard2.0/Tizen.Network.WiFi.xml",\r
+        "lib/netstandard2.0/Tizen.Network.WiFiDirect.dll",\r
+        "lib/netstandard2.0/Tizen.Network.WiFiDirect.xml",\r
+        "lib/netstandard2.0/Tizen.PhonenumberUtils.dll",\r
+        "lib/netstandard2.0/Tizen.PhonenumberUtils.xml",\r
+        "lib/netstandard2.0/Tizen.Pims.Calendar.dll",\r
+        "lib/netstandard2.0/Tizen.Pims.Calendar.xml",\r
+        "lib/netstandard2.0/Tizen.Pims.Contacts.dll",\r
+        "lib/netstandard2.0/Tizen.Pims.Contacts.xml",\r
+        "lib/netstandard2.0/Tizen.Security.PrivacyPrivilegeManager.dll",\r
+        "lib/netstandard2.0/Tizen.Security.PrivacyPrivilegeManager.xml",\r
+        "lib/netstandard2.0/Tizen.Security.SecureRepository.dll",\r
+        "lib/netstandard2.0/Tizen.Security.SecureRepository.xml",\r
+        "lib/netstandard2.0/Tizen.Security.TEEC.dll",\r
+        "lib/netstandard2.0/Tizen.Security.TEEC.xml",\r
+        "lib/netstandard2.0/Tizen.Security.dll",\r
+        "lib/netstandard2.0/Tizen.Security.xml",\r
+        "lib/netstandard2.0/Tizen.Sensor.dll",\r
+        "lib/netstandard2.0/Tizen.Sensor.xml",\r
+        "lib/netstandard2.0/Tizen.System.Feedback.dll",\r
+        "lib/netstandard2.0/Tizen.System.Feedback.xml",\r
+        "lib/netstandard2.0/Tizen.System.Information.dll",\r
+        "lib/netstandard2.0/Tizen.System.Information.xml",\r
+        "lib/netstandard2.0/Tizen.System.MediaKey.dll",\r
+        "lib/netstandard2.0/Tizen.System.MediaKey.xml",\r
+        "lib/netstandard2.0/Tizen.System.PlatformConfig.dll",\r
+        "lib/netstandard2.0/Tizen.System.PlatformConfig.xml",\r
+        "lib/netstandard2.0/Tizen.System.Storage.dll",\r
+        "lib/netstandard2.0/Tizen.System.Storage.xml",\r
+        "lib/netstandard2.0/Tizen.System.SystemSettings.dll",\r
+        "lib/netstandard2.0/Tizen.System.SystemSettings.xml",\r
+        "lib/netstandard2.0/Tizen.System.Usb.dll",\r
+        "lib/netstandard2.0/Tizen.System.Usb.xml",\r
+        "lib/netstandard2.0/Tizen.System.dll",\r
+        "lib/netstandard2.0/Tizen.System.xml",\r
+        "lib/netstandard2.0/Tizen.Telephony.dll",\r
+        "lib/netstandard2.0/Tizen.Telephony.xml",\r
+        "lib/netstandard2.0/Tizen.Tracer.dll",\r
+        "lib/netstandard2.0/Tizen.Tracer.xml",\r
+        "lib/netstandard2.0/Tizen.Uix.InputMethod.dll",\r
+        "lib/netstandard2.0/Tizen.Uix.InputMethod.xml",\r
+        "lib/netstandard2.0/Tizen.Uix.InputMethodManager.dll",\r
+        "lib/netstandard2.0/Tizen.Uix.InputMethodManager.xml",\r
+        "lib/netstandard2.0/Tizen.Uix.Stt.dll",\r
+        "lib/netstandard2.0/Tizen.Uix.Stt.xml",\r
+        "lib/netstandard2.0/Tizen.Uix.SttEngine.dll",\r
+        "lib/netstandard2.0/Tizen.Uix.SttEngine.xml",\r
+        "lib/netstandard2.0/Tizen.Uix.Tts.dll",\r
+        "lib/netstandard2.0/Tizen.Uix.Tts.xml",\r
+        "lib/netstandard2.0/Tizen.Uix.TtsEngine.dll",\r
+        "lib/netstandard2.0/Tizen.Uix.TtsEngine.xml",\r
+        "lib/netstandard2.0/Tizen.Uix.VoiceControl.dll",\r
+        "lib/netstandard2.0/Tizen.Uix.VoiceControl.xml",\r
+        "lib/netstandard2.0/Tizen.WebView.dll",\r
+        "lib/netstandard2.0/Tizen.WebView.xml",\r
+        "lib/netstandard2.0/Tizen.dll",\r
+        "lib/netstandard2.0/Tizen.xml",\r
+        "tizen.net.4.0.0.nupkg.sha512",\r
+        "tizen.net.nuspec"\r
+      ]\r
+    },\r
+    "Tizen.NET.Sdk/1.0.1": {\r
+      "sha512": "ZVbJ3+4mlQHPOsXLT9WD3rMSEYqvs7p1mlpvMV46kKMkn2l9qYGgj58GiFi2LJxuJ+wTxmjqw29SDUG46g7A0Q==",\r
+      "type": "package",\r
+      "path": "tizen.net.sdk/1.0.1",\r
+      "files": [\r
+        "build/Tizen.NET.Sdk.Common.targets",\r
+        "build/Tizen.NET.Sdk.Packaging.targets",\r
+        "build/Tizen.NET.Sdk.VisualStudio.targets",\r
+        "build/Tizen.NET.Sdk.props",\r
+        "build/Tizen.NET.Sdk.targets",\r
+        "certificate/author_test.p12",\r
+        "certificate/tizen-distributor-partner-manufacturer-signer.p12",\r
+        "certificate/tizen-distributor-partner-signer.p12",\r
+        "certificate/tizen-distributor-signer.p12",\r
+        "tizen.net.sdk.1.0.1.nupkg.sha512",\r
+        "tizen.net.sdk.nuspec",\r
+        "tools/net45/BouncyCastle.Crypto.dll",\r
+        "tools/net45/Tizen.NET.Build.Tasks.dll",\r
+        "tools/netstandard1.6/BouncyCastle.Crypto.dll",\r
+        "tools/netstandard1.6/Tizen.NET.Build.Tasks.dll"\r
+      ]\r
+    },\r
+    "Nltk_Common_Library/1.0.0": {\r
+      "type": "project",\r
+      "path": "../Nltk_Common_Library/Nltk_Common_Library.csproj",\r
+      "msbuildProject": "../Nltk_Common_Library/Nltk_Common_Library.csproj"\r
+    }\r
+  },\r
+  "projectFileDependencyGroups": {\r
+    ".NETCoreApp,Version=v2.0": [\r
+      "Microsoft.NETCore.App >= 2.0.0",\r
+      "Nltk_Common_Library >= 1.0.0",\r
+      "Tizen.NET >= 4.0.0",\r
+      "Tizen.NET.Sdk >= 1.0.1"\r
+    ]\r
+  },\r
+  "packageFolders": {\r
+    "C:\\Users\\Administrator\\.nuget\\packages\\": {},\r
+    "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {}\r
+  },\r
+  "project": {\r
+    "version": "1.0.0",\r
+    "restore": {\r
+      "projectUniqueName": "C:\\Users\\Administrator\\source\\repos\\nltk_csharp_library\\Nltk_Demo_App\\Nltk_Demo_App.csproj",\r
+      "projectName": "Nltk_Demo_App",\r
+      "projectPath": "C:\\Users\\Administrator\\source\\repos\\nltk_csharp_library\\Nltk_Demo_App\\Nltk_Demo_App.csproj",\r
+      "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\",\r
+      "outputPath": "C:\\Users\\Administrator\\source\\repos\\nltk_csharp_library\\Nltk_Demo_App\\obj\\",\r
+      "projectStyle": "PackageReference",\r
+      "fallbackFolders": [\r
+        "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"\r
+      ],\r
+      "configFilePaths": [\r
+        "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config",\r
+        "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"\r
+      ],\r
+      "originalTargetFrameworks": [\r
+        "netcoreapp2.0"\r
+      ],\r
+      "sources": {\r
+        "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},\r
+        "http://www.myget.org/F/tizen/api/V2": {},\r
+        "https://api.nuget.org/v3/index.json": {}\r
+      },\r
+      "frameworks": {\r
+        "netcoreapp2.0": {\r
+          "projectReferences": {\r
+            "C:\\Users\\Administrator\\source\\repos\\nltk_csharp_library\\Nltk_Common_Library\\Nltk_Common_Library.csproj": {\r
+              "projectPath": "C:\\Users\\Administrator\\source\\repos\\nltk_csharp_library\\Nltk_Common_Library\\Nltk_Common_Library.csproj"\r
+            }\r
+          }\r
+        }\r
+      },\r
+      "warningProperties": {\r
+        "warnAsError": [\r
+          "NU1605"\r
+        ]\r
+      }\r
+    },\r
+    "frameworks": {\r
+      "netcoreapp2.0": {\r
+        "dependencies": {\r
+          "Microsoft.NETCore.App": {\r
+            "target": "Package",\r
+            "version": "[2.0.0, )",\r
+            "autoReferenced": true\r
+          },\r
+          "Tizen.NET": {\r
+            "include": "Compile, Build, Native, ContentFiles, Analyzers",\r
+            "target": "Package",\r
+            "version": "[4.0.0, )"\r
+          },\r
+          "Tizen.NET.Sdk": {\r
+            "target": "Package",\r
+            "version": "[1.0.1, )"\r
+          }\r
+        },\r
+        "imports": [\r
+          "net461"\r
+        ],\r
+        "assetTargetFallback": true,\r
+        "warn": true\r
+      }\r
+    }\r
+  }\r
+}
\ No newline at end of file
diff --git a/nltk_csharp_library/Nltk_Demo_App/shared/res/Nltk_Demo_App.png b/nltk_csharp_library/Nltk_Demo_App/shared/res/Nltk_Demo_App.png
new file mode 100644 (file)
index 0000000..9f3cb98
Binary files /dev/null and b/nltk_csharp_library/Nltk_Demo_App/shared/res/Nltk_Demo_App.png differ
diff --git a/nltk_csharp_library/Nltk_Demo_App/tizen-manifest.xml b/nltk_csharp_library/Nltk_Demo_App/tizen-manifest.xml
new file mode 100644 (file)
index 0000000..3d2d512
--- /dev/null
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="utf-8"?>\r
+<manifest xmlns="http://tizen.org/ns/packages" api-version="4" package="org.tizen.example.Nltk_Demo_App" version="1.0.0">\r
+  <profile name="common" />\r
+  <ui-application appid="org.tizen.example.Nltk_Demo_App" exec="Nltk_Demo_App.dll" type="dotnet" multiple="false" taskmanage="true" nodisplay="false" launch_mode="single">\r
+    <label>Nltk_Demo_App</label>\r
+    <icon>Nltk_Demo_App.png</icon>\r
+    <metadata key="http://tizen.org/metadata/prefer_dotnet_aot" value="true" />\r
+  </ui-application>\r
+</manifest>\r
diff --git a/nltk_csharp_library/nltk_common_library.csproj b/nltk_csharp_library/nltk_common_library.csproj
new file mode 100644 (file)
index 0000000..8359037
--- /dev/null
@@ -0,0 +1,32 @@
+<Project Sdk="Microsoft.NET.Sdk">\r
+\r
+  <PropertyGroup>\r
+    <TargetFramework>netcoreapp2.0</TargetFramework>\r
+    <AssemblyName>Nltk_Common_Library</AssemblyName>\r
+    <RootNamespace>Nltk_Common_Library</RootNamespace>\r
+  </PropertyGroup>\r
+\r
+  <ItemGroup>\r
+    <PackageReference Include="IronPython" Version="2.7.8.1" />\r
+    <PackageReference Include="Knuppe.SharpNL" Version="1.3.0" />\r
+  </ItemGroup>\r
+\r
+  <ItemGroup>\r
+    <Reference Include="fftpack_lite">\r
+      <HintPath>..\..\..\Desktop\numpy-2.0.0-1\EGG-INFO\prefix\DLLs\fftpack_lite.dll</HintPath>\r
+    </Reference>\r
+    <Reference Include="IronPython">\r
+      <HintPath>..\nltk_tizen_app\bin\Debug\netcoreapp2.0\tpkroot\bin\IronPython.dll</HintPath>\r
+    </Reference>\r
+    <Reference Include="IronPython.Modules">\r
+      <HintPath>..\nltk_tizen_app\bin\Debug\netcoreapp2.0\tpkroot\bin\IronPython.Modules.dll</HintPath>\r
+    </Reference>\r
+    <Reference Include="mtrand">\r
+      <HintPath>..\..\..\Desktop\numpy-2.0.0-1\EGG-INFO\prefix\DLLs\mtrand.dll</HintPath>\r
+    </Reference>\r
+    <Reference Include="NumpyDotNet">\r
+      <HintPath>..\..\..\Desktop\numpy-2.0.0-1\EGG-INFO\prefix\DLLs\NumpyDotNet.dll</HintPath>\r
+    </Reference>\r
+  </ItemGroup>\r
+\r
+</Project>\r