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