diff --git a/RSTP_DSLink/.vs/RSTP_DSLink/v16/.suo b/RSTP_DSLink/.vs/RSTP_DSLink/v16/.suo index 07e8ebf..fc5259c 100644 Binary files a/RSTP_DSLink/.vs/RSTP_DSLink/v16/.suo and b/RSTP_DSLink/.vs/RSTP_DSLink/v16/.suo differ diff --git a/RSTP_DSLink/RSTP_DSLink/RSTP_DSLink.cs b/RSTP_DSLink/RSTP_DSLink/RSTP_DSLink.cs index f01c5f8..223f352 100644 --- a/RSTP_DSLink/RSTP_DSLink/RSTP_DSLink.cs +++ b/RSTP_DSLink/RSTP_DSLink/RSTP_DSLink.cs @@ -198,6 +198,8 @@ namespace RTSP_DSLink { Responder.SuperRoot.CreateChild("createStream", "streamAdd").BuildNode(); Responder.SuperRoot.CreateChild("createAlarm", "alarmAdd").BuildNode(); + Responder.SuperRoot.CreateChild("alarms").BuildNode(); + Responder.SuperRoot.CreateChild("streams").BuildNode(); SaveNodes(); //Responder.SuperRoot.CreateChild("removeStream", "remove").BuildNode(); } @@ -209,8 +211,12 @@ namespace RTSP_DSLink var address = request.Parameters["RSTP URL"].Value(); var streamName = request.Parameters["Stream name"].Value(); int port = 8081; + Responder.SuperRoot.Children.TryGetValue("streams", out Node streamRootNode); if (string.IsNullOrEmpty(address)) return; + if (string.IsNullOrEmpty(streamName)) return; + if (streamRootNode == null) return; + if (streamRootNode.Children.ContainsKey(streamName)) return; while (PortInUse(port)) port++; @@ -229,10 +235,9 @@ namespace RTSP_DSLink } }*/ - if (string.IsNullOrEmpty(streamName)) return; - if (Responder.SuperRoot.Children.ContainsKey(streamName)) return; + - var stream = Responder.SuperRoot.CreateChild(streamName, "stream").BuildNode(); + var stream = streamRootNode.CreateChild(streamName, "stream").BuildNode(); stream.Value.Set(port); stream.CreateChild("remove", "removeNode").BuildNode(); @@ -273,13 +278,14 @@ namespace RTSP_DSLink var address = request.Parameters["Raspberry Pi IP Address"].Value(); var port = request.Parameters["Port Number"].Value(); var pin = request.Parameters["GPIO Pin"].Value(); + Responder.SuperRoot.Children.TryGetValue("alarms", out Node alarmRootNode); if (string.IsNullOrEmpty(alarmName)) return; //if (string.IsNullOrEmpty(cameraName)) return; - if (Responder.SuperRoot.Children.ContainsKey(alarmName)) return; + if (alarmRootNode.Children.ContainsKey(alarmName)) return; //if (!Responder.SuperRoot.Children.ContainsKey(cameraName)) return; - var alarm = Responder.SuperRoot.CreateChild(alarmName, "alarm").BuildNode(); + var alarm = alarmRootNode.CreateChild(alarmName, "alarm").BuildNode(); alarm.CreateChild("remove", "removeNode").BuildNode(); var ts = new CancellationTokenSource(); @@ -303,35 +309,40 @@ namespace RTSP_DSLink { //Console.WriteLine(request.Path); - //on récupère le nom du noeud ayant envoyé la requête - //dans le chemin de la requête en utilisant une regex (le chemin se terminant par /noeud/remove) - var nodeName = Regex.Replace(request.Path, "^.*\\/([^\\/]*)\\/remove$", "$1"); - //Console.WriteLine(streamName); - - - Responder.SuperRoot.Children.TryGetValue(nodeName, out Node node); - if (node != null) + //on récupère le nom et le type du noeud ayant envoyé la requête + //dans le chemin de la requête en utilisant une regex (le chemin se terminant par /type/noeud/remove) + var parentName = Regex.Replace(request.Path, "^.*\\/([^\\/]*)\\/([^\\/]*)\\/remove$", "$1"); + var nodeName = Regex.Replace(request.Path, "^.*\\/([^\\/]*)\\/([^\\/]*)\\/remove$", "$2"); + /*Console.WriteLine(nodeName); + Console.WriteLine(parentName);*/ + + Responder.SuperRoot.Children.TryGetValue(parentName, out Node parent); + if(parent != null) { - if (node.ClassName == "stream") + parent.Children.TryGetValue(nodeName, out Node node); + if (node != null) { - var port = node.Value.Int; - _processes.TryGetValue(nodeName, out Process proc); - if (proc != null) - proc.Kill(); - _processes.Remove(nodeName); + if (node.ClassName == "stream") + { + var port = node.Value.Int; + _processes.TryGetValue(nodeName, out Process proc); + if (proc != null) + proc.Kill(); + _processes.Remove(nodeName); - /*System.Diagnostics.Process.Start("CMD.exe", "/C FOR /F \"tokens=5 delims= \" %P IN ('netstat -a -n -o ^|" + - "findstr :" + stream.Value.Int + "') DO @ECHO taskkill /F /PID %P");*/ + /*System.Diagnostics.Process.Start("CMD.exe", "/C FOR /F \"tokens=5 delims= \" %P IN ('netstat -a -n -o ^|" + + "findstr :" + stream.Value.Int + "') DO @ECHO taskkill /F /PID %P");*/ - //FOR /F "tokens=5 delims= " %P IN('netstat -a -n -o | findstr :8081') DO @ECHO TaskKill.exe /PID %P + //FOR /F "tokens=5 delims= " %P IN('netstat -a -n -o | findstr :8081') DO @ECHO TaskKill.exe /PID %P + } + else if (node.ClassName == "alarm") + { + _alarmCTs.TryGetValue(nodeName, out CancellationTokenSource ts); + if (ts != null) + ts.Cancel(); + } + parent.RemoveChild(nodeName); } - else if (node.ClassName == "alarm") - { - _alarmCTs.TryGetValue(nodeName, out CancellationTokenSource ts); - if(ts != null) - ts.Cancel(); - } - Responder.SuperRoot.RemoveChild(nodeName); } await request.Close(); @@ -345,31 +356,38 @@ namespace RTSP_DSLink private async void _updateAlarm(Node alarm, string addr, int port, int pin, CancellationToken ct) { - using (var driver = new Driver(new IPEndPoint(IPAddress.Parse(addr), port))) + try { - await driver.ConnectAsync(); - await Task.Delay(TimeSpan.FromSeconds(1)); //Give the socket time to get connected - - Console.WriteLine("Connected"); - - using (var controller = new GpioController(PinNumberingScheme.Logical, driver)) + using (var driver = new Driver(new IPEndPoint(IPAddress.Parse(addr), port))) { - controller.OpenPin(pin); - controller.SetPinMode(pin, PinMode.InputPullUp); + await driver.ConnectAsync(); + await Task.Delay(TimeSpan.FromSeconds(1)); //Give the socket time to get connected - while (!ct.IsCancellationRequested) + Console.WriteLine("Connected"); + + using (var controller = new GpioController(PinNumberingScheme.Logical, driver)) { - controller.WaitForEvent(pin, PinEventTypes.Falling, ct); - if(!ct.IsCancellationRequested) + controller.OpenPin(pin); + controller.SetPinMode(pin, PinMode.InputPullUp); + + while (!ct.IsCancellationRequested) { - Console.WriteLine("Beep boop"); - alarm.Value.Set(true); + controller.WaitForEvent(pin, PinEventTypes.Falling, ct); + if (!ct.IsCancellationRequested) + { + Console.WriteLine("Beep boop"); + alarm.Value.Set(true); + } } + Console.WriteLine("Task cancelled"); + controller.ClosePin(pin); } - Console.WriteLine("Task cancelled"); - controller.ClosePin(pin); } } + catch (Exception e) + { + Console.WriteLine(e.GetType() + ":" + e.Message); + } } #region Initialize Logging diff --git a/RSTP_DSLink/RSTP_DSLink/bin/Debug/netcoreapp3.1/RSTP_DSLink.dll b/RSTP_DSLink/RSTP_DSLink/bin/Debug/netcoreapp3.1/RSTP_DSLink.dll index 5279db6..b3ac6e8 100644 Binary files a/RSTP_DSLink/RSTP_DSLink/bin/Debug/netcoreapp3.1/RSTP_DSLink.dll and b/RSTP_DSLink/RSTP_DSLink/bin/Debug/netcoreapp3.1/RSTP_DSLink.dll differ diff --git a/RSTP_DSLink/RSTP_DSLink/bin/Debug/netcoreapp3.1/RSTP_DSLink.pdb b/RSTP_DSLink/RSTP_DSLink/bin/Debug/netcoreapp3.1/RSTP_DSLink.pdb index b683dca..1943158 100644 Binary files a/RSTP_DSLink/RSTP_DSLink/bin/Debug/netcoreapp3.1/RSTP_DSLink.pdb and b/RSTP_DSLink/RSTP_DSLink/bin/Debug/netcoreapp3.1/RSTP_DSLink.pdb differ diff --git a/RSTP_DSLink/RSTP_DSLink/bin/Debug/netcoreapp3.1/log-20210730.txt b/RSTP_DSLink/RSTP_DSLink/bin/Debug/netcoreapp3.1/log-20210730.txt deleted file mode 100644 index d56187a..0000000 --- a/RSTP_DSLink/RSTP_DSLink/bin/Debug/netcoreapp3.1/log-20210730.txt +++ /dev/null @@ -1,5 +0,0 @@ -2021-07-30 09:43:15.793 +02:00 [Information] Handshaking with http://localhost:8080/conn?dsId=RSTP_Test3-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-07-30 09:43:18.537 +02:00 [Information] Handshake successful -2021-07-30 09:43:19.001 +02:00 [Information] Connecting -2021-07-30 09:43:19.031 +02:00 [Information] WebSocket connecting to ws://localhost:8080/ws?dsId=RSTP_Test3-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=ZI0S3FYjOpJ6RFGUB0AJdQz1L66DY40JexmnWbFRdW0&format=msgpack -2021-07-30 09:43:21.172 +02:00 [Information] Connected to ws://localhost:8080/ws?dsId=RSTP_Test3-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=ZI0S3FYjOpJ6RFGUB0AJdQz1L66DY40JexmnWbFRdW0&format=msgpack diff --git a/RSTP_DSLink/RSTP_DSLink/bin/Debug/netcoreapp3.1/log-20210802.txt b/RSTP_DSLink/RSTP_DSLink/bin/Debug/netcoreapp3.1/log-20210802.txt deleted file mode 100644 index 4f696b4..0000000 --- a/RSTP_DSLink/RSTP_DSLink/bin/Debug/netcoreapp3.1/log-20210802.txt +++ /dev/null @@ -1,137 +0,0 @@ -2021-08-02 13:50:42.944 +02:00 [Information] Handshaking with http://localhost:8080/conn?dsId=RSTP_Test3-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-02 13:51:41.611 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-02 13:51:42.663 +02:00 [Information] Handshake successful -2021-08-02 13:51:43.442 +02:00 [Information] Connecting -2021-08-02 13:51:43.489 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=uhl97qol-LJctTsc1JFBBvNw_sEimFGBhB3faZZJtnU&format=msgpack -2021-08-02 13:51:43.635 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=uhl97qol-LJctTsc1JFBBvNw_sEimFGBhB3faZZJtnU&format=msgpack -2021-08-02 14:34:19.228 +02:00 [Warning] Failed to load nodes.json -2021-08-02 14:34:19.348 +02:00 [Warning] File does not exist: C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\nodes.json -2021-08-02 14:34:19.565 +02:00 [Warning] at StandardStorage.Folder.GetFileAsync(String name, CancellationToken cancellationToken) - at DSLink.VFS.SystemVFS._getFile(String fileName) - at DSLink.VFS.SystemVFS.ReadAsync(String fileName) - at DSLink.Respond.DiskSerializer.DeserializeFromDisk() -2021-08-02 14:34:19.708 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-02 14:34:20.422 +02:00 [Information] Handshake successful -2021-08-02 14:34:21.158 +02:00 [Information] Connecting -2021-08-02 14:34:21.216 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=ODxOscstQta0tvbEL7qP9asNm-ruY0cO5FS59ic3iLg&format=msgpack -2021-08-02 14:34:21.361 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=ODxOscstQta0tvbEL7qP9asNm-ruY0cO5FS59ic3iLg&format=msgpack -2021-08-02 14:35:38.680 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-02 14:35:39.471 +02:00 [Information] Handshake successful -2021-08-02 14:35:39.956 +02:00 [Information] Connecting -2021-08-02 14:35:40.030 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=imEeLF8hF0q7ChooQmo5CsGjIf25PFZcRNR1EozTcog&format=msgpack -2021-08-02 14:35:40.142 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=imEeLF8hF0q7ChooQmo5CsGjIf25PFZcRNR1EozTcog&format=msgpack -2021-08-02 14:36:55.341 +02:00 [Warning] Failed to load nodes.json -2021-08-02 14:36:55.501 +02:00 [Warning] File does not exist: C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\nodes.json -2021-08-02 14:36:55.670 +02:00 [Warning] at StandardStorage.Folder.GetFileAsync(String name, CancellationToken cancellationToken) - at DSLink.VFS.SystemVFS._getFile(String fileName) - at DSLink.VFS.SystemVFS.ReadAsync(String fileName) - at DSLink.Respond.DiskSerializer.DeserializeFromDisk() -2021-08-02 14:36:55.743 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-02 14:36:56.450 +02:00 [Information] Handshake successful -2021-08-02 14:36:56.788 +02:00 [Information] Connecting -2021-08-02 14:36:56.867 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=PQrt57OWxkEJODmDyqmYIGr81Cd6LkMSxeMd9IDGNTk&format=msgpack -2021-08-02 14:36:57.006 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=PQrt57OWxkEJODmDyqmYIGr81Cd6LkMSxeMd9IDGNTk&format=msgpack -2021-08-02 14:45:15.520 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-02 14:45:16.224 +02:00 [Information] Handshake successful -2021-08-02 14:45:16.858 +02:00 [Information] Connecting -2021-08-02 14:45:16.953 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=LliHPiJv3YLrT1AwlAPUj3s52vEcvswjBMhX3n9hsIQ&format=msgpack -2021-08-02 14:45:17.043 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=LliHPiJv3YLrT1AwlAPUj3s52vEcvswjBMhX3n9hsIQ&format=msgpack -2021-08-02 15:05:11.773 +02:00 [Warning] Failed to load nodes.json -2021-08-02 15:05:11.895 +02:00 [Warning] File does not exist: C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\nodes.json -2021-08-02 15:05:12.135 +02:00 [Warning] at StandardStorage.Folder.GetFileAsync(String name, CancellationToken cancellationToken) - at DSLink.VFS.SystemVFS._getFile(String fileName) - at DSLink.VFS.SystemVFS.ReadAsync(String fileName) - at DSLink.Respond.DiskSerializer.DeserializeFromDisk() -2021-08-02 15:05:12.216 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-02 15:05:12.775 +02:00 [Information] Handshake successful -2021-08-02 15:05:13.146 +02:00 [Information] Connecting -2021-08-02 15:05:13.200 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=8_IBgIIzs9F0GftK--bSy47OJ47V8iQZQbu5Zn_HdC0&format=msgpack -2021-08-02 15:05:13.301 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=8_IBgIIzs9F0GftK--bSy47OJ47V8iQZQbu5Zn_HdC0&format=msgpack -2021-08-02 15:23:30.345 +02:00 [Warning] Failed to load nodes.json -2021-08-02 15:23:30.945 +02:00 [Warning] File does not exist: C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\nodes.json -2021-08-02 15:23:31.041 +02:00 [Warning] at StandardStorage.Folder.GetFileAsync(String name, CancellationToken cancellationToken) - at DSLink.VFS.SystemVFS._getFile(String fileName) - at DSLink.VFS.SystemVFS.ReadAsync(String fileName) - at DSLink.Respond.DiskSerializer.DeserializeFromDisk() -2021-08-02 15:23:31.147 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-02 15:23:32.012 +02:00 [Information] Handshake successful -2021-08-02 15:23:32.694 +02:00 [Information] Connecting -2021-08-02 15:23:32.783 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=MqtkDt1G1TO0CnxkbQrTNvU3LGNOeqsBHeI_XL_M6Q4&format=msgpack -2021-08-02 15:23:33.134 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=MqtkDt1G1TO0CnxkbQrTNvU3LGNOeqsBHeI_XL_M6Q4&format=msgpack -2021-08-02 15:24:27.414 +02:00 [Warning] Failed to load nodes.json -2021-08-02 15:24:27.517 +02:00 [Warning] File does not exist: C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\nodes.json -2021-08-02 15:24:27.624 +02:00 [Warning] at StandardStorage.Folder.GetFileAsync(String name, CancellationToken cancellationToken) - at DSLink.VFS.SystemVFS._getFile(String fileName) - at DSLink.VFS.SystemVFS.ReadAsync(String fileName) - at DSLink.Respond.DiskSerializer.DeserializeFromDisk() -2021-08-02 15:24:27.720 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-02 15:24:28.544 +02:00 [Information] Handshake successful -2021-08-02 15:24:28.956 +02:00 [Information] Connecting -2021-08-02 15:24:29.016 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=91NDc7aEGIm0ZaI1idI5PZcvlzF2NJlKp0vqN5zGk_A&format=msgpack -2021-08-02 15:24:29.156 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=91NDc7aEGIm0ZaI1idI5PZcvlzF2NJlKp0vqN5zGk_A&format=msgpack -2021-08-02 15:36:07.616 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-02 15:36:08.470 +02:00 [Information] Handshake successful -2021-08-02 15:36:08.910 +02:00 [Information] Connecting -2021-08-02 15:36:08.971 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=kNXRX8md71HUGQYqMdfmhFkEiC7SsQeVn87VyuxajK8&format=msgpack -2021-08-02 15:36:09.047 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=kNXRX8md71HUGQYqMdfmhFkEiC7SsQeVn87VyuxajK8&format=msgpack -2021-08-02 15:37:13.892 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-02 15:37:14.418 +02:00 [Information] Handshake successful -2021-08-02 15:37:14.765 +02:00 [Information] Connecting -2021-08-02 15:37:14.819 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=8zvw8rDqIFXrIKvqE1ftulG7BM_rLNb7bb-AdHK37ks&format=msgpack -2021-08-02 15:37:14.947 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=8zvw8rDqIFXrIKvqE1ftulG7BM_rLNb7bb-AdHK37ks&format=msgpack -2021-08-02 15:37:59.300 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-02 15:37:59.804 +02:00 [Information] Handshake successful -2021-08-02 15:38:00.225 +02:00 [Information] Connecting -2021-08-02 15:38:00.299 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=p1_Cwft2j9YTdcwyz2KcIDSZXii5JQUNSUkT4FQwUUA&format=msgpack -2021-08-02 15:38:00.365 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=p1_Cwft2j9YTdcwyz2KcIDSZXii5JQUNSUkT4FQwUUA&format=msgpack -2021-08-02 15:40:46.878 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-02 15:40:47.752 +02:00 [Information] Handshake successful -2021-08-02 15:40:48.027 +02:00 [Information] Connecting -2021-08-02 15:40:48.090 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=hmcLWMoqCo7LV889eG8XN-epvd8iyxXAwUPgIE49bk0&format=msgpack -2021-08-02 15:40:48.145 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=hmcLWMoqCo7LV889eG8XN-epvd8iyxXAwUPgIE49bk0&format=msgpack -2021-08-02 15:42:44.204 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-02 15:42:44.899 +02:00 [Information] Handshake successful -2021-08-02 15:42:45.251 +02:00 [Information] Connecting -2021-08-02 15:42:45.317 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=BBaRuoEhEOnDNHdd225-F9s2w_BWRaiFU7RvoHNye70&format=msgpack -2021-08-02 15:42:45.419 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=BBaRuoEhEOnDNHdd225-F9s2w_BWRaiFU7RvoHNye70&format=msgpack -2021-08-02 15:44:48.828 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-02 15:44:49.600 +02:00 [Information] Handshake successful -2021-08-02 15:44:49.997 +02:00 [Information] Connecting -2021-08-02 15:44:50.084 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=-w52j8pLBXA9LKUVoeIMzIjQLBLC3cfaU4UcBsscqAI&format=msgpack -2021-08-02 15:44:50.248 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=-w52j8pLBXA9LKUVoeIMzIjQLBLC3cfaU4UcBsscqAI&format=msgpack -2021-08-02 16:04:38.986 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-02 16:04:39.683 +02:00 [Information] Handshake successful -2021-08-02 16:04:39.993 +02:00 [Information] Connecting -2021-08-02 16:04:40.036 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=MKQAEE5Jis75YBh0JZDlzVoj6ug03k22oVjNtKWXlRc&format=msgpack -2021-08-02 16:04:40.124 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=MKQAEE5Jis75YBh0JZDlzVoj6ug03k22oVjNtKWXlRc&format=msgpack -2021-08-02 16:07:26.733 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-02 16:07:27.487 +02:00 [Information] Handshake successful -2021-08-02 16:07:28.240 +02:00 [Information] Connecting -2021-08-02 16:07:28.320 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=xU27aIt1tzrE-2jGTf3f10AGbRHl4Kpiormd5gRmDhU&format=msgpack -2021-08-02 16:07:28.421 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=xU27aIt1tzrE-2jGTf3f10AGbRHl4Kpiormd5gRmDhU&format=msgpack -2021-08-02 16:10:00.222 +02:00 [Warning] Failed to load nodes.json -2021-08-02 16:10:00.334 +02:00 [Warning] File does not exist: C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\nodes.json -2021-08-02 16:10:00.499 +02:00 [Warning] at StandardStorage.Folder.GetFileAsync(String name, CancellationToken cancellationToken) - at DSLink.VFS.SystemVFS._getFile(String fileName) - at DSLink.VFS.SystemVFS.ReadAsync(String fileName) - at DSLink.Respond.DiskSerializer.DeserializeFromDisk() -2021-08-02 16:10:00.566 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-02 16:10:01.090 +02:00 [Information] Handshake successful -2021-08-02 16:10:01.437 +02:00 [Information] Connecting -2021-08-02 16:10:01.466 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=t09OJX_lXJF71GtOiQjXu-V6kEfCxohRpXqGKTRfOsA&format=msgpack -2021-08-02 16:10:01.525 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=t09OJX_lXJF71GtOiQjXu-V6kEfCxohRpXqGKTRfOsA&format=msgpack -2021-08-02 16:12:57.439 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-02 16:12:58.046 +02:00 [Information] Handshake successful -2021-08-02 16:12:58.325 +02:00 [Information] Connecting -2021-08-02 16:12:58.438 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=JQUHQceTDOsUz3-5IWBWgSVznZ8o_bpsBxRFR2WGSNY&format=msgpack -2021-08-02 16:12:58.580 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=JQUHQceTDOsUz3-5IWBWgSVznZ8o_bpsBxRFR2WGSNY&format=msgpack -2021-08-02 16:13:57.017 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-02 16:13:57.507 +02:00 [Information] Handshake successful -2021-08-02 16:13:57.873 +02:00 [Information] Connecting -2021-08-02 16:13:58.022 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=KEgjreMZ8LATOlDfPf1a0v2s0XPAx6wBhQKJpXTMuYg&format=msgpack -2021-08-02 16:13:58.174 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=KEgjreMZ8LATOlDfPf1a0v2s0XPAx6wBhQKJpXTMuYg&format=msgpack -2021-08-02 16:15:10.931 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-02 16:15:11.735 +02:00 [Information] Handshake successful -2021-08-02 16:15:11.937 +02:00 [Information] Connecting -2021-08-02 16:15:11.984 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=8BcKgvQO1DR6vVdJO0GeIuubq7_80xDV-zpxb6ZVhXI&format=msgpack -2021-08-02 16:15:12.087 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=8BcKgvQO1DR6vVdJO0GeIuubq7_80xDV-zpxb6ZVhXI&format=msgpack diff --git a/RSTP_DSLink/RSTP_DSLink/bin/Debug/netcoreapp3.1/log-20210803.txt b/RSTP_DSLink/RSTP_DSLink/bin/Debug/netcoreapp3.1/log-20210803.txt deleted file mode 100644 index 4939f1c..0000000 --- a/RSTP_DSLink/RSTP_DSLink/bin/Debug/netcoreapp3.1/log-20210803.txt +++ /dev/null @@ -1,129 +0,0 @@ -2021-08-03 11:03:44.122 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-03 11:03:45.752 +02:00 [Information] Handshake successful -2021-08-03 11:03:46.945 +02:00 [Information] Connecting -2021-08-03 11:03:47.010 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=B0sKiYxR4Q-MphyQBZJEF9-5YYiOtHyJGAAXimqympI&format=msgpack -2021-08-03 11:03:47.254 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=B0sKiYxR4Q-MphyQBZJEF9-5YYiOtHyJGAAXimqympI&format=msgpack -2021-08-03 11:30:52.942 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-03 11:30:53.558 +02:00 [Information] Handshake successful -2021-08-03 11:30:53.749 +02:00 [Information] Connecting -2021-08-03 11:30:53.791 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=VhcS9rCG3lgMQWshLxv2rHK0XRwZTgl3WuHzfxqncSQ&format=msgpack -2021-08-03 11:30:53.856 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=VhcS9rCG3lgMQWshLxv2rHK0XRwZTgl3WuHzfxqncSQ&format=msgpack -2021-08-03 11:31:27.638 +02:00 [Warning] Failed to load nodes.json -2021-08-03 11:31:27.724 +02:00 [Warning] File does not exist: C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\nodes.json -2021-08-03 11:31:28.350 +02:00 [Warning] at StandardStorage.Folder.GetFileAsync(String name, CancellationToken cancellationToken) - at DSLink.VFS.SystemVFS._getFile(String fileName) - at DSLink.VFS.SystemVFS.ReadAsync(String fileName) - at DSLink.Respond.DiskSerializer.DeserializeFromDisk() -2021-08-03 11:31:28.416 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-03 11:31:29.164 +02:00 [Information] Handshake successful -2021-08-03 11:31:29.535 +02:00 [Information] Connecting -2021-08-03 11:31:29.647 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=gpv5jA0dwOIVN0zc439RLXHK0GXBSxInZeKmYucTRUU&format=msgpack -2021-08-03 11:31:29.867 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=gpv5jA0dwOIVN0zc439RLXHK0GXBSxInZeKmYucTRUU&format=msgpack -2021-08-03 11:33:10.676 +02:00 [Warning] Failed to load nodes.json -2021-08-03 11:33:10.790 +02:00 [Warning] File does not exist: C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\nodes.json -2021-08-03 11:33:10.939 +02:00 [Warning] at StandardStorage.Folder.GetFileAsync(String name, CancellationToken cancellationToken) - at DSLink.VFS.SystemVFS._getFile(String fileName) - at DSLink.VFS.SystemVFS.ReadAsync(String fileName) - at DSLink.Respond.DiskSerializer.DeserializeFromDisk() -2021-08-03 11:33:11.166 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-03 11:33:12.404 +02:00 [Information] Handshake successful -2021-08-03 11:33:12.778 +02:00 [Information] Connecting -2021-08-03 11:33:12.812 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=Bli_OxHVHntLF9zADsjwqEbn8EhWQ-CGJmK9WIDLf10&format=msgpack -2021-08-03 11:33:12.930 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=Bli_OxHVHntLF9zADsjwqEbn8EhWQ-CGJmK9WIDLf10&format=msgpack -2021-08-03 11:35:36.583 +02:00 [Warning] Failed to load nodes.json -2021-08-03 11:35:36.671 +02:00 [Warning] File does not exist: C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\nodes.json -2021-08-03 11:35:36.770 +02:00 [Warning] at StandardStorage.Folder.GetFileAsync(String name, CancellationToken cancellationToken) - at DSLink.VFS.SystemVFS._getFile(String fileName) - at DSLink.VFS.SystemVFS.ReadAsync(String fileName) - at DSLink.Respond.DiskSerializer.DeserializeFromDisk() -2021-08-03 11:35:36.833 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-03 11:35:37.483 +02:00 [Information] Handshake successful -2021-08-03 11:35:37.965 +02:00 [Information] Connecting -2021-08-03 11:35:38.069 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=N3aAK1S7jWsz6Xeixb3agtCf8MXr0x-e7HATwPWPX1o&format=msgpack -2021-08-03 11:35:38.136 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=N3aAK1S7jWsz6Xeixb3agtCf8MXr0x-e7HATwPWPX1o&format=msgpack -2021-08-03 11:37:18.243 +02:00 [Warning] Failed to load nodes.json -2021-08-03 11:37:18.376 +02:00 [Warning] File does not exist: C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\nodes.json -2021-08-03 11:37:18.465 +02:00 [Warning] at StandardStorage.Folder.GetFileAsync(String name, CancellationToken cancellationToken) - at DSLink.VFS.SystemVFS._getFile(String fileName) - at DSLink.VFS.SystemVFS.ReadAsync(String fileName) - at DSLink.Respond.DiskSerializer.DeserializeFromDisk() -2021-08-03 11:37:18.539 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-03 11:37:19.334 +02:00 [Information] Handshake successful -2021-08-03 11:37:19.657 +02:00 [Information] Connecting -2021-08-03 11:37:19.696 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=betMIA8Xy-p4Z0R9lN1fKBUZJNled2t8JabU8eH2GAk&format=msgpack -2021-08-03 11:37:19.827 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=betMIA8Xy-p4Z0R9lN1fKBUZJNled2t8JabU8eH2GAk&format=msgpack -2021-08-03 11:40:24.309 +02:00 [Warning] Failed to load nodes.json -2021-08-03 11:40:24.489 +02:00 [Warning] File does not exist: C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\nodes.json -2021-08-03 11:40:24.607 +02:00 [Warning] at StandardStorage.Folder.GetFileAsync(String name, CancellationToken cancellationToken) - at DSLink.VFS.SystemVFS._getFile(String fileName) - at DSLink.VFS.SystemVFS.ReadAsync(String fileName) - at DSLink.Respond.DiskSerializer.DeserializeFromDisk() -2021-08-03 11:40:25.009 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-03 11:40:25.869 +02:00 [Information] Handshake successful -2021-08-03 11:40:26.442 +02:00 [Information] Connecting -2021-08-03 11:40:26.566 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=fdos6OENq6v54imFbTDefeYyc3_m5841nu8NI-hcF58&format=msgpack -2021-08-03 11:40:26.656 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=fdos6OENq6v54imFbTDefeYyc3_m5841nu8NI-hcF58&format=msgpack -2021-08-03 11:41:08.851 +02:00 [Warning] Failed to load nodes.json -2021-08-03 11:41:09.031 +02:00 [Warning] File does not exist: C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\nodes.json -2021-08-03 11:41:09.144 +02:00 [Warning] at StandardStorage.Folder.GetFileAsync(String name, CancellationToken cancellationToken) - at DSLink.VFS.SystemVFS._getFile(String fileName) - at DSLink.VFS.SystemVFS.ReadAsync(String fileName) - at DSLink.Respond.DiskSerializer.DeserializeFromDisk() -2021-08-03 11:41:09.385 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-03 11:41:10.111 +02:00 [Information] Handshake successful -2021-08-03 11:41:10.598 +02:00 [Information] Connecting -2021-08-03 11:41:10.692 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=vr8C6A6On9Xh-q70n8L-RfXcmOBdfraXoOykU3cwUQA&format=msgpack -2021-08-03 11:41:10.825 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=vr8C6A6On9Xh-q70n8L-RfXcmOBdfraXoOykU3cwUQA&format=msgpack -2021-08-03 11:42:10.520 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-03 11:42:10.898 +02:00 [Information] Handshake successful -2021-08-03 11:42:11.108 +02:00 [Information] Connecting -2021-08-03 11:42:11.177 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=ojurIILA78q0aJt4grkJzFbgw3DwfS2r_WC5R8pwpSo&format=msgpack -2021-08-03 11:42:11.297 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=ojurIILA78q0aJt4grkJzFbgw3DwfS2r_WC5R8pwpSo&format=msgpack -2021-08-03 11:42:29.808 +02:00 [Warning] Failed to load nodes.json -2021-08-03 11:42:29.898 +02:00 [Warning] File does not exist: C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\nodes.json -2021-08-03 11:42:29.967 +02:00 [Warning] at StandardStorage.Folder.GetFileAsync(String name, CancellationToken cancellationToken) - at DSLink.VFS.SystemVFS._getFile(String fileName) - at DSLink.VFS.SystemVFS.ReadAsync(String fileName) - at DSLink.Respond.DiskSerializer.DeserializeFromDisk() -2021-08-03 11:42:30.137 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-03 11:42:30.532 +02:00 [Information] Handshake successful -2021-08-03 11:42:30.906 +02:00 [Information] Connecting -2021-08-03 11:42:30.985 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=tKi9TXyt1wXcsIjPytryaX6sHgpTDBzJElA1hEl2zu8&format=msgpack -2021-08-03 11:42:31.134 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=tKi9TXyt1wXcsIjPytryaX6sHgpTDBzJElA1hEl2zu8&format=msgpack -2021-08-03 11:43:35.267 +02:00 [Warning] Failed to load nodes.json -2021-08-03 11:43:35.366 +02:00 [Warning] File does not exist: C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\nodes.json -2021-08-03 11:43:35.434 +02:00 [Warning] at StandardStorage.Folder.GetFileAsync(String name, CancellationToken cancellationToken) - at DSLink.VFS.SystemVFS._getFile(String fileName) - at DSLink.VFS.SystemVFS.ReadAsync(String fileName) - at DSLink.Respond.DiskSerializer.DeserializeFromDisk() -2021-08-03 11:43:35.867 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-03 11:43:36.274 +02:00 [Information] Handshake successful -2021-08-03 11:43:36.493 +02:00 [Information] Connecting -2021-08-03 11:43:36.530 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=bubQ2UGVXRlMIbYSrt2gA4KZAuS0kKos4x5vjlx__Rc&format=msgpack -2021-08-03 11:43:36.663 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=bubQ2UGVXRlMIbYSrt2gA4KZAuS0kKos4x5vjlx__Rc&format=msgpack -2021-08-03 11:46:24.951 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-03 11:46:25.564 +02:00 [Information] Handshake successful -2021-08-03 11:46:25.871 +02:00 [Information] Connecting -2021-08-03 11:46:25.945 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=bpl3In8B0JhkN53rTf4afrZMF0tA-NEHz3pfcSpwkB8&format=msgpack -2021-08-03 11:46:26.102 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=bpl3In8B0JhkN53rTf4afrZMF0tA-NEHz3pfcSpwkB8&format=msgpack -2021-08-03 11:56:02.197 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-03 11:56:02.727 +02:00 [Information] Handshake successful -2021-08-03 11:56:03.109 +02:00 [Information] Connecting -2021-08-03 11:56:03.172 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=4IsqPIISg-NycVkNpVfgaULTURZ6Sdi-Zh3B5X9pmwM&format=msgpack -2021-08-03 11:56:03.418 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=4IsqPIISg-NycVkNpVfgaULTURZ6Sdi-Zh3B5X9pmwM&format=msgpack -2021-08-03 11:56:48.024 +02:00 [Warning] Failed to load nodes.json -2021-08-03 11:56:48.146 +02:00 [Warning] File does not exist: C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\nodes.json -2021-08-03 11:56:48.307 +02:00 [Warning] at StandardStorage.Folder.GetFileAsync(String name, CancellationToken cancellationToken) - at DSLink.VFS.SystemVFS._getFile(String fileName) - at DSLink.VFS.SystemVFS.ReadAsync(String fileName) - at DSLink.Respond.DiskSerializer.DeserializeFromDisk() -2021-08-03 11:56:48.628 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-03 11:56:49.971 +02:00 [Information] Handshake successful -2021-08-03 11:56:50.534 +02:00 [Information] Connecting -2021-08-03 11:56:50.874 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=ypWQIh8FPOQNhPAXbRN1meG0gWc_sw2va2g3Cg0nMd4&format=msgpack -2021-08-03 11:56:51.227 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=ypWQIh8FPOQNhPAXbRN1meG0gWc_sw2va2g3Cg0nMd4&format=msgpack -2021-08-03 12:02:42.774 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs -2021-08-03 12:02:43.276 +02:00 [Information] Handshake successful -2021-08-03 12:02:43.454 +02:00 [Information] Connecting -2021-08-03 12:02:43.489 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=Fz0kksH0XedbyZ5rz1bOhD5ET8QuDRpvOK88ot6khuA&format=msgpack -2021-08-03 12:02:43.562 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=Fz0kksH0XedbyZ5rz1bOhD5ET8QuDRpvOK88ot6khuA&format=msgpack diff --git a/RSTP_DSLink/RSTP_DSLink/bin/Debug/netcoreapp3.1/log-20210806.txt b/RSTP_DSLink/RSTP_DSLink/bin/Debug/netcoreapp3.1/log-20210806.txt new file mode 100644 index 0000000..b03f1b2 --- /dev/null +++ b/RSTP_DSLink/RSTP_DSLink/bin/Debug/netcoreapp3.1/log-20210806.txt @@ -0,0 +1,26 @@ +2021-08-06 09:19:02.867 +02:00 [Error] Exception processing message from web socket. +System.Net.WebSockets.WebSocketException (0x80004005): The remote party closed the WebSocket connection without completing the close handshake. + ---> System.IO.IOException: Unable to read data from the transport connection: Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu.. + ---> System.Net.Sockets.SocketException (10060): Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. + --- End of inner exception stack trace --- + at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.ThrowException(SocketError error, CancellationToken cancellationToken) + at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.GetResult(Int16 token) + at System.Net.Http.HttpConnection.ReadBufferedAsyncCore(Memory`1 destination) + at System.Net.Http.HttpConnection.RawConnectionStream.ReadAsync(Memory`1 buffer, CancellationToken cancellationToken) + at System.Net.WebSockets.ManagedWebSocket.EnsureBufferContainsAsync(Int32 minimumRequiredBytes, CancellationToken cancellationToken, Boolean throwOnPrematureClosure) + at System.Net.WebSockets.ManagedWebSocket.ReceiveAsyncPrivate[TWebSocketReceiveResultGetter,TWebSocketReceiveResult](Memory`1 payloadBuffer, CancellationToken cancellationToken, TWebSocketReceiveResultGetter resultGetter) + at System.Net.WebSockets.ManagedWebSocket.ReceiveAsyncPrivate[TWebSocketReceiveResultGetter,TWebSocketReceiveResult](Memory`1 payloadBuffer, CancellationToken cancellationToken, TWebSocketReceiveResultGetter resultGetter) + at DSLink.Connection.WebSocketConnector.<_startReceiveTask>b__11_0() +2021-08-06 09:19:07.906 +02:00 [Information] Disconnected +2021-08-06 09:19:08.542 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-06 09:19:11.232 +02:00 [Information] Disconnecting +2021-08-06 09:19:32.595 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-06 09:19:33.599 +02:00 [Warning] Failed to connect, delaying for 1 seconds +2021-08-06 09:19:34.674 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-06 09:19:59.937 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-06 09:20:00.020 +02:00 [Warning] Failed to connect, delaying for 2 seconds +2021-08-06 09:20:02.301 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-06 09:20:10.796 +02:00 [Information] Handshake successful +2021-08-06 09:20:11.340 +02:00 [Information] Connecting +2021-08-06 09:20:12.557 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=f2G0GZ01v86KrZ51g6pDfXtF3opKW3LSWq_nDb8nQX8&format=msgpack +2021-08-06 09:20:15.863 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=f2G0GZ01v86KrZ51g6pDfXtF3opKW3LSWq_nDb8nQX8&format=msgpack diff --git a/RSTP_DSLink/RSTP_DSLink/bin/Debug/netcoreapp3.1/log-20210809.txt b/RSTP_DSLink/RSTP_DSLink/bin/Debug/netcoreapp3.1/log-20210809.txt new file mode 100644 index 0000000..5ed55a5 --- /dev/null +++ b/RSTP_DSLink/RSTP_DSLink/bin/Debug/netcoreapp3.1/log-20210809.txt @@ -0,0 +1,310 @@ +2021-08-09 11:32:05.544 +02:00 [Error] Exception processing message from web socket. +System.Net.WebSockets.WebSocketException (0x80004005): The remote party closed the WebSocket connection without completing the close handshake. + ---> System.IO.IOException: Unable to read data from the transport connection: Une connexion établie a été abandonnée par un logiciel de votre ordinateur hôte.. + ---> System.Net.Sockets.SocketException (10053): Une connexion établie a été abandonnée par un logiciel de votre ordinateur hôte. + --- End of inner exception stack trace --- + at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.ThrowException(SocketError error, CancellationToken cancellationToken) + at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.GetResult(Int16 token) + at System.Net.Http.HttpConnection.ReadBufferedAsyncCore(Memory`1 destination) + at System.Net.Http.HttpConnection.RawConnectionStream.ReadAsync(Memory`1 buffer, CancellationToken cancellationToken) + at System.Net.WebSockets.ManagedWebSocket.EnsureBufferContainsAsync(Int32 minimumRequiredBytes, CancellationToken cancellationToken, Boolean throwOnPrematureClosure) + at System.Net.WebSockets.ManagedWebSocket.ReceiveAsyncPrivate[TWebSocketReceiveResultGetter,TWebSocketReceiveResult](Memory`1 payloadBuffer, CancellationToken cancellationToken, TWebSocketReceiveResultGetter resultGetter) + at System.Net.WebSockets.ManagedWebSocket.ReceiveAsyncPrivate[TWebSocketReceiveResultGetter,TWebSocketReceiveResult](Memory`1 payloadBuffer, CancellationToken cancellationToken, TWebSocketReceiveResultGetter resultGetter) + at DSLink.Connection.WebSocketConnector.<_startReceiveTask>b__11_0() +2021-08-09 11:32:09.907 +02:00 [Information] Disconnected +2021-08-09 11:32:10.087 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:32:13.975 +02:00 [Information] Disconnecting +2021-08-09 11:32:27.156 +02:00 [Warning] Une connexion établie a été abandonnée par un logiciel de votre ordinateur hôte. +2021-08-09 11:32:27.375 +02:00 [Warning] Failed to connect, delaying for 1 seconds +2021-08-09 11:32:28.622 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:32:35.122 +02:00 [Warning] Une opération a été tentée sur un hôte impossible à atteindre. +2021-08-09 11:32:41.688 +02:00 [Warning] Failed to connect, delaying for 2 seconds +2021-08-09 11:32:45.183 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:33:10.477 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:33:11.655 +02:00 [Warning] Failed to connect, delaying for 3 seconds +2021-08-09 11:33:15.127 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:33:38.373 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:33:38.609 +02:00 [Warning] Failed to connect, delaying for 4 seconds +2021-08-09 11:33:42.897 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:34:11.431 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:34:12.762 +02:00 [Warning] Failed to connect, delaying for 5 seconds +2021-08-09 11:34:18.829 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:34:42.707 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:34:43.007 +02:00 [Warning] Failed to connect, delaying for 6 seconds +2021-08-09 11:34:49.253 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:35:11.618 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:35:11.739 +02:00 [Warning] Failed to connect, delaying for 7 seconds +2021-08-09 11:35:18.936 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:35:41.153 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:35:41.304 +02:00 [Warning] Failed to connect, delaying for 8 seconds +2021-08-09 11:35:49.473 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:36:11.446 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:36:11.499 +02:00 [Warning] Failed to connect, delaying for 9 seconds +2021-08-09 11:36:20.632 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:36:42.555 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:36:42.660 +02:00 [Warning] Failed to connect, delaying for 10 seconds +2021-08-09 11:36:52.840 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:37:14.772 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:37:14.884 +02:00 [Warning] Failed to connect, delaying for 11 seconds +2021-08-09 11:37:26.005 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:37:47.541 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:37:47.621 +02:00 [Warning] Failed to connect, delaying for 12 seconds +2021-08-09 11:37:59.708 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:38:21.374 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:38:21.451 +02:00 [Warning] Failed to connect, delaying for 13 seconds +2021-08-09 11:38:34.605 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:38:56.643 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:38:56.728 +02:00 [Warning] Failed to connect, delaying for 14 seconds +2021-08-09 11:39:10.811 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:39:32.451 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:39:32.507 +02:00 [Warning] Failed to connect, delaying for 15 seconds +2021-08-09 11:39:47.583 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:40:09.430 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:40:09.538 +02:00 [Warning] Failed to connect, delaying for 16 seconds +2021-08-09 11:40:25.741 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:40:47.396 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:40:47.509 +02:00 [Warning] Failed to connect, delaying for 17 seconds +2021-08-09 11:41:05.098 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:41:26.861 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:41:26.954 +02:00 [Warning] Failed to connect, delaying for 18 seconds +2021-08-09 11:41:44.993 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:42:06.898 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:42:06.987 +02:00 [Warning] Failed to connect, delaying for 19 seconds +2021-08-09 11:42:26.072 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:42:47.863 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:42:47.934 +02:00 [Warning] Failed to connect, delaying for 20 seconds +2021-08-09 11:43:08.029 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:43:29.702 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:43:29.757 +02:00 [Warning] Failed to connect, delaying for 21 seconds +2021-08-09 11:43:50.816 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:44:12.507 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:44:12.581 +02:00 [Warning] Failed to connect, delaying for 22 seconds +2021-08-09 11:44:34.681 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:44:56.362 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:44:56.453 +02:00 [Warning] Failed to connect, delaying for 23 seconds +2021-08-09 11:45:19.613 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:45:41.325 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:45:41.376 +02:00 [Warning] Failed to connect, delaying for 24 seconds +2021-08-09 11:46:05.444 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:46:27.011 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:46:27.120 +02:00 [Warning] Failed to connect, delaying for 25 seconds +2021-08-09 11:46:52.159 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:47:13.856 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:47:13.916 +02:00 [Warning] Failed to connect, delaying for 26 seconds +2021-08-09 11:47:39.981 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:48:01.576 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:48:01.625 +02:00 [Warning] Failed to connect, delaying for 27 seconds +2021-08-09 11:48:28.723 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:48:50.226 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:48:50.289 +02:00 [Warning] Failed to connect, delaying for 28 seconds +2021-08-09 11:49:18.377 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:49:40.167 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:49:40.216 +02:00 [Warning] Failed to connect, delaying for 29 seconds +2021-08-09 11:50:09.282 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:50:31.019 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:50:31.078 +02:00 [Warning] Failed to connect, delaying for 30 seconds +2021-08-09 11:51:01.194 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:51:23.196 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:51:23.317 +02:00 [Warning] Failed to connect, delaying for 31 seconds +2021-08-09 11:51:54.467 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:52:16.184 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:52:16.245 +02:00 [Warning] Failed to connect, delaying for 32 seconds +2021-08-09 11:52:48.359 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:53:09.866 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:53:09.921 +02:00 [Warning] Failed to connect, delaying for 33 seconds +2021-08-09 11:53:42.996 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:54:04.749 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:54:04.828 +02:00 [Warning] Failed to connect, delaying for 34 seconds +2021-08-09 11:54:38.906 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:55:00.470 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:55:00.519 +02:00 [Warning] Failed to connect, delaying for 35 seconds +2021-08-09 11:55:35.597 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:55:57.111 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:55:57.175 +02:00 [Warning] Failed to connect, delaying for 36 seconds +2021-08-09 11:56:33.283 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:56:55.011 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:56:55.059 +02:00 [Warning] Failed to connect, delaying for 37 seconds +2021-08-09 11:57:32.140 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:57:53.828 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:57:53.894 +02:00 [Warning] Failed to connect, delaying for 38 seconds +2021-08-09 11:58:31.962 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:58:53.782 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:58:53.820 +02:00 [Warning] Failed to connect, delaying for 39 seconds +2021-08-09 11:59:32.926 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 11:59:54.433 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 11:59:54.485 +02:00 [Warning] Failed to connect, delaying for 40 seconds +2021-08-09 12:00:34.541 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:00:56.054 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:00:56.144 +02:00 [Warning] Failed to connect, delaying for 41 seconds +2021-08-09 12:01:37.327 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:01:58.816 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:01:58.880 +02:00 [Warning] Failed to connect, delaying for 42 seconds +2021-08-09 12:02:40.960 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:03:02.410 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:03:02.536 +02:00 [Warning] Failed to connect, delaying for 43 seconds +2021-08-09 12:03:45.670 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:04:07.330 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:04:07.412 +02:00 [Warning] Failed to connect, delaying for 44 seconds +2021-08-09 12:04:51.479 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:05:13.104 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:05:13.169 +02:00 [Warning] Failed to connect, delaying for 45 seconds +2021-08-09 12:05:58.223 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:06:19.774 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:06:20.088 +02:00 [Warning] Failed to connect, delaying for 46 seconds +2021-08-09 12:07:06.230 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:07:27.880 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:07:28.159 +02:00 [Warning] Failed to connect, delaying for 47 seconds +2021-08-09 12:08:15.244 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:08:36.866 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:08:36.910 +02:00 [Warning] Failed to connect, delaying for 48 seconds +2021-08-09 12:09:25.040 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:09:46.709 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:09:46.788 +02:00 [Warning] Failed to connect, delaying for 49 seconds +2021-08-09 12:10:35.866 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:10:57.443 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:10:57.516 +02:00 [Warning] Failed to connect, delaying for 50 seconds +2021-08-09 12:11:47.557 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:12:09.200 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:12:09.275 +02:00 [Warning] Failed to connect, delaying for 51 seconds +2021-08-09 12:13:00.347 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:13:22.034 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:13:22.095 +02:00 [Warning] Failed to connect, delaying for 52 seconds +2021-08-09 12:14:14.136 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:14:35.736 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:14:35.787 +02:00 [Warning] Failed to connect, delaying for 53 seconds +2021-08-09 12:15:29.054 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:15:50.550 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:15:50.593 +02:00 [Warning] Failed to connect, delaying for 54 seconds +2021-08-09 12:16:44.686 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:17:06.342 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:17:06.401 +02:00 [Warning] Failed to connect, delaying for 55 seconds +2021-08-09 12:18:01.445 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:18:23.307 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:18:23.385 +02:00 [Warning] Failed to connect, delaying for 56 seconds +2021-08-09 12:19:19.442 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:19:41.110 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:19:41.206 +02:00 [Warning] Failed to connect, delaying for 57 seconds +2021-08-09 12:20:38.277 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:21:00.228 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:21:00.507 +02:00 [Warning] Failed to connect, delaying for 58 seconds +2021-08-09 12:21:58.636 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:22:20.221 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:22:20.322 +02:00 [Warning] Failed to connect, delaying for 59 seconds +2021-08-09 12:23:19.332 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:23:41.002 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:23:41.316 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 12:24:41.426 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:25:03.135 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:25:03.288 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 12:26:03.397 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:26:25.078 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:26:25.164 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 12:27:25.340 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:27:46.833 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:27:47.277 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 12:28:47.390 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:29:08.874 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:29:08.918 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 12:30:09.006 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:30:30.560 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:30:30.607 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 12:31:30.662 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:31:53.068 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:31:53.373 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 12:32:53.539 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:33:15.490 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:33:15.584 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 12:34:15.675 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:34:37.306 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:34:37.358 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 12:35:37.481 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:35:59.065 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:35:59.156 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 12:36:59.238 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:37:20.817 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:37:20.943 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 12:38:20.991 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:38:42.795 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:38:42.926 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 12:39:43.129 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:40:05.014 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:40:05.059 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 12:41:05.237 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:41:26.793 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:41:26.903 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 12:42:26.958 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:42:48.611 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:42:48.670 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 12:43:48.835 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:44:10.903 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:44:11.009 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 12:45:11.074 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:45:32.857 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:45:32.928 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 12:46:32.975 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:46:54.640 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:46:54.698 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 12:47:54.741 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:48:16.312 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:48:16.393 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 12:49:16.604 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:49:38.310 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:49:38.396 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 12:50:44.761 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:51:06.487 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:51:06.673 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 12:52:10.371 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:52:31.935 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:52:31.996 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 12:53:32.066 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:53:53.895 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:53:53.948 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 12:54:54.025 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:55:15.698 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:55:15.775 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 12:56:15.869 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:56:37.536 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:56:37.598 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 12:57:39.317 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:58:01.028 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:58:01.290 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 12:59:01.332 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 12:59:22.943 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 12:59:23.002 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 13:00:23.108 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 13:00:44.709 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 13:00:44.802 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 13:01:44.883 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 13:02:06.534 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 13:02:06.575 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 13:03:06.616 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 13:03:28.410 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 13:03:28.535 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 13:04:28.620 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 13:04:50.308 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 13:04:50.369 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 13:05:50.443 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 13:06:12.178 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 13:06:12.273 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 13:07:12.326 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 13:07:34.460 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 13:07:34.614 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 13:08:34.668 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 13:08:56.323 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 13:08:56.412 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 13:09:56.470 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 13:10:18.142 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 13:10:18.227 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 13:11:18.362 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 13:11:40.117 +02:00 [Warning] Une tentative de connexion a échoué car le parti connecté n’a pas répondu convenablement au-delà d’une certaine durée ou une connexion établie a échoué car l’hôte de connexion n’a pas répondu. +2021-08-09 13:11:40.176 +02:00 [Warning] Failed to connect, delaying for 60 seconds +2021-08-09 13:12:40.328 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 13:12:42.066 +02:00 [Information] Handshake successful +2021-08-09 13:12:42.677 +02:00 [Information] Connecting +2021-08-09 13:12:43.700 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=3EKTm5CNYnvtX5YBvK1K80UUFqjGoiIkIOqSLcxaXvs&format=msgpack +2021-08-09 13:12:46.255 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=3EKTm5CNYnvtX5YBvK1K80UUFqjGoiIkIOqSLcxaXvs&format=msgpack +2021-08-09 17:43:22.592 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-09 17:43:24.761 +02:00 [Information] Handshake successful +2021-08-09 17:43:26.504 +02:00 [Information] Connecting +2021-08-09 17:43:26.550 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=mUc1IhjOQ-PZWE-eJJhBEv_iwYT6wwrUgLoG56R4KI8&format=msgpack +2021-08-09 17:43:26.809 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=mUc1IhjOQ-PZWE-eJJhBEv_iwYT6wwrUgLoG56R4KI8&format=msgpack diff --git a/RSTP_DSLink/RSTP_DSLink/bin/Debug/netcoreapp3.1/log-20210810.txt b/RSTP_DSLink/RSTP_DSLink/bin/Debug/netcoreapp3.1/log-20210810.txt new file mode 100644 index 0000000..dce17a4 --- /dev/null +++ b/RSTP_DSLink/RSTP_DSLink/bin/Debug/netcoreapp3.1/log-20210810.txt @@ -0,0 +1,15 @@ +2021-08-10 10:01:09.834 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-10 10:01:11.097 +02:00 [Information] Handshake successful +2021-08-10 10:01:11.781 +02:00 [Information] Connecting +2021-08-10 10:01:11.824 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=2Lqb6fCGsKF9tQKEBKawf6f2yI4t8PsqGpO5jFlfBR8&format=msgpack +2021-08-10 10:01:11.973 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=2Lqb6fCGsKF9tQKEBKawf6f2yI4t8PsqGpO5jFlfBR8&format=msgpack +2021-08-10 12:52:32.116 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-10 12:52:32.874 +02:00 [Information] Handshake successful +2021-08-10 12:52:33.614 +02:00 [Information] Connecting +2021-08-10 12:52:33.651 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=wk4x7Iw5j2es8mrs-JwnwnIwVYZMKqF5VD8-4sGyucM&format=msgpack +2021-08-10 12:52:33.789 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=wk4x7Iw5j2es8mrs-JwnwnIwVYZMKqF5VD8-4sGyucM&format=msgpack +2021-08-10 15:18:12.256 +02:00 [Information] Handshaking with http://192.168.1.54:8080/conn?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs +2021-08-10 15:18:12.833 +02:00 [Information] Handshake successful +2021-08-10 15:18:13.656 +02:00 [Information] Connecting +2021-08-10 15:18:13.694 +02:00 [Information] WebSocket connecting to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=0WXjdydamm39OqRForInn9t_ALW3ViShWWfAyLKMugg&format=msgpack +2021-08-10 15:18:13.899 +02:00 [Information] Connected to ws://192.168.1.54:8080/ws?dsId=RTSP-OMdrHg0avIBTMlApcGJyO6F7_WThL5P0aIxLoTJwYrs&auth=0WXjdydamm39OqRForInn9t_ALW3ViShWWfAyLKMugg&format=msgpack diff --git a/RSTP_DSLink/RSTP_DSLink/bin/Debug/netcoreapp3.1/nodes.json b/RSTP_DSLink/RSTP_DSLink/bin/Debug/netcoreapp3.1/nodes.json index c445e8d..105ce40 100644 --- a/RSTP_DSLink/RSTP_DSLink/bin/Debug/netcoreapp3.1/nodes.json +++ b/RSTP_DSLink/RSTP_DSLink/bin/Debug/netcoreapp3.1/nodes.json @@ -42,5 +42,43 @@ "$invokable": "config", "privateConfigs": {}, "?class": "alarmAdd" + }, + "alarms": { + "$is": "node", + "privateConfigs": {}, + "alarme1": { + "$is": "alarm", + "$writable": "read", + "$type": "bool", + "privateConfigs": {}, + "remove": { + "$is": "removeNode", + "$name": "Remove", + "$invokable": "config", + "privateConfigs": {}, + "?class": "removeNode" + }, + "?value": false, + "?class": "alarm" + } + }, + "streams": { + "$is": "node", + "privateConfigs": {}, + "cam2": { + "$is": "stream", + "$writable": "read", + "$type": "number", + "privateConfigs": {}, + "remove": { + "$is": "removeNode", + "$name": "Remove", + "$invokable": "config", + "privateConfigs": {}, + "?class": "removeNode" + }, + "?value": 8083, + "?class": "stream" + } } } \ No newline at end of file diff --git a/RSTP_DSLink/RSTP_DSLink/obj/Debug/netcoreapp3.1/RSTP_DSLink.csproj.AssemblyReference.cache b/RSTP_DSLink/RSTP_DSLink/obj/Debug/netcoreapp3.1/RSTP_DSLink.csproj.AssemblyReference.cache new file mode 100644 index 0000000..a542178 Binary files /dev/null and b/RSTP_DSLink/RSTP_DSLink/obj/Debug/netcoreapp3.1/RSTP_DSLink.csproj.AssemblyReference.cache differ diff --git a/RSTP_DSLink/RSTP_DSLink/obj/Debug/netcoreapp3.1/RSTP_DSLink.csproj.FileListAbsolute.txt b/RSTP_DSLink/RSTP_DSLink/obj/Debug/netcoreapp3.1/RSTP_DSLink.csproj.FileListAbsolute.txt index b3fa4b0..3b126fb 100644 --- a/RSTP_DSLink/RSTP_DSLink/obj/Debug/netcoreapp3.1/RSTP_DSLink.csproj.FileListAbsolute.txt +++ b/RSTP_DSLink/RSTP_DSLink/obj/Debug/netcoreapp3.1/RSTP_DSLink.csproj.FileListAbsolute.txt @@ -37,3 +37,4 @@ C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreap C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp2.0\System.Security.AccessControl.dll C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\runtimes\unix\lib\netcoreapp2.1\System.Security.Principal.Windows.dll C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp2.1\System.Security.Principal.Windows.dll +C:\Users\l.farina\Desktop\UCRM_stage\RSTP_DSLink\RSTP_DSLink\obj\Debug\netcoreapp3.1\RSTP_DSLink.csproj.AssemblyReference.cache diff --git a/RSTP_DSLink/RSTP_DSLink/obj/Debug/netcoreapp3.1/RSTP_DSLink.dll b/RSTP_DSLink/RSTP_DSLink/obj/Debug/netcoreapp3.1/RSTP_DSLink.dll index 5279db6..b3ac6e8 100644 Binary files a/RSTP_DSLink/RSTP_DSLink/obj/Debug/netcoreapp3.1/RSTP_DSLink.dll and b/RSTP_DSLink/RSTP_DSLink/obj/Debug/netcoreapp3.1/RSTP_DSLink.dll differ diff --git a/RSTP_DSLink/RSTP_DSLink/obj/Debug/netcoreapp3.1/RSTP_DSLink.pdb b/RSTP_DSLink/RSTP_DSLink/obj/Debug/netcoreapp3.1/RSTP_DSLink.pdb index b683dca..1943158 100644 Binary files a/RSTP_DSLink/RSTP_DSLink/obj/Debug/netcoreapp3.1/RSTP_DSLink.pdb and b/RSTP_DSLink/RSTP_DSLink/obj/Debug/netcoreapp3.1/RSTP_DSLink.pdb differ diff --git a/Test_GPIO/.vs/Test_GPIO/DesignTimeBuild/.dtbcache.v2 b/Test_GPIO/.vs/Test_GPIO/DesignTimeBuild/.dtbcache.v2 deleted file mode 100644 index af74945..0000000 Binary files a/Test_GPIO/.vs/Test_GPIO/DesignTimeBuild/.dtbcache.v2 and /dev/null differ diff --git a/Test_GPIO/.vs/Test_GPIO/v16/.suo b/Test_GPIO/.vs/Test_GPIO/v16/.suo deleted file mode 100644 index ac9188b..0000000 Binary files a/Test_GPIO/.vs/Test_GPIO/v16/.suo and /dev/null differ diff --git a/Test_GPIO/Test_GPIO.sln b/Test_GPIO/Test_GPIO.sln deleted file mode 100644 index 0b3a20e..0000000 --- a/Test_GPIO/Test_GPIO.sln +++ /dev/null @@ -1,25 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 16.0.31424.327 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Test_GPIO", "Test_GPIO\Test_GPIO.csproj", "{65E063DE-75B9-447F-A680-C2AE241F3E14}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {65E063DE-75B9-447F-A680-C2AE241F3E14}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {65E063DE-75B9-447F-A680-C2AE241F3E14}.Debug|Any CPU.Build.0 = Debug|Any CPU - {65E063DE-75B9-447F-A680-C2AE241F3E14}.Release|Any CPU.ActiveCfg = Release|Any CPU - {65E063DE-75B9-447F-A680-C2AE241F3E14}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {EAC4D879-223A-4F9A-90A1-CEDD38CC28F6} - EndGlobalSection -EndGlobal diff --git a/Test_GPIO/Test_GPIO/Driver.cs b/Test_GPIO/Test_GPIO/Driver.cs deleted file mode 100644 index 401db5b..0000000 --- a/Test_GPIO/Test_GPIO/Driver.cs +++ /dev/null @@ -1,169 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Device.Gpio; -using System.Net; -using System.Threading; -using System.Threading.Tasks; - -namespace Iot.Device.Pigpio -{ - /// - /// - /// - public class Driver : GpioDriver - { - private readonly IPEndPoint _endpoint; - private readonly PigpiodIf _proxy; - private readonly List _openPins; - - /// - /// - /// - /// - public Driver(IPEndPoint endpoint) - { - _endpoint = endpoint; - _proxy = new PigpiodIf(); - - _openPins = new List(); - } - - /// - /// - /// - /// - public Task ConnectAsync() - { - _proxy.pigpio_start(_endpoint.Address.ToString(), _endpoint.Port.ToString()); - - return Task.CompletedTask; - } - - /// - protected override int PinCount => PigpiodIf.PI_MAX_USER_GPIO; - - /// - /// - /// - /// - /// - /// - protected override void AddCallbackForPinValueChangedEvent(int pinNumber, PinEventTypes eventTypes, PinChangeEventHandler callback) - { - throw new NotImplementedException(); - } - - /// - protected override void ClosePin(int pinNumber) - { - if (_openPins.Contains(pinNumber)) - { - _openPins.Remove(pinNumber); - } - else - { - throw new InvalidOperationException($"Pin '{pinNumber}' hasn't been opened"); - } - } - - /// - protected override int ConvertPinNumberToLogicalNumberingScheme(int pinNumber) - { - throw new NotImplementedException(); - } - - /// - protected override PinMode GetPinMode(int pinNumber) - { - var mode = _proxy.get_mode((uint)pinNumber); - - switch (mode) - { - case PigpiodIf.PI_INPUT: return PinMode.Input; - case PigpiodIf.PI_OUTPUT: return PinMode.Output; - default: throw new ArgumentException($"Unknown PinMode value '{mode}'"); - } - } - - /// - protected override bool IsPinModeSupported(int pinNumber, PinMode mode) - { - switch (mode) - { - case PinMode.Input: return true; - case PinMode.InputPullUp: return true; - case PinMode.InputPullDown: return true; - case PinMode.Output: return true; - default: return false; // Only input & output supported ATM. Should be increased to support input-pullup/pulldown - } - } - - /// - protected override void OpenPin(int pinNumber) - { - if (!_openPins.Contains(pinNumber)) - { - _openPins.Add(pinNumber); - } - else - { - throw new InvalidOperationException($"Pin '{pinNumber}' is already been open"); - } - } - - /// - protected override PinValue Read(int pinNumber) - { - return _proxy.gpio_read((uint)pinNumber); - } - - /// - protected override void RemoveCallbackForPinValueChangedEvent(int pinNumber, PinChangeEventHandler callback) - { - throw new NotImplementedException(); - } - - /// - protected override void SetPinMode(int pinNumber, PinMode pinMode) - { - var mode = pinMode.AsMode(); - var pud = pinMode.AsPullUpDown(); - - _proxy.set_mode((uint)pinNumber, mode); - _proxy.set_pull_up_down((uint)pinNumber, pud); - } - - /// - protected override WaitForEventResult WaitForEvent(int pinNumber, PinEventTypes eventTypes, CancellationToken cancellationToken) - { - bool eventDetected = false; - int oldValue = _proxy.gpio_read((uint)pinNumber); - int newValue; - while (!eventDetected) - { - newValue = _proxy.gpio_read ((uint)pinNumber); - //Console.WriteLine(newValue); - - if ((eventTypes == PinEventTypes.Rising && newValue == 1 && oldValue == 0) - || (eventTypes == PinEventTypes.Falling && newValue == 0 && oldValue == 1)) - eventDetected = true; - - oldValue = newValue; - //System.Threading.Thread.Sleep(500); - } - - WaitForEventResult result; - result.EventTypes = eventTypes; - result.TimedOut = false; - return result; - } - - /// - protected override void Write(int pinNumber, PinValue pinValue) - { - var value = pinValue.AsValue(); - - _proxy.gpio_write((uint)pinNumber, value); - } - } -} diff --git a/Test_GPIO/Test_GPIO/Helpers.cs b/Test_GPIO/Test_GPIO/Helpers.cs deleted file mode 100644 index 1e5fb30..0000000 --- a/Test_GPIO/Test_GPIO/Helpers.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System; -using System.Device.Gpio; - -namespace Iot.Device.Pigpio -{ - internal static class Helpers - { - public static uint AsMode(this PinMode mode) - { - switch (mode) - { - case PinMode.Input: return PigpiodIf.PI_INPUT; - case PinMode.InputPullUp: return PigpiodIf.PI_INPUT; - case PinMode.InputPullDown: return PigpiodIf.PI_INPUT; - case PinMode.Output: return PigpiodIf.PI_OUTPUT; - default: throw new ArgumentException($"PinMode value of '{mode}' is not valid"); - } - } - - public static uint AsPullUpDown(this PinMode mode) - { - switch (mode) - { - case PinMode.InputPullUp: return PigpiodIf.PI_PUD_UP; - case PinMode.InputPullDown: return PigpiodIf.PI_PUD_DOWN; - default: return PigpiodIf.PI_PUD_OFF; - } - } - - - public static uint AsValue(this PinValue value) - { - return (uint)(int)value; - } - } -} diff --git a/Test_GPIO/Test_GPIO/PigpiodIf.cs b/Test_GPIO/Test_GPIO/PigpiodIf.cs deleted file mode 100644 index 603e6b5..0000000 --- a/Test_GPIO/Test_GPIO/PigpiodIf.cs +++ /dev/null @@ -1,2789 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Diagnostics; -using System.IO; -using System.Linq; -using System.Net.Sockets; -using System.Text; -using System.Threading; -using System.Threading.Tasks; - -// Disable all XML Comment warnings in this file as copied from elsewhere // -#pragma warning disable 1591 - -namespace Iot.Device.Pigpio -{ - /// - /// Pigpiod C# Interface for debugging in Visual Studio using GPIO of Raspberry Pi - /// - /// - /// From here: https://github.com/Rapidnack/PigpiodIfTest - /// - public class PigpiodIf : IDisposable - { - private class GpioExtent - { - public byte[] Contents { get; set; } - } - - public class GpioReport - { - public UInt16 seqno { get; set; } - public UInt16 flags { get; set; } - public UInt32 tick { get; set; } - public UInt32 level { get; set; } - } - - - public class Callback - { - public int gpio { get; set; } - public int edge { get; set; } - public Action f { get; set; } - public object user { get; set; } - public int ex { get; set; } - } - - - public class EvtCallback - { - public int evt { get; set; } - public Action f { get; set; } - public object user { get; set; } - public int ex { get; set; } - } - - - public class GpioPulse - { - public UInt32 gpioOn { get; set; } - public UInt32 gpioOff { get; set; } - public UInt32 usDelay { get; set; } - } - - - #region # public enum - - public enum EError - { - pigif_bad_send = -2000, - pigif_bad_recv = -2001, - pigif_bad_getaddrinfo = -2002, - pigif_bad_connect = -2003, - pigif_bad_socket = -2004, - pigif_bad_noib = -2005, - pigif_duplicate_callback = -2006, - pigif_bad_malloc = -2007, - pigif_bad_callback = -2008, - pigif_notify_failed = -2009, - pigif_callback_not_found = -2010, - pigif_unconnected_pi = -2011, - pigif_too_many_pis = -2012, - } - - #endregion - - - #region # event - - public event EventHandler CommandStreamChanged; - public event EventHandler NotifyStreamChanged; - public event EventHandler StreamChanged; - public event EventHandler StreamConnected; - - #endregion - - - #region # private const - - private const string PI_DEFAULT_SOCKET_PORT_STR = "8888"; - private const string PI_DEFAULT_SOCKET_ADDR_STR = "127.0.0.1"; - - private const int PI_MAX_REPORTS_PER_READ = 4096; - - private const int PIGPIOD_IF2_VERSION = 13; - - /*DEF_S Socket Command Codes*/ - - private const int PI_CMD_MODES = 0; - private const int PI_CMD_MODEG = 1; - private const int PI_CMD_PUD = 2; - private const int PI_CMD_READ = 3; - private const int PI_CMD_WRITE = 4; - private const int PI_CMD_PWM = 5; - private const int PI_CMD_PRS = 6; - private const int PI_CMD_PFS = 7; - private const int PI_CMD_SERVO = 8; - private const int PI_CMD_WDOG = 9; - private const int PI_CMD_BR1 = 10; - private const int PI_CMD_BR2 = 11; - private const int PI_CMD_BC1 = 12; - private const int PI_CMD_BC2 = 13; - private const int PI_CMD_BS1 = 14; - private const int PI_CMD_BS2 = 15; - private const int PI_CMD_TICK = 16; - private const int PI_CMD_HWVER = 17; - private const int PI_CMD_NO = 18; - private const int PI_CMD_NB = 19; - private const int PI_CMD_NP = 20; - private const int PI_CMD_NC = 21; - private const int PI_CMD_PRG = 22; - private const int PI_CMD_PFG = 23; - private const int PI_CMD_PRRG = 24; - private const int PI_CMD_HELP = 25; - private const int PI_CMD_PIGPV = 26; - private const int PI_CMD_WVCLR = 27; - private const int PI_CMD_WVAG = 28; - private const int PI_CMD_WVAS = 29; - private const int PI_CMD_WVGO = 30; - private const int PI_CMD_WVGOR = 31; - private const int PI_CMD_WVBSY = 32; - private const int PI_CMD_WVHLT = 33; - private const int PI_CMD_WVSM = 34; - private const int PI_CMD_WVSP = 35; - private const int PI_CMD_WVSC = 36; - private const int PI_CMD_TRIG = 37; - private const int PI_CMD_PROC = 38; - private const int PI_CMD_PROCD = 39; - private const int PI_CMD_PROCR = 40; - private const int PI_CMD_PROCS = 41; - private const int PI_CMD_SLRO = 42; - private const int PI_CMD_SLR = 43; - private const int PI_CMD_SLRC = 44; - private const int PI_CMD_PROCP = 45; - private const int PI_CMD_MICS = 46; - private const int PI_CMD_MILS = 47; - private const int PI_CMD_PARSE = 48; - private const int PI_CMD_WVCRE = 49; - private const int PI_CMD_WVDEL = 50; - private const int PI_CMD_WVTX = 51; - private const int PI_CMD_WVTXR = 52; - private const int PI_CMD_WVNEW = 53; - - private const int PI_CMD_I2CO = 54; - private const int PI_CMD_I2CC = 55; - private const int PI_CMD_I2CRD = 56; - private const int PI_CMD_I2CWD = 57; - private const int PI_CMD_I2CWQ = 58; - private const int PI_CMD_I2CRS = 59; - private const int PI_CMD_I2CWS = 60; - private const int PI_CMD_I2CRB = 61; - private const int PI_CMD_I2CWB = 62; - private const int PI_CMD_I2CRW = 63; - private const int PI_CMD_I2CWW = 64; - private const int PI_CMD_I2CRK = 65; - private const int PI_CMD_I2CWK = 66; - private const int PI_CMD_I2CRI = 67; - private const int PI_CMD_I2CWI = 68; - private const int PI_CMD_I2CPC = 69; - private const int PI_CMD_I2CPK = 70; - - private const int PI_CMD_SPIO = 71; - private const int PI_CMD_SPIC = 72; - private const int PI_CMD_SPIR = 73; - private const int PI_CMD_SPIW = 74; - private const int PI_CMD_SPIX = 75; - - private const int PI_CMD_SERO = 76; - private const int PI_CMD_SERC = 77; - private const int PI_CMD_SERRB = 78; - private const int PI_CMD_SERWB = 79; - private const int PI_CMD_SERR = 80; - private const int PI_CMD_SERW = 81; - private const int PI_CMD_SERDA = 82; - - private const int PI_CMD_GDC = 83; - private const int PI_CMD_GPW = 84; - - private const int PI_CMD_HC = 85; - private const int PI_CMD_HP = 86; - - private const int PI_CMD_CF1 = 87; - private const int PI_CMD_CF2 = 88; - - private const int PI_CMD_BI2CC = 89; - private const int PI_CMD_BI2CO = 90; - private const int PI_CMD_BI2CZ = 91; - - private const int PI_CMD_I2CZ = 92; - - private const int PI_CMD_WVCHA = 93; - - private const int PI_CMD_SLRI = 94; - - private const int PI_CMD_CGI = 95; - private const int PI_CMD_CSI = 96; - - private const int PI_CMD_FG = 97; - private const int PI_CMD_FN = 98; - - private const int PI_CMD_NOIB = 99; - - private const int PI_CMD_WVTXM = 100; - private const int PI_CMD_WVTAT = 101; - - private const int PI_CMD_PADS = 102; - private const int PI_CMD_PADG = 103; - - private const int PI_CMD_FO = 104; - private const int PI_CMD_FC = 105; - private const int PI_CMD_FR = 106; - private const int PI_CMD_FW = 107; - private const int PI_CMD_FS = 108; - private const int PI_CMD_FL = 109; - - private const int PI_CMD_SHELL = 110; - - private const int PI_CMD_BSPIC = 111; - private const int PI_CMD_BSPIO = 112; - private const int PI_CMD_BSPIX = 113; - - private const int PI_CMD_BSCX = 114; - - private const int PI_CMD_EVM = 115; - private const int PI_CMD_EVT = 116; - - private const int PI_CMD_PROCU = 117; - - /*DEF_E*/ - - /* pseudo commands */ - - private const int PI_CMD_SCRIPT = 800; - - private const int PI_CMD_ADD = 800; - private const int PI_CMD_AND = 801; - private const int PI_CMD_CALL = 802; - private const int PI_CMD_CMDR = 803; - private const int PI_CMD_CMDW = 804; - private const int PI_CMD_CMP = 805; - private const int PI_CMD_DCR = 806; - private const int PI_CMD_DCRA = 807; - private const int PI_CMD_DIV = 808; - private const int PI_CMD_HALT = 809; - private const int PI_CMD_INR = 810; - private const int PI_CMD_INRA = 811; - private const int PI_CMD_JM = 812; - private const int PI_CMD_JMP = 813; - private const int PI_CMD_JNZ = 814; - private const int PI_CMD_JP = 815; - private const int PI_CMD_JZ = 816; - private const int PI_CMD_TAG = 817; - private const int PI_CMD_LD = 818; - private const int PI_CMD_LDA = 819; - private const int PI_CMD_LDAB = 820; - private const int PI_CMD_MLT = 821; - private const int PI_CMD_MOD = 822; - private const int PI_CMD_NOP = 823; - private const int PI_CMD_OR = 824; - private const int PI_CMD_POP = 825; - private const int PI_CMD_POPA = 826; - private const int PI_CMD_PUSH = 827; - private const int PI_CMD_PUSHA = 828; - private const int PI_CMD_RET = 829; - private const int PI_CMD_RL = 830; - private const int PI_CMD_RLA = 831; - private const int PI_CMD_RR = 832; - private const int PI_CMD_RRA = 833; - private const int PI_CMD_STA = 834; - private const int PI_CMD_STAB = 835; - private const int PI_CMD_SUB = 836; - private const int PI_CMD_SYS = 837; - private const int PI_CMD_WAIT = 838; - private const int PI_CMD_X = 839; - private const int PI_CMD_XA = 840; - private const int PI_CMD_XOR = 841; - private const int PI_CMD_EVTWT = 842; - - #endregion - - - #region # public const - - /* gpio: 0-53 */ - - public const int PI_MIN_GPIO = 0; - public const int PI_MAX_GPIO = 53; - - /* user_gpio: 0-31 */ - - public const int PI_MAX_USER_GPIO = 31; - - /* level: 0-1 */ - - public const int PI_OFF = 0; - public const int PI_ON = 1; - - public const int PI_CLEAR = 0; - public const int PI_SET = 1; - - public const int PI_LOW = 0; - public const int PI_HIGH = 1; - - /* level: only reported for GPIO time-out, see gpioSetWatchdog */ - - public const int PI_TIMEOUT = 2; - - /* mode: 0-7 */ - - public const int PI_INPUT = 0; - public const int PI_OUTPUT = 1; - public const int PI_ALT0 = 4; - public const int PI_ALT1 = 5; - public const int PI_ALT2 = 6; - public const int PI_ALT3 = 7; - public const int PI_ALT4 = 3; - public const int PI_ALT5 = 2; - - /* pud: 0-2 */ - - public const int PI_PUD_OFF = 0; - public const int PI_PUD_DOWN = 1; - public const int PI_PUD_UP = 2; - - /* dutycycle: 0-range */ - - public const int PI_DEFAULT_DUTYCYCLE_RANGE = 255; - - /* range: 25-40000 */ - - public const int PI_MIN_DUTYCYCLE_RANGE = 25; - public const int PI_MAX_DUTYCYCLE_RANGE = 40000; - - /* pulsewidth: 0, 500-2500 */ - - public const int PI_SERVO_OFF = 0; - public const int PI_MIN_SERVO_PULSEWIDTH = 500; - public const int PI_MAX_SERVO_PULSEWIDTH = 2500; - - /* hardware PWM */ - - public const int PI_HW_PWM_MIN_FREQ = 1; - public const int PI_HW_PWM_MAX_FREQ = 125000000; - public const int PI_HW_PWM_RANGE = 1000000; - - /* hardware clock */ - - public const int PI_HW_CLK_MIN_FREQ = 4689; - public const int PI_HW_CLK_MAX_FREQ = 250000000; - - public const int PI_NOTIFY_SLOTS = 32; - - public const int PI_NTFY_FLAGS_EVENT = (1 << 7); - public const int PI_NTFY_FLAGS_ALIVE = (1 << 6); - public const int PI_NTFY_FLAGS_WDOG = (1 << 5); - public static int PI_NTFY_FLAGS_BIT(int x) { return (((x) << 0) & 31); } - - public const int PI_WAVE_BLOCKS = 4; - public const int PI_WAVE_MAX_PULSES = (PI_WAVE_BLOCKS * 3000); - public const int PI_WAVE_MAX_CHARS = (PI_WAVE_BLOCKS * 300); - - public const int PI_BB_I2C_MIN_BAUD = 50; - public const int PI_BB_I2C_MAX_BAUD = 500000; - - public const int PI_BB_SPI_MIN_BAUD = 50; - public const int PI_BB_SPI_MAX_BAUD = 250000; - - public const int PI_BB_SER_MIN_BAUD = 50; - public const int PI_BB_SER_MAX_BAUD = 250000; - - public const int PI_BB_SER_NORMAL = 0; - public const int PI_BB_SER_INVERT = 1; - - public const int PI_WAVE_MIN_BAUD = 50; - public const int PI_WAVE_MAX_BAUD = 1000000; - - public const int PI_SPI_MIN_BAUD = 32000; - public const int PI_SPI_MAX_BAUD = 125000000; - - public const int PI_MIN_WAVE_DATABITS = 1; - public const int PI_MAX_WAVE_DATABITS = 32; - - public const int PI_MIN_WAVE_HALFSTOPBITS = 2; - public const int PI_MAX_WAVE_HALFSTOPBITS = 8; - - public const int PI_WAVE_MAX_MICROS = (30 * 60 * 1000000); /* half an hour */ - - public const int PI_MAX_WAVES = 250; - - public const int PI_MAX_WAVE_CYCLES = 65535; - public const int PI_MAX_WAVE_DELAY = 65535; - - public const int PI_WAVE_COUNT_PAGES = 10; - - /* wave tx mode */ - - public const int PI_WAVE_MODE_ONE_SHOT = 0; - public const int PI_WAVE_MODE_REPEAT = 1; - public const int PI_WAVE_MODE_ONE_SHOT_SYNC = 2; - public const int PI_WAVE_MODE_REPEAT_SYNC = 3; - - /* special wave at return values */ - - public const int PI_WAVE_NOT_FOUND = 9998; /* Transmitted wave not found. */ - public const int PI_NO_TX_WAVE = 9999; /* No wave being transmitted. */ - - /* Files, I2C, SPI, SER */ - - public const int PI_FILE_SLOTS = 16; - public const int PI_I2C_SLOTS = 64; - public const int PI_SPI_SLOTS = 32; - public const int PI_SER_SLOTS = 16; - - public const int PI_MAX_I2C_ADDR = 0x7F; - - public const int PI_NUM_AUX_SPI_CHANNEL = 3; - public const int PI_NUM_STD_SPI_CHANNEL = 2; - - public const int PI_MAX_I2C_DEVICE_COUNT = (1 << 16); - public const int PI_MAX_SPI_DEVICE_COUNT = (1 << 16); - - /* max pi_i2c_msg_t per transaction */ - - public const int PI_I2C_RDRW_IOCTL_MAX_MSGS = 42; - - /* flags for i2cTransaction, pi_i2c_msg_t */ - - public const int PI_I2C_M_WR = 0x0000; /* write data */ - public const int PI_I2C_M_RD = 0x0001; /* read data */ - public const int PI_I2C_M_TEN = 0x0010; /* ten bit chip address */ - public const int PI_I2C_M_RECV_LEN = 0x0400; /* length will be first received byte */ - public const int PI_I2C_M_NO_RD_ACK = 0x0800; /* if I2C_FUNC_PROTOCOL_MANGLING */ - public const int PI_I2C_M_IGNORE_NAK = 0x1000; /* if I2C_FUNC_PROTOCOL_MANGLING */ - public const int PI_I2C_M_REV_DIR_ADDR = 0x2000; /* if I2C_FUNC_PROTOCOL_MANGLING */ - public const int PI_I2C_M_NOSTART = 0x4000; /* if I2C_FUNC_PROTOCOL_MANGLING */ - - /* bbI2CZip and i2cZip commands */ - - public const int PI_I2C_END = 0; - public const int PI_I2C_ESC = 1; - public const int PI_I2C_START = 2; - public const int PI_I2C_COMBINED_ON = 2; - public const int PI_I2C_STOP = 3; - public const int PI_I2C_COMBINED_OFF = 3; - public const int PI_I2C_ADDR = 4; - public const int PI_I2C_FLAGS = 5; - public const int PI_I2C_READ = 6; - public const int PI_I2C_WRITE = 7; - - /* SPI */ - - public static int PI_SPI_FLAGS_BITLEN(int x) { return ((x & 63) << 16); } - public static int PI_SPI_FLAGS_RX_LSB(int x) { return ((x & 1) << 15); } - public static int PI_SPI_FLAGS_TX_LSB(int x) { return ((x & 1) << 14); } - public static int PI_SPI_FLAGS_3WREN(int x) { return ((x & 15) << 10); } - public static int PI_SPI_FLAGS_3WIRE(int x) { return ((x & 1) << 9); } - public static int PI_SPI_FLAGS_AUX_SPI(int x) { return ((x & 1) << 8); } - public static int PI_SPI_FLAGS_RESVD(int x) { return ((x & 7) << 5); } - public static int PI_SPI_FLAGS_CSPOLS(int x) { return ((x & 7) << 2); } - public static int PI_SPI_FLAGS_MODE(int x) { return ((x & 3)); } - - /* Longest busy delay */ - - public const int PI_MAX_BUSY_DELAY = 100; - - /* timeout: 0-60000 */ - - public const int PI_MIN_WDOG_TIMEOUT = 0; - public const int PI_MAX_WDOG_TIMEOUT = 60000; - - /* timer: 0-9 */ - - public const int PI_MIN_TIMER = 0; - public const int PI_MAX_TIMER = 9; - - /* millis: 10-60000 */ - - public const int PI_MIN_MS = 10; - public const int PI_MAX_MS = 60000; - - public const int PI_MAX_SCRIPTS = 32; - - public const int PI_MAX_SCRIPT_TAGS = 50; - public const int PI_MAX_SCRIPT_VARS = 150; - public const int PI_MAX_SCRIPT_PARAMS = 10; - - /* script status */ - - public const int PI_SCRIPT_INITING = 0; - public const int PI_SCRIPT_HALTED = 1; - public const int PI_SCRIPT_RUNNING = 2; - public const int PI_SCRIPT_WAITING = 3; - public const int PI_SCRIPT_FAILED = 4; - - /* signum: 0-63 */ - - public const int PI_MIN_SIGNUM = 0; - public const int PI_MAX_SIGNUM = 63; - - /* timetype: 0-1 */ - - public const int PI_TIME_RELATIVE = 0; - public const int PI_TIME_ABSOLUTE = 1; - - public const int PI_MAX_MICS_DELAY = 1000000; /* 1 second */ - public const int PI_MAX_MILS_DELAY = 60000; /* 60 seconds */ - - /* cfgMillis */ - - public const int PI_BUF_MILLIS_MIN = 100; - public const int PI_BUF_MILLIS_MAX = 10000; - - /* cfgMicros: 1, 2, 4, 5, 8, or 10 */ - - /* cfgPeripheral: 0-1 */ - - public const int PI_CLOCK_PWM = 0; - public const int PI_CLOCK_PCM = 1; - - /* DMA channel: 0-14 */ - - public const int PI_MIN_DMA_CHANNEL = 0; - public const int PI_MAX_DMA_CHANNEL = 14; - - /* port */ - - public const int PI_MIN_SOCKET_PORT = 1024; - public const int PI_MAX_SOCKET_PORT = 32000; - - /* ifFlags: */ - - public const int PI_DISABLE_FIFO_IF = 1; - public const int PI_DISABLE_SOCK_IF = 2; - public const int PI_LOCALHOST_SOCK_IF = 4; - public const int PI_DISABLE_ALERT = 8; - - /* memAllocMode */ - - public const int PI_MEM_ALLOC_AUTO = 0; - public const int PI_MEM_ALLOC_PAGEMAP = 1; - public const int PI_MEM_ALLOC_MAILBOX = 2; - - /* filters */ - - public const int PI_MAX_STEADY = 300000; - public const int PI_MAX_ACTIVE = 1000000; - - /* gpioCfgInternals */ - - public const int PI_CFG_DBG_LEVEL = 0; /* bits 0-3 */ - public const int PI_CFG_ALERT_FREQ = 4; /* bits 4-7 */ - public const int PI_CFG_RT_PRIORITY = (1 << 8); - public const int PI_CFG_STATS = (1 << 9); - public const int PI_CFG_NOSIGHANDLER = (1 << 10); - - public const int PI_CFG_ILLEGAL_VAL = (1 << 11); - - - /* gpioISR */ - - public const int RISING_EDGE = 0; - public const int FALLING_EDGE = 1; - public const int EITHER_EDGE = 2; - - - /* pads */ - - public const int PI_MAX_PAD = 2; - - public const int PI_MIN_PAD_STRENGTH = 1; - public const int PI_MAX_PAD_STRENGTH = 16; - - /* files */ - - public const int PI_FILE_NONE = 0; - public const int PI_FILE_MIN = 1; - public const int PI_FILE_READ = 1; - public const int PI_FILE_WRITE = 2; - public const int PI_FILE_RW = 3; - public const int PI_FILE_APPEND = 4; - public const int PI_FILE_CREATE = 8; - public const int PI_FILE_TRUNC = 16; - public const int PI_FILE_MAX = 31; - - public const int PI_FROM_START = 0; - public const int PI_FROM_CURRENT = 1; - public const int PI_FROM_END = 2; - - /* Allowed socket connect addresses */ - - public const int MAX_CONNECT_ADDRESSES = 256; - - /* events */ - - public const int PI_MAX_EVENT = 31; - - /* Event auto generated on BSC slave activity */ - - public const int PI_EVENT_BSC = 31; - - /*DEF_S Error Codes*/ - - public const int PI_INIT_FAILED = -1; // gpioInitialise failed - public const int PI_BAD_USER_GPIO = -2; // GPIO not 0-31 - public const int PI_BAD_GPIO = -3; // GPIO not 0-53 - public const int PI_BAD_MODE = -4; // mode not 0-7 - public const int PI_BAD_LEVEL = -5; // level not 0-1 - public const int PI_BAD_PUD = -6; // pud not 0-2 - public const int PI_BAD_PULSEWIDTH = -7; // pulsewidth not 0 or 500-2500 - public const int PI_BAD_DUTYCYCLE = -8; // dutycycle outside set range - public const int PI_BAD_TIMER = -9; // timer not 0-9 - public const int PI_BAD_MS = -10; // ms not 10-60000 - public const int PI_BAD_TIMETYPE = -11; // timetype not 0-1 - public const int PI_BAD_SECONDS = -12; // seconds < 0 - public const int PI_BAD_MICROS = -13; // micros not 0-999999 - public const int PI_TIMER_FAILED = -14; // gpioSetTimerFunc failed - public const int PI_BAD_WDOG_TIMEOUT = -15; // timeout not 0-60000 - public const int PI_NO_ALERT_FUNC = -16; // DEPRECATED - public const int PI_BAD_CLK_PERIPH = -17; // clock peripheral not 0-1 - public const int PI_BAD_CLK_SOURCE = -18; // DEPRECATED - public const int PI_BAD_CLK_MICROS = -19; // clock micros not 1, 2, 4, 5, 8, or 10 - public const int PI_BAD_BUF_MILLIS = -20; // buf millis not 100-10000 - public const int PI_BAD_DUTYRANGE = -21; // dutycycle range not 25-40000 - public const int PI_BAD_DUTY_RANGE = -21; // DEPRECATED (use PI_BAD_DUTYRANGE) - public const int PI_BAD_SIGNUM = -22; // signum not 0-63 - public const int PI_BAD_PATHNAME = -23; // can't open pathname - public const int PI_NO_HANDLE = -24; // no handle available - public const int PI_BAD_HANDLE = -25; // unknown handle - public const int PI_BAD_IF_FLAGS = -26; // ifFlags > 4 - public const int PI_BAD_CHANNEL = -27; // DMA channel not 0-14 - public const int PI_BAD_PRIM_CHANNEL = -27; // DMA primary channel not 0-14 - public const int PI_BAD_SOCKET_PORT = -28; // socket port not 1024-32000 - public const int PI_BAD_FIFO_COMMAND = -29; // unrecognized fifo command - public const int PI_BAD_SECO_CHANNEL = -30; // DMA secondary channel not 0-6 - public const int PI_NOT_INITIALISED = -31; // function called before gpioInitialise - public const int PI_INITIALISED = -32; // function called after gpioInitialise - public const int PI_BAD_WAVE_MODE = -33; // waveform mode not 0-3 - public const int PI_BAD_CFG_INTERNAL = -34; // bad parameter in gpioCfgInternals call - public const int PI_BAD_WAVE_BAUD = -35; // baud rate not 50-250K(RX)/50-1M(TX) - public const int PI_TOO_MANY_PULSES = -36; // waveform has too many pulses - public const int PI_TOO_MANY_CHARS = -37; // waveform has too many chars - public const int PI_NOT_SERIAL_GPIO = -38; // no bit bang serial read on GPIO - public const int PI_BAD_SERIAL_STRUC = -39; // bad (null) serial structure parameter - public const int PI_BAD_SERIAL_BUF = -40; // bad (null) serial buf parameter - public const int PI_NOT_PERMITTED = -41; // GPIO operation not permitted - public const int PI_SOME_PERMITTED = -42; // one or more GPIO not permitted - public const int PI_BAD_WVSC_COMMND = -43; // bad WVSC subcommand - public const int PI_BAD_WVSM_COMMND = -44; // bad WVSM subcommand - public const int PI_BAD_WVSP_COMMND = -45; // bad WVSP subcommand - public const int PI_BAD_PULSELEN = -46; // trigger pulse length not 1-100 - public const int PI_BAD_SCRIPT = -47; // invalid script - public const int PI_BAD_SCRIPT_ID = -48; // unknown script id - public const int PI_BAD_SER_OFFSET = -49; // add serial data offset > 30 minutes - public const int PI_GPIO_IN_USE = -50; // GPIO already in use - public const int PI_BAD_SERIAL_COUNT = -51; // must read at least a byte at a time - public const int PI_BAD_PARAM_NUM = -52; // script parameter id not 0-9 - public const int PI_DUP_TAG = -53; // script has duplicate tag - public const int PI_TOO_MANY_TAGS = -54; // script has too many tags - public const int PI_BAD_SCRIPT_CMD = -55; // illegal script command - public const int PI_BAD_VAR_NUM = -56; // script variable id not 0-149 - public const int PI_NO_SCRIPT_ROOM = -57; // no more room for scripts - public const int PI_NO_MEMORY = -58; // can't allocate temporary memory - public const int PI_SOCK_READ_FAILED = -59; // socket read failed - public const int PI_SOCK_WRIT_FAILED = -60; // socket write failed - public const int PI_TOO_MANY_PARAM = -61; // too many script parameters (> 10) - public const int PI_NOT_HALTED = -62; // DEPRECATED - public const int PI_SCRIPT_NOT_READY = -62; // script initialising - public const int PI_BAD_TAG = -63; // script has unresolved tag - public const int PI_BAD_MICS_DELAY = -64; // bad MICS delay (too large) - public const int PI_BAD_MILS_DELAY = -65; // bad MILS delay (too large) - public const int PI_BAD_WAVE_ID = -66; // non existent wave id - public const int PI_TOO_MANY_CBS = -67; // No more CBs for waveform - public const int PI_TOO_MANY_OOL = -68; // No more OOL for waveform - public const int PI_EMPTY_WAVEFORM = -69; // attempt to create an empty waveform - public const int PI_NO_WAVEFORM_ID = -70; // no more waveforms - public const int PI_I2C_OPEN_FAILED = -71; // can't open I2C device - public const int PI_SER_OPEN_FAILED = -72; // can't open serial device - public const int PI_SPI_OPEN_FAILED = -73; // can't open SPI device - public const int PI_BAD_I2C_BUS = -74; // bad I2C bus - public const int PI_BAD_I2C_ADDR = -75; // bad I2C address - public const int PI_BAD_SPI_CHANNEL = -76; // bad SPI channel - public const int PI_BAD_FLAGS = -77; // bad i2c/spi/ser open flags - public const int PI_BAD_SPI_SPEED = -78; // bad SPI speed - public const int PI_BAD_SER_DEVICE = -79; // bad serial device name - public const int PI_BAD_SER_SPEED = -80; // bad serial baud rate - public const int PI_BAD_PARAM = -81; // bad i2c/spi/ser parameter - public const int PI_I2C_WRITE_FAILED = -82; // i2c write failed - public const int PI_I2C_READ_FAILED = -83; // i2c read failed - public const int PI_BAD_SPI_COUNT = -84; // bad SPI count - public const int PI_SER_WRITE_FAILED = -85; // ser write failed - public const int PI_SER_READ_FAILED = -86; // ser read failed - public const int PI_SER_READ_NO_DATA = -87; // ser read no data available - public const int PI_UNKNOWN_COMMAND = -88; // unknown command - public const int PI_SPI_XFER_FAILED = -89; // spi xfer/read/write failed - public const int PI_BAD_POINTER = -90; // bad (NULL) pointer - public const int PI_NO_AUX_SPI = -91; // no auxiliary SPI on Pi A or B - public const int PI_NOT_PWM_GPIO = -92; // GPIO is not in use for PWM - public const int PI_NOT_SERVO_GPIO = -93; // GPIO is not in use for servo pulses - public const int PI_NOT_HCLK_GPIO = -94; // GPIO has no hardware clock - public const int PI_NOT_HPWM_GPIO = -95; // GPIO has no hardware PWM - public const int PI_BAD_HPWM_FREQ = -96; // hardware PWM frequency not 1-125M - public const int PI_BAD_HPWM_DUTY = -97; // hardware PWM dutycycle not 0-1M - public const int PI_BAD_HCLK_FREQ = -98; // hardware clock frequency not 4689-250M - public const int PI_BAD_HCLK_PASS = -99; // need password to use hardware clock 1 - public const int PI_HPWM_ILLEGAL = -100; // illegal, PWM in use for main clock - public const int PI_BAD_DATABITS = -101; // serial data bits not 1-32 - public const int PI_BAD_STOPBITS = -102; // serial (half) stop bits not 2-8 - public const int PI_MSG_TOOBIG = -103; // socket/pipe message too big - public const int PI_BAD_MALLOC_MODE = -104; // bad memory allocation mode - public const int PI_TOO_MANY_SEGS = -105; // too many I2C transaction segments - public const int PI_BAD_I2C_SEG = -106; // an I2C transaction segment failed - public const int PI_BAD_SMBUS_CMD = -107; // SMBus command not supported by driver - public const int PI_NOT_I2C_GPIO = -108; // no bit bang I2C in progress on GPIO - public const int PI_BAD_I2C_WLEN = -109; // bad I2C write length - public const int PI_BAD_I2C_RLEN = -110; // bad I2C read length - public const int PI_BAD_I2C_CMD = -111; // bad I2C command - public const int PI_BAD_I2C_BAUD = -112; // bad I2C baud rate, not 50-500k - public const int PI_CHAIN_LOOP_CNT = -113; // bad chain loop count - public const int PI_BAD_CHAIN_LOOP = -114; // empty chain loop - public const int PI_CHAIN_COUNTER = -115; // too many chain counters - public const int PI_BAD_CHAIN_CMD = -116; // bad chain command - public const int PI_BAD_CHAIN_DELAY = -117; // bad chain delay micros - public const int PI_CHAIN_NESTING = -118; // chain counters nested too deeply - public const int PI_CHAIN_TOO_BIG = -119; // chain is too long - public const int PI_DEPRECATED = -120; // deprecated function removed - public const int PI_BAD_SER_INVERT = -121; // bit bang serial invert not 0 or 1 - public const int PI_BAD_EDGE = -122; // bad ISR edge value, not 0-2 - public const int PI_BAD_ISR_INIT = -123; // bad ISR initialisation - public const int PI_BAD_FOREVER = -124; // loop forever must be last command - public const int PI_BAD_FILTER = -125; // bad filter parameter - public const int PI_BAD_PAD = -126; // bad pad number - public const int PI_BAD_STRENGTH = -127; // bad pad drive strength - public const int PI_FIL_OPEN_FAILED = -128; // file open failed - public const int PI_BAD_FILE_MODE = -129; // bad file mode - public const int PI_BAD_FILE_FLAG = -130; // bad file flag - public const int PI_BAD_FILE_READ = -131; // bad file read - public const int PI_BAD_FILE_WRITE = -132; // bad file write - public const int PI_FILE_NOT_ROPEN = -133; // file not open for read - public const int PI_FILE_NOT_WOPEN = -134; // file not open for write - public const int PI_BAD_FILE_SEEK = -135; // bad file seek - public const int PI_NO_FILE_MATCH = -136; // no files match pattern - public const int PI_NO_FILE_ACCESS = -137; // no permission to access file - public const int PI_FILE_IS_A_DIR = -138; // file is a directory - public const int PI_BAD_SHELL_STATUS = -139; // bad shell return status - public const int PI_BAD_SCRIPT_NAME = -140; // bad script name - public const int PI_BAD_SPI_BAUD = -141; // bad SPI baud rate, not 50-500k - public const int PI_NOT_SPI_GPIO = -142; // no bit bang SPI in progress on GPIO - public const int PI_BAD_EVENT_ID = -143; // bad event id - public const int PI_CMD_INTERRUPTED = -144; // Used by Python - - public const int PI_PIGIF_ERR_0 = -2000; - public const int PI_PIGIF_ERR_99 = -2099; - - public const int PI_CUSTOM_ERR_0 = -3000; - public const int PI_CUSTOM_ERR_999 = -3999; - - /*DEF_E*/ - - #endregion - - - #region # private field - - private bool isConnecting = false; - - private int gPigHandle; - private UInt32 gLastLevel; - private UInt32 gNotifyBits; - - private CancellationTokenSource cts; - - private Stopwatch sw = new Stopwatch(); - - private List gCallBackList = new List(); - private List geCallBackList = new List(); - - private Dictionary errInfo = new Dictionary() { - {PI_INIT_FAILED , "pigpio initialisation failed"}, - {PI_BAD_USER_GPIO , "GPIO not 0-31"}, - {PI_BAD_GPIO , "GPIO not 0-53"}, - {PI_BAD_MODE , "mode not 0-7"}, - {PI_BAD_LEVEL , "level not 0-1"}, - {PI_BAD_PUD , "pud not 0-2"}, - {PI_BAD_PULSEWIDTH , "pulsewidth not 0 or 500-2500"}, - {PI_BAD_DUTYCYCLE , "dutycycle not 0-range (default 255)"}, - {PI_BAD_TIMER , "timer not 0-9"}, - {PI_BAD_MS , "ms not 10-60000"}, - {PI_BAD_TIMETYPE , "timetype not 0-1"}, - {PI_BAD_SECONDS , "seconds < 0"}, - {PI_BAD_MICROS , "micros not 0-999999"}, - {PI_TIMER_FAILED , "gpioSetTimerFunc failed"}, - {PI_BAD_WDOG_TIMEOUT , "timeout not 0-60000"}, - {PI_NO_ALERT_FUNC , "DEPRECATED"}, - {PI_BAD_CLK_PERIPH , "clock peripheral not 0-1"}, - {PI_BAD_CLK_SOURCE , "DEPRECATED"}, - {PI_BAD_CLK_MICROS , "clock micros not 1, 2, 4, 5, 8, or 10"}, - {PI_BAD_BUF_MILLIS , "buf millis not 100-10000"}, - {PI_BAD_DUTYRANGE , "dutycycle range not 25-40000"}, - {PI_BAD_SIGNUM , "signum not 0-63"}, - {PI_BAD_PATHNAME , "can't open pathname"}, - {PI_NO_HANDLE , "no handle available"}, - {PI_BAD_HANDLE , "unknown handle"}, - {PI_BAD_IF_FLAGS , "ifFlags > 4"}, - {PI_BAD_CHANNEL , "DMA channel not 0-14"}, - {PI_BAD_SOCKET_PORT , "socket port not 1024-30000"}, - {PI_BAD_FIFO_COMMAND , "unknown fifo command"}, - {PI_BAD_SECO_CHANNEL , "DMA secondary channel not 0-14"}, - {PI_NOT_INITIALISED , "function called before gpioInitialise"}, - {PI_INITIALISED , "function called after gpioInitialise"}, - {PI_BAD_WAVE_MODE , "waveform mode not 0-1"}, - {PI_BAD_CFG_INTERNAL , "bad parameter in gpioCfgInternals call"}, - {PI_BAD_WAVE_BAUD , "baud rate not 50-250K(RX)/50-1M(TX)"}, - {PI_TOO_MANY_PULSES , "waveform has too many pulses"}, - {PI_TOO_MANY_CHARS , "waveform has too many chars"}, - {PI_NOT_SERIAL_GPIO , "no bit bang serial read in progress on GPIO"}, - {PI_BAD_SERIAL_STRUC , "bad (null) serial structure parameter"}, - {PI_BAD_SERIAL_BUF , "bad (null) serial buf parameter"}, - {PI_NOT_PERMITTED , "no permission to update GPIO"}, - {PI_SOME_PERMITTED , "no permission to update one or more GPIO"}, - {PI_BAD_WVSC_COMMND , "bad WVSC subcommand"}, - {PI_BAD_WVSM_COMMND , "bad WVSM subcommand"}, - {PI_BAD_WVSP_COMMND , "bad WVSP subcommand"}, - {PI_BAD_PULSELEN , "trigger pulse length not 1-100"}, - {PI_BAD_SCRIPT , "invalid script"}, - {PI_BAD_SCRIPT_ID , "unknown script id"}, - {PI_BAD_SER_OFFSET , "add serial data offset > 30 minute"}, - {PI_GPIO_IN_USE , "GPIO already in use"}, - {PI_BAD_SERIAL_COUNT , "must read at least a byte at a time"}, - {PI_BAD_PARAM_NUM , "script parameter id not 0-9"}, - {PI_DUP_TAG , "script has duplicate tag"}, - {PI_TOO_MANY_TAGS , "script has too many tags"}, - {PI_BAD_SCRIPT_CMD , "illegal script command"}, - {PI_BAD_VAR_NUM , "script variable id not 0-149"}, - {PI_NO_SCRIPT_ROOM , "no more room for scripts"}, - {PI_NO_MEMORY , "can't allocate temporary memory"}, - {PI_SOCK_READ_FAILED , "socket read failed"}, - {PI_SOCK_WRIT_FAILED , "socket write failed"}, - {PI_TOO_MANY_PARAM , "too many script parameters (> 10)"}, - {PI_SCRIPT_NOT_READY , "script initialising"}, - {PI_BAD_TAG , "script has unresolved tag"}, - {PI_BAD_MICS_DELAY , "bad MICS delay (too large)"}, - {PI_BAD_MILS_DELAY , "bad MILS delay (too large)"}, - {PI_BAD_WAVE_ID , "non existent wave id"}, - {PI_TOO_MANY_CBS , "No more CBs for waveform"}, - {PI_TOO_MANY_OOL , "No more OOL for waveform"}, - {PI_EMPTY_WAVEFORM , "attempt to create an empty waveform"}, - {PI_NO_WAVEFORM_ID , "no more waveform ids"}, - {PI_I2C_OPEN_FAILED , "can't open I2C device"}, - {PI_SER_OPEN_FAILED , "can't open serial device"}, - {PI_SPI_OPEN_FAILED , "can't open SPI device"}, - {PI_BAD_I2C_BUS , "bad I2C bus"}, - {PI_BAD_I2C_ADDR , "bad I2C address"}, - {PI_BAD_SPI_CHANNEL , "bad SPI channel"}, - {PI_BAD_FLAGS , "bad i2c/spi/ser open flags"}, - {PI_BAD_SPI_SPEED , "bad SPI speed"}, - {PI_BAD_SER_DEVICE , "bad serial device name"}, - {PI_BAD_SER_SPEED , "bad serial baud rate"}, - {PI_BAD_PARAM , "bad i2c/spi/ser parameter"}, - {PI_I2C_WRITE_FAILED , "I2C write failed"}, - {PI_I2C_READ_FAILED , "I2C read failed"}, - {PI_BAD_SPI_COUNT , "bad SPI count"}, - {PI_SER_WRITE_FAILED , "ser write failed"}, - {PI_SER_READ_FAILED , "ser read failed"}, - {PI_SER_READ_NO_DATA , "ser read no data available"}, - {PI_UNKNOWN_COMMAND , "unknown command"}, - {PI_SPI_XFER_FAILED , "spi xfer/read/write failed"}, - {PI_BAD_POINTER , "bad (NULL) pointer"}, - {PI_NO_AUX_SPI , "no auxiliary SPI on Pi A or B"}, - {PI_NOT_PWM_GPIO , "GPIO is not in use for PWM"}, - {PI_NOT_SERVO_GPIO , "GPIO is not in use for servo pulses"}, - {PI_NOT_HCLK_GPIO , "GPIO has no hardware clock"}, - {PI_NOT_HPWM_GPIO , "GPIO has no hardware PWM"}, - {PI_BAD_HPWM_FREQ , "hardware PWM frequency not 1-125M"}, - {PI_BAD_HPWM_DUTY , "hardware PWM dutycycle not 0-1M"}, - {PI_BAD_HCLK_FREQ , "hardware clock frequency not 4689-250M"}, - {PI_BAD_HCLK_PASS , "need password to use hardware clock 1"}, - {PI_HPWM_ILLEGAL , "illegal, PWM in use for main clock"}, - {PI_BAD_DATABITS , "serial data bits not 1-32"}, - {PI_BAD_STOPBITS , "serial (half) stop bits not 2-8"}, - {PI_MSG_TOOBIG , "socket/pipe message too big"}, - {PI_BAD_MALLOC_MODE , "bad memory allocation mode"}, - {PI_TOO_MANY_SEGS , "too many I2C transaction segments"}, - {PI_BAD_I2C_SEG , "an I2C transaction segment failed"}, - {PI_BAD_SMBUS_CMD , "SMBus command not supported by driver"}, - {PI_NOT_I2C_GPIO , "no bit bang I2C in progress on GPIO"}, - {PI_BAD_I2C_WLEN , "bad I2C write length"}, - {PI_BAD_I2C_RLEN , "bad I2C read length"}, - {PI_BAD_I2C_CMD , "bad I2C command"}, - {PI_BAD_I2C_BAUD , "bad I2C baud rate, not 50-500k"}, - {PI_CHAIN_LOOP_CNT , "bad chain loop count"}, - {PI_BAD_CHAIN_LOOP , "empty chain loop"}, - {PI_CHAIN_COUNTER , "too many chain counters"}, - {PI_BAD_CHAIN_CMD , "bad chain command"}, - {PI_BAD_CHAIN_DELAY , "bad chain delay micros"}, - {PI_CHAIN_NESTING , "chain counters nested too deeply"}, - {PI_CHAIN_TOO_BIG , "chain is too long"}, - {PI_DEPRECATED , "deprecated function removed"}, - {PI_BAD_SER_INVERT , "bit bang serial invert not 0 or 1"}, - {PI_BAD_EDGE , "bad ISR edge, not 1, 1, or 2"}, - {PI_BAD_ISR_INIT , "bad ISR initialisation"}, - {PI_BAD_FOREVER , "loop forever must be last chain command"}, - {PI_BAD_FILTER , "bad filter parameter"}, - {PI_BAD_PAD , "bad pad number"}, - {PI_BAD_STRENGTH , "bad pad drive strength"}, - {PI_FIL_OPEN_FAILED , "file open failed"}, - {PI_BAD_FILE_MODE , "bad file mode"}, - {PI_BAD_FILE_FLAG , "bad file flag"}, - {PI_BAD_FILE_READ , "bad file read"}, - {PI_BAD_FILE_WRITE , "bad file write"}, - {PI_FILE_NOT_ROPEN , "file not open for read"}, - {PI_FILE_NOT_WOPEN , "file not open for write"}, - {PI_BAD_FILE_SEEK , "bad file seek"}, - {PI_NO_FILE_MATCH , "no files match pattern"}, - {PI_NO_FILE_ACCESS , "no permission to access file"}, - {PI_FILE_IS_A_DIR , "file is a directory"}, - {PI_BAD_SHELL_STATUS , "bad shell return status"}, - {PI_BAD_SCRIPT_NAME , "bad script name"}, - {PI_BAD_SPI_BAUD , "bad SPI baud rate, not 50-500k"}, - {PI_NOT_SPI_GPIO , "no bit bang SPI in progress on GPIO"}, - {PI_BAD_EVENT_ID , "bad event id"}, - {PI_CMD_INTERRUPTED , "command interrupted, Python"}, - }; - - #endregion - - - #region # private property - - private TcpConnection TcpConnection { get; set; } - - private TcpConnection NotifyTcpConnection { get; set; } - - #endregion - - - #region # public property - - private object _lockObject = new object(); - public object LockObject - { - get - { - return _lockObject; - } - } - - private NetworkStream _commandStream = null; - public NetworkStream CommandStream - { - get - { - return _commandStream; - } - private set - { - _commandStream = value; - - if (CommandStreamChanged != null) - { - CommandStreamChanged.Invoke(this, new EventArgs()); - } - if (StreamChanged != null) - { - StreamChanged.Invoke(this, new EventArgs()); - } - - if (CommandStream != null && NotifyStream != null && !isConnecting) - { - isConnecting = true; - if (StreamConnected != null) - { - StreamConnected.Invoke(this, new EventArgs()); - } - } - } - } - - private NetworkStream _notifyStream = null; - public NetworkStream NotifyStream - { - get - { - return _notifyStream; - } - private set - { - _notifyStream = value; - - if (NotifyStreamChanged != null) - { - NotifyStreamChanged.Invoke(this, new EventArgs()); - } - if (StreamChanged != null) - { - StreamChanged.Invoke(this, new EventArgs()); - } - - if (CommandStream != null && NotifyStream != null && !isConnecting) - { - isConnecting = true; - if (StreamConnected != null) - { - StreamConnected.Invoke(this, new EventArgs()); - } - } - } - } - - public bool IsOpened - { - get - { - if (this.TcpConnection == null || NotifyTcpConnection == null) - return false; - return this.TcpConnection.IsOpened && NotifyTcpConnection.IsOpened; - } - } - - public bool CanRead - { - get - { - if (this.TcpConnection.Stream == null || NotifyTcpConnection.Stream == null) - return false; - return this.TcpConnection.Stream.CanRead && NotifyTcpConnection.Stream.CanRead; - } - } - - public bool CanWrite - { - get - { - if (this.TcpConnection.Stream == null || NotifyTcpConnection.Stream == null) - return false; - return this.TcpConnection.Stream.CanWrite && NotifyTcpConnection.Stream.CanWrite; - } - } - - #endregion - - - #region # constructor - - public PigpiodIf() - { - this.TcpConnection = new TcpConnection(); - this.TcpConnection.StreamChanged += (s, evt) => - { - this.CommandStream = this.TcpConnection.Stream; - }; - - NotifyTcpConnection = new TcpConnection(); - NotifyTcpConnection.StreamChanged += (s, evt) => - { - NotifyStream = NotifyTcpConnection.Stream; - - if (NotifyTcpConnection.Stream != null) - { - NotifyStream.ReadTimeout = Timeout.Infinite; - - gPigHandle = pigpio_notify(); - - if (gPigHandle >= 0) - { - gLastLevel = read_bank_1(); - - cts = new CancellationTokenSource(); - Task.Run(() => NotifyThread(cts.Token)); - } - } - }; - } - - #endregion - - - #region # Implementation of IDisposable - - bool disposed = false; - public void Dispose() - { - Dispose(true); - GC.SuppressFinalize(this); - } - protected virtual void Dispose(bool disposing) - { - if (disposed) - return; - - if (disposing) - { - // Release managed objects - pigpio_stop(); - } - - // Release unmanaged objects - - disposed = true; - } - ~PigpiodIf() - { - Dispose(false); - } - - #endregion - - - #region # public method - - public double time_time() - { - DateTime UNIX_EPOCH = new DateTime(1970, 1, 1, 0, 0, 0, 0); - DateTime targetTime = DateTime.Now.ToUniversalTime(); - TimeSpan elapsedTime = targetTime - UNIX_EPOCH; - return elapsedTime.TotalSeconds; - } - - public void time_sleep(double seconds) - { - Task.Run(async () => - { - long milliseconds = (long)(seconds * 1000); - sw.Restart(); - - int rest = (int)(milliseconds - sw.ElapsedMilliseconds); - if (rest > 200) - { - await Task.Delay(rest - 200); - } - - while (sw.ElapsedMilliseconds < milliseconds) - { - } - sw.Stop(); - }).Wait(); - } - - public string pigpio_error(int errnum) - { - if (errnum > -1000) - { - if (errInfo.ContainsKey(errnum)) - { - return errInfo[errnum]; - } - else - { - return "unknown error"; - } - } - else - { - switch ((EError)errnum) - { - case EError.pigif_bad_send: - return "failed to send to pigpiod"; - case EError.pigif_bad_recv: - return "failed to receive from pigpiod"; - case EError.pigif_bad_getaddrinfo: - return "failed to find address of pigpiod"; - case EError.pigif_bad_connect: - return "failed to connect to pigpiod"; - case EError.pigif_bad_socket: - return "failed to create socket"; - case EError.pigif_bad_noib: - return "failed to open notification in band"; - case EError.pigif_duplicate_callback: - return "identical callback exists"; - case EError.pigif_bad_malloc: - return "failed to malloc"; - case EError.pigif_bad_callback: - return "bad callback parameter"; - case EError.pigif_notify_failed: - return "failed to create notification thread"; - case EError.pigif_callback_not_found: - return "callback not found"; - case EError.pigif_unconnected_pi: - return "not connected to Pi"; - case EError.pigif_too_many_pis: - return "too many connected Pis"; - - default: - return "unknown error"; - } - } - } - - public UInt32 pigpiod_if_version() - { - return PIGPIOD_IF2_VERSION; - } - - // Do not implement - // start_thread() and - // stop_thread(). - - public int pigpio_start(string addrStr, string portStr) - { - if (string.IsNullOrWhiteSpace(addrStr)) - { - addrStr = PI_DEFAULT_SOCKET_ADDR_STR; - } - if (string.IsNullOrWhiteSpace(portStr)) - { - portStr = PI_DEFAULT_SOCKET_PORT_STR; - } - - int port; - if (int.TryParse(portStr, out port) == false) - { - return (int)EError.pigif_bad_getaddrinfo; - } - - isConnecting = false; - this.TcpConnection.Open(addrStr, port); - NotifyTcpConnection.Open(addrStr, port); - - return 0; - } - - public void pigpio_stop() - { - if (cts != null) - { - cts.Cancel(); - } - - if (gPigHandle >= 0) - { - pigpio_command(PI_CMD_NC, gPigHandle, 0); - gPigHandle = -1; - } - - if (this.TcpConnection != null) - { - // Execute handlers of StreamChanged event, and call Close() - this.CommandStream = null; - this.TcpConnection.Close(); - } - if (NotifyTcpConnection != null) - { - // Execute handlers of NotifyStreamChanged event, and call Close() - NotifyStream = null; - NotifyTcpConnection.Close(); - } - } - - public int set_mode(UInt32 gpio, UInt32 mode) - { return pigpio_command(PI_CMD_MODES, (int)gpio, (int)mode); } - - public int get_mode(UInt32 gpio) - { return pigpio_command(PI_CMD_MODEG, (int)gpio, 0); } - - public int set_pull_up_down(UInt32 gpio, UInt32 pud) - { return pigpio_command(PI_CMD_PUD, (int)gpio, (int)pud); } - - public int gpio_read(UInt32 gpio) - { return pigpio_command(PI_CMD_READ, (int)gpio, 0); } - - public int gpio_write(UInt32 gpio, UInt32 level) - { return pigpio_command(PI_CMD_WRITE, (int)gpio, (int)level); } - - public int set_PWM_dutycycle(UInt32 user_gpio, UInt32 dutycycle) - { return pigpio_command(PI_CMD_PWM, (int)user_gpio, (int)dutycycle); } - - public int get_PWM_dutycycle(UInt32 user_gpio) - { return pigpio_command(PI_CMD_GDC, (int)user_gpio, 0); } - - public int set_PWM_range(UInt32 user_gpio, UInt32 range) - { return pigpio_command(PI_CMD_PRS, (int)user_gpio, (int)range); } - - public int get_PWM_range(UInt32 user_gpio) - { return pigpio_command(PI_CMD_PRG, (int)user_gpio, 0); } - - public int get_PWM_real_range(UInt32 user_gpio) - { return pigpio_command(PI_CMD_PRRG, (int)user_gpio, 0); } - - public int set_PWM_frequency(UInt32 user_gpio, UInt32 frequency) - { return pigpio_command(PI_CMD_PFS, (int)user_gpio, (int)frequency); } - - public int get_PWM_frequency(UInt32 user_gpio) - { return pigpio_command(PI_CMD_PFG, (int)user_gpio, 0); } - - public int set_servo_pulsewidth(UInt32 user_gpio, UInt32 pulsewidth) - { return pigpio_command(PI_CMD_SERVO, (int)user_gpio, (int)pulsewidth); } - - public int get_servo_pulsewidth(UInt32 user_gpio) - { return pigpio_command(PI_CMD_GPW, (int)user_gpio, 0); } - - public int notify_open() - { return pigpio_command(PI_CMD_NO, 0, 0); } - - public int notify_begin(UInt32 handle, UInt32 bits) - { return pigpio_command(PI_CMD_NB, (int)handle, (int)bits); } - - public int notify_pause(UInt32 handle) - { return pigpio_command(PI_CMD_NB, (int)handle, 0); } - - public int notify_close(UInt32 handle) - { return pigpio_command(PI_CMD_NC, (int)handle, 0); } - - public int set_watchdog(UInt32 user_gpio, UInt32 timeout) - { return pigpio_command(PI_CMD_WDOG, (int)user_gpio, (int)timeout); } - - public UInt32 read_bank_1() - { return (UInt32)pigpio_command(PI_CMD_BR1, 0, 0); } - - public UInt32 read_bank_2() - { return (UInt32)pigpio_command(PI_CMD_BR2, 0, 0); } - - public int clear_bank_1(UInt32 levels) - { return pigpio_command(PI_CMD_BC1, (int)levels, 0); } - - public int clear_bank_2(UInt32 levels) - { return pigpio_command(PI_CMD_BC2, (int)levels, 0); } - - public int set_bank_1(UInt32 levels) - { return pigpio_command(PI_CMD_BS1, (int)levels, 0); } - - public int set_bank_2(UInt32 levels) - { return pigpio_command(PI_CMD_BS2, (int)levels, 0); } - - public int hardware_clock(UInt32 gpio, UInt32 frequency) - { return pigpio_command(PI_CMD_HC, (int)gpio, (int)frequency); } - - public int hardware_PWM(UInt32 gpio, UInt32 frequency, UInt32 dutycycle) - { - GpioExtent[] exts = new GpioExtent[] { new GpioExtent() }; - - /* - p1=gpio - p2=frequency - p3=4 - ## extension ## - uint32_t dutycycle - */ - - exts[0].Contents = UInt32ToBytes(dutycycle); - - return pigpio_command_ext(PI_CMD_HP, (int)gpio, (int)frequency, exts); - } - - public UInt32 get_current_tick() - { return (UInt32)pigpio_command(PI_CMD_TICK, 0, 0); } - - public UInt32 get_hardware_revision() - { return (UInt32)pigpio_command(PI_CMD_HWVER, 0, 0); } - - public UInt32 get_pigpio_version() - { return (UInt32)pigpio_command(PI_CMD_PIGPV, 0, 0); } - - public int wave_clear() - { return pigpio_command(PI_CMD_WVCLR, 0, 0); } - - public int wave_add_new() - { return pigpio_command(PI_CMD_WVNEW, 0, 0); } - - public int wave_add_generic(GpioPulse[] pulses) - { - GpioExtent[] exts = new GpioExtent[] { new GpioExtent() }; - - /* - p1=0 - p2=0 - p3=pulses*sizeof(gpioPulse_t) - ## extension ## - gpioPulse_t[] pulses - */ - - if (pulses.Length == 0) return 0; - - List list = new List(); - foreach (var pulse in pulses) - { - list.Add(pulse.gpioOn); - list.Add(pulse.gpioOff); - list.Add(pulse.usDelay); - } - exts[0].Contents = UInt32ArrayToBytes(list.ToArray()); - - return pigpio_command_ext(PI_CMD_WVAG, 0, 0, exts); - } - - public int wave_add_serial( - UInt32 user_gpio, UInt32 baud, UInt32 databits, - UInt32 stophalfbits, UInt32 offset, byte[] str) - { - GpioExtent[] exts = new GpioExtent[] { - new GpioExtent(), - new GpioExtent() - }; - - /* - p1=user_gpio - p2=baud - p3=len+12 - ## extension ## - uint32_t databits - uint32_t stophalfbits - uint32_t offset - char[len] str - */ - - if (str.Length == 0) - return 0; - - UInt32[] array = new UInt32[] - { - databits, - stophalfbits, - offset - }; - exts[0].Contents = UInt32ArrayToBytes(array); - - exts[1].Contents = str; - - return pigpio_command_ext(PI_CMD_WVAS, (int)user_gpio, (int)baud, exts); - } - - public int wave_create() - { return pigpio_command(PI_CMD_WVCRE, 0, 0); } - - public int wave_delete(UInt32 wave_id) - { return pigpio_command(PI_CMD_WVDEL, (int)wave_id, 0); } - - public int wave_tx_start() /* DEPRECATED */ - { return pigpio_command(PI_CMD_WVGO, 0, 0); } - - public int wave_tx_repeat() /* DEPRECATED */ - { return pigpio_command(PI_CMD_WVGOR, 0, 0); } - - public int wave_send_once(UInt32 wave_id) - { return pigpio_command(PI_CMD_WVTX, (int)wave_id, 0); } - - public int wave_send_repeat(UInt32 wave_id) - { return pigpio_command(PI_CMD_WVTXR, (int)wave_id, 0); } - - public int wave_send_using_mode(UInt32 wave_id, UInt32 mode) - { return pigpio_command(PI_CMD_WVTXM, (int)wave_id, (int)mode); } - - public int wave_chain(byte[] buf) - { - GpioExtent[] exts = new GpioExtent[] { new GpioExtent() }; - - /* - p1=0 - p2=0 - p3=bufSize - ## extension ## - char buf[bufSize] - */ - - exts[0].Contents = buf; - - return pigpio_command_ext(PI_CMD_WVCHA, 0, 0, exts); - } - - public int wave_tx_at() - { return pigpio_command(PI_CMD_WVTAT, 0, 0); } - - public int wave_tx_busy() - { return pigpio_command(PI_CMD_WVBSY, 0, 0); } - - public int wave_tx_stop() - { return pigpio_command(PI_CMD_WVHLT, 0, 0); } - - public int wave_get_micros() - { return pigpio_command(PI_CMD_WVSM, 0, 0); } - - public int wave_get_high_micros() - { return pigpio_command(PI_CMD_WVSM, 1, 0); } - - public int wave_get_max_micros() - { return pigpio_command(PI_CMD_WVSM, 2, 0); } - - public int wave_get_pulses() - { return pigpio_command(PI_CMD_WVSP, 0, 0); } - - public int wave_get_high_pulses() - { return pigpio_command(PI_CMD_WVSP, 1, 0); } - - public int wave_get_max_pulses() - { return pigpio_command(PI_CMD_WVSP, 2, 0); } - - public int wave_get_cbs() - { return pigpio_command(PI_CMD_WVSC, 0, 0); } - - public int wave_get_high_cbs() - { return pigpio_command(PI_CMD_WVSC, 1, 0); } - - public int wave_get_max_cbs() - { return pigpio_command(PI_CMD_WVSC, 2, 0); } - - public int gpio_trigger(UInt32 user_gpio, UInt32 pulseLen, UInt32 level) - { - GpioExtent[] exts = new GpioExtent[] { new GpioExtent() }; - - /* - p1=user_gpio - p2=pulseLen - p3=4 - ## extension ## - unsigned level - */ - - exts[0].Contents = UInt32ToBytes(level); - - return pigpio_command_ext(PI_CMD_TRIG, (int)user_gpio, (int)pulseLen, exts); - } - - public int set_glitch_filter(UInt32 user_gpio, UInt32 steady) - { return pigpio_command(PI_CMD_FG, (int)user_gpio, (int)steady); } - - public int set_noise_filter(UInt32 user_gpio, UInt32 steady, UInt32 active) - { - GpioExtent[] exts = new GpioExtent[] { new GpioExtent() }; - - /* - p1=user_gpio - p2=steady - p3=4 - ## extension ## - unsigned active - */ - - exts[0].Contents = UInt32ToBytes(active); - - return pigpio_command_ext(PI_CMD_FN, (int)user_gpio, (int)steady, exts); - } - - public int store_script(byte[] script) - { - GpioExtent[] exts = new GpioExtent[] { new GpioExtent() }; - - /* - p1=0 - p2=0 - p3=len - ## extension ## - char[len] script - */ - - if (script.Length == 0) - return 0; - - exts[0].Contents = script; - - return pigpio_command_ext(PI_CMD_PROC, 0, 0, exts); - } - - public int run_script(UInt32 script_id, UInt32[] paramArray) - { - GpioExtent[] exts = new GpioExtent[] { new GpioExtent() }; - - /* - p1=script id - p2=0 - p3=numPar * 4 - ## extension ## - uint32_t[numPar] pars - */ - - exts[0].Contents = UInt32ArrayToBytes(paramArray); - - return pigpio_command_ext(PI_CMD_PROCR, (int)script_id, 0, exts); - } - - public int update_script(UInt32 script_id, UInt32[] paramArray) - { - GpioExtent[] exts = new GpioExtent[] { new GpioExtent() }; - - /* - p1=script id - p2=0 - p3=numPar * 4 - ## extension ## - uint32_t[numPar] pars - */ - - exts[0].Contents = UInt32ArrayToBytes(paramArray); - - return pigpio_command_ext(PI_CMD_PROCU, (int)script_id, 0, exts); - } - - public int script_status(UInt32 script_id, UInt32[] param) - { - int status; - byte[] bytes = new byte[4 * (PI_MAX_SCRIPT_PARAMS + 1)]; /* space for script status */ - - lock (LockObject) - { - status = pigpio_command(PI_CMD_PROCP, (int)script_id, 0); - - if (status > 0) - { - recvMax(bytes, status); - - // byte[] -> UInt32[] - var p = BytesToUInt32Array(bytes); - - status = (int)p[0]; - for (int i = 0; i < param.Length; i++) - { - param[i] = p[i + 1]; - } - } - } - - return status; - } - - public int stop_script(UInt32 script_id) - { return pigpio_command(PI_CMD_PROCS, (int)script_id, 0); } - - public int delete_script(UInt32 script_id) - { return pigpio_command(PI_CMD_PROCD, (int)script_id, 0); } - - public int bb_serial_read_open(UInt32 user_gpio, UInt32 baud, UInt32 bbBits) - { - GpioExtent[] exts = new GpioExtent[] { new GpioExtent() }; - - /* - p1=user_gpio - p2=baud - p3=4 - ## extension ## - unsigned bbBits - */ - - exts[0].Contents = UInt32ToBytes(bbBits); - - return pigpio_command_ext(PI_CMD_SLRO, (int)user_gpio, (int)baud, exts); - } - - public int bb_serial_read(UInt32 user_gpio, byte[] buf) - { - int bytes; - - lock (LockObject) - { - bytes = pigpio_command(PI_CMD_SLR, (int)user_gpio, buf.Length); - - if (bytes > 0) - { - bytes = recvMax(buf, bytes); - } - } - - return bytes; - } - - public int bb_serial_read_close(UInt32 user_gpio) - { return pigpio_command(PI_CMD_SLRC, (int)user_gpio, 0); } - - public int bb_serial_invert(UInt32 user_gpio, UInt32 invert) - { return pigpio_command(PI_CMD_SLRI, (int)user_gpio, (int)invert); } - - public int i2c_open(UInt32 i2c_bus, UInt32 i2c_addr, UInt32 i2c_flags) - { - GpioExtent[] exts = new GpioExtent[] { new GpioExtent() }; - - /* - p1=i2c_bus - p2=i2c_addr - p3=4 - ## extension ## - uint32_t i2c_flags - */ - - exts[0].Contents = UInt32ToBytes(i2c_flags); - - return pigpio_command_ext(PI_CMD_I2CO, (int)i2c_bus, (int)i2c_addr, exts); - } - - public int i2c_close(UInt32 handle) - { return pigpio_command(PI_CMD_I2CC, (int)handle, 0); } - - public int i2c_write_quick(UInt32 handle, UInt32 bit) - { return pigpio_command(PI_CMD_I2CWQ, (int)handle, (int)bit); } - - public int i2c_write_byte(UInt32 handle, UInt32 val) - { return pigpio_command(PI_CMD_I2CWS, (int)handle, (int)val); } - - public int i2c_read_byte(UInt32 handle) - { return pigpio_command(PI_CMD_I2CRS, (int)handle, 0); } - - public int i2c_write_byte_data(UInt32 handle, UInt32 reg, UInt32 val) - { - GpioExtent[] exts = new GpioExtent[] { new GpioExtent() }; - - /* - p1=handle - p2=reg - p3=4 - ## extension ## - uint32_t val - */ - - exts[0].Contents = UInt32ToBytes(val); - - return pigpio_command_ext(PI_CMD_I2CWB, (int)handle, (int)reg, exts); - } - - public int i2c_write_word_data(UInt32 handle, UInt32 reg, UInt32 val) - { - GpioExtent[] exts = new GpioExtent[] { new GpioExtent() }; - - /* - p1=handle - p2=reg - p3=4 - ## extension ## - uint32_t val - */ - - exts[0].Contents = UInt32ToBytes(val); - - return pigpio_command_ext(PI_CMD_I2CWW, (int)handle, (int)reg, exts); - } - - public int i2c_read_byte_data(UInt32 handle, UInt32 reg) - { return pigpio_command(PI_CMD_I2CRB, (int)handle, (int)reg); } - - public int i2c_read_word_data(UInt32 handle, UInt32 reg) - { return pigpio_command(PI_CMD_I2CRW, (int)handle, (int)reg); } - - public int i2c_process_call(UInt32 handle, UInt32 reg, UInt32 val) - { - GpioExtent[] exts = new GpioExtent[] { new GpioExtent() }; - - /* - p1=handle - p2=reg - p3=4 - ## extension ## - uint32_t val - */ - - exts[0].Contents = UInt32ToBytes(val); - - return pigpio_command_ext(PI_CMD_I2CPK, (int)handle, (int)reg, exts); - } - - public int i2c_write_block_data(UInt32 handle, UInt32 reg, byte[] buf) - { - GpioExtent[] exts = new GpioExtent[] { new GpioExtent() }; - - /* - p1=handle - p2=reg - p3=count - ## extension ## - char buf[count] - */ - - exts[0].Contents = buf; - - return pigpio_command_ext(PI_CMD_I2CWK, (int)handle, (int)reg, exts); - } - - public int i2c_read_block_data(UInt32 handle, UInt32 reg, byte[] buf) - { - int bytes; - - lock (LockObject) - { - bytes = pigpio_command(PI_CMD_I2CRK, (int)handle, (int)reg); - - if (bytes > 0) - { - // 32バイト固定になっていたが、不明 - bytes = recvMax(buf, bytes); - } - } - - return bytes; - } - - public int i2c_block_process_call(UInt32 handle, UInt32 reg, byte[] buf) - { - int bytes; - GpioExtent[] exts = new GpioExtent[] { new GpioExtent() }; - - /* - p1=handle - p2=reg - p3=count - ## extension ## - char buf[count] - */ - - exts[0].Contents = buf; - - lock (LockObject) - { - bytes = pigpio_command_ext(PI_CMD_I2CPK, (int)handle, (int)reg, exts); - - if (bytes > 0) - { - // 32バイト固定になっていたが、不明 - bytes = recvMax(buf, bytes); - } - } - - return bytes; - } - - public int i2c_read_i2c_block_data(UInt32 handle, UInt32 reg, byte[] buf) - { - int bytes; - GpioExtent[] exts = new GpioExtent[] { new GpioExtent() }; - - /* - p1=handle - p2=reg - p3=4 - ## extension ## - uint32_t count - */ - - UInt32 count = (UInt32)buf.Length; - exts[0].Contents = UInt32ToBytes(count); - - lock (LockObject) - { - bytes = pigpio_command_ext(PI_CMD_I2CRI, (int)handle, (int)reg, exts); - - if (bytes > 0) - { - bytes = recvMax(buf, bytes); - } - } - - return bytes; - } - - public int i2c_write_i2c_block_data(UInt32 handle, UInt32 reg, byte[] buf) - { - GpioExtent[] exts = new GpioExtent[] { new GpioExtent() }; - - /* - p1=handle - p2=reg - p3=count - ## extension ## - char buf[count] - */ - - exts[0].Contents = buf; - - return pigpio_command_ext(PI_CMD_I2CWI, (int)handle, (int)reg, exts); - } - - public int i2c_read_device(UInt32 handle, byte[] buf) - { - int bytes; - - lock (LockObject) - { - bytes = pigpio_command(PI_CMD_I2CRD, (int)handle, buf.Length); - - if (bytes > 0) - { - bytes = recvMax(buf, bytes); - } - } - - return bytes; - } - - public int i2c_write_device(UInt32 handle, byte[] buf) - { - GpioExtent[] exts = new GpioExtent[] { new GpioExtent() }; - - /* - p1=handle - p2=0 - p3=count - ## extension ## - char buf[count] - */ - - exts[0].Contents = buf; - - return pigpio_command_ext(PI_CMD_I2CWD, (int)handle, 0, exts); - } - - public int i2c_zip(UInt32 handle, byte[] inBuf, byte[] outBuf) - { - int bytes; - GpioExtent[] exts = new GpioExtent[] { new GpioExtent() }; - - /* - p1=handle - p2=0 - p3=inLen - ## extension ## - char inBuf[inLen] - */ - - exts[0].Contents = inBuf; - - lock (LockObject) - { - bytes = pigpio_command_ext(PI_CMD_I2CZ, (int)handle, 0, exts); - - if (bytes > 0) - { - bytes = recvMax(outBuf, bytes); - } - } - - return bytes; - } - - public int bb_i2c_open(UInt32 SDA, UInt32 SCL, UInt32 baud) - { - GpioExtent[] exts = new GpioExtent[] { new GpioExtent() }; - - /* - p1=SDA - p2=SCL - p3=4 - ## extension ## - uint32_t baud - */ - - exts[0].Contents = UInt32ToBytes(baud); - - return pigpio_command_ext(PI_CMD_BI2CO, (int)SDA, (int)SCL, exts); - } - - public int bb_i2c_close(UInt32 SDA) - { return pigpio_command(PI_CMD_BI2CC, (int)SDA, 0); } - - public int bb_i2c_zip(UInt32 SDA, byte[] inBuf, byte[] outBuf) - { - int bytes; - GpioExtent[] exts = new GpioExtent[] { new GpioExtent() }; - - /* - p1=SDA - p2=0 - p3=inLen - ## extension ## - char inBuf[inLen] - */ - - exts[0].Contents = inBuf; - - lock (LockObject) - { - bytes = pigpio_command_ext(PI_CMD_BI2CZ, (int)SDA, 0, exts); - - if (bytes > 0) - { - bytes = recvMax(outBuf, bytes); - } - } - - return bytes; - } - - public int bb_spi_open( - UInt32 CS, UInt32 MISO, UInt32 MOSI, UInt32 SCLK, - UInt32 baud, UInt32 spiFlags) - { - GpioExtent[] exts = new GpioExtent[] { new GpioExtent() }; - - /* - p1=CS - p2=0 - p3=20 - ## extension ## - uint32_t MISO - uint32_t MOSI - uint32_t SCLK - uint32_t baud - uint32_t spiFlags - */ - - exts[0].Contents = UInt32ArrayToBytes(new UInt32[] { - MISO, MOSI, SCLK, baud, spiFlags - }); - - return pigpio_command_ext(PI_CMD_BSPIO, (int)CS, 0, exts); - } - - public int bb_spi_close(UInt32 CS) - { return pigpio_command(PI_CMD_BSPIC, (int)CS, 0); } - - public int bb_spi_xfer(UInt32 CS, byte[] txBuf, byte[] rxBuf) - { - int bytes; - GpioExtent[] exts = new GpioExtent[] { new GpioExtent() }; - - /* - p1=CS - p2=0 - p3=count - ## extension ## - char txBuf[count] - */ - - exts[0].Contents = txBuf; - - lock (LockObject) - { - bytes = pigpio_command_ext(PI_CMD_BSPIX, (int)CS, 0, exts); - - if (bytes > 0) - { - bytes = recvMax(rxBuf, bytes); - } - } - - return bytes; - } - - public int spi_open(UInt32 channel, UInt32 speed, UInt32 flags) - { - GpioExtent[] exts = new GpioExtent[] { new GpioExtent() }; - - /* - p1=channel - p2=speed - p3=4 - ## extension ## - uint32_t flags - */ - - exts[0].Contents = UInt32ToBytes(flags); - - return pigpio_command_ext(PI_CMD_SPIO, (int)channel, (int)speed, exts); - } - - public int spi_close(UInt32 handle) - { return pigpio_command(PI_CMD_SPIC, (int)handle, 0); } - - public int spi_read(UInt32 handle, byte[] buf) - { - int bytes; - - lock (LockObject) - { - bytes = pigpio_command(PI_CMD_SPIR, (int)handle, buf.Length); - - if (bytes > 0) - { - bytes = recvMax(buf, bytes); - } - } - - return bytes; - } - - public int spi_write(UInt32 handle, byte[] buf) - { - GpioExtent[] exts = new GpioExtent[] { new GpioExtent() }; - - /* - p1=handle - p2=0 - p3=count - ## extension ## - char buf[count] - */ - - exts[0].Contents = buf; - - return pigpio_command_ext(PI_CMD_SPIW, (int)handle, 0, exts); - } - - public int spi_xfer(UInt32 handle, byte[] txBuf, byte[] rxBuf) - { - int bytes; - GpioExtent[] exts = new GpioExtent[] { new GpioExtent() }; - - /* - p1=handle - p2=0 - p3=count - ## extension ## - char buf[count] - */ - - exts[0].Contents = txBuf; - - lock (LockObject) - { - bytes = pigpio_command_ext(PI_CMD_SPIX, (int)handle, 0, exts); - - if (bytes > 0) - { - bytes = recvMax(rxBuf, bytes); - } - } - - return bytes; - } - - public int serial_open(string dev, UInt32 baud, UInt32 flags) - { - GpioExtent[] exts = new GpioExtent[] { new GpioExtent() }; - - /* - p1=baud - p2=flags - p3=len - ## extension ## - char dev[len] - */ - - var bytes = Encoding.UTF8.GetBytes(dev); - exts[0].Contents = bytes; - - return pigpio_command_ext(PI_CMD_SERO, (int)baud, (int)flags, exts); - } - - public int serial_close(UInt32 handle) - { return pigpio_command(PI_CMD_SERC, (int)handle, 0); } - - public int serial_write_byte(UInt32 handle, UInt32 val) - { return pigpio_command(PI_CMD_SERWB, (int)handle, (int)val); } - - public int serial_read_byte(UInt32 handle) - { return pigpio_command(PI_CMD_SERRB, (int)handle, 0); } - - public int serial_write(UInt32 handle, byte[] buf) - { - GpioExtent[] exts = new GpioExtent[] { new GpioExtent() }; - - /* - p1=handle - p2=0 - p3=count - ## extension ## - char buf[count] - */ - - exts[0].Contents = buf; - - return pigpio_command_ext(PI_CMD_SERW, (int)handle, 0, exts); - } - - public int serial_read(UInt32 handle, byte[] buf) - { - int bytes; - - lock (LockObject) - { - bytes = pigpio_command(PI_CMD_SERR, (int)handle, buf.Length); - - if (bytes > 0) - { - bytes = recvMax(buf, bytes); - } - } - - return bytes; - } - - public int serial_data_available(UInt32 handle) - { return pigpio_command(PI_CMD_SERDA, (int)handle, 0); } - - int custom_1(UInt32 arg1, UInt32 arg2, string argx, byte[] retBuf) - { - GpioExtent[] exts = new GpioExtent[] { new GpioExtent() }; - - /* - p1=arg1 - p2=arg2 - p3=count - ## extension ## - char argx[count] - */ - - exts[0].Contents = Encoding.UTF8.GetBytes(argx); - - return pigpio_command_ext - (PI_CMD_CF2, (int)arg1, (int)arg2, exts); - } - - int custom_2(UInt32 arg1, string argx, byte[] retBuf) - { - int bytes; - GpioExtent[] exts = new GpioExtent[] { new GpioExtent() }; - - /* - p1=arg1 - p2=retMax - p3=count - ## extension ## - char argx[count] - */ - - exts[0].Contents = Encoding.UTF8.GetBytes(argx); - - lock (LockObject) - { - bytes = pigpio_command_ext - (PI_CMD_CF2, (int)arg1, retBuf.Length, exts); - - if (bytes > 0) - { - bytes = recvMax(retBuf, bytes); - } - } - - return bytes; - } - - int get_pad_strength(UInt32 pad) - { return pigpio_command(PI_CMD_PADG, (int)pad, 0); } - - int set_pad_strength(UInt32 pad, UInt32 padStrength) - { return pigpio_command(PI_CMD_PADS, (int)pad, (int)padStrength); } - - int shell_(string scriptName, string scriptString) - { - GpioExtent[] exts = new GpioExtent[] { - new GpioExtent(), - new GpioExtent() - }; - - /* - p1=len(scriptName) - p2=0 - p3=len(scriptName) + len(scriptString) + 1 - ## extension ## - char[] - */ - - exts[0].Contents = Encoding.UTF8.GetBytes(scriptName + "\0"); /* include null byte */ - - exts[1].Contents = Encoding.UTF8.GetBytes(scriptString); - - return pigpio_command_ext - (PI_CMD_SHELL, scriptName.Length, 0, exts); - } - - int file_open(string file, UInt32 mode) - { - GpioExtent[] exts = new GpioExtent[] { new GpioExtent() }; - - /* - p1=mode - p2=0 - p3=len - ## extension ## - char file[len] - */ - - exts[0].Contents = Encoding.UTF8.GetBytes(file); - - return pigpio_command_ext - (PI_CMD_FO, (int)mode, 0, exts); - } - - int file_close(UInt32 handle) - { return pigpio_command(PI_CMD_FC, (int)handle, 0); } - - int file_write(UInt32 handle, byte[] buf) - { - GpioExtent[] exts = new GpioExtent[] { new GpioExtent() }; - - /* - p1=handle - p2=0 - p3=count - ## extension ## - char buf[count] - */ - - exts[0].Contents = buf; - - return pigpio_command_ext - (PI_CMD_FW, (int)handle, 0, exts); - } - - int file_read(UInt32 handle, byte[] buf) - { - int bytes; - - lock (LockObject) - { - bytes = pigpio_command - (PI_CMD_FR, (int)handle, buf.Length); - - if (bytes > 0) - { - bytes = recvMax(buf, bytes); - } - } - - return bytes; - } - - int file_seek(UInt32 handle, UInt32 seekOffset, int seekFrom) - { - GpioExtent[] exts = new GpioExtent[] { new GpioExtent() }; - - /* - p1=handle - p2=seekOffset - p3=4 - ## extension ## - uint32_t seekFrom - */ - - exts[0].Contents = UInt32ToBytes((UInt32)seekFrom); - - return pigpio_command_ext - (PI_CMD_FS, (int)handle, (int)seekOffset, exts); - } - - int file_list(string fpat, byte[] buf) - { - int bytes; - GpioExtent[] exts = new GpioExtent[] { new GpioExtent() }; - - /* - p1=60000 - p2=0 - p3=len - ## extension ## - char fpat[len] - */ - - exts[0].Contents = Encoding.UTF8.GetBytes(fpat); - - lock (LockObject) - { - bytes = pigpio_command_ext(PI_CMD_FL, 60000, 0, exts); - - if (bytes > 0) - { - bytes = recvMax(buf, bytes); - } - } - - return bytes; - } - - public Callback callback(UInt32 user_gpio, UInt32 edge, Action f) - { return intCallback(user_gpio, edge, f, null, 0); } - - public Callback callback_ex(UInt32 user_gpio, UInt32 edge, Action f, object user) - { return intCallback(user_gpio, edge, f, user, 1); } - - public int callback_cancel(Callback callback) - { - if (gCallBackList.Contains(callback)) - { - gCallBackList.Remove(callback); - - findNotifyBits(); - - return 0; - } - return (int)EError.pigif_callback_not_found; - } - - int wait_for_edge(int pi, UInt32 user_gpio, UInt32 edge, double timeout) - { - int triggered = 0; - double due; - - if (timeout <= 0.0) return 0; - - due = time_time() + timeout; - - var id = callback(user_gpio, edge, (gpio, level, tick, user) => - { - triggered = 1; - }); - - while (triggered == 0 && (time_time() < due)) time_sleep(0.05); - - callback_cancel(id); - - return triggered; - } - - // Do not implement - // event_callback(), - // event_callback_ex(), - // event_callback_cancel() and - // wait_for_event(). - - int event_trigger(UInt32 evt) - { return pigpio_command(PI_CMD_EVM, (int)evt, 0); } - - #endregion - - - #region # private method - - private byte[] UInt32ArrayToBytes(UInt32[] array) - { - int numBytes = 4; - - byte[] bytes = new byte[numBytes * array.Length]; - for (int i = 0; i < array.Length; i++) - { - byte[] tempBytes = BitConverter.GetBytes(array[i]); - tempBytes.CopyTo(bytes, numBytes * i); - } - - return bytes; - } - - private byte[] UInt32ToBytes(UInt32 data) - { - return UInt32ArrayToBytes(new UInt32[] { data }); - } - - private UInt32[] BytesToUInt32Array(byte[] bytes) - { - int numBytes = 4; - - UInt32[] array = new UInt32[bytes.Length / numBytes]; - byte[] dataBytes = new byte[numBytes]; - for (int i = 0; i < array.Length; i++) - { - for (int b = 0; b < numBytes; b++) - { - dataBytes[b] = bytes[numBytes * i + b]; - } - array[i] = BitConverter.ToUInt32(dataBytes, 0); - } - - return array; - } - - private int pigpio_command(int command, int p1, int p2) - { - if (CanWrite == false || CanRead == false) - { - return (int)EError.pigif_unconnected_pi; - } - - UInt32[] cmd = new UInt32[4]; - cmd[0] = (UInt32)command; - cmd[1] = (UInt32)p1; - cmd[2] = (UInt32)p2; - cmd[3] = 0; - - // UInt32[] -> byte[] - byte[] bytes = UInt32ArrayToBytes(cmd); - - lock (LockObject) - { - try - { - this.TcpConnection.Stream.Write(bytes, 0, bytes.Length); - } - catch (Exception) - { - return (int)EError.pigif_bad_send; - } - - try - { - if (this.TcpConnection.Stream.Read(bytes, 0, bytes.Length) != bytes.Length) - { - return (int)EError.pigif_bad_recv; - } - } - catch (Exception) - { - return (int)EError.pigif_bad_recv; - } - } - - // byte[] -> UInt32[] - cmd = BytesToUInt32Array(bytes); - - return (int)cmd[3]; - } - - private int pigpio_notify() - { - if (NotifyTcpConnection == null || NotifyTcpConnection.Stream == null || - NotifyTcpConnection.Stream.CanWrite == false || NotifyTcpConnection.Stream.CanRead == false) - { - return (int)EError.pigif_unconnected_pi; - } - - UInt32[] cmd = new UInt32[4]; - cmd[0] = PI_CMD_NOIB; - cmd[1] = 0; - cmd[2] = 0; - cmd[3] = 0; - - // UInt32[] -> byte[] - byte[] bytes = UInt32ArrayToBytes(cmd); - - lock (LockObject) - { - try - { - NotifyTcpConnection.Stream.Write(bytes, 0, bytes.Length); - } - catch (Exception) - { - return (int)EError.pigif_bad_send; - } - - try - { - if (NotifyTcpConnection.Stream.Read(bytes, 0, bytes.Length) != bytes.Length) - { - return (int)EError.pigif_bad_recv; - } - } - catch (Exception) - { - return (int)EError.pigif_bad_recv; - } - } - - // byte[] -> UInt32[] - cmd = BytesToUInt32Array(bytes); - - return (int)cmd[3]; - } - - private int pigpio_command_ext(int command, int p1, int p2, GpioExtent[] exts) - { - if (CanWrite == false || CanRead == false) - { - return (int)EError.pigif_unconnected_pi; - } - - int extsBytes = 0; - foreach (var ext in exts) - { - extsBytes += ext.Contents.Length; - } - - UInt32[] cmd = new UInt32[4]; - cmd[0] = (UInt32)command; - cmd[1] = (UInt32)p1; - cmd[2] = (UInt32)p2; - cmd[3] = (UInt32)extsBytes; - - // UInt32[] -> byte[] - byte[] cmdBytes = UInt32ArrayToBytes(cmd); - - byte[] bytes = new byte[cmdBytes.Length + extsBytes]; - int index = 0; - cmdBytes.CopyTo(bytes, index); index += cmdBytes.Length; - foreach (var ext in exts) - { - ext.Contents.CopyTo(bytes, index); index += ext.Contents.Length; - } - - lock (LockObject) - { - try - { - this.TcpConnection.Stream.Write(bytes, 0, bytes.Length); - } - catch (Exception) - { - return (int)EError.pigif_bad_send; - } - - try - { - if (this.TcpConnection.Stream.Read(cmdBytes, 0, cmdBytes.Length) != cmdBytes.Length) - { - return (int)EError.pigif_bad_recv; - } - } - catch (Exception) - { - return (int)EError.pigif_bad_recv; - } - } - - // byte[] -> UInt32[] - cmd = BytesToUInt32Array(cmdBytes); - - return (int)cmd[3]; - } - - private void dispatch_notification(GpioReport r) - { - UInt32 changed; - int l, g; - - //Console.WriteLine("s={0:X4} f={1:X4} t={2} l={3:X8}", - // r.seqno, r.flags, r.tick, r.level); - - if (r.flags == 0) - { - changed = (r.level ^ gLastLevel) & gNotifyBits; - - gLastLevel = r.level; - - foreach (var p in gCallBackList) - { - if ((changed & (1 << (p.gpio))) != 0) - { - if (((r.level) & (1 << (p.gpio))) != 0) l = 1; else l = 0; - if (((p.edge) ^ l) != 0) - { - if (p.ex != 0) p.f((UInt32)p.gpio, (UInt32)l, r.tick, p.user); - else p.f((UInt32)p.gpio, (UInt32)l, r.tick, null); - } - } - } - } - else - { - if (((r.flags) & PI_NTFY_FLAGS_WDOG) != 0) - { - g = (r.flags) & 31; - - foreach (var p in gCallBackList) - { - if ((p.gpio) == g) - { - if (p.ex != 0) p.f((UInt32)g, PI_TIMEOUT, r.tick, p.user); - else p.f((UInt32)g, PI_TIMEOUT, r.tick, null); - } - } - } - else if (((r.flags) & PI_NTFY_FLAGS_EVENT) != 0) - { - g = (r.flags) & 31; - - foreach (var ep in geCallBackList) - { - if ((ep.evt) == g) - { - if (ep.ex != 0) ep.f((UInt32)g, r.tick, ep.user); - else ep.f((UInt32)g, r.tick, null); - } - } - } - } - } - - private void NotifyThread(CancellationToken ct) - { - byte[] bytes = new byte[12 * PI_MAX_REPORTS_PER_READ]; - int received = 0; - - while (ct.IsCancellationRequested == false) - { - if (NotifyTcpConnection == null || NotifyTcpConnection.Stream == null || NotifyTcpConnection.Stream.CanRead == false) - break; - - try - { - while (received < 12) - { - received += NotifyTcpConnection.Stream.Read(bytes, received, bytes.Length - received); - } - } - catch (IOException) - { - break; - } - - int p = 0; - while (p + 12 <= received) - { - var report = new GpioReport() - { - seqno = BitConverter.ToUInt16(new byte[] { bytes[p + 0], bytes[p + 1] }, 0), - flags = BitConverter.ToUInt16(new byte[] { bytes[p + 2], bytes[p + 3] }, 0), - tick = BitConverter.ToUInt32(new byte[] { bytes[p + 4], bytes[p + 5], bytes[p + 6], bytes[p + 7] }, 0), - level = BitConverter.ToUInt32(new byte[] { bytes[p + 8], bytes[p + 9], bytes[p + 10], bytes[p + 11] }, 0) - }; - dispatch_notification(report); - p += 12; - } - for (int i = p; i < received; i++) - { - bytes[i - p] = bytes[i]; - } - received -= p; - } - } - - private void findNotifyBits() - { - UInt32 bits = 0; - - - foreach (var callback in gCallBackList) - { - bits |= (1U << (callback.gpio)); - } - - if (bits != gNotifyBits) - { - gNotifyBits = bits; - pigpio_command(PI_CMD_NB, gPigHandle, (int)gNotifyBits); - } - } - - private Callback intCallback(UInt32 user_gpio, UInt32 edge, Action f, object user, int ex) - { - if ((user_gpio >= 0) && (user_gpio < 32) && (edge >= 0) && (edge <= 2) && f != null) - { - /* prevent duplicates */ - - if (gCallBackList.Count(p => p.gpio == user_gpio && p.edge == edge && p.f == f) != 0) - { - return null; - } - - var callback = new Callback() - { - gpio = (int)user_gpio, - edge = (int)edge, - f = f, - user = user, - ex = ex - }; - gCallBackList.Add(callback); - - findNotifyBits(); - - return callback; - } - - return null; - } - - private int recvMax(byte[] buf, int sent) - { - /* - Copy at most bufSize bytes from the receieved message to - buf. Discard the rest of the message. - */ - byte[] scratch = new byte[4096]; - int remaining, fetch, count; - - if (sent < buf.Length) count = sent; else count = buf.Length; - - if (count > 0) - { - int received = 0; - while (received < count) - { - received += this.TcpConnection.Stream.Read(buf, received, count - received); - } - } - - remaining = sent - count; - - while (remaining > 0) - { - fetch = remaining; - if (fetch > scratch.Length) fetch = scratch.Length; - remaining -= this.TcpConnection.Stream.Read(scratch, 0, fetch); - } - - return count; - } - - #endregion - } -} diff --git a/Test_GPIO/Test_GPIO/Program.cs b/Test_GPIO/Test_GPIO/Program.cs deleted file mode 100644 index 27c70f0..0000000 --- a/Test_GPIO/Test_GPIO/Program.cs +++ /dev/null @@ -1,42 +0,0 @@ -using Iot.Device.Pigpio; -using System; -using System.Device.Gpio; -using System.Net; -using System.Threading; -using System.Threading.Tasks; - -namespace ConsoleApp9 -{ - class Program - { - static async Task Main(string[] args) - { - var addr = "80.11.204.244"; - var port = 9031; - var pin = 12; - // var blinks = 5; - - using (var driver = new Driver(new IPEndPoint(IPAddress.Parse(addr), port))) - { - await driver.ConnectAsync(); - await Task.Delay(TimeSpan.FromSeconds(1)); //Give the socket time to get connected - - Console.WriteLine("Connected"); - - using (var controller = new GpioController(PinNumberingScheme.Logical, driver)) - { - controller.OpenPin(pin); - controller.SetPinMode(pin, PinMode.InputPullUp); - - while (true) - { - controller.WaitForEvent(pin, PinEventTypes.Falling, new CancellationToken(false)); - Console.WriteLine("Beep boop"); - } - - controller.ClosePin(pin); - } - } - } - } -} diff --git a/Test_GPIO/Test_GPIO/ReadMe.md b/Test_GPIO/Test_GPIO/ReadMe.md deleted file mode 100644 index ff12a9b..0000000 --- a/Test_GPIO/Test_GPIO/ReadMe.md +++ /dev/null @@ -1,24 +0,0 @@ -# Pigpio - -This GpioDriver implementation allows you to remotely control a Raspberry Pi's GPIO pins via a wired or wireless network connection. It is compatible with (at time of writing) every Raspberry Pi including Model A, A+, B, B+, Zero, ZeroW, Pi2B, Pi3B (Pi4 support is currently experimental). - -## Setting up the Raspberry Pi - -1. Install a recent version of Raspbian onto the Pi; Stretch or Buster is fine. -2. Make sure the Pi has network access so either via a wired or wireless connection -3. Configured the raspberry pi to allow remote GPIO control by following the steps in section 4.1 [here](https://gpiozero.readthedocs.io/en/stable/remote_gpio.html#preparing-the-raspberry-pi). - -And you're done. - -## Running the sample - -The sample application (Pigpio.Sample) will periodically set GPIO4 high then low. If you connected an LED (with a current limiting resistor) to GPIO4 you then run the application you should see if turn on or off every second. - -To run the sample you'll need to determine the IP address of the Pi you configured above and specify it as the first argument to the application; for example: - -``` -Pigpio.Sample.exe 192.168.1.101 -``` - -If all goes to plan, you should see something like [this](https://www.youtube.com/watch?v=F9m0fqZjOGQ) - diff --git a/Test_GPIO/Test_GPIO/TcpConnection.cs b/Test_GPIO/Test_GPIO/TcpConnection.cs deleted file mode 100644 index d874b32..0000000 --- a/Test_GPIO/Test_GPIO/TcpConnection.cs +++ /dev/null @@ -1,156 +0,0 @@ -using System; -using System.Net.Sockets; - -namespace Iot.Device.Pigpio -{ - internal class TcpConnection - { - #region # event - - public event EventHandler StreamChanged; - - #endregion - - - #region # private field - - private TcpClient tcp = null; - private string ipOrHost; - private int port; - - #endregion - - - #region # public property - - public bool IsOpened - { - get - { - return tcp != null; - } - } - - private NetworkStream _stream = null; - public NetworkStream Stream - { - get - { - return _stream; - } - set - { - _stream = value; - if (StreamChanged != null) - { - StreamChanged.Invoke(this, new EventArgs()); - } - } - } - - #endregion - - - #region # Implementation of IDisposable - - bool disposed = false; - public void Dispose() - { - Dispose(true); - GC.SuppressFinalize(this); - } - protected virtual void Dispose(bool disposing) - { - if (disposed) - return; - - if (disposing) - { - // Release managed objects - Close(); - } - - // Release unmanaged objects - - disposed = true; - } - ~TcpConnection() - { - Dispose(false); - } - - #endregion - - - #region # public method - - public bool Open(string ipOrHost, int port) - { - if (tcp == null) - { - try - { - this.ipOrHost = ipOrHost; - this.port = port; - - tcp = new TcpClient(); - tcp.BeginConnect(ipOrHost, port, new AsyncCallback(NetConnectCallback), null); - - Console.WriteLine("Connecting to {0}:{1}...", ipOrHost, port); - } - catch (Exception ex) - { - Console.WriteLine("Connection failed({0}).", ex.Message); - Close(); - return false; - } - } - return true; - } - - public void Close() - { - if (Stream != null) - { - // Execute handlers of StreamChanged event, and call Dispose() - var stream = Stream; - Stream = null; - stream.Dispose(); - } - if (tcp != null) - { - tcp.Close(); - tcp = null; - - Console.WriteLine("{0}:{1} was disconnected.", ipOrHost, port); - } - ipOrHost = string.Empty; - port = 0; - } - - #endregion - - - #region # private method - - private void NetConnectCallback(IAsyncResult result) - { - if (tcp == null) - return; - - if (tcp.Connected) - { - Console.WriteLine("Connected to LAN {0}:{1}.", - ((System.Net.IPEndPoint)tcp.Client.RemoteEndPoint).Address, - ((System.Net.IPEndPoint)tcp.Client.RemoteEndPoint).Port); - - var stream = tcp.GetStream(); - stream.ReadTimeout = 10000; - stream.WriteTimeout = 10000; - Stream = stream; - } - } - - #endregion - } -} diff --git a/Test_GPIO/Test_GPIO/Test_GPIO.csproj b/Test_GPIO/Test_GPIO/Test_GPIO.csproj deleted file mode 100644 index 728c08c..0000000 --- a/Test_GPIO/Test_GPIO/Test_GPIO.csproj +++ /dev/null @@ -1,14 +0,0 @@ - - - - Exe - net5.0 - - - - - - - - - diff --git a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Iot.Device.Bindings.dll b/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Iot.Device.Bindings.dll deleted file mode 100644 index 2f503e5..0000000 Binary files a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Iot.Device.Bindings.dll and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Microsoft.Extensions.Logging.Abstractions.dll b/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Microsoft.Extensions.Logging.Abstractions.dll deleted file mode 100644 index 2c87f79..0000000 Binary files a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Microsoft.Win32.SystemEvents.dll b/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Microsoft.Win32.SystemEvents.dll deleted file mode 100644 index d62f333..0000000 Binary files a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Microsoft.Win32.SystemEvents.dll and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/SixLabors.ImageSharp.dll b/Test_GPIO/Test_GPIO/bin/Debug/net5.0/SixLabors.ImageSharp.dll deleted file mode 100644 index ae0a717..0000000 Binary files a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/SixLabors.ImageSharp.dll and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Swan.Lite.dll b/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Swan.Lite.dll deleted file mode 100644 index f625d07..0000000 Binary files a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Swan.Lite.dll and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Swan.dll b/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Swan.dll deleted file mode 100644 index 1240054..0000000 Binary files a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Swan.dll and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/System.CodeDom.dll b/Test_GPIO/Test_GPIO/bin/Debug/net5.0/System.CodeDom.dll deleted file mode 100644 index 873495d..0000000 Binary files a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/System.CodeDom.dll and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/System.Device.Gpio.dll b/Test_GPIO/Test_GPIO/bin/Debug/net5.0/System.Device.Gpio.dll deleted file mode 100644 index f95ba09..0000000 Binary files a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/System.Device.Gpio.dll and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/System.Drawing.Common.dll b/Test_GPIO/Test_GPIO/bin/Debug/net5.0/System.Drawing.Common.dll deleted file mode 100644 index 6ab3e30..0000000 Binary files a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/System.Drawing.Common.dll and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/System.IO.Ports.dll b/Test_GPIO/Test_GPIO/bin/Debug/net5.0/System.IO.Ports.dll deleted file mode 100644 index c955949..0000000 Binary files a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/System.IO.Ports.dll and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/System.Management.dll b/Test_GPIO/Test_GPIO/bin/Debug/net5.0/System.Management.dll deleted file mode 100644 index c3a0320..0000000 Binary files a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/System.Management.dll and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Test_GPIO.deps.json b/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Test_GPIO.deps.json deleted file mode 100644 index 6d0870e..0000000 --- a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Test_GPIO.deps.json +++ /dev/null @@ -1,1321 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v5.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v5.0": { - "Test_GPIO/1.0.0": { - "dependencies": { - "Iot.Device.Bindings": "1.5.0", - "System.Device.Gpio": "1.5.0", - "Unosquare.PiGpio": "0.3.1" - }, - "runtime": { - "Test_GPIO.dll": {} - } - }, - "Iot.Device.Bindings/1.5.0": { - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "5.0.0", - "SixLabors.ImageSharp": "1.0.2", - "System.Device.Gpio": "1.5.0", - "System.Drawing.Common": "5.0.2", - "System.IO.Ports": "5.0.1", - "System.Management": "5.0.0", - "UnitsNet": "4.77.0" - }, - "runtime": { - "lib/net5.0/Iot.Device.Bindings.dll": { - "assemblyVersion": "1.5.0.0", - "fileVersion": "1.500.21.36606" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/5.0.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.NETCore.Platforms/5.0.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "Microsoft.Win32.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "Microsoft.Win32.Registry/5.0.0": { - "dependencies": { - "System.Security.AccessControl": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - } - }, - "Microsoft.Win32.SystemEvents/5.0.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, - "runtime.linux-arm.runtime.native.System.IO.Ports/5.0.0": { - "runtimeTargets": { - "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.linux-arm64.runtime.native.System.IO.Ports/5.0.0": { - "runtimeTargets": { - "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.linux-x64.runtime.native.System.IO.Ports/5.0.0": { - "runtimeTargets": { - "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.native.System/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.IO.Ports/5.0.1": { - "dependencies": { - "runtime.linux-arm.runtime.native.System.IO.Ports": "5.0.0", - "runtime.linux-arm64.runtime.native.System.IO.Ports": "5.0.0", - "runtime.linux-x64.runtime.native.System.IO.Ports": "5.0.0", - "runtime.osx-x64.runtime.native.System.IO.Ports": "5.0.0" - } - }, - "runtime.native.System.Net.Http/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "dependencies": { - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, - "runtime.osx-x64.runtime.native.System.IO.Ports/5.0.0": { - "runtimeTargets": { - "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, - "SixLabors.ImageSharp/1.0.2": { - "runtime": { - "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.2.0" - } - } - }, - "System.CodeDom/5.0.0": { - "runtime": { - "lib/netstandard2.0/System.CodeDom.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Collections.Concurrent/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Device.Gpio/1.5.0": { - "dependencies": { - "Microsoft.Win32.Registry": "5.0.0", - "System.Memory": "4.5.4", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/net5.0/System.Device.Gpio.dll": { - "assemblyVersion": "1.5.0.0", - "fileVersion": "1.500.21.36606" - } - } - }, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.DiagnosticSource/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Drawing.Common/5.0.2": { - "dependencies": { - "Microsoft.Win32.SystemEvents": "5.0.0" - }, - "runtime": { - "lib/netcoreapp3.0/System.Drawing.Common.dll": { - "assemblyVersion": "5.0.0.2", - "fileVersion": "5.0.421.11614" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "5.0.0.2", - "fileVersion": "5.0.421.11614" - }, - "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "5.0.0.2", - "fileVersion": "5.0.421.11614" - } - } - }, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Calendars/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.IO.Ports/5.0.1": { - "dependencies": { - "Microsoft.Win32.Registry": "5.0.0", - "runtime.native.System.IO.Ports": "5.0.1" - }, - "runtime": { - "lib/netstandard2.0/System.IO.Ports.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.421.11614" - } - }, - "runtimeTargets": { - "runtimes/linux/lib/netstandard2.0/System.IO.Ports.dll": { - "rid": "linux", - "assetType": "runtime", - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.421.11614" - }, - "runtimes/osx/lib/netstandard2.0/System.IO.Ports.dll": { - "rid": "osx", - "assetType": "runtime", - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.421.11614" - }, - "runtimes/win/lib/netstandard2.0/System.IO.Ports.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.421.11614" - } - } - }, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Management/5.0.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.Win32.Registry": "5.0.0", - "System.CodeDom": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Management.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Management.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "System.Memory/4.5.4": {}, - "System.Net.Http/4.3.4": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" - } - }, - "System.Net.NetworkInformation/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.Win32.Primitives": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Net.Sockets": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Principal.Windows": "5.0.0", - "System.Threading": "4.3.0", - "System.Threading.Overlapped": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Thread": "4.3.0", - "System.Threading.ThreadPool": "4.3.0", - "runtime.native.System": "4.3.0" - } - }, - "System.Net.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Net.Sockets/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Runtime.Numerics/4.3.0": { - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Security.AccessControl/5.0.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - } - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.Apple": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" - } - }, - "System.Security.Cryptography.Cng/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Security.Cryptography.Csp/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" - } - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "4.3.0", - "System.Security.Cryptography.Csp": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" - } - }, - "System.Security.Principal.Windows/5.0.0": {}, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding.CodePages/4.6.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0" - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Overlapped/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks.Extensions/4.5.4": {}, - "System.Threading.Thread/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading.ThreadPool/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.ValueTuple/4.5.0": {}, - "UnitsNet/4.77.0": { - "dependencies": { - "System.ValueTuple": "4.5.0" - }, - "runtime": { - "lib/netstandard2.0/UnitsNet.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.0.0.0" - } - } - }, - "Unosquare.PiGpio/0.3.1": { - "dependencies": { - "Unosquare.Raspberry.Abstractions": "0.4.0", - "Unosquare.Swan": "2.4.0" - }, - "runtime": { - "lib/netstandard2.0/Unosquare.PiGpio.dll": { - "assemblyVersion": "0.3.1.0", - "fileVersion": "0.3.1.0" - } - } - }, - "Unosquare.Raspberry.Abstractions/0.4.0": { - "runtime": { - "lib/netstandard2.0/Unosquare.Raspberry.Abstractions.dll": { - "assemblyVersion": "0.4.0.0", - "fileVersion": "0.4.0.0" - } - } - }, - "Unosquare.Swan/2.4.0": { - "dependencies": { - "System.Net.Http": "4.3.4", - "System.Net.NetworkInformation": "4.3.0", - "Unosquare.Swan.Lite": "2.4.0" - }, - "runtime": { - "lib/netstandard2.0/Swan.dll": { - "assemblyVersion": "2.4.0.0", - "fileVersion": "2.4.0.0" - } - } - }, - "Unosquare.Swan.Lite/2.4.0": { - "dependencies": { - "System.Text.Encoding.CodePages": "4.6.0" - }, - "runtime": { - "lib/netstandard2.0/Swan.Lite.dll": { - "assemblyVersion": "2.4.0.0", - "fileVersion": "2.4.0.0" - } - } - } - } - }, - "libraries": { - "Test_GPIO/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Iot.Device.Bindings/1.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CNCOpPSatE0X7XfZ7mnGv1SKbZY878ny5lUCVihGobp7bQMIrsZRszH1Otw20dDFQ5WL3ZAkuqn9d3f/hzp3dA==", - "path": "iot.device.bindings/1.5.0", - "hashPath": "iot.device.bindings.1.5.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==", - "path": "microsoft.extensions.logging.abstractions/5.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", - "path": "microsoft.netcore.platforms/5.0.0", - "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", - "path": "microsoft.win32.primitives/4.3.0", - "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", - "path": "microsoft.win32.registry/5.0.0", - "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512" - }, - "Microsoft.Win32.SystemEvents/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==", - "path": "microsoft.win32.systemevents/5.0.0", - "hashPath": "microsoft.win32.systemevents.5.0.0.nupkg.sha512" - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==", - "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2", - "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==", - "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2", - "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==", - "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2", - "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" - }, - "runtime.linux-arm.runtime.native.System.IO.Ports/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-mHgdZplUo48ThUaZB3S3M0alxAcHU7R3GLxNbsBzwShKTBn6vHO31YP4PQT+nbOkc/ErieFP2cSkBA/pbH3Hsw==", - "path": "runtime.linux-arm.runtime.native.system.io.ports/5.0.0", - "hashPath": "runtime.linux-arm.runtime.native.system.io.ports.5.0.0.nupkg.sha512" - }, - "runtime.linux-arm64.runtime.native.System.IO.Ports/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2vSH+NumQa1hwccFfn+ISDQnkPcGviVd6is+TuM7HwcPkbE2WY64q1E6nAulm7E+62Loxx3b9bS2sSazjM6bfw==", - "path": "runtime.linux-arm64.runtime.native.system.io.ports/5.0.0", - "hashPath": "runtime.linux-arm64.runtime.native.system.io.ports.5.0.0.nupkg.sha512" - }, - "runtime.linux-x64.runtime.native.System.IO.Ports/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aagetZzzxDXxiGKrdyB1gxIHPRzeunUYTbV9aqprVe+iKVgi474I8fTVaxiZjwxDMeB3bWnOmpa4hgsiFXQ9GA==", - "path": "runtime.linux-x64.runtime.native.system.io.ports/5.0.0", - "hashPath": "runtime.linux-x64.runtime.native.system.io.ports.5.0.0.nupkg.sha512" - }, - "runtime.native.System/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "path": "runtime.native.system/4.3.0", - "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" - }, - "runtime.native.System.IO.Ports/5.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ihV5cOJiQ1+IyxFtCZuQfW8C7KhUUTaGRCYt9y7g14Xt+LcqsMJ8Pb/ANr7OmTPCa7SKcvwKQVYcN8xKQB55pA==", - "path": "runtime.native.system.io.ports/5.0.1", - "hashPath": "runtime.native.system.io.ports.5.0.1.nupkg.sha512" - }, - "runtime.native.System.Net.Http/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", - "path": "runtime.native.system.net.http/4.3.0", - "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", - "path": "runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==", - "path": "runtime.native.system.security.cryptography.openssl/4.3.2", - "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==", - "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2", - "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==", - "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2", - "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" - }, - "runtime.osx-x64.runtime.native.System.IO.Ports/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KOWNOPDzXNZkKHwfCs9gBzJS1JeOli7fBmI93l92FcTb/42Fc0ojKYL9gUZANYtM7x5nRPPzUJtW29klkt+2Zw==", - "path": "runtime.osx-x64.runtime.native.system.io.ports/5.0.0", - "hashPath": "runtime.osx-x64.runtime.native.system.io.ports.5.0.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==", - "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2", - "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==", - "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", - "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==", - "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", - "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==", - "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", - "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" - }, - "SixLabors.ImageSharp/1.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iZJ37Iss3pUkFl961x1aka85QuvgY9oNZabHijzVnHs4QTz6EMNx3zjJDyvK/0+Ryj6JPv/PC7GVIJXLHtu2nQ==", - "path": "sixlabors.imagesharp/1.0.2", - "hashPath": "sixlabors.imagesharp.1.0.2.nupkg.sha512" - }, - "System.CodeDom/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JPJArwA1kdj8qDAkY2XGjSWoYnqiM7q/3yRNkt6n28Mnn95MuEGkZXUbPBf7qc3IjwrGY5ttQon7yqHZyQJmOQ==", - "path": "system.codedom/5.0.0", - "hashPath": "system.codedom.5.0.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", - "path": "system.collections.concurrent/4.3.0", - "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" - }, - "System.Device.Gpio/1.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OOxVX5FBTSrV8SZguyAVV+zVx0cmhfPL+6bvgVsKJXky8rUhpQKQuP8+tpatcHuQT4fCqAE2/vdN9Hy3cC68vQ==", - "path": "system.device.gpio/1.5.0", - "hashPath": "system.device.gpio.1.5.0.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", - "path": "system.diagnostics.diagnosticsource/4.3.0", - "hashPath": "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", - "path": "system.diagnostics.tracing/4.3.0", - "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" - }, - "System.Drawing.Common/5.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rvr/M1WPf24ljpvvrVd74+NdjRUJu1bBkspkZcnzSZnmAUQWSvanlQ0k/hVHk+cHufZbZfu7vOh/vYc0q5Uu/A==", - "path": "system.drawing.common/5.0.2", - "hashPath": "system.drawing.common.5.0.2.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", - "path": "system.globalization.calendars/4.3.0", - "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", - "path": "system.globalization.extensions/4.3.0", - "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "path": "system.io.filesystem/4.3.0", - "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "path": "system.io.filesystem.primitives/4.3.0", - "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" - }, - "System.IO.Ports/5.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cOfs0q0+lmq8oXgIeYDzzT2IxQ0gIij2/awNDXn3OjykDii26EgzzY09BhabUlxt3rwGNpAOxYkdac5udWWJgQ==", - "path": "system.io.ports/5.0.1", - "hashPath": "system.io.ports.5.0.1.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Management/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MF1CHaRcC+MLFdnDthv4/bKWBZnlnSpkGqa87pKukQefgEdwtb9zFW6zs0GjPp73qtpYYg4q6PEKbzJbxCpKfw==", - "path": "system.management/5.0.0", - "hashPath": "system.management.5.0.0.nupkg.sha512" - }, - "System.Memory/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", - "path": "system.memory/4.5.4", - "hashPath": "system.memory.4.5.4.nupkg.sha512" - }, - "System.Net.Http/4.3.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==", - "path": "system.net.http/4.3.4", - "hashPath": "system.net.http.4.3.4.nupkg.sha512" - }, - "System.Net.NetworkInformation/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zNVmWVry0pAu7lcrRBhwwU96WUdbsrGL3azyzsbXmVNptae1+Za+UgOe9Z6s8iaWhPn7/l4wQqhC56HZWq7tkg==", - "path": "system.net.networkinformation/4.3.0", - "hashPath": "system.net.networkinformation.4.3.0.nupkg.sha512" - }, - "System.Net.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", - "path": "system.net.primitives/4.3.0", - "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" - }, - "System.Net.Sockets/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", - "path": "system.net.sockets/4.3.0", - "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", - "path": "system.runtime.numerics/4.3.0", - "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" - }, - "System.Security.AccessControl/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", - "path": "system.security.accesscontrol/5.0.0", - "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", - "path": "system.security.cryptography.algorithms/4.3.0", - "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Cng/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", - "path": "system.security.cryptography.cng/4.3.0", - "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Csp/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", - "path": "system.security.cryptography.csp/4.3.0", - "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", - "path": "system.security.cryptography.encoding/4.3.0", - "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", - "path": "system.security.cryptography.openssl/4.3.0", - "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", - "path": "system.security.cryptography.primitives/4.3.0", - "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", - "path": "system.security.cryptography.x509certificates/4.3.0", - "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" - }, - "System.Security.Principal.Windows/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", - "path": "system.security.principal.windows/5.0.0", - "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.CodePages/4.6.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OCUK9C/U97+UheVwo+JE+IUcKySUE3Oe+BcHhVtQrvmKSUFLrUDO8B5zEPRL6mBGbczxZp4w1boSck6/fw4dog==", - "path": "system.text.encoding.codepages/4.6.0", - "hashPath": "system.text.encoding.codepages.4.6.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.Overlapped/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==", - "path": "system.threading.overlapped/4.3.0", - "hashPath": "system.threading.overlapped.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", - "path": "system.threading.tasks.extensions/4.5.4", - "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" - }, - "System.Threading.Thread/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==", - "path": "system.threading.thread/4.3.0", - "hashPath": "system.threading.thread.4.3.0.nupkg.sha512" - }, - "System.Threading.ThreadPool/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==", - "path": "system.threading.threadpool/4.3.0", - "hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512" - }, - "System.ValueTuple/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==", - "path": "system.valuetuple/4.5.0", - "hashPath": "system.valuetuple.4.5.0.nupkg.sha512" - }, - "UnitsNet/4.77.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-S4rErosYZ+M7N2f76mx3DEZL/biGaUr1SJKfT8lTj7swFpyElcTcJG93rb2jTxzTKrSBDMFpLlYjpbCPEK/gfw==", - "path": "unitsnet/4.77.0", - "hashPath": "unitsnet.4.77.0.nupkg.sha512" - }, - "Unosquare.PiGpio/0.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vooYgpR4p4Bq/2nIKZbgPv07BHiuPSphq7cmvbZi5u+7jOvgEDcpNJ25rDy50SXbxph/JwNuO0O/4vpKekFPlQ==", - "path": "unosquare.pigpio/0.3.1", - "hashPath": "unosquare.pigpio.0.3.1.nupkg.sha512" - }, - "Unosquare.Raspberry.Abstractions/0.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-8d3d8uMSTLMHpacgznS7G549TixwXUITw761ZlEYJz8uv1IaZjmFYvZXqWjLoiELNL8bZg+P1AodG9OkfI0Teg==", - "path": "unosquare.raspberry.abstractions/0.4.0", - "hashPath": "unosquare.raspberry.abstractions.0.4.0.nupkg.sha512" - }, - "Unosquare.Swan/2.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IZOj1twEf3FrTmvqlvk7CEgpcMAbAKrpCmftU+i0MMeeyqbkzoKHx7b2wAevKD1Odj4IouOQiiL8dfWtqbE2IQ==", - "path": "unosquare.swan/2.4.0", - "hashPath": "unosquare.swan.2.4.0.nupkg.sha512" - }, - "Unosquare.Swan.Lite/2.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-U5m/6LZnehrsEy9ReOS0GSwSEfvTTO/T/IjXS1klmm2yb685YZI2GjVdHYyvRvrneBwP7aZxmZXMJRaN8A07gw==", - "path": "unosquare.swan.lite/2.4.0", - "hashPath": "unosquare.swan.lite.2.4.0.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Test_GPIO.dll b/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Test_GPIO.dll deleted file mode 100644 index e5a73ef..0000000 Binary files a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Test_GPIO.dll and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Test_GPIO.exe b/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Test_GPIO.exe deleted file mode 100644 index 5a9dc9a..0000000 Binary files a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Test_GPIO.exe and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Test_GPIO.pdb b/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Test_GPIO.pdb deleted file mode 100644 index e5df679..0000000 Binary files a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Test_GPIO.pdb and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Test_GPIO.runtimeconfig.dev.json b/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Test_GPIO.runtimeconfig.dev.json deleted file mode 100644 index 95fb793..0000000 --- a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Test_GPIO.runtimeconfig.dev.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "runtimeOptions": { - "additionalProbingPaths": [ - "C:\\Users\\l.farina\\.dotnet\\store\\|arch|\\|tfm|", - "C:\\Users\\l.farina\\.nuget\\packages" - ] - } -} \ No newline at end of file diff --git a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Test_GPIO.runtimeconfig.json b/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Test_GPIO.runtimeconfig.json deleted file mode 100644 index a8e7e82..0000000 --- a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Test_GPIO.runtimeconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net5.0", - "framework": { - "name": "Microsoft.NETCore.App", - "version": "5.0.0" - } - } -} \ No newline at end of file diff --git a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/UnitsNet.dll b/Test_GPIO/Test_GPIO/bin/Debug/net5.0/UnitsNet.dll deleted file mode 100644 index 9223d55..0000000 Binary files a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/UnitsNet.dll and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Unosquare.PiGpio.dll b/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Unosquare.PiGpio.dll deleted file mode 100644 index 2e50995..0000000 Binary files a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Unosquare.PiGpio.dll and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Unosquare.Raspberry.Abstractions.dll b/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Unosquare.Raspberry.Abstractions.dll deleted file mode 100644 index e62e58d..0000000 Binary files a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/Unosquare.Raspberry.Abstractions.dll and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/ref/Test_GPIO.dll b/Test_GPIO/Test_GPIO/bin/Debug/net5.0/ref/Test_GPIO.dll deleted file mode 100644 index 93d23f8..0000000 Binary files a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/ref/Test_GPIO.dll and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/runtimes/linux-arm/native/libSystem.IO.Ports.Native.so b/Test_GPIO/Test_GPIO/bin/Debug/net5.0/runtimes/linux-arm/native/libSystem.IO.Ports.Native.so deleted file mode 100644 index a9fc006..0000000 Binary files a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/runtimes/linux-arm/native/libSystem.IO.Ports.Native.so and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so b/Test_GPIO/Test_GPIO/bin/Debug/net5.0/runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so deleted file mode 100644 index d055ab1..0000000 Binary files a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/runtimes/linux-x64/native/libSystem.IO.Ports.Native.so b/Test_GPIO/Test_GPIO/bin/Debug/net5.0/runtimes/linux-x64/native/libSystem.IO.Ports.Native.so deleted file mode 100644 index efcc266..0000000 Binary files a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/runtimes/linux-x64/native/libSystem.IO.Ports.Native.so and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/runtimes/linux/lib/netstandard2.0/System.IO.Ports.dll b/Test_GPIO/Test_GPIO/bin/Debug/net5.0/runtimes/linux/lib/netstandard2.0/System.IO.Ports.dll deleted file mode 100644 index 785087c..0000000 Binary files a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/runtimes/linux/lib/netstandard2.0/System.IO.Ports.dll and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib b/Test_GPIO/Test_GPIO/bin/Debug/net5.0/runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib deleted file mode 100644 index d3b1a59..0000000 Binary files a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/runtimes/osx/lib/netstandard2.0/System.IO.Ports.dll b/Test_GPIO/Test_GPIO/bin/Debug/net5.0/runtimes/osx/lib/netstandard2.0/System.IO.Ports.dll deleted file mode 100644 index a0b6a73..0000000 Binary files a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/runtimes/osx/lib/netstandard2.0/System.IO.Ports.dll and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll b/Test_GPIO/Test_GPIO/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll deleted file mode 100644 index 8b95164..0000000 Binary files a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/System.Management.dll b/Test_GPIO/Test_GPIO/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/System.Management.dll deleted file mode 100644 index a3a1f45..0000000 Binary files a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/System.Management.dll and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll b/Test_GPIO/Test_GPIO/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll deleted file mode 100644 index b5aa0c4..0000000 Binary files a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll b/Test_GPIO/Test_GPIO/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll deleted file mode 100644 index b80b430..0000000 Binary files a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.IO.Ports.dll b/Test_GPIO/Test_GPIO/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.IO.Ports.dll deleted file mode 100644 index a0aba6d..0000000 Binary files a/Test_GPIO/Test_GPIO/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.IO.Ports.dll and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/Test_GPIO/Test_GPIO/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs deleted file mode 100644 index 2f7e5ec..0000000 --- a/Test_GPIO/Test_GPIO/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/Test_GPIO/Test_GPIO/obj/Debug/net5.0/Test_GPIO.AssemblyInfo.cs b/Test_GPIO/Test_GPIO/obj/Debug/net5.0/Test_GPIO.AssemblyInfo.cs deleted file mode 100644 index 96c5617..0000000 --- a/Test_GPIO/Test_GPIO/obj/Debug/net5.0/Test_GPIO.AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// Ce code a été généré par un outil. -// Version du runtime :4.0.30319.42000 -// -// Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si -// le code est régénéré. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("Test_GPIO")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("Test_GPIO")] -[assembly: System.Reflection.AssemblyTitleAttribute("Test_GPIO")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Généré par la classe MSBuild WriteCodeFragment. - diff --git a/Test_GPIO/Test_GPIO/obj/Debug/net5.0/Test_GPIO.AssemblyInfoInputs.cache b/Test_GPIO/Test_GPIO/obj/Debug/net5.0/Test_GPIO.AssemblyInfoInputs.cache deleted file mode 100644 index 11b90a1..0000000 --- a/Test_GPIO/Test_GPIO/obj/Debug/net5.0/Test_GPIO.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -6c4ac033c60af7bb6343258ecd6b4310354d8cc3 diff --git a/Test_GPIO/Test_GPIO/obj/Debug/net5.0/Test_GPIO.GeneratedMSBuildEditorConfig.editorconfig b/Test_GPIO/Test_GPIO/obj/Debug/net5.0/Test_GPIO.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index d7e2983..0000000 --- a/Test_GPIO/Test_GPIO/obj/Debug/net5.0/Test_GPIO.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,8 +0,0 @@ -is_global = true -build_property.TargetFramework = net5.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.PublishSingleFile = -build_property.IncludeAllContentForSelfExtract = -build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows diff --git a/Test_GPIO/Test_GPIO/obj/Debug/net5.0/Test_GPIO.assets.cache b/Test_GPIO/Test_GPIO/obj/Debug/net5.0/Test_GPIO.assets.cache deleted file mode 100644 index d7259fe..0000000 Binary files a/Test_GPIO/Test_GPIO/obj/Debug/net5.0/Test_GPIO.assets.cache and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/obj/Debug/net5.0/Test_GPIO.csproj.AssemblyReference.cache b/Test_GPIO/Test_GPIO/obj/Debug/net5.0/Test_GPIO.csproj.AssemblyReference.cache deleted file mode 100644 index f5e894a..0000000 Binary files a/Test_GPIO/Test_GPIO/obj/Debug/net5.0/Test_GPIO.csproj.AssemblyReference.cache and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/obj/Debug/net5.0/Test_GPIO.csproj.CopyComplete b/Test_GPIO/Test_GPIO/obj/Debug/net5.0/Test_GPIO.csproj.CopyComplete deleted file mode 100644 index e69de29..0000000 diff --git a/Test_GPIO/Test_GPIO/obj/Debug/net5.0/Test_GPIO.csproj.CoreCompileInputs.cache b/Test_GPIO/Test_GPIO/obj/Debug/net5.0/Test_GPIO.csproj.CoreCompileInputs.cache deleted file mode 100644 index 61b9c7d..0000000 --- a/Test_GPIO/Test_GPIO/obj/Debug/net5.0/Test_GPIO.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -9d0554aee7d590734b25522fce768cece2ef98d2 diff --git a/Test_GPIO/Test_GPIO/obj/Debug/net5.0/Test_GPIO.csproj.FileListAbsolute.txt b/Test_GPIO/Test_GPIO/obj/Debug/net5.0/Test_GPIO.csproj.FileListAbsolute.txt deleted file mode 100644 index 48ccf4e..0000000 --- a/Test_GPIO/Test_GPIO/obj/Debug/net5.0/Test_GPIO.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,42 +0,0 @@ -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\obj\Debug\net5.0\Test_GPIO.csproj.AssemblyReference.cache -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\obj\Debug\net5.0\Test_GPIO.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\obj\Debug\net5.0\Test_GPIO.AssemblyInfoInputs.cache -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\obj\Debug\net5.0\Test_GPIO.AssemblyInfo.cs -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\obj\Debug\net5.0\Test_GPIO.csproj.CoreCompileInputs.cache -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\Test_GPIO.exe -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\Test_GPIO.deps.json -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\Test_GPIO.runtimeconfig.json -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\Test_GPIO.runtimeconfig.dev.json -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\Test_GPIO.dll -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\ref\Test_GPIO.dll -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\Test_GPIO.pdb -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\Iot.Device.Bindings.dll -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\Microsoft.Extensions.Logging.Abstractions.dll -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\Microsoft.Win32.SystemEvents.dll -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\SixLabors.ImageSharp.dll -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\System.CodeDom.dll -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\System.Device.Gpio.dll -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\System.Drawing.Common.dll -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\System.IO.Ports.dll -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\System.Management.dll -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\UnitsNet.dll -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\Unosquare.PiGpio.dll -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\Unosquare.Raspberry.Abstractions.dll -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\Swan.dll -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\Swan.Lite.dll -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\runtimes\win\lib\netcoreapp3.0\Microsoft.Win32.SystemEvents.dll -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\runtimes\linux-arm\native\libSystem.IO.Ports.Native.so -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\runtimes\linux-arm64\native\libSystem.IO.Ports.Native.so -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\runtimes\linux-x64\native\libSystem.IO.Ports.Native.so -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\runtimes\osx-x64\native\libSystem.IO.Ports.Native.dylib -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\runtimes\unix\lib\netcoreapp3.0\System.Drawing.Common.dll -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\runtimes\win\lib\netcoreapp3.0\System.Drawing.Common.dll -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\runtimes\linux\lib\netstandard2.0\System.IO.Ports.dll -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\runtimes\osx\lib\netstandard2.0\System.IO.Ports.dll -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\runtimes\win\lib\netstandard2.0\System.IO.Ports.dll -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\bin\Debug\net5.0\runtimes\win\lib\netcoreapp2.0\System.Management.dll -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\obj\Debug\net5.0\Test_GPIO.csproj.CopyComplete -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\obj\Debug\net5.0\Test_GPIO.dll -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\obj\Debug\net5.0\ref\Test_GPIO.dll -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\obj\Debug\net5.0\Test_GPIO.pdb -C:\Users\l.farina\Desktop\UCRM_stage\Test_GPIO\Test_GPIO\obj\Debug\net5.0\Test_GPIO.genruntimeconfig.cache diff --git a/Test_GPIO/Test_GPIO/obj/Debug/net5.0/Test_GPIO.dll b/Test_GPIO/Test_GPIO/obj/Debug/net5.0/Test_GPIO.dll deleted file mode 100644 index e5a73ef..0000000 Binary files a/Test_GPIO/Test_GPIO/obj/Debug/net5.0/Test_GPIO.dll and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/obj/Debug/net5.0/Test_GPIO.genruntimeconfig.cache b/Test_GPIO/Test_GPIO/obj/Debug/net5.0/Test_GPIO.genruntimeconfig.cache deleted file mode 100644 index a7c9435..0000000 --- a/Test_GPIO/Test_GPIO/obj/Debug/net5.0/Test_GPIO.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -c18e1789e8856ed3eb76095c84cf14f361a7f73e diff --git a/Test_GPIO/Test_GPIO/obj/Debug/net5.0/Test_GPIO.pdb b/Test_GPIO/Test_GPIO/obj/Debug/net5.0/Test_GPIO.pdb deleted file mode 100644 index e5df679..0000000 Binary files a/Test_GPIO/Test_GPIO/obj/Debug/net5.0/Test_GPIO.pdb and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/obj/Debug/net5.0/apphost.exe b/Test_GPIO/Test_GPIO/obj/Debug/net5.0/apphost.exe deleted file mode 100644 index 5a9dc9a..0000000 Binary files a/Test_GPIO/Test_GPIO/obj/Debug/net5.0/apphost.exe and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/obj/Debug/net5.0/ref/Test_GPIO.dll b/Test_GPIO/Test_GPIO/obj/Debug/net5.0/ref/Test_GPIO.dll deleted file mode 100644 index 93d23f8..0000000 Binary files a/Test_GPIO/Test_GPIO/obj/Debug/net5.0/ref/Test_GPIO.dll and /dev/null differ diff --git a/Test_GPIO/Test_GPIO/obj/Test_GPIO.csproj.nuget.dgspec.json b/Test_GPIO/Test_GPIO/obj/Test_GPIO.csproj.nuget.dgspec.json deleted file mode 100644 index f43c5d4..0000000 --- a/Test_GPIO/Test_GPIO/obj/Test_GPIO.csproj.nuget.dgspec.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "format": 1, - "restore": { - "C:\\Users\\l.farina\\Desktop\\UCRM_stage\\Test_GPIO\\Test_GPIO\\Test_GPIO.csproj": {} - }, - "projects": { - "C:\\Users\\l.farina\\Desktop\\UCRM_stage\\Test_GPIO\\Test_GPIO\\Test_GPIO.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\l.farina\\Desktop\\UCRM_stage\\Test_GPIO\\Test_GPIO\\Test_GPIO.csproj", - "projectName": "Test_GPIO", - "projectPath": "C:\\Users\\l.farina\\Desktop\\UCRM_stage\\Test_GPIO\\Test_GPIO\\Test_GPIO.csproj", - "packagesPath": "C:\\Users\\l.farina\\.nuget\\packages\\", - "outputPath": "C:\\Users\\l.farina\\Desktop\\UCRM_stage\\Test_GPIO\\Test_GPIO\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\l.farina\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net5.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "dependencies": { - "Iot.Device.Bindings": { - "target": "Package", - "version": "[1.5.0, )" - }, - "System.Device.Gpio": { - "target": "Package", - "version": "[1.5.0, )" - }, - "Unosquare.PiGpio": { - "target": "Package", - "version": "[0.3.1, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/Test_GPIO/Test_GPIO/obj/Test_GPIO.csproj.nuget.g.props b/Test_GPIO/Test_GPIO/obj/Test_GPIO.csproj.nuget.g.props deleted file mode 100644 index fa4e6d9..0000000 --- a/Test_GPIO/Test_GPIO/obj/Test_GPIO.csproj.nuget.g.props +++ /dev/null @@ -1,18 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\l.farina\.nuget\packages\ - PackageReference - 5.10.0 - - - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - \ No newline at end of file diff --git a/Test_GPIO/Test_GPIO/obj/Test_GPIO.csproj.nuget.g.targets b/Test_GPIO/Test_GPIO/obj/Test_GPIO.csproj.nuget.g.targets deleted file mode 100644 index b1dc727..0000000 --- a/Test_GPIO/Test_GPIO/obj/Test_GPIO.csproj.nuget.g.targets +++ /dev/null @@ -1,9 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - - - - \ No newline at end of file diff --git a/Test_GPIO/Test_GPIO/obj/project.assets.json b/Test_GPIO/Test_GPIO/obj/project.assets.json deleted file mode 100644 index 20ceae9..0000000 --- a/Test_GPIO/Test_GPIO/obj/project.assets.json +++ /dev/null @@ -1,4322 +0,0 @@ -{ - "version": 3, - "targets": { - "net5.0": { - "Iot.Device.Bindings/1.5.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "5.0.0", - "SixLabors.ImageSharp": "1.0.2", - "System.Device.Gpio": "1.5.0", - "System.Drawing.Common": "5.0.2", - "System.IO.Ports": "5.0.1", - "System.Management": "5.0.0", - "UnitsNet": "4.77.0" - }, - "compile": { - "lib/net5.0/Iot.Device.Bindings.dll": {} - }, - "runtime": { - "lib/net5.0/Iot.Device.Bindings.dll": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} - } - }, - "Microsoft.NETCore.Platforms/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - } - }, - "Microsoft.Win32.Registry/5.0.0": { - "type": "package", - "dependencies": { - "System.Security.AccessControl": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - }, - "compile": { - "ref/netstandard2.0/Microsoft.Win32.Registry.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "Microsoft.Win32.SystemEvents/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0" - }, - "compile": { - "ref/netstandard2.0/_._": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "type": "package", - "runtimeTargets": { - "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "debian.8-x64" - } - } - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "type": "package", - "runtimeTargets": { - "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "fedora.23-x64" - } - } - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "type": "package", - "runtimeTargets": { - "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "fedora.24-x64" - } - } - }, - "runtime.linux-arm.runtime.native.System.IO.Ports/5.0.0": { - "type": "package", - "runtimeTargets": { - "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so": { - "assetType": "native", - "rid": "linux-arm" - } - } - }, - "runtime.linux-arm64.runtime.native.System.IO.Ports/5.0.0": { - "type": "package", - "runtimeTargets": { - "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so": { - "assetType": "native", - "rid": "linux-arm64" - } - } - }, - "runtime.linux-x64.runtime.native.System.IO.Ports/5.0.0": { - "type": "package", - "runtimeTargets": { - "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so": { - "assetType": "native", - "rid": "linux-x64" - } - } - }, - "runtime.native.System/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.IO.Ports/5.0.1": { - "type": "package", - "dependencies": { - "runtime.linux-arm.runtime.native.System.IO.Ports": "5.0.0", - "runtime.linux-arm64.runtime.native.System.IO.Ports": "5.0.0", - "runtime.linux-x64.runtime.native.System.IO.Ports": "5.0.0", - "runtime.osx-x64.runtime.native.System.IO.Ports": "5.0.0" - } - }, - "runtime.native.System.Net.Http/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "dependencies": { - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "type": "package", - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "type": "package", - "runtimeTargets": { - "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "opensuse.13.2-x64" - } - } - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "type": "package", - "runtimeTargets": { - "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "opensuse.42.1-x64" - } - } - }, - "runtime.osx-x64.runtime.native.System.IO.Ports/5.0.0": { - "type": "package", - "runtimeTargets": { - "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib": { - "assetType": "native", - "rid": "osx-x64" - } - } - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { - "assetType": "native", - "rid": "osx.10.10-x64" - } - } - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "type": "package", - "runtimeTargets": { - "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { - "assetType": "native", - "rid": "osx.10.10-x64" - } - } - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "type": "package", - "runtimeTargets": { - "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "rhel.7-x64" - } - } - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "type": "package", - "runtimeTargets": { - "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "ubuntu.14.04-x64" - } - } - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "type": "package", - "runtimeTargets": { - "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "ubuntu.16.04-x64" - } - } - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "type": "package", - "runtimeTargets": { - "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "ubuntu.16.10-x64" - } - } - }, - "SixLabors.ImageSharp/1.0.2": { - "type": "package", - "compile": { - "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {} - } - }, - "System.CodeDom/5.0.0": { - "type": "package", - "compile": { - "ref/netstandard2.0/System.CodeDom.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.CodeDom.dll": {} - } - }, - "System.Collections/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - } - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Concurrent.dll": {} - } - }, - "System.Device.Gpio/1.5.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Registry": "5.0.0", - "System.Memory": "4.5.4", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "compile": { - "lib/net5.0/System.Device.Gpio.dll": {} - }, - "runtime": { - "lib/net5.0/System.Device.Gpio.dll": {} - }, - "build": { - "buildTransitive/net5.0/System.Device.Gpio.targets": {} - } - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - } - }, - "System.Diagnostics.DiagnosticSource/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "lib/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/_._": {} - } - }, - "System.Drawing.Common/5.0.2": { - "type": "package", - "dependencies": { - "Microsoft.Win32.SystemEvents": "5.0.0" - }, - "compile": { - "ref/netcoreapp3.0/System.Drawing.Common.dll": {} - }, - "runtime": { - "lib/netcoreapp3.0/System.Drawing.Common.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Globalization/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - } - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - } - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.IO/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.IO.dll": {} - } - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.Ports/5.0.1": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Registry": "5.0.0", - "runtime.native.System.IO.Ports": "5.0.1" - }, - "compile": { - "ref/netstandard2.0/System.IO.Ports.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.IO.Ports.dll": {} - }, - "runtimeTargets": { - "runtimes/linux/lib/netstandard2.0/System.IO.Ports.dll": { - "assetType": "runtime", - "rid": "linux" - }, - "runtimes/osx/lib/netstandard2.0/System.IO.Ports.dll": { - "assetType": "runtime", - "rid": "osx" - }, - "runtimes/win/lib/netstandard2.0/System.IO.Ports.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Linq/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/_._": {} - }, - "runtime": { - "lib/netstandard1.6/System.Linq.dll": {} - } - }, - "System.Management/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.Win32.Registry": "5.0.0", - "System.CodeDom": "5.0.0" - }, - "compile": { - "ref/netstandard2.0/System.Management.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Management.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Management.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Memory/4.5.4": { - "type": "package", - "compile": { - "ref/netcoreapp2.1/_._": {} - }, - "runtime": { - "lib/netcoreapp2.1/_._": {} - } - }, - "System.Net.Http/4.3.4": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.1", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" - }, - "compile": { - "ref/netstandard1.3/System.Net.Http.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Net.NetworkInformation/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Net.Sockets": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Principal.Windows": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Overlapped": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Thread": "4.3.0", - "System.Threading.ThreadPool": "4.3.0", - "runtime.native.System": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.NetworkInformation.dll": {} - }, - "runtimeTargets": { - "runtimes/linux/lib/netstandard1.3/System.Net.NetworkInformation.dll": { - "assetType": "runtime", - "rid": "linux" - }, - "runtimes/osx/lib/netstandard1.3/System.Net.NetworkInformation.dll": { - "assetType": "runtime", - "rid": "osx" - }, - "runtimes/win/lib/netstandard1.3/System.Net.NetworkInformation.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Net.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Primitives.dll": {} - } - }, - "System.Net.Sockets/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - } - }, - "System.Reflection/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/_._": {} - } - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - } - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - } - }, - "System.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/_._": {} - } - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - }, - "compile": { - "ref/netcoreapp1.1/_._": {} - } - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Numerics.dll": {} - } - }, - "System.Security.AccessControl/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - }, - "compile": { - "ref/netstandard2.0/System.Security.AccessControl.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Security.AccessControl.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.Apple": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} - }, - "runtimeTargets": { - "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { - "assetType": "runtime", - "rid": "osx" - }, - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Cng/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Csp/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/_._": {} - }, - "runtime": { - "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { - "assetType": "runtime", - "rid": "unix" - } - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "4.3.0", - "System.Security.Cryptography.Csp": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Principal.Windows/5.0.0": { - "type": "package", - "compile": { - "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.CodePages/4.6.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "3.0.0" - }, - "compile": { - "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Threading/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "compile": { - "ref/netcoreapp2.1/_._": {} - }, - "runtime": { - "lib/netcoreapp2.1/_._": {} - } - }, - "System.Threading.Thread/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Threading.Thread.dll": {} - } - }, - "System.Threading.ThreadPool/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} - } - }, - "System.ValueTuple/4.5.0": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "UnitsNet/4.77.0": { - "type": "package", - "dependencies": { - "System.ValueTuple": "4.5.0" - }, - "compile": { - "lib/netstandard2.0/UnitsNet.dll": {} - }, - "runtime": { - "lib/netstandard2.0/UnitsNet.dll": {} - } - }, - "Unosquare.PiGpio/0.3.1": { - "type": "package", - "dependencies": { - "Unosquare.Raspberry.Abstractions": "0.4.0", - "Unosquare.Swan": "2.4.0" - }, - "compile": { - "lib/netstandard2.0/Unosquare.PiGpio.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Unosquare.PiGpio.dll": {} - } - }, - "Unosquare.Raspberry.Abstractions/0.4.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Unosquare.Raspberry.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Unosquare.Raspberry.Abstractions.dll": {} - } - }, - "Unosquare.Swan/2.4.0": { - "type": "package", - "dependencies": { - "System.Net.Http": "4.3.4", - "System.Net.NetworkInformation": "4.3.0", - "Unosquare.Swan.Lite": "2.4.0" - }, - "compile": { - "lib/netstandard2.0/Swan.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Swan.dll": {} - } - }, - "Unosquare.Swan.Lite/2.4.0": { - "type": "package", - "dependencies": { - "System.Text.Encoding.CodePages": "4.6.0" - }, - "compile": { - "lib/netstandard2.0/Swan.Lite.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Swan.Lite.dll": {} - } - } - } - }, - "libraries": { - "Iot.Device.Bindings/1.5.0": { - "sha512": "CNCOpPSatE0X7XfZ7mnGv1SKbZY878ny5lUCVihGobp7bQMIrsZRszH1Otw20dDFQ5WL3ZAkuqn9d3f/hzp3dA==", - "type": "package", - "path": "iot.device.bindings/1.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.TXT", - "iot.device.bindings.1.5.0.nupkg.sha512", - "iot.device.bindings.nuspec", - "lib/net5.0/Iot.Device.Bindings.dll", - "lib/net5.0/Iot.Device.Bindings.xml", - "lib/netcoreapp2.1/Iot.Device.Bindings.dll", - "lib/netcoreapp2.1/Iot.Device.Bindings.xml", - "lib/netstandard2.0/Iot.Device.Bindings.dll", - "lib/netstandard2.0/Iot.Device.Bindings.xml" - ] - }, - "Microsoft.Extensions.Logging.Abstractions/5.0.0": { - "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==", - "type": "package", - "path": "microsoft.extensions.logging.abstractions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", - "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", - "microsoft.extensions.logging.abstractions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.NETCore.Platforms/5.0.0": { - "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", - "type": "package", - "path": "microsoft.netcore.platforms/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netstandard1.0/_._", - "microsoft.netcore.platforms.5.0.0.nupkg.sha512", - "microsoft.netcore.platforms.nuspec", - "runtime.json", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.NETCore.Targets/1.1.0": { - "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "type": "package", - "path": "microsoft.netcore.targets/1.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "microsoft.netcore.targets.1.1.0.nupkg.sha512", - "microsoft.netcore.targets.nuspec", - "runtime.json" - ] - }, - "Microsoft.Win32.Primitives/4.3.0": { - "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", - "type": "package", - "path": "microsoft.win32.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/Microsoft.Win32.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "microsoft.win32.primitives.4.3.0.nupkg.sha512", - "microsoft.win32.primitives.nuspec", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/Microsoft.Win32.Primitives.dll", - "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", - "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "Microsoft.Win32.Registry/5.0.0": { - "sha512": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", - "type": "package", - "path": "microsoft.win32.registry/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/Microsoft.Win32.Registry.dll", - "lib/net461/Microsoft.Win32.Registry.dll", - "lib/net461/Microsoft.Win32.Registry.xml", - "lib/netstandard1.3/Microsoft.Win32.Registry.dll", - "lib/netstandard2.0/Microsoft.Win32.Registry.dll", - "lib/netstandard2.0/Microsoft.Win32.Registry.xml", - "microsoft.win32.registry.5.0.0.nupkg.sha512", - "microsoft.win32.registry.nuspec", - "ref/net46/Microsoft.Win32.Registry.dll", - "ref/net461/Microsoft.Win32.Registry.dll", - "ref/net461/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/Microsoft.Win32.Registry.dll", - "ref/netstandard1.3/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", - "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", - "ref/netstandard2.0/Microsoft.Win32.Registry.dll", - "ref/netstandard2.0/Microsoft.Win32.Registry.xml", - "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", - "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Win32.SystemEvents/5.0.0": { - "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==", - "type": "package", - "path": "microsoft.win32.systemevents/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Win32.SystemEvents.dll", - "lib/net461/Microsoft.Win32.SystemEvents.xml", - "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", - "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", - "microsoft.win32.systemevents.5.0.0.nupkg.sha512", - "microsoft.win32.systemevents.nuspec", - "ref/net461/Microsoft.Win32.SystemEvents.dll", - "ref/net461/Microsoft.Win32.SystemEvents.xml", - "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll", - "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml", - "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll", - "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml", - "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll", - "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "sha512": "7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==", - "type": "package", - "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "sha512": "0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==", - "type": "package", - "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "sha512": "G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==", - "type": "package", - "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.linux-arm.runtime.native.System.IO.Ports/5.0.0": { - "sha512": "mHgdZplUo48ThUaZB3S3M0alxAcHU7R3GLxNbsBzwShKTBn6vHO31YP4PQT+nbOkc/ErieFP2cSkBA/pbH3Hsw==", - "type": "package", - "path": "runtime.linux-arm.runtime.native.system.io.ports/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "runtime.linux-arm.runtime.native.system.io.ports.5.0.0.nupkg.sha512", - "runtime.linux-arm.runtime.native.system.io.ports.nuspec", - "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "runtime.linux-arm64.runtime.native.System.IO.Ports/5.0.0": { - "sha512": "2vSH+NumQa1hwccFfn+ISDQnkPcGviVd6is+TuM7HwcPkbE2WY64q1E6nAulm7E+62Loxx3b9bS2sSazjM6bfw==", - "type": "package", - "path": "runtime.linux-arm64.runtime.native.system.io.ports/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "runtime.linux-arm64.runtime.native.system.io.ports.5.0.0.nupkg.sha512", - "runtime.linux-arm64.runtime.native.system.io.ports.nuspec", - "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "runtime.linux-x64.runtime.native.System.IO.Ports/5.0.0": { - "sha512": "aagetZzzxDXxiGKrdyB1gxIHPRzeunUYTbV9aqprVe+iKVgi474I8fTVaxiZjwxDMeB3bWnOmpa4hgsiFXQ9GA==", - "type": "package", - "path": "runtime.linux-x64.runtime.native.system.io.ports/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "runtime.linux-x64.runtime.native.system.io.ports.5.0.0.nupkg.sha512", - "runtime.linux-x64.runtime.native.system.io.ports.nuspec", - "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "runtime.native.System/4.3.0": { - "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "type": "package", - "path": "runtime.native.system/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.4.3.0.nupkg.sha512", - "runtime.native.system.nuspec" - ] - }, - "runtime.native.System.IO.Ports/5.0.1": { - "sha512": "ihV5cOJiQ1+IyxFtCZuQfW8C7KhUUTaGRCYt9y7g14Xt+LcqsMJ8Pb/ANr7OmTPCa7SKcvwKQVYcN8xKQB55pA==", - "type": "package", - "path": "runtime.native.system.io.ports/5.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "runtime.native.system.io.ports.5.0.1.nupkg.sha512", - "runtime.native.system.io.ports.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "runtime.native.System.Net.Http/4.3.0": { - "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", - "type": "package", - "path": "runtime.native.system.net.http/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.net.http.4.3.0.nupkg.sha512", - "runtime.native.system.net.http.nuspec" - ] - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", - "type": "package", - "path": "runtime.native.system.security.cryptography.apple/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "runtime.native.system.security.cryptography.apple.nuspec" - ] - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "sha512": "QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==", - "type": "package", - "path": "runtime.native.system.security.cryptography.openssl/4.3.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "runtime.native.system.security.cryptography.openssl.nuspec" - ] - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "sha512": "I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==", - "type": "package", - "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "sha512": "1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==", - "type": "package", - "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.osx-x64.runtime.native.System.IO.Ports/5.0.0": { - "sha512": "KOWNOPDzXNZkKHwfCs9gBzJS1JeOli7fBmI93l92FcTb/42Fc0ojKYL9gUZANYtM7x5nRPPzUJtW29klkt+2Zw==", - "type": "package", - "path": "runtime.osx-x64.runtime.native.system.io.ports/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "runtime.osx-x64.runtime.native.system.io.ports.5.0.0.nupkg.sha512", - "runtime.osx-x64.runtime.native.system.io.ports.nuspec", - "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", - "type": "package", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", - "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" - ] - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "sha512": "6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==", - "type": "package", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" - ] - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "sha512": "vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==", - "type": "package", - "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "sha512": "7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==", - "type": "package", - "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "sha512": "xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==", - "type": "package", - "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { - "sha512": "leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==", - "type": "package", - "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "SixLabors.ImageSharp/1.0.2": { - "sha512": "iZJ37Iss3pUkFl961x1aka85QuvgY9oNZabHijzVnHs4QTz6EMNx3zjJDyvK/0+Ryj6JPv/PC7GVIJXLHtu2nQ==", - "type": "package", - "path": "sixlabors.imagesharp/1.0.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net472/SixLabors.ImageSharp.dll", - "lib/net472/SixLabors.ImageSharp.xml", - "lib/netcoreapp2.1/SixLabors.ImageSharp.dll", - "lib/netcoreapp2.1/SixLabors.ImageSharp.xml", - "lib/netcoreapp3.1/SixLabors.ImageSharp.dll", - "lib/netcoreapp3.1/SixLabors.ImageSharp.xml", - "lib/netstandard1.3/SixLabors.ImageSharp.dll", - "lib/netstandard1.3/SixLabors.ImageSharp.xml", - "lib/netstandard2.0/SixLabors.ImageSharp.dll", - "lib/netstandard2.0/SixLabors.ImageSharp.xml", - "lib/netstandard2.1/SixLabors.ImageSharp.dll", - "lib/netstandard2.1/SixLabors.ImageSharp.xml", - "sixlabors.imagesharp.1.0.2.nupkg.sha512", - "sixlabors.imagesharp.128.png", - "sixlabors.imagesharp.nuspec" - ] - }, - "System.CodeDom/5.0.0": { - "sha512": "JPJArwA1kdj8qDAkY2XGjSWoYnqiM7q/3yRNkt6n28Mnn95MuEGkZXUbPBf7qc3IjwrGY5ttQon7yqHZyQJmOQ==", - "type": "package", - "path": "system.codedom/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.CodeDom.dll", - "lib/net461/System.CodeDom.xml", - "lib/netstandard2.0/System.CodeDom.dll", - "lib/netstandard2.0/System.CodeDom.xml", - "ref/net461/System.CodeDom.dll", - "ref/net461/System.CodeDom.xml", - "ref/netstandard2.0/System.CodeDom.dll", - "ref/netstandard2.0/System.CodeDom.xml", - "system.codedom.5.0.0.nupkg.sha512", - "system.codedom.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Collections/4.3.0": { - "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "type": "package", - "path": "system.collections/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Collections.dll", - "ref/netcore50/System.Collections.xml", - "ref/netcore50/de/System.Collections.xml", - "ref/netcore50/es/System.Collections.xml", - "ref/netcore50/fr/System.Collections.xml", - "ref/netcore50/it/System.Collections.xml", - "ref/netcore50/ja/System.Collections.xml", - "ref/netcore50/ko/System.Collections.xml", - "ref/netcore50/ru/System.Collections.xml", - "ref/netcore50/zh-hans/System.Collections.xml", - "ref/netcore50/zh-hant/System.Collections.xml", - "ref/netstandard1.0/System.Collections.dll", - "ref/netstandard1.0/System.Collections.xml", - "ref/netstandard1.0/de/System.Collections.xml", - "ref/netstandard1.0/es/System.Collections.xml", - "ref/netstandard1.0/fr/System.Collections.xml", - "ref/netstandard1.0/it/System.Collections.xml", - "ref/netstandard1.0/ja/System.Collections.xml", - "ref/netstandard1.0/ko/System.Collections.xml", - "ref/netstandard1.0/ru/System.Collections.xml", - "ref/netstandard1.0/zh-hans/System.Collections.xml", - "ref/netstandard1.0/zh-hant/System.Collections.xml", - "ref/netstandard1.3/System.Collections.dll", - "ref/netstandard1.3/System.Collections.xml", - "ref/netstandard1.3/de/System.Collections.xml", - "ref/netstandard1.3/es/System.Collections.xml", - "ref/netstandard1.3/fr/System.Collections.xml", - "ref/netstandard1.3/it/System.Collections.xml", - "ref/netstandard1.3/ja/System.Collections.xml", - "ref/netstandard1.3/ko/System.Collections.xml", - "ref/netstandard1.3/ru/System.Collections.xml", - "ref/netstandard1.3/zh-hans/System.Collections.xml", - "ref/netstandard1.3/zh-hant/System.Collections.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.collections.4.3.0.nupkg.sha512", - "system.collections.nuspec" - ] - }, - "System.Collections.Concurrent/4.3.0": { - "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", - "type": "package", - "path": "system.collections.concurrent/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Collections.Concurrent.dll", - "lib/netstandard1.3/System.Collections.Concurrent.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Collections.Concurrent.dll", - "ref/netcore50/System.Collections.Concurrent.xml", - "ref/netcore50/de/System.Collections.Concurrent.xml", - "ref/netcore50/es/System.Collections.Concurrent.xml", - "ref/netcore50/fr/System.Collections.Concurrent.xml", - "ref/netcore50/it/System.Collections.Concurrent.xml", - "ref/netcore50/ja/System.Collections.Concurrent.xml", - "ref/netcore50/ko/System.Collections.Concurrent.xml", - "ref/netcore50/ru/System.Collections.Concurrent.xml", - "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", - "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", - "ref/netstandard1.1/System.Collections.Concurrent.dll", - "ref/netstandard1.1/System.Collections.Concurrent.xml", - "ref/netstandard1.1/de/System.Collections.Concurrent.xml", - "ref/netstandard1.1/es/System.Collections.Concurrent.xml", - "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", - "ref/netstandard1.1/it/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", - "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", - "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", - "ref/netstandard1.3/System.Collections.Concurrent.dll", - "ref/netstandard1.3/System.Collections.Concurrent.xml", - "ref/netstandard1.3/de/System.Collections.Concurrent.xml", - "ref/netstandard1.3/es/System.Collections.Concurrent.xml", - "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", - "ref/netstandard1.3/it/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", - "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", - "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.collections.concurrent.4.3.0.nupkg.sha512", - "system.collections.concurrent.nuspec" - ] - }, - "System.Device.Gpio/1.5.0": { - "sha512": "OOxVX5FBTSrV8SZguyAVV+zVx0cmhfPL+6bvgVsKJXky8rUhpQKQuP8+tpatcHuQT4fCqAE2/vdN9Hy3cC68vQ==", - "type": "package", - "path": "system.device.gpio/1.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/net5.0/System.Device.Gpio.targets", - "lib/net5.0-windows10.0.17763/System.Device.Gpio.dll", - "lib/net5.0-windows10.0.17763/System.Device.Gpio.xml", - "lib/net5.0/System.Device.Gpio.dll", - "lib/net5.0/System.Device.Gpio.xml", - "lib/netstandard2.0/System.Device.Gpio.dll", - "lib/netstandard2.0/System.Device.Gpio.xml", - "system.device.gpio.1.5.0.nupkg.sha512", - "system.device.gpio.nuspec" - ] - }, - "System.Diagnostics.Debug/4.3.0": { - "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "type": "package", - "path": "system.diagnostics.debug/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Diagnostics.Debug.dll", - "ref/netcore50/System.Diagnostics.Debug.xml", - "ref/netcore50/de/System.Diagnostics.Debug.xml", - "ref/netcore50/es/System.Diagnostics.Debug.xml", - "ref/netcore50/fr/System.Diagnostics.Debug.xml", - "ref/netcore50/it/System.Diagnostics.Debug.xml", - "ref/netcore50/ja/System.Diagnostics.Debug.xml", - "ref/netcore50/ko/System.Diagnostics.Debug.xml", - "ref/netcore50/ru/System.Diagnostics.Debug.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/System.Diagnostics.Debug.dll", - "ref/netstandard1.0/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/System.Diagnostics.Debug.dll", - "ref/netstandard1.3/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.diagnostics.debug.4.3.0.nupkg.sha512", - "system.diagnostics.debug.nuspec" - ] - }, - "System.Diagnostics.DiagnosticSource/4.3.0": { - "sha512": "tD6kosZnTAGdrEa0tZSuFyunMbt/5KYDnHdndJYGqZoNy00XVXyACd5d6KnE1YgYv3ne2CjtAfNXo/fwEhnKUA==", - "type": "package", - "path": "system.diagnostics.diagnosticsource/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net46/System.Diagnostics.DiagnosticSource.dll", - "lib/net46/System.Diagnostics.DiagnosticSource.xml", - "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", - "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", - "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", - "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", - "system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512", - "system.diagnostics.diagnosticsource.nuspec" - ] - }, - "System.Diagnostics.Tracing/4.3.0": { - "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", - "type": "package", - "path": "system.diagnostics.tracing/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Diagnostics.Tracing.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Diagnostics.Tracing.dll", - "ref/netcore50/System.Diagnostics.Tracing.dll", - "ref/netcore50/System.Diagnostics.Tracing.xml", - "ref/netcore50/de/System.Diagnostics.Tracing.xml", - "ref/netcore50/es/System.Diagnostics.Tracing.xml", - "ref/netcore50/fr/System.Diagnostics.Tracing.xml", - "ref/netcore50/it/System.Diagnostics.Tracing.xml", - "ref/netcore50/ja/System.Diagnostics.Tracing.xml", - "ref/netcore50/ko/System.Diagnostics.Tracing.xml", - "ref/netcore50/ru/System.Diagnostics.Tracing.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/System.Diagnostics.Tracing.dll", - "ref/netstandard1.1/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/System.Diagnostics.Tracing.dll", - "ref/netstandard1.2/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/System.Diagnostics.Tracing.dll", - "ref/netstandard1.3/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/System.Diagnostics.Tracing.dll", - "ref/netstandard1.5/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.diagnostics.tracing.4.3.0.nupkg.sha512", - "system.diagnostics.tracing.nuspec" - ] - }, - "System.Drawing.Common/5.0.2": { - "sha512": "rvr/M1WPf24ljpvvrVd74+NdjRUJu1bBkspkZcnzSZnmAUQWSvanlQ0k/hVHk+cHufZbZfu7vOh/vYc0q5Uu/A==", - "type": "package", - "path": "system.drawing.common/5.0.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net461/System.Drawing.Common.dll", - "lib/netcoreapp3.0/System.Drawing.Common.dll", - "lib/netcoreapp3.0/System.Drawing.Common.xml", - "lib/netstandard2.0/System.Drawing.Common.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net461/System.Drawing.Common.dll", - "ref/netcoreapp3.0/System.Drawing.Common.dll", - "ref/netcoreapp3.0/System.Drawing.Common.xml", - "ref/netstandard2.0/System.Drawing.Common.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll", - "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll", - "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml", - "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll", - "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll", - "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml", - "system.drawing.common.5.0.2.nupkg.sha512", - "system.drawing.common.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Globalization/4.3.0": { - "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "type": "package", - "path": "system.globalization/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Globalization.dll", - "ref/netcore50/System.Globalization.xml", - "ref/netcore50/de/System.Globalization.xml", - "ref/netcore50/es/System.Globalization.xml", - "ref/netcore50/fr/System.Globalization.xml", - "ref/netcore50/it/System.Globalization.xml", - "ref/netcore50/ja/System.Globalization.xml", - "ref/netcore50/ko/System.Globalization.xml", - "ref/netcore50/ru/System.Globalization.xml", - "ref/netcore50/zh-hans/System.Globalization.xml", - "ref/netcore50/zh-hant/System.Globalization.xml", - "ref/netstandard1.0/System.Globalization.dll", - "ref/netstandard1.0/System.Globalization.xml", - "ref/netstandard1.0/de/System.Globalization.xml", - "ref/netstandard1.0/es/System.Globalization.xml", - "ref/netstandard1.0/fr/System.Globalization.xml", - "ref/netstandard1.0/it/System.Globalization.xml", - "ref/netstandard1.0/ja/System.Globalization.xml", - "ref/netstandard1.0/ko/System.Globalization.xml", - "ref/netstandard1.0/ru/System.Globalization.xml", - "ref/netstandard1.0/zh-hans/System.Globalization.xml", - "ref/netstandard1.0/zh-hant/System.Globalization.xml", - "ref/netstandard1.3/System.Globalization.dll", - "ref/netstandard1.3/System.Globalization.xml", - "ref/netstandard1.3/de/System.Globalization.xml", - "ref/netstandard1.3/es/System.Globalization.xml", - "ref/netstandard1.3/fr/System.Globalization.xml", - "ref/netstandard1.3/it/System.Globalization.xml", - "ref/netstandard1.3/ja/System.Globalization.xml", - "ref/netstandard1.3/ko/System.Globalization.xml", - "ref/netstandard1.3/ru/System.Globalization.xml", - "ref/netstandard1.3/zh-hans/System.Globalization.xml", - "ref/netstandard1.3/zh-hant/System.Globalization.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.globalization.4.3.0.nupkg.sha512", - "system.globalization.nuspec" - ] - }, - "System.Globalization.Calendars/4.3.0": { - "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", - "type": "package", - "path": "system.globalization.calendars/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Globalization.Calendars.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Globalization.Calendars.dll", - "ref/netstandard1.3/System.Globalization.Calendars.dll", - "ref/netstandard1.3/System.Globalization.Calendars.xml", - "ref/netstandard1.3/de/System.Globalization.Calendars.xml", - "ref/netstandard1.3/es/System.Globalization.Calendars.xml", - "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", - "ref/netstandard1.3/it/System.Globalization.Calendars.xml", - "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", - "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", - "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", - "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", - "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.globalization.calendars.4.3.0.nupkg.sha512", - "system.globalization.calendars.nuspec" - ] - }, - "System.Globalization.Extensions/4.3.0": { - "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", - "type": "package", - "path": "system.globalization.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Globalization.Extensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Globalization.Extensions.dll", - "ref/netstandard1.3/System.Globalization.Extensions.dll", - "ref/netstandard1.3/System.Globalization.Extensions.xml", - "ref/netstandard1.3/de/System.Globalization.Extensions.xml", - "ref/netstandard1.3/es/System.Globalization.Extensions.xml", - "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", - "ref/netstandard1.3/it/System.Globalization.Extensions.xml", - "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", - "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", - "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", - "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", - "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", - "runtimes/win/lib/net46/System.Globalization.Extensions.dll", - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", - "system.globalization.extensions.4.3.0.nupkg.sha512", - "system.globalization.extensions.nuspec" - ] - }, - "System.IO/4.3.0": { - "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "type": "package", - "path": "system.io/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.IO.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.IO.dll", - "ref/netcore50/System.IO.dll", - "ref/netcore50/System.IO.xml", - "ref/netcore50/de/System.IO.xml", - "ref/netcore50/es/System.IO.xml", - "ref/netcore50/fr/System.IO.xml", - "ref/netcore50/it/System.IO.xml", - "ref/netcore50/ja/System.IO.xml", - "ref/netcore50/ko/System.IO.xml", - "ref/netcore50/ru/System.IO.xml", - "ref/netcore50/zh-hans/System.IO.xml", - "ref/netcore50/zh-hant/System.IO.xml", - "ref/netstandard1.0/System.IO.dll", - "ref/netstandard1.0/System.IO.xml", - "ref/netstandard1.0/de/System.IO.xml", - "ref/netstandard1.0/es/System.IO.xml", - "ref/netstandard1.0/fr/System.IO.xml", - "ref/netstandard1.0/it/System.IO.xml", - "ref/netstandard1.0/ja/System.IO.xml", - "ref/netstandard1.0/ko/System.IO.xml", - "ref/netstandard1.0/ru/System.IO.xml", - "ref/netstandard1.0/zh-hans/System.IO.xml", - "ref/netstandard1.0/zh-hant/System.IO.xml", - "ref/netstandard1.3/System.IO.dll", - "ref/netstandard1.3/System.IO.xml", - "ref/netstandard1.3/de/System.IO.xml", - "ref/netstandard1.3/es/System.IO.xml", - "ref/netstandard1.3/fr/System.IO.xml", - "ref/netstandard1.3/it/System.IO.xml", - "ref/netstandard1.3/ja/System.IO.xml", - "ref/netstandard1.3/ko/System.IO.xml", - "ref/netstandard1.3/ru/System.IO.xml", - "ref/netstandard1.3/zh-hans/System.IO.xml", - "ref/netstandard1.3/zh-hant/System.IO.xml", - "ref/netstandard1.5/System.IO.dll", - "ref/netstandard1.5/System.IO.xml", - "ref/netstandard1.5/de/System.IO.xml", - "ref/netstandard1.5/es/System.IO.xml", - "ref/netstandard1.5/fr/System.IO.xml", - "ref/netstandard1.5/it/System.IO.xml", - "ref/netstandard1.5/ja/System.IO.xml", - "ref/netstandard1.5/ko/System.IO.xml", - "ref/netstandard1.5/ru/System.IO.xml", - "ref/netstandard1.5/zh-hans/System.IO.xml", - "ref/netstandard1.5/zh-hant/System.IO.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.4.3.0.nupkg.sha512", - "system.io.nuspec" - ] - }, - "System.IO.FileSystem/4.3.0": { - "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "type": "package", - "path": "system.io.filesystem/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.dll", - "ref/netstandard1.3/System.IO.FileSystem.dll", - "ref/netstandard1.3/System.IO.FileSystem.xml", - "ref/netstandard1.3/de/System.IO.FileSystem.xml", - "ref/netstandard1.3/es/System.IO.FileSystem.xml", - "ref/netstandard1.3/fr/System.IO.FileSystem.xml", - "ref/netstandard1.3/it/System.IO.FileSystem.xml", - "ref/netstandard1.3/ja/System.IO.FileSystem.xml", - "ref/netstandard1.3/ko/System.IO.FileSystem.xml", - "ref/netstandard1.3/ru/System.IO.FileSystem.xml", - "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", - "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.filesystem.4.3.0.nupkg.sha512", - "system.io.filesystem.nuspec" - ] - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "type": "package", - "path": "system.io.filesystem.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.Primitives.dll", - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.Primitives.dll", - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", - "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.filesystem.primitives.4.3.0.nupkg.sha512", - "system.io.filesystem.primitives.nuspec" - ] - }, - "System.IO.Ports/5.0.1": { - "sha512": "cOfs0q0+lmq8oXgIeYDzzT2IxQ0gIij2/awNDXn3OjykDii26EgzzY09BhabUlxt3rwGNpAOxYkdac5udWWJgQ==", - "type": "package", - "path": "system.io.ports/5.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.IO.Ports.dll", - "lib/net461/System.IO.Ports.xml", - "lib/netstandard2.0/System.IO.Ports.dll", - "lib/netstandard2.0/System.IO.Ports.xml", - "lib/uap10.0.16299/_._", - "ref/net461/System.IO.Ports.dll", - "ref/net461/System.IO.Ports.xml", - "ref/netstandard2.0/System.IO.Ports.dll", - "ref/netstandard2.0/System.IO.Ports.xml", - "ref/uap10.0.16299/_._", - "runtimes/linux/lib/netstandard2.0/System.IO.Ports.dll", - "runtimes/linux/lib/netstandard2.0/System.IO.Ports.xml", - "runtimes/osx/lib/netstandard2.0/System.IO.Ports.dll", - "runtimes/osx/lib/netstandard2.0/System.IO.Ports.xml", - "runtimes/win/lib/net461/System.IO.Ports.dll", - "runtimes/win/lib/net461/System.IO.Ports.xml", - "runtimes/win/lib/netstandard2.0/System.IO.Ports.dll", - "runtimes/win/lib/netstandard2.0/System.IO.Ports.xml", - "runtimes/win/lib/uap10.0.16299/_._", - "system.io.ports.5.0.1.nupkg.sha512", - "system.io.ports.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Linq/4.3.0": { - "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "type": "package", - "path": "system.linq/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Linq.dll", - "lib/netcore50/System.Linq.dll", - "lib/netstandard1.6/System.Linq.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Linq.dll", - "ref/netcore50/System.Linq.dll", - "ref/netcore50/System.Linq.xml", - "ref/netcore50/de/System.Linq.xml", - "ref/netcore50/es/System.Linq.xml", - "ref/netcore50/fr/System.Linq.xml", - "ref/netcore50/it/System.Linq.xml", - "ref/netcore50/ja/System.Linq.xml", - "ref/netcore50/ko/System.Linq.xml", - "ref/netcore50/ru/System.Linq.xml", - "ref/netcore50/zh-hans/System.Linq.xml", - "ref/netcore50/zh-hant/System.Linq.xml", - "ref/netstandard1.0/System.Linq.dll", - "ref/netstandard1.0/System.Linq.xml", - "ref/netstandard1.0/de/System.Linq.xml", - "ref/netstandard1.0/es/System.Linq.xml", - "ref/netstandard1.0/fr/System.Linq.xml", - "ref/netstandard1.0/it/System.Linq.xml", - "ref/netstandard1.0/ja/System.Linq.xml", - "ref/netstandard1.0/ko/System.Linq.xml", - "ref/netstandard1.0/ru/System.Linq.xml", - "ref/netstandard1.0/zh-hans/System.Linq.xml", - "ref/netstandard1.0/zh-hant/System.Linq.xml", - "ref/netstandard1.6/System.Linq.dll", - "ref/netstandard1.6/System.Linq.xml", - "ref/netstandard1.6/de/System.Linq.xml", - "ref/netstandard1.6/es/System.Linq.xml", - "ref/netstandard1.6/fr/System.Linq.xml", - "ref/netstandard1.6/it/System.Linq.xml", - "ref/netstandard1.6/ja/System.Linq.xml", - "ref/netstandard1.6/ko/System.Linq.xml", - "ref/netstandard1.6/ru/System.Linq.xml", - "ref/netstandard1.6/zh-hans/System.Linq.xml", - "ref/netstandard1.6/zh-hant/System.Linq.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.linq.4.3.0.nupkg.sha512", - "system.linq.nuspec" - ] - }, - "System.Management/5.0.0": { - "sha512": "MF1CHaRcC+MLFdnDthv4/bKWBZnlnSpkGqa87pKukQefgEdwtb9zFW6zs0GjPp73qtpYYg4q6PEKbzJbxCpKfw==", - "type": "package", - "path": "system.management/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net45/_._", - "lib/netstandard2.0/System.Management.dll", - "lib/netstandard2.0/System.Management.xml", - "ref/net45/_._", - "ref/netstandard2.0/System.Management.dll", - "ref/netstandard2.0/System.Management.xml", - "runtimes/win/lib/net45/_._", - "runtimes/win/lib/netcoreapp2.0/System.Management.dll", - "runtimes/win/lib/netcoreapp2.0/System.Management.xml", - "system.management.5.0.0.nupkg.sha512", - "system.management.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Memory/4.5.4": { - "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", - "type": "package", - "path": "system.memory/4.5.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Memory.dll", - "lib/net461/System.Memory.xml", - "lib/netcoreapp2.1/_._", - "lib/netstandard1.1/System.Memory.dll", - "lib/netstandard1.1/System.Memory.xml", - "lib/netstandard2.0/System.Memory.dll", - "lib/netstandard2.0/System.Memory.xml", - "ref/netcoreapp2.1/_._", - "system.memory.4.5.4.nupkg.sha512", - "system.memory.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Net.Http/4.3.4": { - "sha512": "aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==", - "type": "package", - "path": "system.net.http/4.3.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/Xamarinmac20/_._", - "lib/monoandroid10/_._", - "lib/monotouch10/_._", - "lib/net45/_._", - "lib/net46/System.Net.Http.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/Xamarinmac20/_._", - "ref/monoandroid10/_._", - "ref/monotouch10/_._", - "ref/net45/_._", - "ref/net46/System.Net.Http.dll", - "ref/netcore50/System.Net.Http.dll", - "ref/netstandard1.1/System.Net.Http.dll", - "ref/netstandard1.3/System.Net.Http.dll", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", - "runtimes/win/lib/net46/System.Net.Http.dll", - "runtimes/win/lib/netcore50/System.Net.Http.dll", - "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", - "system.net.http.4.3.4.nupkg.sha512", - "system.net.http.nuspec" - ] - }, - "System.Net.NetworkInformation/4.3.0": { - "sha512": "zNVmWVry0pAu7lcrRBhwwU96WUdbsrGL3azyzsbXmVNptae1+Za+UgOe9Z6s8iaWhPn7/l4wQqhC56HZWq7tkg==", - "type": "package", - "path": "system.net.networkinformation/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.Net.NetworkInformation.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.Net.NetworkInformation.dll", - "ref/netcore50/System.Net.NetworkInformation.dll", - "ref/netcore50/System.Net.NetworkInformation.xml", - "ref/netcore50/de/System.Net.NetworkInformation.xml", - "ref/netcore50/es/System.Net.NetworkInformation.xml", - "ref/netcore50/fr/System.Net.NetworkInformation.xml", - "ref/netcore50/it/System.Net.NetworkInformation.xml", - "ref/netcore50/ja/System.Net.NetworkInformation.xml", - "ref/netcore50/ko/System.Net.NetworkInformation.xml", - "ref/netcore50/ru/System.Net.NetworkInformation.xml", - "ref/netcore50/zh-hans/System.Net.NetworkInformation.xml", - "ref/netcore50/zh-hant/System.Net.NetworkInformation.xml", - "ref/netstandard1.0/System.Net.NetworkInformation.dll", - "ref/netstandard1.0/System.Net.NetworkInformation.xml", - "ref/netstandard1.0/de/System.Net.NetworkInformation.xml", - "ref/netstandard1.0/es/System.Net.NetworkInformation.xml", - "ref/netstandard1.0/fr/System.Net.NetworkInformation.xml", - "ref/netstandard1.0/it/System.Net.NetworkInformation.xml", - "ref/netstandard1.0/ja/System.Net.NetworkInformation.xml", - "ref/netstandard1.0/ko/System.Net.NetworkInformation.xml", - "ref/netstandard1.0/ru/System.Net.NetworkInformation.xml", - "ref/netstandard1.0/zh-hans/System.Net.NetworkInformation.xml", - "ref/netstandard1.0/zh-hant/System.Net.NetworkInformation.xml", - "ref/netstandard1.3/System.Net.NetworkInformation.dll", - "ref/netstandard1.3/System.Net.NetworkInformation.xml", - "ref/netstandard1.3/de/System.Net.NetworkInformation.xml", - "ref/netstandard1.3/es/System.Net.NetworkInformation.xml", - "ref/netstandard1.3/fr/System.Net.NetworkInformation.xml", - "ref/netstandard1.3/it/System.Net.NetworkInformation.xml", - "ref/netstandard1.3/ja/System.Net.NetworkInformation.xml", - "ref/netstandard1.3/ko/System.Net.NetworkInformation.xml", - "ref/netstandard1.3/ru/System.Net.NetworkInformation.xml", - "ref/netstandard1.3/zh-hans/System.Net.NetworkInformation.xml", - "ref/netstandard1.3/zh-hant/System.Net.NetworkInformation.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/linux/lib/netstandard1.3/System.Net.NetworkInformation.dll", - "runtimes/osx/lib/netstandard1.3/System.Net.NetworkInformation.dll", - "runtimes/win/lib/net46/System.Net.NetworkInformation.dll", - "runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll", - "runtimes/win/lib/netstandard1.3/System.Net.NetworkInformation.dll", - "system.net.networkinformation.4.3.0.nupkg.sha512", - "system.net.networkinformation.nuspec" - ] - }, - "System.Net.Primitives/4.3.0": { - "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", - "type": "package", - "path": "system.net.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Net.Primitives.dll", - "ref/netcore50/System.Net.Primitives.xml", - "ref/netcore50/de/System.Net.Primitives.xml", - "ref/netcore50/es/System.Net.Primitives.xml", - "ref/netcore50/fr/System.Net.Primitives.xml", - "ref/netcore50/it/System.Net.Primitives.xml", - "ref/netcore50/ja/System.Net.Primitives.xml", - "ref/netcore50/ko/System.Net.Primitives.xml", - "ref/netcore50/ru/System.Net.Primitives.xml", - "ref/netcore50/zh-hans/System.Net.Primitives.xml", - "ref/netcore50/zh-hant/System.Net.Primitives.xml", - "ref/netstandard1.0/System.Net.Primitives.dll", - "ref/netstandard1.0/System.Net.Primitives.xml", - "ref/netstandard1.0/de/System.Net.Primitives.xml", - "ref/netstandard1.0/es/System.Net.Primitives.xml", - "ref/netstandard1.0/fr/System.Net.Primitives.xml", - "ref/netstandard1.0/it/System.Net.Primitives.xml", - "ref/netstandard1.0/ja/System.Net.Primitives.xml", - "ref/netstandard1.0/ko/System.Net.Primitives.xml", - "ref/netstandard1.0/ru/System.Net.Primitives.xml", - "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", - "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", - "ref/netstandard1.1/System.Net.Primitives.dll", - "ref/netstandard1.1/System.Net.Primitives.xml", - "ref/netstandard1.1/de/System.Net.Primitives.xml", - "ref/netstandard1.1/es/System.Net.Primitives.xml", - "ref/netstandard1.1/fr/System.Net.Primitives.xml", - "ref/netstandard1.1/it/System.Net.Primitives.xml", - "ref/netstandard1.1/ja/System.Net.Primitives.xml", - "ref/netstandard1.1/ko/System.Net.Primitives.xml", - "ref/netstandard1.1/ru/System.Net.Primitives.xml", - "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", - "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", - "ref/netstandard1.3/System.Net.Primitives.dll", - "ref/netstandard1.3/System.Net.Primitives.xml", - "ref/netstandard1.3/de/System.Net.Primitives.xml", - "ref/netstandard1.3/es/System.Net.Primitives.xml", - "ref/netstandard1.3/fr/System.Net.Primitives.xml", - "ref/netstandard1.3/it/System.Net.Primitives.xml", - "ref/netstandard1.3/ja/System.Net.Primitives.xml", - "ref/netstandard1.3/ko/System.Net.Primitives.xml", - "ref/netstandard1.3/ru/System.Net.Primitives.xml", - "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", - "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.net.primitives.4.3.0.nupkg.sha512", - "system.net.primitives.nuspec" - ] - }, - "System.Net.Sockets/4.3.0": { - "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", - "type": "package", - "path": "system.net.sockets/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Net.Sockets.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Net.Sockets.dll", - "ref/netstandard1.3/System.Net.Sockets.dll", - "ref/netstandard1.3/System.Net.Sockets.xml", - "ref/netstandard1.3/de/System.Net.Sockets.xml", - "ref/netstandard1.3/es/System.Net.Sockets.xml", - "ref/netstandard1.3/fr/System.Net.Sockets.xml", - "ref/netstandard1.3/it/System.Net.Sockets.xml", - "ref/netstandard1.3/ja/System.Net.Sockets.xml", - "ref/netstandard1.3/ko/System.Net.Sockets.xml", - "ref/netstandard1.3/ru/System.Net.Sockets.xml", - "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", - "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.net.sockets.4.3.0.nupkg.sha512", - "system.net.sockets.nuspec" - ] - }, - "System.Reflection/4.3.0": { - "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "type": "package", - "path": "system.reflection/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Reflection.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Reflection.dll", - "ref/netcore50/System.Reflection.dll", - "ref/netcore50/System.Reflection.xml", - "ref/netcore50/de/System.Reflection.xml", - "ref/netcore50/es/System.Reflection.xml", - "ref/netcore50/fr/System.Reflection.xml", - "ref/netcore50/it/System.Reflection.xml", - "ref/netcore50/ja/System.Reflection.xml", - "ref/netcore50/ko/System.Reflection.xml", - "ref/netcore50/ru/System.Reflection.xml", - "ref/netcore50/zh-hans/System.Reflection.xml", - "ref/netcore50/zh-hant/System.Reflection.xml", - "ref/netstandard1.0/System.Reflection.dll", - "ref/netstandard1.0/System.Reflection.xml", - "ref/netstandard1.0/de/System.Reflection.xml", - "ref/netstandard1.0/es/System.Reflection.xml", - "ref/netstandard1.0/fr/System.Reflection.xml", - "ref/netstandard1.0/it/System.Reflection.xml", - "ref/netstandard1.0/ja/System.Reflection.xml", - "ref/netstandard1.0/ko/System.Reflection.xml", - "ref/netstandard1.0/ru/System.Reflection.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.xml", - "ref/netstandard1.3/System.Reflection.dll", - "ref/netstandard1.3/System.Reflection.xml", - "ref/netstandard1.3/de/System.Reflection.xml", - "ref/netstandard1.3/es/System.Reflection.xml", - "ref/netstandard1.3/fr/System.Reflection.xml", - "ref/netstandard1.3/it/System.Reflection.xml", - "ref/netstandard1.3/ja/System.Reflection.xml", - "ref/netstandard1.3/ko/System.Reflection.xml", - "ref/netstandard1.3/ru/System.Reflection.xml", - "ref/netstandard1.3/zh-hans/System.Reflection.xml", - "ref/netstandard1.3/zh-hant/System.Reflection.xml", - "ref/netstandard1.5/System.Reflection.dll", - "ref/netstandard1.5/System.Reflection.xml", - "ref/netstandard1.5/de/System.Reflection.xml", - "ref/netstandard1.5/es/System.Reflection.xml", - "ref/netstandard1.5/fr/System.Reflection.xml", - "ref/netstandard1.5/it/System.Reflection.xml", - "ref/netstandard1.5/ja/System.Reflection.xml", - "ref/netstandard1.5/ko/System.Reflection.xml", - "ref/netstandard1.5/ru/System.Reflection.xml", - "ref/netstandard1.5/zh-hans/System.Reflection.xml", - "ref/netstandard1.5/zh-hant/System.Reflection.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.reflection.4.3.0.nupkg.sha512", - "system.reflection.nuspec" - ] - }, - "System.Reflection.Primitives/4.3.0": { - "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "type": "package", - "path": "system.reflection.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Primitives.dll", - "ref/netcore50/System.Reflection.Primitives.xml", - "ref/netcore50/de/System.Reflection.Primitives.xml", - "ref/netcore50/es/System.Reflection.Primitives.xml", - "ref/netcore50/fr/System.Reflection.Primitives.xml", - "ref/netcore50/it/System.Reflection.Primitives.xml", - "ref/netcore50/ja/System.Reflection.Primitives.xml", - "ref/netcore50/ko/System.Reflection.Primitives.xml", - "ref/netcore50/ru/System.Reflection.Primitives.xml", - "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", - "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", - "ref/netstandard1.0/System.Reflection.Primitives.dll", - "ref/netstandard1.0/System.Reflection.Primitives.xml", - "ref/netstandard1.0/de/System.Reflection.Primitives.xml", - "ref/netstandard1.0/es/System.Reflection.Primitives.xml", - "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", - "ref/netstandard1.0/it/System.Reflection.Primitives.xml", - "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", - "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", - "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.reflection.primitives.4.3.0.nupkg.sha512", - "system.reflection.primitives.nuspec" - ] - }, - "System.Resources.ResourceManager/4.3.0": { - "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "type": "package", - "path": "system.resources.resourcemanager/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Resources.ResourceManager.dll", - "ref/netcore50/System.Resources.ResourceManager.xml", - "ref/netcore50/de/System.Resources.ResourceManager.xml", - "ref/netcore50/es/System.Resources.ResourceManager.xml", - "ref/netcore50/fr/System.Resources.ResourceManager.xml", - "ref/netcore50/it/System.Resources.ResourceManager.xml", - "ref/netcore50/ja/System.Resources.ResourceManager.xml", - "ref/netcore50/ko/System.Resources.ResourceManager.xml", - "ref/netcore50/ru/System.Resources.ResourceManager.xml", - "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", - "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/System.Resources.ResourceManager.dll", - "ref/netstandard1.0/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.resources.resourcemanager.4.3.0.nupkg.sha512", - "system.resources.resourcemanager.nuspec" - ] - }, - "System.Runtime/4.3.0": { - "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "type": "package", - "path": "system.runtime/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Runtime.dll", - "lib/portable-net45+win8+wp80+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Runtime.dll", - "ref/netcore50/System.Runtime.dll", - "ref/netcore50/System.Runtime.xml", - "ref/netcore50/de/System.Runtime.xml", - "ref/netcore50/es/System.Runtime.xml", - "ref/netcore50/fr/System.Runtime.xml", - "ref/netcore50/it/System.Runtime.xml", - "ref/netcore50/ja/System.Runtime.xml", - "ref/netcore50/ko/System.Runtime.xml", - "ref/netcore50/ru/System.Runtime.xml", - "ref/netcore50/zh-hans/System.Runtime.xml", - "ref/netcore50/zh-hant/System.Runtime.xml", - "ref/netstandard1.0/System.Runtime.dll", - "ref/netstandard1.0/System.Runtime.xml", - "ref/netstandard1.0/de/System.Runtime.xml", - "ref/netstandard1.0/es/System.Runtime.xml", - "ref/netstandard1.0/fr/System.Runtime.xml", - "ref/netstandard1.0/it/System.Runtime.xml", - "ref/netstandard1.0/ja/System.Runtime.xml", - "ref/netstandard1.0/ko/System.Runtime.xml", - "ref/netstandard1.0/ru/System.Runtime.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.xml", - "ref/netstandard1.2/System.Runtime.dll", - "ref/netstandard1.2/System.Runtime.xml", - "ref/netstandard1.2/de/System.Runtime.xml", - "ref/netstandard1.2/es/System.Runtime.xml", - "ref/netstandard1.2/fr/System.Runtime.xml", - "ref/netstandard1.2/it/System.Runtime.xml", - "ref/netstandard1.2/ja/System.Runtime.xml", - "ref/netstandard1.2/ko/System.Runtime.xml", - "ref/netstandard1.2/ru/System.Runtime.xml", - "ref/netstandard1.2/zh-hans/System.Runtime.xml", - "ref/netstandard1.2/zh-hant/System.Runtime.xml", - "ref/netstandard1.3/System.Runtime.dll", - "ref/netstandard1.3/System.Runtime.xml", - "ref/netstandard1.3/de/System.Runtime.xml", - "ref/netstandard1.3/es/System.Runtime.xml", - "ref/netstandard1.3/fr/System.Runtime.xml", - "ref/netstandard1.3/it/System.Runtime.xml", - "ref/netstandard1.3/ja/System.Runtime.xml", - "ref/netstandard1.3/ko/System.Runtime.xml", - "ref/netstandard1.3/ru/System.Runtime.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.xml", - "ref/netstandard1.5/System.Runtime.dll", - "ref/netstandard1.5/System.Runtime.xml", - "ref/netstandard1.5/de/System.Runtime.xml", - "ref/netstandard1.5/es/System.Runtime.xml", - "ref/netstandard1.5/fr/System.Runtime.xml", - "ref/netstandard1.5/it/System.Runtime.xml", - "ref/netstandard1.5/ja/System.Runtime.xml", - "ref/netstandard1.5/ko/System.Runtime.xml", - "ref/netstandard1.5/ru/System.Runtime.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.xml", - "ref/portable-net45+win8+wp80+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.4.3.0.nupkg.sha512", - "system.runtime.nuspec" - ] - }, - "System.Runtime.Extensions/4.3.0": { - "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "type": "package", - "path": "system.runtime.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Runtime.Extensions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Runtime.Extensions.dll", - "ref/netcore50/System.Runtime.Extensions.dll", - "ref/netcore50/System.Runtime.Extensions.xml", - "ref/netcore50/de/System.Runtime.Extensions.xml", - "ref/netcore50/es/System.Runtime.Extensions.xml", - "ref/netcore50/fr/System.Runtime.Extensions.xml", - "ref/netcore50/it/System.Runtime.Extensions.xml", - "ref/netcore50/ja/System.Runtime.Extensions.xml", - "ref/netcore50/ko/System.Runtime.Extensions.xml", - "ref/netcore50/ru/System.Runtime.Extensions.xml", - "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", - "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", - "ref/netstandard1.0/System.Runtime.Extensions.dll", - "ref/netstandard1.0/System.Runtime.Extensions.xml", - "ref/netstandard1.0/de/System.Runtime.Extensions.xml", - "ref/netstandard1.0/es/System.Runtime.Extensions.xml", - "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", - "ref/netstandard1.0/it/System.Runtime.Extensions.xml", - "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", - "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", - "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", - "ref/netstandard1.3/System.Runtime.Extensions.dll", - "ref/netstandard1.3/System.Runtime.Extensions.xml", - "ref/netstandard1.3/de/System.Runtime.Extensions.xml", - "ref/netstandard1.3/es/System.Runtime.Extensions.xml", - "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", - "ref/netstandard1.3/it/System.Runtime.Extensions.xml", - "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", - "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", - "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", - "ref/netstandard1.5/System.Runtime.Extensions.dll", - "ref/netstandard1.5/System.Runtime.Extensions.xml", - "ref/netstandard1.5/de/System.Runtime.Extensions.xml", - "ref/netstandard1.5/es/System.Runtime.Extensions.xml", - "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", - "ref/netstandard1.5/it/System.Runtime.Extensions.xml", - "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", - "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", - "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.extensions.4.3.0.nupkg.sha512", - "system.runtime.extensions.nuspec" - ] - }, - "System.Runtime.Handles/4.3.0": { - "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "type": "package", - "path": "system.runtime.handles/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/netstandard1.3/System.Runtime.Handles.dll", - "ref/netstandard1.3/System.Runtime.Handles.xml", - "ref/netstandard1.3/de/System.Runtime.Handles.xml", - "ref/netstandard1.3/es/System.Runtime.Handles.xml", - "ref/netstandard1.3/fr/System.Runtime.Handles.xml", - "ref/netstandard1.3/it/System.Runtime.Handles.xml", - "ref/netstandard1.3/ja/System.Runtime.Handles.xml", - "ref/netstandard1.3/ko/System.Runtime.Handles.xml", - "ref/netstandard1.3/ru/System.Runtime.Handles.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.handles.4.3.0.nupkg.sha512", - "system.runtime.handles.nuspec" - ] - }, - "System.Runtime.InteropServices/4.3.0": { - "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "type": "package", - "path": "system.runtime.interopservices/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Runtime.InteropServices.dll", - "lib/net463/System.Runtime.InteropServices.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Runtime.InteropServices.dll", - "ref/net463/System.Runtime.InteropServices.dll", - "ref/netcore50/System.Runtime.InteropServices.dll", - "ref/netcore50/System.Runtime.InteropServices.xml", - "ref/netcore50/de/System.Runtime.InteropServices.xml", - "ref/netcore50/es/System.Runtime.InteropServices.xml", - "ref/netcore50/fr/System.Runtime.InteropServices.xml", - "ref/netcore50/it/System.Runtime.InteropServices.xml", - "ref/netcore50/ja/System.Runtime.InteropServices.xml", - "ref/netcore50/ko/System.Runtime.InteropServices.xml", - "ref/netcore50/ru/System.Runtime.InteropServices.xml", - "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", - "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", - "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", - "ref/netstandard1.1/System.Runtime.InteropServices.dll", - "ref/netstandard1.1/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/System.Runtime.InteropServices.dll", - "ref/netstandard1.2/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/System.Runtime.InteropServices.dll", - "ref/netstandard1.3/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/System.Runtime.InteropServices.dll", - "ref/netstandard1.5/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.interopservices.4.3.0.nupkg.sha512", - "system.runtime.interopservices.nuspec" - ] - }, - "System.Runtime.Numerics/4.3.0": { - "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", - "type": "package", - "path": "system.runtime.numerics/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Runtime.Numerics.dll", - "lib/netstandard1.3/System.Runtime.Numerics.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Runtime.Numerics.dll", - "ref/netcore50/System.Runtime.Numerics.xml", - "ref/netcore50/de/System.Runtime.Numerics.xml", - "ref/netcore50/es/System.Runtime.Numerics.xml", - "ref/netcore50/fr/System.Runtime.Numerics.xml", - "ref/netcore50/it/System.Runtime.Numerics.xml", - "ref/netcore50/ja/System.Runtime.Numerics.xml", - "ref/netcore50/ko/System.Runtime.Numerics.xml", - "ref/netcore50/ru/System.Runtime.Numerics.xml", - "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", - "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", - "ref/netstandard1.1/System.Runtime.Numerics.dll", - "ref/netstandard1.1/System.Runtime.Numerics.xml", - "ref/netstandard1.1/de/System.Runtime.Numerics.xml", - "ref/netstandard1.1/es/System.Runtime.Numerics.xml", - "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", - "ref/netstandard1.1/it/System.Runtime.Numerics.xml", - "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", - "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", - "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", - "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", - "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.numerics.4.3.0.nupkg.sha512", - "system.runtime.numerics.nuspec" - ] - }, - "System.Security.AccessControl/5.0.0": { - "sha512": "dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", - "type": "package", - "path": "system.security.accesscontrol/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/System.Security.AccessControl.dll", - "lib/net461/System.Security.AccessControl.dll", - "lib/net461/System.Security.AccessControl.xml", - "lib/netstandard1.3/System.Security.AccessControl.dll", - "lib/netstandard2.0/System.Security.AccessControl.dll", - "lib/netstandard2.0/System.Security.AccessControl.xml", - "lib/uap10.0.16299/_._", - "ref/net46/System.Security.AccessControl.dll", - "ref/net461/System.Security.AccessControl.dll", - "ref/net461/System.Security.AccessControl.xml", - "ref/netstandard1.3/System.Security.AccessControl.dll", - "ref/netstandard1.3/System.Security.AccessControl.xml", - "ref/netstandard1.3/de/System.Security.AccessControl.xml", - "ref/netstandard1.3/es/System.Security.AccessControl.xml", - "ref/netstandard1.3/fr/System.Security.AccessControl.xml", - "ref/netstandard1.3/it/System.Security.AccessControl.xml", - "ref/netstandard1.3/ja/System.Security.AccessControl.xml", - "ref/netstandard1.3/ko/System.Security.AccessControl.xml", - "ref/netstandard1.3/ru/System.Security.AccessControl.xml", - "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", - "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", - "ref/netstandard2.0/System.Security.AccessControl.dll", - "ref/netstandard2.0/System.Security.AccessControl.xml", - "ref/uap10.0.16299/_._", - "runtimes/win/lib/net46/System.Security.AccessControl.dll", - "runtimes/win/lib/net461/System.Security.AccessControl.dll", - "runtimes/win/lib/net461/System.Security.AccessControl.xml", - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", - "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", - "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", - "runtimes/win/lib/uap10.0.16299/_._", - "system.security.accesscontrol.5.0.0.nupkg.sha512", - "system.security.accesscontrol.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", - "type": "package", - "path": "system.security.cryptography.algorithms/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Algorithms.dll", - "lib/net461/System.Security.Cryptography.Algorithms.dll", - "lib/net463/System.Security.Cryptography.Algorithms.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Algorithms.dll", - "ref/net461/System.Security.Cryptography.Algorithms.dll", - "ref/net463/System.Security.Cryptography.Algorithms.dll", - "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", - "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", - "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", - "system.security.cryptography.algorithms.nuspec" - ] - }, - "System.Security.Cryptography.Cng/4.3.0": { - "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", - "type": "package", - "path": "system.security.cryptography.cng/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net46/System.Security.Cryptography.Cng.dll", - "lib/net461/System.Security.Cryptography.Cng.dll", - "lib/net463/System.Security.Cryptography.Cng.dll", - "ref/net46/System.Security.Cryptography.Cng.dll", - "ref/net461/System.Security.Cryptography.Cng.dll", - "ref/net463/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", - "system.security.cryptography.cng.4.3.0.nupkg.sha512", - "system.security.cryptography.cng.nuspec" - ] - }, - "System.Security.Cryptography.Csp/4.3.0": { - "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", - "type": "package", - "path": "system.security.cryptography.csp/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Csp.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Csp.dll", - "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", - "runtimes/win/lib/netcore50/_._", - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", - "system.security.cryptography.csp.4.3.0.nupkg.sha512", - "system.security.cryptography.csp.nuspec" - ] - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", - "type": "package", - "path": "system.security.cryptography.encoding/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Encoding.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Encoding.dll", - "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", - "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", - "system.security.cryptography.encoding.4.3.0.nupkg.sha512", - "system.security.cryptography.encoding.nuspec" - ] - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", - "type": "package", - "path": "system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", - "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", - "system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "system.security.cryptography.openssl.nuspec" - ] - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", - "type": "package", - "path": "system.security.cryptography.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Primitives.dll", - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Primitives.dll", - "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.security.cryptography.primitives.4.3.0.nupkg.sha512", - "system.security.cryptography.primitives.nuspec" - ] - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", - "type": "package", - "path": "system.security.cryptography.x509certificates/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.X509Certificates.dll", - "lib/net461/System.Security.Cryptography.X509Certificates.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.X509Certificates.dll", - "ref/net461/System.Security.Cryptography.X509Certificates.dll", - "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", - "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", - "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", - "system.security.cryptography.x509certificates.nuspec" - ] - }, - "System.Security.Principal.Windows/5.0.0": { - "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", - "type": "package", - "path": "system.security.principal.windows/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/System.Security.Principal.Windows.dll", - "lib/net461/System.Security.Principal.Windows.dll", - "lib/net461/System.Security.Principal.Windows.xml", - "lib/netstandard1.3/System.Security.Principal.Windows.dll", - "lib/netstandard2.0/System.Security.Principal.Windows.dll", - "lib/netstandard2.0/System.Security.Principal.Windows.xml", - "lib/uap10.0.16299/_._", - "ref/net46/System.Security.Principal.Windows.dll", - "ref/net461/System.Security.Principal.Windows.dll", - "ref/net461/System.Security.Principal.Windows.xml", - "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", - "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/System.Security.Principal.Windows.dll", - "ref/netstandard1.3/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", - "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", - "ref/netstandard2.0/System.Security.Principal.Windows.dll", - "ref/netstandard2.0/System.Security.Principal.Windows.xml", - "ref/uap10.0.16299/_._", - "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", - "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", - "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", - "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", - "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", - "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", - "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", - "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", - "runtimes/win/lib/uap10.0.16299/_._", - "system.security.principal.windows.5.0.0.nupkg.sha512", - "system.security.principal.windows.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Text.Encoding/4.3.0": { - "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "type": "package", - "path": "system.text.encoding/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Text.Encoding.dll", - "ref/netcore50/System.Text.Encoding.xml", - "ref/netcore50/de/System.Text.Encoding.xml", - "ref/netcore50/es/System.Text.Encoding.xml", - "ref/netcore50/fr/System.Text.Encoding.xml", - "ref/netcore50/it/System.Text.Encoding.xml", - "ref/netcore50/ja/System.Text.Encoding.xml", - "ref/netcore50/ko/System.Text.Encoding.xml", - "ref/netcore50/ru/System.Text.Encoding.xml", - "ref/netcore50/zh-hans/System.Text.Encoding.xml", - "ref/netcore50/zh-hant/System.Text.Encoding.xml", - "ref/netstandard1.0/System.Text.Encoding.dll", - "ref/netstandard1.0/System.Text.Encoding.xml", - "ref/netstandard1.0/de/System.Text.Encoding.xml", - "ref/netstandard1.0/es/System.Text.Encoding.xml", - "ref/netstandard1.0/fr/System.Text.Encoding.xml", - "ref/netstandard1.0/it/System.Text.Encoding.xml", - "ref/netstandard1.0/ja/System.Text.Encoding.xml", - "ref/netstandard1.0/ko/System.Text.Encoding.xml", - "ref/netstandard1.0/ru/System.Text.Encoding.xml", - "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", - "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", - "ref/netstandard1.3/System.Text.Encoding.dll", - "ref/netstandard1.3/System.Text.Encoding.xml", - "ref/netstandard1.3/de/System.Text.Encoding.xml", - "ref/netstandard1.3/es/System.Text.Encoding.xml", - "ref/netstandard1.3/fr/System.Text.Encoding.xml", - "ref/netstandard1.3/it/System.Text.Encoding.xml", - "ref/netstandard1.3/ja/System.Text.Encoding.xml", - "ref/netstandard1.3/ko/System.Text.Encoding.xml", - "ref/netstandard1.3/ru/System.Text.Encoding.xml", - "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", - "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.text.encoding.4.3.0.nupkg.sha512", - "system.text.encoding.nuspec" - ] - }, - "System.Text.Encoding.CodePages/4.6.0": { - "sha512": "OCUK9C/U97+UheVwo+JE+IUcKySUE3Oe+BcHhVtQrvmKSUFLrUDO8B5zEPRL6mBGbczxZp4w1boSck6/fw4dog==", - "type": "package", - "path": "system.text.encoding.codepages/4.6.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Text.Encoding.CodePages.dll", - "lib/net461/System.Text.Encoding.CodePages.dll", - "lib/net461/System.Text.Encoding.CodePages.xml", - "lib/netstandard1.3/System.Text.Encoding.CodePages.dll", - "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", - "lib/netstandard2.0/System.Text.Encoding.CodePages.xml", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml", - "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml", - "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", - "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml", - "system.text.encoding.codepages.4.6.0.nupkg.sha512", - "system.text.encoding.codepages.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Threading/4.3.0": { - "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "type": "package", - "path": "system.threading/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Threading.dll", - "lib/netstandard1.3/System.Threading.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Threading.dll", - "ref/netcore50/System.Threading.xml", - "ref/netcore50/de/System.Threading.xml", - "ref/netcore50/es/System.Threading.xml", - "ref/netcore50/fr/System.Threading.xml", - "ref/netcore50/it/System.Threading.xml", - "ref/netcore50/ja/System.Threading.xml", - "ref/netcore50/ko/System.Threading.xml", - "ref/netcore50/ru/System.Threading.xml", - "ref/netcore50/zh-hans/System.Threading.xml", - "ref/netcore50/zh-hant/System.Threading.xml", - "ref/netstandard1.0/System.Threading.dll", - "ref/netstandard1.0/System.Threading.xml", - "ref/netstandard1.0/de/System.Threading.xml", - "ref/netstandard1.0/es/System.Threading.xml", - "ref/netstandard1.0/fr/System.Threading.xml", - "ref/netstandard1.0/it/System.Threading.xml", - "ref/netstandard1.0/ja/System.Threading.xml", - "ref/netstandard1.0/ko/System.Threading.xml", - "ref/netstandard1.0/ru/System.Threading.xml", - "ref/netstandard1.0/zh-hans/System.Threading.xml", - "ref/netstandard1.0/zh-hant/System.Threading.xml", - "ref/netstandard1.3/System.Threading.dll", - "ref/netstandard1.3/System.Threading.xml", - "ref/netstandard1.3/de/System.Threading.xml", - "ref/netstandard1.3/es/System.Threading.xml", - "ref/netstandard1.3/fr/System.Threading.xml", - "ref/netstandard1.3/it/System.Threading.xml", - "ref/netstandard1.3/ja/System.Threading.xml", - "ref/netstandard1.3/ko/System.Threading.xml", - "ref/netstandard1.3/ru/System.Threading.xml", - "ref/netstandard1.3/zh-hans/System.Threading.xml", - "ref/netstandard1.3/zh-hant/System.Threading.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Threading.dll", - "system.threading.4.3.0.nupkg.sha512", - "system.threading.nuspec" - ] - }, - "System.Threading.Overlapped/4.3.0": { - "sha512": "m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==", - "type": "package", - "path": "system.threading.overlapped/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net46/System.Threading.Overlapped.dll", - "ref/net46/System.Threading.Overlapped.dll", - "ref/netstandard1.3/System.Threading.Overlapped.dll", - "ref/netstandard1.3/System.Threading.Overlapped.xml", - "ref/netstandard1.3/de/System.Threading.Overlapped.xml", - "ref/netstandard1.3/es/System.Threading.Overlapped.xml", - "ref/netstandard1.3/fr/System.Threading.Overlapped.xml", - "ref/netstandard1.3/it/System.Threading.Overlapped.xml", - "ref/netstandard1.3/ja/System.Threading.Overlapped.xml", - "ref/netstandard1.3/ko/System.Threading.Overlapped.xml", - "ref/netstandard1.3/ru/System.Threading.Overlapped.xml", - "ref/netstandard1.3/zh-hans/System.Threading.Overlapped.xml", - "ref/netstandard1.3/zh-hant/System.Threading.Overlapped.xml", - "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll", - "runtimes/win/lib/net46/System.Threading.Overlapped.dll", - "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll", - "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll", - "system.threading.overlapped.4.3.0.nupkg.sha512", - "system.threading.overlapped.nuspec" - ] - }, - "System.Threading.Tasks/4.3.0": { - "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "type": "package", - "path": "system.threading.tasks/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Threading.Tasks.dll", - "ref/netcore50/System.Threading.Tasks.xml", - "ref/netcore50/de/System.Threading.Tasks.xml", - "ref/netcore50/es/System.Threading.Tasks.xml", - "ref/netcore50/fr/System.Threading.Tasks.xml", - "ref/netcore50/it/System.Threading.Tasks.xml", - "ref/netcore50/ja/System.Threading.Tasks.xml", - "ref/netcore50/ko/System.Threading.Tasks.xml", - "ref/netcore50/ru/System.Threading.Tasks.xml", - "ref/netcore50/zh-hans/System.Threading.Tasks.xml", - "ref/netcore50/zh-hant/System.Threading.Tasks.xml", - "ref/netstandard1.0/System.Threading.Tasks.dll", - "ref/netstandard1.0/System.Threading.Tasks.xml", - "ref/netstandard1.0/de/System.Threading.Tasks.xml", - "ref/netstandard1.0/es/System.Threading.Tasks.xml", - "ref/netstandard1.0/fr/System.Threading.Tasks.xml", - "ref/netstandard1.0/it/System.Threading.Tasks.xml", - "ref/netstandard1.0/ja/System.Threading.Tasks.xml", - "ref/netstandard1.0/ko/System.Threading.Tasks.xml", - "ref/netstandard1.0/ru/System.Threading.Tasks.xml", - "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", - "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", - "ref/netstandard1.3/System.Threading.Tasks.dll", - "ref/netstandard1.3/System.Threading.Tasks.xml", - "ref/netstandard1.3/de/System.Threading.Tasks.xml", - "ref/netstandard1.3/es/System.Threading.Tasks.xml", - "ref/netstandard1.3/fr/System.Threading.Tasks.xml", - "ref/netstandard1.3/it/System.Threading.Tasks.xml", - "ref/netstandard1.3/ja/System.Threading.Tasks.xml", - "ref/netstandard1.3/ko/System.Threading.Tasks.xml", - "ref/netstandard1.3/ru/System.Threading.Tasks.xml", - "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", - "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.tasks.4.3.0.nupkg.sha512", - "system.threading.tasks.nuspec" - ] - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", - "type": "package", - "path": "system.threading.tasks.extensions/4.5.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net461/System.Threading.Tasks.Extensions.dll", - "lib/net461/System.Threading.Tasks.Extensions.xml", - "lib/netcoreapp2.1/_._", - "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", - "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", - "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", - "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/netcoreapp2.1/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.tasks.extensions.4.5.4.nupkg.sha512", - "system.threading.tasks.extensions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Threading.Thread/4.3.0": { - "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==", - "type": "package", - "path": "system.threading.thread/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Threading.Thread.dll", - "lib/netcore50/_._", - "lib/netstandard1.3/System.Threading.Thread.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Threading.Thread.dll", - "ref/netstandard1.3/System.Threading.Thread.dll", - "ref/netstandard1.3/System.Threading.Thread.xml", - "ref/netstandard1.3/de/System.Threading.Thread.xml", - "ref/netstandard1.3/es/System.Threading.Thread.xml", - "ref/netstandard1.3/fr/System.Threading.Thread.xml", - "ref/netstandard1.3/it/System.Threading.Thread.xml", - "ref/netstandard1.3/ja/System.Threading.Thread.xml", - "ref/netstandard1.3/ko/System.Threading.Thread.xml", - "ref/netstandard1.3/ru/System.Threading.Thread.xml", - "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml", - "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.thread.4.3.0.nupkg.sha512", - "system.threading.thread.nuspec" - ] - }, - "System.Threading.ThreadPool/4.3.0": { - "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==", - "type": "package", - "path": "system.threading.threadpool/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Threading.ThreadPool.dll", - "lib/netcore50/_._", - "lib/netstandard1.3/System.Threading.ThreadPool.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Threading.ThreadPool.dll", - "ref/netstandard1.3/System.Threading.ThreadPool.dll", - "ref/netstandard1.3/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/de/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/es/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/it/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml", - "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.threadpool.4.3.0.nupkg.sha512", - "system.threading.threadpool.nuspec" - ] - }, - "System.ValueTuple/4.5.0": { - "sha512": "okurQJO6NRE/apDIP23ajJ0hpiNmJ+f0BwOlB/cSqTLQlw5upkf+5+96+iG2Jw40G1fCVCyPz/FhIABUjMR+RQ==", - "type": "package", - "path": "system.valuetuple/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net461/System.ValueTuple.dll", - "lib/net461/System.ValueTuple.xml", - "lib/net47/System.ValueTuple.dll", - "lib/net47/System.ValueTuple.xml", - "lib/netcoreapp2.0/_._", - "lib/netstandard1.0/System.ValueTuple.dll", - "lib/netstandard1.0/System.ValueTuple.xml", - "lib/netstandard2.0/_._", - "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", - "lib/portable-net40+sl4+win8+wp8/System.ValueTuple.xml", - "lib/uap10.0.16299/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net461/System.ValueTuple.dll", - "ref/net47/System.ValueTuple.dll", - "ref/netcoreapp2.0/_._", - "ref/netstandard2.0/_._", - "ref/portable-net40+sl4+win8+wp8/System.ValueTuple.dll", - "ref/uap10.0.16299/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.valuetuple.4.5.0.nupkg.sha512", - "system.valuetuple.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "UnitsNet/4.77.0": { - "sha512": "S4rErosYZ+M7N2f76mx3DEZL/biGaUr1SJKfT8lTj7swFpyElcTcJG93rb2jTxzTKrSBDMFpLlYjpbCPEK/gfw==", - "type": "package", - "path": "unitsnet/4.77.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net40/UnitsNet.dll", - "lib/net40/UnitsNet.pdb", - "lib/net40/UnitsNet.xml", - "lib/netstandard2.0/UnitsNet.dll", - "lib/netstandard2.0/UnitsNet.pdb", - "lib/netstandard2.0/UnitsNet.xml", - "logo-32.png", - "unitsnet.4.77.0.nupkg.sha512", - "unitsnet.nuspec" - ] - }, - "Unosquare.PiGpio/0.3.1": { - "sha512": "vooYgpR4p4Bq/2nIKZbgPv07BHiuPSphq7cmvbZi5u+7jOvgEDcpNJ25rDy50SXbxph/JwNuO0O/4vpKekFPlQ==", - "type": "package", - "path": "unosquare.pigpio/0.3.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Unosquare.PiGpio.dll", - "lib/netstandard2.0/Unosquare.PiGpio.xml", - "unosquare.pigpio.0.3.1.nupkg.sha512", - "unosquare.pigpio.nuspec" - ] - }, - "Unosquare.Raspberry.Abstractions/0.4.0": { - "sha512": "8d3d8uMSTLMHpacgznS7G549TixwXUITw761ZlEYJz8uv1IaZjmFYvZXqWjLoiELNL8bZg+P1AodG9OkfI0Teg==", - "type": "package", - "path": "unosquare.raspberry.abstractions/0.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Unosquare.Raspberry.Abstractions.dll", - "lib/netstandard2.0/Unosquare.Raspberry.Abstractions.xml", - "unosquare.raspberry.abstractions.0.4.0.nupkg.sha512", - "unosquare.raspberry.abstractions.nuspec" - ] - }, - "Unosquare.Swan/2.4.0": { - "sha512": "IZOj1twEf3FrTmvqlvk7CEgpcMAbAKrpCmftU+i0MMeeyqbkzoKHx7b2wAevKD1Odj4IouOQiiL8dfWtqbE2IQ==", - "type": "package", - "path": "unosquare.swan/2.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net461/Swan.dll", - "lib/net461/Swan.xml", - "lib/netstandard2.0/Swan.dll", - "lib/netstandard2.0/Swan.xml", - "unosquare.swan.2.4.0.nupkg.sha512", - "unosquare.swan.nuspec" - ] - }, - "Unosquare.Swan.Lite/2.4.0": { - "sha512": "U5m/6LZnehrsEy9ReOS0GSwSEfvTTO/T/IjXS1klmm2yb685YZI2GjVdHYyvRvrneBwP7aZxmZXMJRaN8A07gw==", - "type": "package", - "path": "unosquare.swan.lite/2.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Swan.Lite.dll", - "lib/netstandard2.0/Swan.Lite.xml", - "unosquare.swan.lite.2.4.0.nupkg.sha512", - "unosquare.swan.lite.nuspec" - ] - } - }, - "projectFileDependencyGroups": { - "net5.0": [ - "Iot.Device.Bindings >= 1.5.0", - "System.Device.Gpio >= 1.5.0", - "Unosquare.PiGpio >= 0.3.1" - ] - }, - "packageFolders": { - "C:\\Users\\l.farina\\.nuget\\packages\\": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\l.farina\\Desktop\\UCRM_stage\\Test_GPIO\\Test_GPIO\\Test_GPIO.csproj", - "projectName": "Test_GPIO", - "projectPath": "C:\\Users\\l.farina\\Desktop\\UCRM_stage\\Test_GPIO\\Test_GPIO\\Test_GPIO.csproj", - "packagesPath": "C:\\Users\\l.farina\\.nuget\\packages\\", - "outputPath": "C:\\Users\\l.farina\\Desktop\\UCRM_stage\\Test_GPIO\\Test_GPIO\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\l.farina\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "net5.0" - ], - "sources": { - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net5.0": { - "targetAlias": "net5.0", - "dependencies": { - "Iot.Device.Bindings": { - "target": "Package", - "version": "[1.5.0, )" - }, - "System.Device.Gpio": { - "target": "Package", - "version": "[1.5.0, )" - }, - "Unosquare.PiGpio": { - "target": "Package", - "version": "[0.3.1, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/Test_GPIO/Test_GPIO/obj/project.nuget.cache b/Test_GPIO/Test_GPIO/obj/project.nuget.cache deleted file mode 100644 index 266892a..0000000 --- a/Test_GPIO/Test_GPIO/obj/project.nuget.cache +++ /dev/null @@ -1,90 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "iZJpyXlouOtZ1Kev3PwlOhpX9iO8bOpNG2wgEIYMIR8bwtUuwAU+5immwkt0maaSwyLPPaD3U8txRvgUN87VqQ==", - "success": true, - "projectFilePath": "C:\\Users\\l.farina\\Desktop\\UCRM_stage\\Test_GPIO\\Test_GPIO\\Test_GPIO.csproj", - "expectedPackageFiles": [ - "C:\\Users\\l.farina\\.nuget\\packages\\iot.device.bindings\\1.5.0\\iot.device.bindings.1.5.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\microsoft.win32.registry\\5.0.0\\microsoft.win32.registry.5.0.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\microsoft.win32.systemevents\\5.0.0\\microsoft.win32.systemevents.5.0.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\runtime.linux-arm.runtime.native.system.io.ports\\5.0.0\\runtime.linux-arm.runtime.native.system.io.ports.5.0.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\runtime.linux-arm64.runtime.native.system.io.ports\\5.0.0\\runtime.linux-arm64.runtime.native.system.io.ports.5.0.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\runtime.linux-x64.runtime.native.system.io.ports\\5.0.0\\runtime.linux-x64.runtime.native.system.io.ports.5.0.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\runtime.native.system.io.ports\\5.0.1\\runtime.native.system.io.ports.5.0.1.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\runtime.osx-x64.runtime.native.system.io.ports\\5.0.0\\runtime.osx-x64.runtime.native.system.io.ports.5.0.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\sixlabors.imagesharp\\1.0.2\\sixlabors.imagesharp.1.0.2.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.codedom\\5.0.0\\system.codedom.5.0.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.device.gpio\\1.5.0\\system.device.gpio.1.5.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.3.0\\system.diagnostics.diagnosticsource.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.drawing.common\\5.0.2\\system.drawing.common.5.0.2.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.io.ports\\5.0.1\\system.io.ports.5.0.1.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.management\\5.0.0\\system.management.5.0.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.net.http\\4.3.4\\system.net.http.4.3.4.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.net.networkinformation\\4.3.0\\system.net.networkinformation.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.security.accesscontrol\\5.0.0\\system.security.accesscontrol.5.0.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.security.cryptography.cng\\4.3.0\\system.security.cryptography.cng.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.text.encoding.codepages\\4.6.0\\system.text.encoding.codepages.4.6.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.threading.overlapped\\4.3.0\\system.threading.overlapped.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.threading.thread\\4.3.0\\system.threading.thread.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.threading.threadpool\\4.3.0\\system.threading.threadpool.4.3.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\system.valuetuple\\4.5.0\\system.valuetuple.4.5.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\unitsnet\\4.77.0\\unitsnet.4.77.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\unosquare.pigpio\\0.3.1\\unosquare.pigpio.0.3.1.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\unosquare.raspberry.abstractions\\0.4.0\\unosquare.raspberry.abstractions.0.4.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\unosquare.swan\\2.4.0\\unosquare.swan.2.4.0.nupkg.sha512", - "C:\\Users\\l.farina\\.nuget\\packages\\unosquare.swan.lite\\2.4.0\\unosquare.swan.lite.2.4.0.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file