diff --git a/NetWork/.vs/NetWork/v16/.suo b/NetWork/.vs/NetWork/v16/.suo index 5bc289f..8873d7f 100644 Binary files a/NetWork/.vs/NetWork/v16/.suo and b/NetWork/.vs/NetWork/v16/.suo differ diff --git a/NetWork/NetWork/NetWork.csproj b/NetWork/NetWork/NetWork.csproj index cc89156..7b2dc92 100644 --- a/NetWork/NetWork/NetWork.csproj +++ b/NetWork/NetWork/NetWork.csproj @@ -5,11 +5,13 @@ net5.0-windows7.0 NetWork.Program + true embedded true + x64 @@ -18,7 +20,6 @@ - diff --git a/NetWork/NetWork/Properties/PublishProfiles/FolderProfile.pubxml b/NetWork/NetWork/Properties/PublishProfiles/FolderProfile.pubxml new file mode 100644 index 0000000..d5e675c --- /dev/null +++ b/NetWork/NetWork/Properties/PublishProfiles/FolderProfile.pubxml @@ -0,0 +1,18 @@ + + + + + Release + Any CPU + D:\Neutral Folder\NetWorkAutomation + FileSystem + net5.0-windows7.0 + win-x64 + true + True + True + True + + \ No newline at end of file diff --git a/NetWork/NetWork/Properties/PublishProfiles/FolderProfile.pubxml.user b/NetWork/NetWork/Properties/PublishProfiles/FolderProfile.pubxml.user new file mode 100644 index 0000000..e07767e --- /dev/null +++ b/NetWork/NetWork/Properties/PublishProfiles/FolderProfile.pubxml.user @@ -0,0 +1,9 @@ + + + + + True|2021-06-26T18:39:14.9764613Z; + + \ No newline at end of file diff --git a/NetWork/NetWork/Properties/launchSettings.json b/NetWork/NetWork/Properties/launchSettings.json new file mode 100644 index 0000000..5ed5ab7 --- /dev/null +++ b/NetWork/NetWork/Properties/launchSettings.json @@ -0,0 +1,7 @@ +{ + "profiles": { + "NetWork": { + "commandName": "Project" + } + } +} \ No newline at end of file diff --git a/NetWork/NetWork/Torrent And Sync.py b/NetWork/NetWork/Torrent And Sync.py new file mode 100644 index 0000000..204055a --- /dev/null +++ b/NetWork/NetWork/Torrent And Sync.py @@ -0,0 +1,211 @@ +from typing import Sequence, Union +import wmi +import subprocess +import glob +import re +import pywinauto +import pywin +import psutil +import keyboard +processes = [p for p in wmi.WMI().Win32_Process() if p.Name in ["GoogleDriveFS.exe", + "googledrivesync.exe", "qbittorrent.exe", "Surfshark.exe", "mstsc.exe"]] + +def rdp(start_rdp_software: bool = True): + '''rdp detects if the rdp software is running on the computer. if the start_rdp_software is true at calling, the function will start the rdp if there is no program that runs. + elsewise, it will close it + + :param start_rdp_software: switch. it can be called to run(true) or stop(false) the rdp software, defaults to True + :type start_rdp_software: bool, optional + ''' + if start_rdp_software: + running = False + for process in processes: + if process.CommandLine == '"mstsc.exe" "D:\\Drive\\מסמכים\\vms\\משרדוש.rdp"' or process.CommandLine == '"C:\\Windows\\System32\\mstsc.exe" /v:"132.64.161.2"': + running = True + if not running: + subprocess.Popen('"mstsc.exe" "D:\\Drive\\מסמכים\\vms\\משרדוש.rdp"', + creationflags=subprocess.CREATE_NO_WINDOW, stdout=subprocess.PIPE, shell=True) + else: + for process in processes: + if process.CommandLine == '"mstsc.exe" "D:\\Drive\\מסמכים\\vms\\משרדוש.rdp"' or process.CommandLine == '"C:\\Windows\\System32\\mstsc.exe" /v:"132.64.161.2"': + try: + process.Terminate() + except: + continue + +def allowd_macs(mac_address: Union[dict, tuple, str]): + allowed = ['00-E0-4C-68-13-E4'] + if isinstance(mac_address, str): + if mac_address in allowed: + return True + for allowed_elements in allowed: + if allowed_elements in mac_address: + return True + return False + + +def start_process(process_list: list): + start = { + "Surfshark.exe": 'C:/Program Files (x86)/Surfshark/Surfshark.exe', + 'qbittorrent.exe': "C:/Program Files/qBittorrent/qbittorrent.exe", "GoogleDriveFS.exe": glob.glob( + 'C:/Program Files/Google/Drive File Stream/*/GoogleDriveFS.exe', recursive=True)[0], + "googledrivesync.exe": 'C:/Program Files/Google/Drive/googledrivesync.exe' + } + for p in process_list: + start_this_process = False + for k in processes: + if p == k.Name: + start_this_process = True + if not start_this_process: + subprocess.Popen(start[p], shell=True, creationflags=subprocess.CREATE_NO_WINDOW, stdout=subprocess.PIPE) + + +def stop_process(process_list: list): + for proc in process_list: + for k in processes: + if proc == k.Name: + try: + k.Terminate() + except: + continue + + +def disallow(process_list: list = ["GoogleDriveFS.exe", "googledrivesync.exe"], + mute: bool = True, run_process: list = None): + stop_process(process_list) + if run_process: + start_process(run_process) + if mute: + subprocess.run(["powershell", "-command", "Set-AudioDevice -PlaybackMute $true"], + shell=True, creationflags=subprocess.CREATE_NO_WINDOW) + else: + subprocess.run(["powershell", "-command", "Set-AudioDevice -PlaybackMute $false"], + shell=True, creationflags=subprocess.CREATE_NO_WINDOW) + + +def allow(process_list: list = ["Surfshark.exe", 'qbittorrent.exe'], unmute: bool = True): + start_process(process_list) + if unmute: + subprocess.run(["powershell", "-command", "Set-AudioDevice -PlaybackMute $false"], + shell=True, creationflags=subprocess.CREATE_NO_WINDOW) + else: + subprocess.run(["powershell", "-command", "Set-AudioDevice -PlaybackMute $true"], + shell=True, creationflags=subprocess.CREATE_NO_WINDOW) + + +def _actiavte_rasdial(): + pywinauto.findwindows.find_window() + + +def dial_connect(connection: str = 'Connected to\nek\nCommand completed successfully.\n'): + connected = False if connection == 'Connected to\nek\nCommand completed successfully.\n' else True + if connected: + subprocess.Popen( + 'rasphone ek', + shell=True, creationflags=subprocess.CREATE_NO_WINDOW, stdout=subprocess.PIPE) + # _actiavte_rasdial() + # keyboard.press_and_release('alt') + keyboard.press_and_release('enter') + # _actiavte_rasdial() + keyboard.press_and_release('enter') + subprocess.Popen(["powershell", "-command", "Set-AudioDevice -PlaybackMute $false"], + shell=True, creationflags=subprocess.CREATE_NO_WINDOW, stdout=subprocess.PIPE) + +def _hiercy(network_status: dict): + if network_status["ek"]: + return "ek" + elif network_status["good_lan"]: + return 'good_lan' + elif network_status["lan"]: + return "lan" + return "Wi-Fi" + + +def get_net_status(supreme_mac: Union[str, list, tuple, set] = '00-E0-4C-68-13-F8'): + + nets, stats = psutil.net_if_addrs(), psutil.net_if_stats() + networks = subprocess.Popen('pwsh -executionPolicy bypass -command "Get-NetConnectionProfile"', + shell=True, stdout=subprocess.PIPE).communicate()[0].decode() + macs = {nets[key][0][1]: key.strip('\u200f') for key in nets if stats[key][0]} + lan_mac = get_lan(supreme_mac, macs) + profiles = [Net[19:].strip('\u200f') for net in networks.split('\r\n\r\n') + for Net in net.split('\r\n') if 'InterfaceAlias :' in Net] + wifi = [net[15:].split('\r\n')[0] for net in networks.split('Name') if 'Wi-Fi' in net] + wifi = wifi[0] if wifi else None + vpn = [key.strip('\u200f') for key in nets if stats[key][0] and re.search(r'(surf|shark)', key)] + return {"Wi-Fi": wifi, "lan": (lan_mac), "ek": ("ek" in profiles), "vpn": vpn, "good_lan": allowd_macs(macs)} if vpn else {"Wi-Fi": wifi, "lan": (lan_mac), "ek": ("ek" in profiles), "good_lan": allowd_macs(macs)} + + +def get_lan(macs: Union[str, list, tuple, set] = '00-E0-4C-68-13-F8', dict_of_macs: dict = None): + SMAC = ['00-E0-4C-68-13-F8', "00-FF-33-C8-0F-88"] + if isinstance(macs, str) and macs in dict_of_macs: + return True + elif not isinstance(macs, str): + for m in macs: + if m in SMAC: + return True + return False + + +def get_status(supreme_mac: Union[str, list, tuple, set] = '00-E0-4C-68-13-F8'): + wifi = { + "allowed": + ["Oliver", "Oliver5", "Oliver", "x018_497622", "TNCAPE5A34D", "MSBR", "Azrieli_Modiin_WIFI", "lu shalmata", + "mickey", "Mickey", "Network", "192.168.1.", "Silmarill", "wintunshark0", "saret", "Saret", "huji-meonot"], + "disallowed": ["HUJI-netX", "eduroam", "HUJI-guest", "132.64"]} + network_status = get_net_status(supreme_mac) + hierarchy = _hiercy(network_status) + if hierarchy == "Wi-Fi": + current_network = network_status["Wi-Fi"].split(' ')[0] + w = 0 if re.search(current_network, " ".join(wifi["disallowed"])) else 1 + return {"Wi-Fi": w, "vpn": network_status["vpn"]} if network_status.get("vpn") else {"Wi-Fi": w} + elif hierarchy == 'good_lan': + return {'good_lan': True} + elif hierarchy == "lan": + return {"lan": network_status["lan"], "vpn": network_status["vpn"]} if network_status.get("vpn") else {"lan": network_status["lan"]} + return {"ek": network_status["ek"], "vpn": network_status["vpn"]} if network_status.get("vpn") else {"ek": network_status["ek"]} + + +def do_the_schtik(supreme_mac: str = '00-E0-4C-68-13-F8', discontinue: str = None): + network_status = get_status(supreme_mac) + if network_status.get("vpn"): + allow(["qbittorrent.exe", "GoogleDriveFS.exe", "googledrivesync.exe", "Surfshark.exe"]) + rdp(False) + if network_status.get("lan"): + dial_connect(discontinue) + elif network_status.get('Wi-Fi') and network_status['Wi-Fi'] == 0: + allow(["qbittorrent.exe", "GoogleDriveFS.exe", "googledrivesync.exe", "Surfshark.exe"], False) + elif network_status.get('Wi-Fi') and network_status['Wi-Fi'] == 1: + allow(["qbittorrent.exe", "GoogleDriveFS.exe", "googledrivesync.exe", "Surfshark.exe"]) + rdp(False) + elif network_status.get("good_lan") and network_status["good_lan"]: + allow(["qbittorrent.exe", "GoogleDriveFS.exe", "googledrivesync.exe", "Surfshark.exe"]) + rdp(False) + else: + if network_status.get("lan"): + dial_connect(discontinue) + disallow(["Surfshark.exe", 'qbittorrent.exe'], False, + run_process=["GoogleDriveFS.exe", "googledrivesync.exe"]) + rdp() + elif network_status.get("ek"): + disallow(["Surfshark.exe", 'qbittorrent.exe'], False, + run_process=["GoogleDriveFS.exe", "googledrivesync.exe"]) + rdp() + else: + disallow(["Surfshark.exe", 'qbittorrent.exe'], run_process=["GoogleDriveFS.exe", "googledrivesync.exe"]) + + +def main(): + discontinue = subprocess.Popen( + 'rasdial', + shell=True, creationflags=subprocess.CREATE_NO_WINDOW, stdout=subprocess.PIPE).communicate()[0].decode().split( + "\r\n")[0] + do_the_schtik(discontinue=discontinue) + + exit() + + +if __name__ == '__main__': + + main() + # get_net_status() diff --git a/NetWork/NetWork/obj/Debug/NetWork.1.0.0.nuspec b/NetWork/NetWork/obj/Debug/NetWork.1.0.0.nuspec new file mode 100644 index 0000000..85b357f --- /dev/null +++ b/NetWork/NetWork/obj/Debug/NetWork.1.0.0.nuspec @@ -0,0 +1,26 @@ + + + + NetWork + 1.0.0 + NetWork + Package Description + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.assets.cache b/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.assets.cache index 6750dd2..9653bb1 100644 Binary files a/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.assets.cache and b/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.assets.cache differ diff --git a/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.AssemblyReference.cache b/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.AssemblyReference.cache index 5c045e9..928849e 100644 Binary files a/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.AssemblyReference.cache and b/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.AssemblyReference.cache differ diff --git a/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.CoreCompileInputs.cache b/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.CoreCompileInputs.cache index d4e7af0..d4b0283 100644 --- a/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.CoreCompileInputs.cache +++ b/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -b755c1fcc436e3bd1ba3fa95bde9da72a01314b5 +b12bbc8565f6610c6edf9c63353648b20956c171 diff --git a/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.FileListAbsolute.txt b/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.FileListAbsolute.txt index d0c253d..c44e1fa 100644 --- a/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.FileListAbsolute.txt +++ b/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.FileListAbsolute.txt @@ -205,293 +205,3 @@ C:\Users\סארט\source\repos\NetWork\NetWork\obj\Debug\net5.0-windows7.0\ref\N C:\Users\סארט\source\repos\NetWork\NetWork\obj\Debug\net5.0-windows7.0\NetWork.genruntimeconfig.cache C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\SimpleWifi.dll C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\DotRas.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\Microsoft.CSharp.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\Microsoft.VisualBasic.Core.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\Microsoft.VisualBasic.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\Microsoft.Win32.Primitives.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.AppContext.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Buffers.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Collections.Concurrent.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Collections.Immutable.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Collections.NonGeneric.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Collections.Specialized.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Collections.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.ComponentModel.Annotations.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.ComponentModel.DataAnnotations.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.ComponentModel.EventBasedAsync.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.ComponentModel.Primitives.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.ComponentModel.TypeConverter.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.ComponentModel.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Configuration.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Console.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Core.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Data.Common.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Data.DataSetExtensions.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Data.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Diagnostics.Contracts.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Diagnostics.Debug.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Diagnostics.DiagnosticSource.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Diagnostics.FileVersionInfo.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Diagnostics.Process.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Diagnostics.StackTrace.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Diagnostics.TextWriterTraceListener.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Diagnostics.Tools.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Diagnostics.TraceSource.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Diagnostics.Tracing.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Drawing.Primitives.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Drawing.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Dynamic.Runtime.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Formats.Asn1.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Globalization.Calendars.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Globalization.Extensions.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Globalization.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.IO.Compression.Brotli.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.IO.Compression.FileSystem.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.IO.Compression.ZipFile.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.IO.Compression.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.IO.FileSystem.DriveInfo.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.IO.FileSystem.Primitives.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.IO.FileSystem.Watcher.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.IO.FileSystem.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.IO.IsolatedStorage.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.IO.MemoryMappedFiles.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.IO.Pipes.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.IO.UnmanagedMemoryStream.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.IO.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Linq.Expressions.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Linq.Parallel.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Linq.Queryable.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Linq.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Memory.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.Http.Json.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.Http.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.HttpListener.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.Mail.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.NameResolution.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.NetworkInformation.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.Ping.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.Primitives.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.Requests.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.Security.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.ServicePoint.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.Sockets.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.WebClient.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.WebHeaderCollection.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.WebProxy.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.WebSockets.Client.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.WebSockets.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Numerics.Vectors.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Numerics.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.ObjectModel.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Reflection.DispatchProxy.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Reflection.Emit.ILGeneration.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Reflection.Emit.Lightweight.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Reflection.Emit.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Reflection.Extensions.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Reflection.Metadata.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Reflection.Primitives.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Reflection.TypeExtensions.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Reflection.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Resources.Reader.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Resources.ResourceManager.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Resources.Writer.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Runtime.CompilerServices.Unsafe.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Runtime.CompilerServices.VisualC.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Runtime.Extensions.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Runtime.Handles.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Runtime.InteropServices.RuntimeInformation.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Runtime.InteropServices.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Runtime.Intrinsics.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Runtime.Loader.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Runtime.Numerics.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Runtime.Serialization.Formatters.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Runtime.Serialization.Json.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Runtime.Serialization.Primitives.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Runtime.Serialization.Xml.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Runtime.Serialization.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Runtime.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Security.Claims.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Security.Cryptography.Algorithms.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Security.Cryptography.Csp.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Security.Cryptography.Encoding.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Security.Cryptography.Primitives.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Security.Cryptography.X509Certificates.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Security.Principal.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Security.SecureString.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Security.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.ServiceModel.Web.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.ServiceProcess.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Text.Encoding.CodePages.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Text.Encoding.Extensions.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Text.Encoding.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Text.Json.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Text.RegularExpressions.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Threading.Channels.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Threading.Overlapped.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Threading.Tasks.Dataflow.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Threading.Tasks.Extensions.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Threading.Tasks.Parallel.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Threading.Tasks.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Threading.Thread.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Threading.ThreadPool.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Threading.Timer.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Threading.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Transactions.Local.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Transactions.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.ValueTuple.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Web.HttpUtility.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Web.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Windows.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Xml.Linq.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Xml.ReaderWriter.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Xml.Serialization.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Xml.XDocument.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Xml.XPath.XDocument.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Xml.XPath.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Xml.XmlDocument.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Xml.XmlSerializer.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Xml.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\WindowsBase.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\mscorlib.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\netstandard.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Modules\CimCmdlets\CimCmdlets.psd1 -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\Diagnostics.format.ps1xml -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\Event.format.ps1xml -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\GetEvent.types.ps1xml -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\Microsoft.PowerShell.Diagnostics.psd1 -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Modules\Microsoft.WSMan.Management\Microsoft.WSMan.Management.psd1 -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Modules\Microsoft.WSMan.Management\WSMan.format.ps1xml -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Modules\PSDiagnostics\PSDiagnostics.psd1 -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Modules\PSDiagnostics\PSDiagnostics.psm1 -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Markdig.Signed.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Microsoft.ApplicationInsights.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Microsoft.CodeAnalysis.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Microsoft.CodeAnalysis.CSharp.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Namotion.Reflection.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Newtonsoft.Json.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NJsonSchema.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.ComponentModel.Composition.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.ComponentModel.Composition.Registration.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.Data.Odbc.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.Data.OleDb.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.Data.SqlClient.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.Diagnostics.EventLog.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.DirectoryServices.AccountManagement.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.DirectoryServices.Protocols.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.Drawing.Common.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.IO.Ports.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.Net.Http.WinHttpHandler.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.Private.ServiceModel.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.Reflection.Context.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.Runtime.Caching.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.Security.Cryptography.Pkcs.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.ServiceModel.Duplex.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.ServiceModel.Http.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.ServiceModel.NetTcp.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.ServiceModel.Primitives.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.ServiceModel.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.ServiceModel.Security.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.ServiceModel.Syndication.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.ServiceProcess.ServiceController.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.Text.Encodings.Web.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\cs\Microsoft.CodeAnalysis.resources.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\de\Microsoft.CodeAnalysis.resources.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\es\Microsoft.CodeAnalysis.resources.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\fr\Microsoft.CodeAnalysis.resources.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\it\Microsoft.CodeAnalysis.resources.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ja\Microsoft.CodeAnalysis.resources.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ko\Microsoft.CodeAnalysis.resources.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\pl\Microsoft.CodeAnalysis.resources.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\pt-BR\Microsoft.CodeAnalysis.resources.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ru\Microsoft.CodeAnalysis.resources.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\tr\Microsoft.CodeAnalysis.resources.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Microsoft.Management.Infrastructure.CimCmdlets.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Microsoft.PowerShell.Commands.Diagnostics.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\unix\lib\net5.0\Microsoft.PowerShell.Commands.Management.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Microsoft.PowerShell.Commands.Management.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\unix\lib\net5.0\Microsoft.PowerShell.Commands.Utility.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Microsoft.PowerShell.Commands.Utility.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\unix\lib\net5.0\Microsoft.PowerShell.ConsoleHost.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Microsoft.PowerShell.ConsoleHost.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Microsoft.PowerShell.CoreCLR.Eventing.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\unix\lib\net5.0\Microsoft.PowerShell.MarkdownRender.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Microsoft.PowerShell.MarkdownRender.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\linux-arm\native\libpsl-native.so -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\linux-arm64\native\libpsl-native.so -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\linux-musl-x64\native\libpsl-native.so -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\linux-x64\native\libmi.so -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\linux-x64\native\libpsl-native.so -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\linux-x64\native\libpsrpclient.so -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\osx\native\libmi.dylib -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\osx\native\libpsl-native.dylib -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\osx\native\libpsrpclient.dylib -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm\native\PowerShell.Core.Instrumentation.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm\native\pwrshplugin.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm64\native\PowerShell.Core.Instrumentation.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm64\native\pwrshplugin.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-x64\native\PowerShell.Core.Instrumentation.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-x64\native\pwrshplugin.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-x86\native\PowerShell.Core.Instrumentation.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-x86\native\pwrshplugin.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\unix\lib\net5.0\Microsoft.PowerShell.SDK.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Microsoft.PowerShell.SDK.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\unix\lib\net5.0\Microsoft.PowerShell.Security.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Microsoft.PowerShell.Security.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Microsoft.WSMan.Management.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Microsoft.WSMan.Runtime.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\linux-arm\native\libSystem.IO.Ports.Native.so -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\linux-arm64\native\libSystem.IO.Ports.Native.so -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\linux-x64\native\libSystem.IO.Ports.Native.so -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\osx-x64\native\libSystem.IO.Ports.Native.dylib -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm64\native\sni.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-x64\native\sni.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-x86\native\sni.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\freebsd\lib\netcoreapp2.0\System.Data.Odbc.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\linux\lib\netcoreapp2.0\System.Data.Odbc.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\osx\lib\netcoreapp2.0\System.Data.Odbc.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\netcoreapp2.0\System.Data.Odbc.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\netstandard2.0\System.Data.OleDb.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.EventLog.Messages.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.EventLog.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.AccountManagement.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\linux\lib\netcoreapp2.0\System.DirectoryServices.Protocols.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\osx\lib\netcoreapp2.0\System.DirectoryServices.Protocols.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.Protocols.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\unix\lib\netcoreapp3.0\System.Drawing.Common.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\netcoreapp3.0\System.Drawing.Common.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\linux\lib\netstandard2.0\System.IO.Ports.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\osx\lib\netstandard2.0\System.IO.Ports.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\netstandard2.0\System.IO.Ports.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\unix\lib\net5.0\System.Management.Automation.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\System.Management.Automation.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\netstandard2.0\System.Net.Http.WinHttpHandler.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\netcoreapp3.0\System.Security.Cryptography.Pkcs.dll -C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\netstandard2.0\System.ServiceProcess.ServiceController.dll diff --git a/NetWork/NetWork/obj/Debug/net5.0-windows7.0/PublishOutputs.b6becf02d1.txt b/NetWork/NetWork/obj/Debug/net5.0-windows7.0/PublishOutputs.b6becf02d1.txt new file mode 100644 index 0000000..7f39c88 --- /dev/null +++ b/NetWork/NetWork/obj/Debug/net5.0-windows7.0/PublishOutputs.b6becf02d1.txt @@ -0,0 +1,486 @@ +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\NetWork.exe +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\Microsoft.CSharp.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\Microsoft.VisualBasic.Core.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\Microsoft.VisualBasic.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\Microsoft.Win32.Primitives.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.AppContext.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Buffers.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Collections.Concurrent.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Collections.Immutable.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Collections.NonGeneric.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Collections.Specialized.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Collections.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.ComponentModel.Annotations.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.ComponentModel.DataAnnotations.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.ComponentModel.EventBasedAsync.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.ComponentModel.Primitives.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.ComponentModel.TypeConverter.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.ComponentModel.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Configuration.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Console.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Core.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Data.Common.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Data.DataSetExtensions.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Data.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Diagnostics.Contracts.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Diagnostics.Debug.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Diagnostics.DiagnosticSource.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Diagnostics.FileVersionInfo.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Diagnostics.Process.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Diagnostics.StackTrace.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Diagnostics.TextWriterTraceListener.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Diagnostics.Tools.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Diagnostics.TraceSource.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Diagnostics.Tracing.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Drawing.Primitives.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Drawing.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Dynamic.Runtime.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Formats.Asn1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Globalization.Calendars.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Globalization.Extensions.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Globalization.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.IO.Compression.Brotli.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.IO.Compression.FileSystem.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.IO.Compression.ZipFile.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.IO.Compression.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.IO.FileSystem.DriveInfo.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.IO.FileSystem.Primitives.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.IO.FileSystem.Watcher.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.IO.FileSystem.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.IO.IsolatedStorage.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.IO.MemoryMappedFiles.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.IO.Pipes.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.IO.UnmanagedMemoryStream.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.IO.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Linq.Expressions.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Linq.Parallel.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Linq.Queryable.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Linq.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Memory.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.Http.Json.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.Http.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.HttpListener.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.Mail.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.NameResolution.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.NetworkInformation.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.Ping.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.Primitives.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.Requests.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.Security.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.ServicePoint.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.Sockets.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.WebClient.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.WebHeaderCollection.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.WebProxy.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.WebSockets.Client.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.WebSockets.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Numerics.Vectors.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Numerics.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.ObjectModel.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Reflection.DispatchProxy.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Reflection.Emit.ILGeneration.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Reflection.Emit.Lightweight.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Reflection.Emit.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Reflection.Extensions.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Reflection.Metadata.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Reflection.Primitives.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Reflection.TypeExtensions.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Reflection.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Resources.Reader.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Resources.ResourceManager.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Resources.Writer.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Runtime.CompilerServices.Unsafe.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Runtime.CompilerServices.VisualC.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Runtime.Extensions.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Runtime.Handles.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Runtime.InteropServices.RuntimeInformation.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Runtime.InteropServices.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Runtime.Intrinsics.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Runtime.Loader.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Runtime.Numerics.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Runtime.Serialization.Formatters.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Runtime.Serialization.Json.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Runtime.Serialization.Primitives.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Runtime.Serialization.Xml.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Runtime.Serialization.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Runtime.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Security.Claims.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Security.Cryptography.Algorithms.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Security.Cryptography.Csp.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Security.Cryptography.Encoding.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Security.Cryptography.Primitives.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Security.Cryptography.X509Certificates.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Security.Principal.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Security.SecureString.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Security.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.ServiceModel.Web.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.ServiceProcess.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Text.Encoding.CodePages.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Text.Encoding.Extensions.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Text.Encoding.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Text.Json.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Text.RegularExpressions.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Threading.Channels.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Threading.Overlapped.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Threading.Tasks.Dataflow.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Threading.Tasks.Extensions.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Threading.Tasks.Parallel.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Threading.Tasks.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Threading.Thread.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Threading.ThreadPool.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Threading.Timer.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Threading.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Transactions.Local.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Transactions.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.ValueTuple.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Web.HttpUtility.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Web.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Windows.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Xml.Linq.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Xml.ReaderWriter.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Xml.Serialization.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Xml.XDocument.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Xml.XPath.XDocument.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Xml.XPath.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Xml.XmlDocument.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Xml.XmlSerializer.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Xml.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\WindowsBase.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\mscorlib.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\netstandard.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Modules\CimCmdlets\CimCmdlets.psd1 +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\Diagnostics.format.ps1xml +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\Event.format.ps1xml +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\GetEvent.types.ps1xml +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\Microsoft.PowerShell.Diagnostics.psd1 +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Modules\Microsoft.WSMan.Management\Microsoft.WSMan.Management.psd1 +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Modules\Microsoft.WSMan.Management\WSMan.format.ps1xml +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Modules\PSDiagnostics\PSDiagnostics.psd1 +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Modules\PSDiagnostics\PSDiagnostics.psm1 +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\AudioControlNative.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\NetWork.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\NetWork.deps.json +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\NetWork.runtimeconfig.json +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\DotRas.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\Markdig.Signed.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\Microsoft.ApplicationInsights.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\Microsoft.CodeAnalysis.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\Microsoft.CodeAnalysis.CSharp.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\Namotion.Reflection.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\NAudio.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\NAudio.Asio.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\NAudio.Core.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\NAudio.Midi.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\NAudio.Wasapi.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\NAudio.WinForms.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\NAudio.WinMM.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\Newtonsoft.Json.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\NJsonSchema.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\SimpleWifi.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.ComponentModel.Composition.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.ComponentModel.Composition.Registration.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.Data.Odbc.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.Data.OleDb.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.Data.SqlClient.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.Diagnostics.EventLog.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.DirectoryServices.AccountManagement.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.DirectoryServices.Protocols.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.Drawing.Common.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.IO.Ports.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.Management.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.Net.Http.WinHttpHandler.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.Private.ServiceModel.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.Reflection.Context.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.Runtime.Caching.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.Security.Cryptography.Pkcs.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.ServiceModel.Duplex.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.ServiceModel.Http.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.ServiceModel.NetTcp.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.ServiceModel.Primitives.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.ServiceModel.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.ServiceModel.Security.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.ServiceModel.Syndication.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.ServiceProcess.ServiceController.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.Text.Encodings.Web.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\cs\Microsoft.CodeAnalysis.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\de\Microsoft.CodeAnalysis.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\es\Microsoft.CodeAnalysis.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\fr\Microsoft.CodeAnalysis.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\it\Microsoft.CodeAnalysis.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ja\Microsoft.CodeAnalysis.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ko\Microsoft.CodeAnalysis.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\pl\Microsoft.CodeAnalysis.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\pt-BR\Microsoft.CodeAnalysis.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ru\Microsoft.CodeAnalysis.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\tr\Microsoft.CodeAnalysis.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\zh-Hans\Microsoft.CodeAnalysis.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\zh-Hant\Microsoft.CodeAnalysis.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\cs\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\de\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\es\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\fr\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\it\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ja\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ko\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\pl\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ru\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\tr\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Microsoft.Management.Infrastructure.CimCmdlets.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\unix\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-arm\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-arm\native\mi.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-arm\native\miutils.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-arm64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-arm64\native\mi.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-arm64\native\miutils.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win10-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win10-x64\native\mi.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win10-x64\native\miutils.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win10-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win10-x86\native\mi.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win10-x86\native\miutils.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\mi.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\miutils.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x86\native\mi.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x86\native\miutils.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\mi.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\miutils.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x86\native\mi.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x86\native\miutils.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x64\native\mi.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x64\native\miutils.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x86\native\mi.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x86\native\miutils.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\API-MS-Win-Base-Util-L1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-2.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\API-MS-Win-Core-PrivateProfile-L1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\API-MS-Win-Core-String-L2-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\API-MS-Win-Core-StringAnsi-L1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\API-MS-Win-EventLog-Legacy-L1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\API-MS-Win-Eventing-Consumer-L1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\API-MS-Win-Eventing-Controller-L1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\API-MS-Win-Eventing-Legacy-L1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\API-MS-Win-Eventing-Provider-L1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\API-MS-Win-Security-LsaPolicy-L1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\API-MS-Win-devices-config-L1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\API-MS-Win-devices-config-L1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-com-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-com-private-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-comm-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-console-l2-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-datetime-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-debug-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-delayload-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-errorhandling-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-fibers-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-fibers-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-file-l1-2-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-file-l2-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-heap-obsolete-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-io-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-io-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-kernel32-legacy-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-kernel32-legacy-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-kernel32-legacy-l1-1-2.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-libraryloader-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-localization-l1-2-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-localization-l2-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-localization-obsolete-l1-2-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-memory-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-memory-l1-1-2.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-memory-l1-1-3.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-namedpipe-l1-2-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-normalization-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-privateprofile-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-processenvironment-l1-2-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-processsecurity-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-processthreads-l1-1-2.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-psapi-ansi-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-psapi-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-psapi-obsolete-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-realtime-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-registry-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-registry-l2-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-shlwapi-legacy-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-shlwapi-obsolete-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-shutdown-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-shutdown-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-string-obsolete-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-string-obsolete-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-stringloader-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-stringloader-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-2.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-3.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-threadpool-l1-2-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-threadpool-legacy-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-threadpool-private-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-url-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-version-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-winrt-error-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-winrt-error-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-winrt-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-winrt-registration-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-winrt-robuffer-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-winrt-string-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-wow64-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-xstate-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-xstate-l2-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-ro-typeresolution-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-security-base-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-security-cpwl-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-security-cryptoapi-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-security-lsalookup-l2-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-security-lsalookup-l2-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-security-provider-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-security-sddl-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-service-core-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-service-core-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-service-management-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-service-management-l2-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-service-private-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-service-private-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-service-winsvc-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\ext-ms-win-advapi32-encryptedfile-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-2.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\API-MS-Win-devices-config-L1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-file-l1-2-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-file-l2-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-kernel32-legacy-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-kernel32-legacy-l1-1-2.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-localization-l1-2-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-localization-obsolete-l1-2-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-memory-l1-1-2.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-memory-l1-1-3.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-namedpipe-l1-2-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-privateprofile-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-processthreads-l1-1-2.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-shutdown-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-string-obsolete-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-stringloader-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-sysinfo-l1-2-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-sysinfo-l1-2-2.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-sysinfo-l1-2-3.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-winrt-error-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-xstate-l2-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-security-cpwl-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-security-cryptoapi-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-security-lsalookup-l2-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-service-private-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-2.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x64\native\api-ms-win-core-kernel32-legacy-l1-1-2.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x64\native\api-ms-win-core-memory-l1-1-3.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x64\native\api-ms-win-core-namedpipe-l1-2-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x64\native\api-ms-win-core-string-obsolete-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x64\native\api-ms-win-core-sysinfo-l1-2-2.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x64\native\api-ms-win-core-sysinfo-l1-2-3.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x64\native\api-ms-win-security-cpwl-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Microsoft.PowerShell.Commands.Diagnostics.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\unix\lib\net5.0\Microsoft.PowerShell.Commands.Management.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Microsoft.PowerShell.Commands.Management.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\unix\lib\net5.0\Microsoft.PowerShell.Commands.Utility.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Microsoft.PowerShell.Commands.Utility.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\unix\lib\net5.0\Microsoft.PowerShell.ConsoleHost.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Microsoft.PowerShell.ConsoleHost.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Microsoft.PowerShell.CoreCLR.Eventing.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\unix\lib\net5.0\Microsoft.PowerShell.MarkdownRender.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Microsoft.PowerShell.MarkdownRender.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\linux-arm\native\libpsl-native.so +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\linux-arm64\native\libpsl-native.so +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\linux-musl-x64\native\libpsl-native.so +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\linux-x64\native\libmi.so +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\linux-x64\native\libpsl-native.so +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\linux-x64\native\libpsrpclient.so +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\osx\native\libmi.dylib +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\osx\native\libpsl-native.dylib +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\osx\native\libpsrpclient.dylib +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-arm\native\PowerShell.Core.Instrumentation.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-arm\native\pwrshplugin.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-arm64\native\PowerShell.Core.Instrumentation.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-arm64\native\pwrshplugin.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-x64\native\PowerShell.Core.Instrumentation.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-x64\native\pwrshplugin.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-x86\native\PowerShell.Core.Instrumentation.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-x86\native\pwrshplugin.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\unix\lib\net5.0\Microsoft.PowerShell.SDK.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Microsoft.PowerShell.SDK.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\unix\lib\net5.0\Microsoft.PowerShell.Security.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Microsoft.PowerShell.Security.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Microsoft.WSMan.Management.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Microsoft.WSMan.Runtime.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\linux-arm\native\libSystem.IO.Ports.Native.so +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\linux-arm64\native\libSystem.IO.Ports.Native.so +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\linux-x64\native\libSystem.IO.Ports.Native.so +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\osx-x64\native\libSystem.IO.Ports.Native.dylib +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-arm64\native\sni.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-x64\native\sni.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-x86\native\sni.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\freebsd\lib\netcoreapp2.0\System.Data.Odbc.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\linux\lib\netcoreapp2.0\System.Data.Odbc.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\osx\lib\netcoreapp2.0\System.Data.Odbc.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\netcoreapp2.0\System.Data.Odbc.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\netstandard2.0\System.Data.OleDb.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.EventLog.Messages.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.EventLog.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.AccountManagement.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\linux\lib\netcoreapp2.0\System.DirectoryServices.Protocols.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\osx\lib\netcoreapp2.0\System.DirectoryServices.Protocols.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.Protocols.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\unix\lib\netcoreapp3.0\System.Drawing.Common.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\netcoreapp3.0\System.Drawing.Common.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\linux\lib\netstandard2.0\System.IO.Ports.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\osx\lib\netstandard2.0\System.IO.Ports.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\netstandard2.0\System.IO.Ports.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\netcoreapp2.0\System.Management.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\unix\lib\net5.0\System.Management.Automation.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\System.Management.Automation.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\netstandard2.0\System.Net.Http.WinHttpHandler.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\netcoreapp3.0\System.Security.Cryptography.Pkcs.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\netstandard2.0\System.ServiceProcess.ServiceController.dll diff --git a/NetWork/NetWork/obj/NetWork.csproj.nuget.dgspec.json b/NetWork/NetWork/obj/NetWork.csproj.nuget.dgspec.json index 2498a3c..58bf49f 100644 --- a/NetWork/NetWork/obj/NetWork.csproj.nuget.dgspec.json +++ b/NetWork/NetWork/obj/NetWork.csproj.nuget.dgspec.json @@ -65,10 +65,6 @@ "target": "Package", "version": "[1.0.0, )" }, - "Microsoft.PowerShell.SDK": { - "target": "Package", - "version": "[7.1.3, )" - }, "NAudio": { "target": "Package", "version": "[2.0.1, )" diff --git a/NetWork/NetWork/obj/NetWork.csproj.nuget.g.props b/NetWork/NetWork/obj/NetWork.csproj.nuget.g.props index 09061e9..1fef40e 100644 --- a/NetWork/NetWork/obj/NetWork.csproj.nuget.g.props +++ b/NetWork/NetWork/obj/NetWork.csproj.nuget.g.props @@ -16,1857 +16,4 @@ $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\Microsoft.CSharp.dll - ref\ - True - ref\Microsoft.CSharp.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\Microsoft.VisualBasic.Core.dll - ref\ - True - ref\Microsoft.VisualBasic.Core.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\Microsoft.VisualBasic.dll - ref\ - True - ref\Microsoft.VisualBasic.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\Microsoft.Win32.Primitives.dll - ref\ - True - ref\Microsoft.Win32.Primitives.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.AppContext.dll - ref\ - True - ref\System.AppContext.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Buffers.dll - ref\ - True - ref\System.Buffers.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Collections.Concurrent.dll - ref\ - True - ref\System.Collections.Concurrent.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Collections.Immutable.dll - ref\ - True - ref\System.Collections.Immutable.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Collections.NonGeneric.dll - ref\ - True - ref\System.Collections.NonGeneric.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Collections.Specialized.dll - ref\ - True - ref\System.Collections.Specialized.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Collections.dll - ref\ - True - ref\System.Collections.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.ComponentModel.Annotations.dll - ref\ - True - ref\System.ComponentModel.Annotations.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.ComponentModel.DataAnnotations.dll - ref\ - True - ref\System.ComponentModel.DataAnnotations.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.ComponentModel.EventBasedAsync.dll - ref\ - True - ref\System.ComponentModel.EventBasedAsync.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.ComponentModel.Primitives.dll - ref\ - True - ref\System.ComponentModel.Primitives.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.ComponentModel.TypeConverter.dll - ref\ - True - ref\System.ComponentModel.TypeConverter.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.ComponentModel.dll - ref\ - True - ref\System.ComponentModel.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Configuration.dll - ref\ - True - ref\System.Configuration.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Console.dll - ref\ - True - ref\System.Console.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Core.dll - ref\ - True - ref\System.Core.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Data.Common.dll - ref\ - True - ref\System.Data.Common.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Data.DataSetExtensions.dll - ref\ - True - ref\System.Data.DataSetExtensions.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Data.dll - ref\ - True - ref\System.Data.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Diagnostics.Contracts.dll - ref\ - True - ref\System.Diagnostics.Contracts.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Diagnostics.Debug.dll - ref\ - True - ref\System.Diagnostics.Debug.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Diagnostics.DiagnosticSource.dll - ref\ - True - ref\System.Diagnostics.DiagnosticSource.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Diagnostics.FileVersionInfo.dll - ref\ - True - ref\System.Diagnostics.FileVersionInfo.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Diagnostics.Process.dll - ref\ - True - ref\System.Diagnostics.Process.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Diagnostics.StackTrace.dll - ref\ - True - ref\System.Diagnostics.StackTrace.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Diagnostics.TextWriterTraceListener.dll - ref\ - True - ref\System.Diagnostics.TextWriterTraceListener.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Diagnostics.Tools.dll - ref\ - True - ref\System.Diagnostics.Tools.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Diagnostics.TraceSource.dll - ref\ - True - ref\System.Diagnostics.TraceSource.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Diagnostics.Tracing.dll - ref\ - True - ref\System.Diagnostics.Tracing.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Drawing.Primitives.dll - ref\ - True - ref\System.Drawing.Primitives.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Drawing.dll - ref\ - True - ref\System.Drawing.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Dynamic.Runtime.dll - ref\ - True - ref\System.Dynamic.Runtime.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Formats.Asn1.dll - ref\ - True - ref\System.Formats.Asn1.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Globalization.Calendars.dll - ref\ - True - ref\System.Globalization.Calendars.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Globalization.Extensions.dll - ref\ - True - ref\System.Globalization.Extensions.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Globalization.dll - ref\ - True - ref\System.Globalization.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.IO.Compression.Brotli.dll - ref\ - True - ref\System.IO.Compression.Brotli.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.IO.Compression.FileSystem.dll - ref\ - True - ref\System.IO.Compression.FileSystem.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.IO.Compression.ZipFile.dll - ref\ - True - ref\System.IO.Compression.ZipFile.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.IO.Compression.dll - ref\ - True - ref\System.IO.Compression.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.IO.FileSystem.DriveInfo.dll - ref\ - True - ref\System.IO.FileSystem.DriveInfo.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.IO.FileSystem.Primitives.dll - ref\ - True - ref\System.IO.FileSystem.Primitives.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.IO.FileSystem.Watcher.dll - ref\ - True - ref\System.IO.FileSystem.Watcher.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.IO.FileSystem.dll - ref\ - True - ref\System.IO.FileSystem.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.IO.IsolatedStorage.dll - ref\ - True - ref\System.IO.IsolatedStorage.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.IO.MemoryMappedFiles.dll - ref\ - True - ref\System.IO.MemoryMappedFiles.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.IO.Pipes.dll - ref\ - True - ref\System.IO.Pipes.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.IO.UnmanagedMemoryStream.dll - ref\ - True - ref\System.IO.UnmanagedMemoryStream.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.IO.dll - ref\ - True - ref\System.IO.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Linq.Expressions.dll - ref\ - True - ref\System.Linq.Expressions.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Linq.Parallel.dll - ref\ - True - ref\System.Linq.Parallel.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Linq.Queryable.dll - ref\ - True - ref\System.Linq.Queryable.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Linq.dll - ref\ - True - ref\System.Linq.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Memory.dll - ref\ - True - ref\System.Memory.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Net.Http.Json.dll - ref\ - True - ref\System.Net.Http.Json.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Net.Http.dll - ref\ - True - ref\System.Net.Http.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Net.HttpListener.dll - ref\ - True - ref\System.Net.HttpListener.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Net.Mail.dll - ref\ - True - ref\System.Net.Mail.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Net.NameResolution.dll - ref\ - True - ref\System.Net.NameResolution.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Net.NetworkInformation.dll - ref\ - True - ref\System.Net.NetworkInformation.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Net.Ping.dll - ref\ - True - ref\System.Net.Ping.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Net.Primitives.dll - ref\ - True - ref\System.Net.Primitives.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Net.Requests.dll - ref\ - True - ref\System.Net.Requests.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Net.Security.dll - ref\ - True - ref\System.Net.Security.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Net.ServicePoint.dll - ref\ - True - ref\System.Net.ServicePoint.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Net.Sockets.dll - ref\ - True - ref\System.Net.Sockets.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Net.WebClient.dll - ref\ - True - ref\System.Net.WebClient.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Net.WebHeaderCollection.dll - ref\ - True - ref\System.Net.WebHeaderCollection.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Net.WebProxy.dll - ref\ - True - ref\System.Net.WebProxy.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Net.WebSockets.Client.dll - ref\ - True - ref\System.Net.WebSockets.Client.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Net.WebSockets.dll - ref\ - True - ref\System.Net.WebSockets.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Net.dll - ref\ - True - ref\System.Net.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Numerics.Vectors.dll - ref\ - True - ref\System.Numerics.Vectors.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Numerics.dll - ref\ - True - ref\System.Numerics.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.ObjectModel.dll - ref\ - True - ref\System.ObjectModel.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Reflection.DispatchProxy.dll - ref\ - True - ref\System.Reflection.DispatchProxy.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Reflection.Emit.ILGeneration.dll - ref\ - True - ref\System.Reflection.Emit.ILGeneration.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Reflection.Emit.Lightweight.dll - ref\ - True - ref\System.Reflection.Emit.Lightweight.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Reflection.Emit.dll - ref\ - True - ref\System.Reflection.Emit.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Reflection.Extensions.dll - ref\ - True - ref\System.Reflection.Extensions.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Reflection.Metadata.dll - ref\ - True - ref\System.Reflection.Metadata.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Reflection.Primitives.dll - ref\ - True - ref\System.Reflection.Primitives.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Reflection.TypeExtensions.dll - ref\ - True - ref\System.Reflection.TypeExtensions.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Reflection.dll - ref\ - True - ref\System.Reflection.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Resources.Reader.dll - ref\ - True - ref\System.Resources.Reader.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Resources.ResourceManager.dll - ref\ - True - ref\System.Resources.ResourceManager.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Resources.Writer.dll - ref\ - True - ref\System.Resources.Writer.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Runtime.CompilerServices.Unsafe.dll - ref\ - True - ref\System.Runtime.CompilerServices.Unsafe.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Runtime.CompilerServices.VisualC.dll - ref\ - True - ref\System.Runtime.CompilerServices.VisualC.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Runtime.Extensions.dll - ref\ - True - ref\System.Runtime.Extensions.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Runtime.Handles.dll - ref\ - True - ref\System.Runtime.Handles.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Runtime.InteropServices.RuntimeInformation.dll - ref\ - True - ref\System.Runtime.InteropServices.RuntimeInformation.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Runtime.InteropServices.dll - ref\ - True - ref\System.Runtime.InteropServices.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Runtime.Intrinsics.dll - ref\ - True - ref\System.Runtime.Intrinsics.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Runtime.Loader.dll - ref\ - True - ref\System.Runtime.Loader.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Runtime.Numerics.dll - ref\ - True - ref\System.Runtime.Numerics.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Runtime.Serialization.Formatters.dll - ref\ - True - ref\System.Runtime.Serialization.Formatters.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Runtime.Serialization.Json.dll - ref\ - True - ref\System.Runtime.Serialization.Json.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Runtime.Serialization.Primitives.dll - ref\ - True - ref\System.Runtime.Serialization.Primitives.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Runtime.Serialization.Xml.dll - ref\ - True - ref\System.Runtime.Serialization.Xml.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Runtime.Serialization.dll - ref\ - True - ref\System.Runtime.Serialization.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Runtime.dll - ref\ - True - ref\System.Runtime.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Security.Claims.dll - ref\ - True - ref\System.Security.Claims.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Security.Cryptography.Algorithms.dll - ref\ - True - ref\System.Security.Cryptography.Algorithms.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Security.Cryptography.Csp.dll - ref\ - True - ref\System.Security.Cryptography.Csp.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Security.Cryptography.Encoding.dll - ref\ - True - ref\System.Security.Cryptography.Encoding.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Security.Cryptography.Primitives.dll - ref\ - True - ref\System.Security.Cryptography.Primitives.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Security.Cryptography.X509Certificates.dll - ref\ - True - ref\System.Security.Cryptography.X509Certificates.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Security.Principal.dll - ref\ - True - ref\System.Security.Principal.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Security.SecureString.dll - ref\ - True - ref\System.Security.SecureString.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Security.dll - ref\ - True - ref\System.Security.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.ServiceModel.Web.dll - ref\ - True - ref\System.ServiceModel.Web.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.ServiceProcess.dll - ref\ - True - ref\System.ServiceProcess.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Text.Encoding.CodePages.dll - ref\ - True - ref\System.Text.Encoding.CodePages.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Text.Encoding.Extensions.dll - ref\ - True - ref\System.Text.Encoding.Extensions.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Text.Encoding.dll - ref\ - True - ref\System.Text.Encoding.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Text.Json.dll - ref\ - True - ref\System.Text.Json.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Text.RegularExpressions.dll - ref\ - True - ref\System.Text.RegularExpressions.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Threading.Channels.dll - ref\ - True - ref\System.Threading.Channels.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Threading.Overlapped.dll - ref\ - True - ref\System.Threading.Overlapped.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Threading.Tasks.Dataflow.dll - ref\ - True - ref\System.Threading.Tasks.Dataflow.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Threading.Tasks.Extensions.dll - ref\ - True - ref\System.Threading.Tasks.Extensions.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Threading.Tasks.Parallel.dll - ref\ - True - ref\System.Threading.Tasks.Parallel.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Threading.Tasks.dll - ref\ - True - ref\System.Threading.Tasks.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Threading.Thread.dll - ref\ - True - ref\System.Threading.Thread.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Threading.ThreadPool.dll - ref\ - True - ref\System.Threading.ThreadPool.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Threading.Timer.dll - ref\ - True - ref\System.Threading.Timer.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Threading.dll - ref\ - True - ref\System.Threading.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Transactions.Local.dll - ref\ - True - ref\System.Transactions.Local.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Transactions.dll - ref\ - True - ref\System.Transactions.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.ValueTuple.dll - ref\ - True - ref\System.ValueTuple.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Web.HttpUtility.dll - ref\ - True - ref\System.Web.HttpUtility.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Web.dll - ref\ - True - ref\System.Web.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Windows.dll - ref\ - True - ref\System.Windows.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Xml.Linq.dll - ref\ - True - ref\System.Xml.Linq.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Xml.ReaderWriter.dll - ref\ - True - ref\System.Xml.ReaderWriter.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Xml.Serialization.dll - ref\ - True - ref\System.Xml.Serialization.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Xml.XDocument.dll - ref\ - True - ref\System.Xml.XDocument.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Xml.XPath.XDocument.dll - ref\ - True - ref\System.Xml.XPath.XDocument.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Xml.XPath.dll - ref\ - True - ref\System.Xml.XPath.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Xml.XmlDocument.dll - ref\ - True - ref\System.Xml.XmlDocument.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Xml.XmlSerializer.dll - ref\ - True - ref\System.Xml.XmlSerializer.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.Xml.dll - ref\ - True - ref\System.Xml.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\System.dll - ref\ - True - ref\System.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\WindowsBase.dll - ref\ - True - ref\WindowsBase.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\mscorlib.dll - ref\ - True - ref\mscorlib.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - ref\netstandard.dll - ref\ - True - ref\netstandard.dll - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 - runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Host\ - True - runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 - runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Management\ - True - runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 - runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Security\ - True - runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 - runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Utility\ - True - runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - runtimes\win\lib\net5.0\Modules\CimCmdlets\CimCmdlets.psd1 - runtimes\win\lib\net5.0\Modules\CimCmdlets\ - True - runtimes\win\lib\net5.0\Modules\CimCmdlets\CimCmdlets.psd1 - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\Diagnostics.format.ps1xml - runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\ - True - runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\Diagnostics.format.ps1xml - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\Event.format.ps1xml - runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\ - True - runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\Event.format.ps1xml - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\GetEvent.types.ps1xml - runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\ - True - runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\GetEvent.types.ps1xml - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\Microsoft.PowerShell.Diagnostics.psd1 - runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\ - True - runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\Microsoft.PowerShell.Diagnostics.psd1 - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 - runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Host\ - True - runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 - runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Management\ - True - runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 - runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Security\ - True - runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 - runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Utility\ - True - runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - runtimes\win\lib\net5.0\Modules\Microsoft.WSMan.Management\Microsoft.WSMan.Management.psd1 - runtimes\win\lib\net5.0\Modules\Microsoft.WSMan.Management\ - True - runtimes\win\lib\net5.0\Modules\Microsoft.WSMan.Management\Microsoft.WSMan.Management.psd1 - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - runtimes\win\lib\net5.0\Modules\Microsoft.WSMan.Management\WSMan.format.ps1xml - runtimes\win\lib\net5.0\Modules\Microsoft.WSMan.Management\ - True - runtimes\win\lib\net5.0\Modules\Microsoft.WSMan.Management\WSMan.format.ps1xml - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - runtimes\win\lib\net5.0\Modules\PSDiagnostics\PSDiagnostics.psd1 - runtimes\win\lib\net5.0\Modules\PSDiagnostics\ - True - runtimes\win\lib\net5.0\Modules\PSDiagnostics\PSDiagnostics.psd1 - - - Microsoft.PowerShell.SDK - 7.1.3 - None - false - PreserveNewest - runtimes\win\lib\net5.0\Modules\PSDiagnostics\PSDiagnostics.psm1 - runtimes\win\lib\net5.0\Modules\PSDiagnostics\ - True - runtimes\win\lib\net5.0\Modules\PSDiagnostics\PSDiagnostics.psm1 - - - - C:\Users\סארט\.nuget\packages\microsoft.codeanalysis.analyzers\3.0.0 - \ No newline at end of file diff --git a/NetWork/NetWork/obj/Release/NetWork.1.0.0.nuspec b/NetWork/NetWork/obj/Release/NetWork.1.0.0.nuspec new file mode 100644 index 0000000..878ce60 --- /dev/null +++ b/NetWork/NetWork/obj/Release/NetWork.1.0.0.nuspec @@ -0,0 +1,26 @@ + + + + NetWork + 1.0.0 + NetWork + Package Description + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/NetWork/NetWork/obj/Release/net5.0-windows7.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2f7e5ec --- /dev/null +++ b/NetWork/NetWork/obj/Release/net5.0-windows7.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.AssemblyInfo.cs b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.AssemblyInfo.cs new file mode 100644 index 0000000..e9aa84b --- /dev/null +++ b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("NetWork")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("NetWork")] +[assembly: System.Reflection.AssemblyTitleAttribute("NetWork")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.AssemblyInfoInputs.cache b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.AssemblyInfoInputs.cache new file mode 100644 index 0000000..78277e1 --- /dev/null +++ b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +47b92528c37c5e1c33a2258e82955d216ab71c7d diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.GeneratedMSBuildEditorConfig.editorconfig b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..04424a3 --- /dev/null +++ b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,8 @@ +is_global = true +build_property.TargetFramework = net5.0-windows7.0 +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.PublishSingleFile = +build_property.IncludeAllContentForSelfExtract = +build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.assets.cache b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.assets.cache new file mode 100644 index 0000000..03102e3 Binary files /dev/null and b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.assets.cache differ diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.AssemblyReference.cache b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.AssemblyReference.cache new file mode 100644 index 0000000..f5e894a Binary files /dev/null and b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.AssemblyReference.cache differ diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.CopyComplete b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.CoreCompileInputs.cache b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..3010f7a --- /dev/null +++ b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +5c8e073db52f158c560f0463e2afca6eaa9ef604 diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.FileListAbsolute.txt b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..2c4a747 --- /dev/null +++ b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.FileListAbsolute.txt @@ -0,0 +1,209 @@ +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\AudioControlNative.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\NetWork.exe +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\NetWork.deps.json +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\NetWork.runtimeconfig.json +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\NetWork.runtimeconfig.dev.json +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\NetWork.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\ref\NetWork.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\NetWork.pdb +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\DotRas.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\NAudio.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\NAudio.Asio.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\NAudio.Core.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\NAudio.Midi.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\NAudio.Wasapi.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\NAudio.WinForms.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\NAudio.WinMM.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\SimpleWifi.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\System.Management.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\unix\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm\native\mi.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm\native\miutils.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm64\native\mi.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm64\native\miutils.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x64\native\mi.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x64\native\miutils.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x86\native\mi.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x86\native\miutils.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\mi.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\miutils.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x86\native\mi.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x86\native\miutils.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\mi.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\miutils.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x86\native\mi.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x86\native\miutils.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\mi.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\miutils.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x86\native\mi.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x86\native\miutils.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Base-Util-L1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-2.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-PrivateProfile-L1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-String-L2-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-StringAnsi-L1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-EventLog-Legacy-L1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Eventing-Consumer-L1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Eventing-Controller-L1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Eventing-Legacy-L1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Eventing-Provider-L1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Security-LsaPolicy-L1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-devices-config-L1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-devices-config-L1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-com-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-com-private-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-comm-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-console-l2-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-datetime-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-debug-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-delayload-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-errorhandling-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-fibers-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-fibers-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-file-l1-2-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-file-l2-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-heap-obsolete-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-io-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-io-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-kernel32-legacy-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-kernel32-legacy-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-kernel32-legacy-l1-1-2.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-libraryloader-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-localization-l1-2-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-localization-l2-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-localization-obsolete-l1-2-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-memory-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-memory-l1-1-2.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-memory-l1-1-3.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-namedpipe-l1-2-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-normalization-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-privateprofile-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-processenvironment-l1-2-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-processsecurity-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-processthreads-l1-1-2.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-psapi-ansi-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-psapi-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-psapi-obsolete-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-realtime-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-registry-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-registry-l2-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-shlwapi-legacy-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-shlwapi-obsolete-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-shutdown-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-shutdown-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-string-obsolete-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-string-obsolete-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-stringloader-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-stringloader-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-2.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-3.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-threadpool-l1-2-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-threadpool-legacy-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-threadpool-private-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-url-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-version-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-error-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-error-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-registration-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-robuffer-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-string-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-wow64-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-xstate-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-xstate-l2-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-ro-typeresolution-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-base-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-cpwl-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-cryptoapi-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-lsalookup-l2-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-lsalookup-l2-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-provider-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-sddl-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-core-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-core-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-management-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-management-l2-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-private-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-private-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-winsvc-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\ext-ms-win-advapi32-encryptedfile-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-2.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\API-MS-Win-devices-config-L1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-file-l1-2-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-file-l2-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-kernel32-legacy-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-kernel32-legacy-l1-1-2.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-localization-l1-2-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-localization-obsolete-l1-2-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-memory-l1-1-2.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-memory-l1-1-3.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-namedpipe-l1-2-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-privateprofile-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-processthreads-l1-1-2.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-shutdown-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-string-obsolete-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-stringloader-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-sysinfo-l1-2-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-sysinfo-l1-2-2.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-sysinfo-l1-2-3.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-winrt-error-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-xstate-l2-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-security-cpwl-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-security-cryptoapi-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-security-lsalookup-l2-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-service-private-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-2.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-kernel32-legacy-l1-1-2.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-memory-l1-1-3.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-namedpipe-l1-2-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-string-obsolete-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-sysinfo-l1-2-2.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-sysinfo-l1-2-3.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-security-cpwl-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win\lib\netcoreapp2.0\System.Management.dll +C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.csproj.AssemblyReference.cache +C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.AssemblyInfoInputs.cache +C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.AssemblyInfo.cs +C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.csproj.CoreCompileInputs.cache +C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.csproj.CopyComplete +C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.dll +C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\ref\NetWork.dll +C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.pdb +C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.genruntimeconfig.cache diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.genruntimeconfig.cache b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.genruntimeconfig.cache new file mode 100644 index 0000000..95c5bc3 --- /dev/null +++ b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.genruntimeconfig.cache @@ -0,0 +1 @@ +542af5c956e3cb1b862c90ca6d1d2a799cd2003d diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.pdb b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.pdb new file mode 100644 index 0000000..65963bc Binary files /dev/null and b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.pdb differ diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/apphost.exe b/NetWork/NetWork/obj/Release/net5.0-windows7.0/apphost.exe new file mode 100644 index 0000000..07756c9 Binary files /dev/null and b/NetWork/NetWork/obj/Release/net5.0-windows7.0/apphost.exe differ diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2f7e5ec --- /dev/null +++ b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/Link.semaphore b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/Link.semaphore new file mode 100644 index 0000000..e69de29 diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.AssemblyInfo.cs b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.AssemblyInfo.cs new file mode 100644 index 0000000..e9aa84b --- /dev/null +++ b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("NetWork")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("NetWork")] +[assembly: System.Reflection.AssemblyTitleAttribute("NetWork")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.AssemblyInfoInputs.cache b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.AssemblyInfoInputs.cache new file mode 100644 index 0000000..78277e1 --- /dev/null +++ b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +47b92528c37c5e1c33a2258e82955d216ab71c7d diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.GeneratedMSBuildEditorConfig.editorconfig b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..7d13a00 --- /dev/null +++ b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,8 @@ +is_global = true +build_property.TargetFramework = net5.0-windows7.0 +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.PublishSingleFile = True +build_property.IncludeAllContentForSelfExtract = +build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.assets.cache b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.assets.cache new file mode 100644 index 0000000..48545e7 Binary files /dev/null and b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.assets.cache differ diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.csproj.CopyComplete b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.csproj.CoreCompileInputs.cache b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..5d28068 --- /dev/null +++ b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +c915500b58dc9b718e3615d82fa51dc73689172b diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.csproj.FileListAbsolute.txt b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..ee879e2 --- /dev/null +++ b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.csproj.FileListAbsolute.txt @@ -0,0 +1,523 @@ +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\AudioControlNative.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\NetWork.exe +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\NetWork.deps.json +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\NetWork.runtimeconfig.json +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\NetWork.runtimeconfig.dev.json +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\NetWork.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ref\NetWork.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\NetWork.pdb +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\DotRas.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\Microsoft.Win32.Registry.AccessControl.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\Microsoft.Win32.SystemEvents.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\NAudio.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\NAudio.Asio.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\NAudio.Core.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\NAudio.Midi.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\NAudio.Wasapi.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\NAudio.WinForms.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\NAudio.WinMM.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\SimpleWifi.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Management.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\Microsoft.CSharp.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\Microsoft.VisualBasic.Core.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\Microsoft.Win32.Primitives.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\Microsoft.Win32.Registry.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.AppContext.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Buffers.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Collections.Concurrent.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Collections.Immutable.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Collections.NonGeneric.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Collections.Specialized.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Collections.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.ComponentModel.Annotations.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.ComponentModel.DataAnnotations.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.ComponentModel.EventBasedAsync.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.ComponentModel.Primitives.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.ComponentModel.TypeConverter.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.ComponentModel.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Configuration.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Console.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Core.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Data.Common.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Data.DataSetExtensions.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Data.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Diagnostics.Contracts.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Diagnostics.Debug.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Diagnostics.DiagnosticSource.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Diagnostics.FileVersionInfo.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Diagnostics.Process.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Diagnostics.StackTrace.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Diagnostics.TextWriterTraceListener.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Diagnostics.Tools.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Diagnostics.TraceSource.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Diagnostics.Tracing.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Drawing.Primitives.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Dynamic.Runtime.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Formats.Asn1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Globalization.Calendars.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Globalization.Extensions.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Globalization.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.IO.Compression.Brotli.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.IO.Compression.FileSystem.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.IO.Compression.ZipFile.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.IO.Compression.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.IO.FileSystem.AccessControl.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.IO.FileSystem.DriveInfo.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.IO.FileSystem.Primitives.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.IO.FileSystem.Watcher.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.IO.FileSystem.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.IO.IsolatedStorage.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.IO.MemoryMappedFiles.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.IO.Pipes.AccessControl.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.IO.Pipes.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.IO.UnmanagedMemoryStream.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.IO.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Linq.Expressions.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Linq.Parallel.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Linq.Queryable.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Linq.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Memory.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.Http.Json.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.Http.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.HttpListener.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.Mail.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.NameResolution.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.NetworkInformation.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.Ping.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.Primitives.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.Requests.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.Security.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.ServicePoint.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.Sockets.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.WebClient.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.WebHeaderCollection.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.WebProxy.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.WebSockets.Client.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.WebSockets.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Numerics.Vectors.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Numerics.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.ObjectModel.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Private.DataContractSerialization.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Private.Uri.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Private.Xml.Linq.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Private.Xml.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Reflection.DispatchProxy.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Reflection.Emit.ILGeneration.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Reflection.Emit.Lightweight.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Reflection.Emit.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Reflection.Extensions.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Reflection.Metadata.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Reflection.Primitives.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Reflection.TypeExtensions.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Reflection.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Resources.Reader.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Resources.ResourceManager.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Resources.Writer.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Runtime.CompilerServices.Unsafe.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Runtime.CompilerServices.VisualC.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Runtime.Extensions.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Runtime.Handles.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Runtime.InteropServices.RuntimeInformation.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Runtime.InteropServices.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Runtime.Intrinsics.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Runtime.Loader.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Runtime.Numerics.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Runtime.Serialization.Formatters.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Runtime.Serialization.Json.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Runtime.Serialization.Primitives.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Runtime.Serialization.Xml.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Runtime.Serialization.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Runtime.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Security.AccessControl.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Security.Claims.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Security.Cryptography.Algorithms.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Security.Cryptography.Cng.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Security.Cryptography.Csp.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Security.Cryptography.Encoding.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Security.Cryptography.OpenSsl.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Security.Cryptography.Primitives.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Security.Cryptography.X509Certificates.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Security.Principal.Windows.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Security.Principal.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Security.SecureString.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Security.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.ServiceModel.Web.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.ServiceProcess.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Text.Encoding.CodePages.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Text.Encoding.Extensions.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Text.Encoding.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Text.Encodings.Web.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Text.Json.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Text.RegularExpressions.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Threading.Channels.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Threading.Overlapped.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Threading.Tasks.Dataflow.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Threading.Tasks.Extensions.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Threading.Tasks.Parallel.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Threading.Tasks.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Threading.Thread.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Threading.ThreadPool.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Threading.Timer.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Threading.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Transactions.Local.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Transactions.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.ValueTuple.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Web.HttpUtility.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Web.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Windows.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Xml.Linq.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Xml.ReaderWriter.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Xml.Serialization.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Xml.XDocument.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Xml.XPath.XDocument.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Xml.XPath.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Xml.XmlDocument.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Xml.XmlSerializer.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Xml.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\mscorlib.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\netstandard.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\Microsoft.DiaSymReader.Native.amd64.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Private.CoreLib.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-console-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-console-l1-2-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-datetime-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-debug-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-errorhandling-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-file-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-file-l1-2-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-file-l2-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-handle-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-heap-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-interlocked-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-libraryloader-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-localization-l1-2-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-memory-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-namedpipe-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-processenvironment-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-processthreads-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-processthreads-l1-1-1.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-profile-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-rtlsupport-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-string-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-synch-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-synch-l1-2-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-sysinfo-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-timezone-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-util-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-crt-conio-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-crt-convert-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-crt-environment-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-crt-filesystem-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-crt-heap-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-crt-locale-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-crt-math-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-crt-multibyte-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-crt-private-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-crt-process-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-crt-runtime-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-crt-stdio-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-crt-string-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-crt-time-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-crt-utility-l1-1-0.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\clrcompression.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\clretwrc.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\clrjit.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\coreclr.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\createdump.exe +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\dbgshim.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\hostfxr.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\hostpolicy.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\mscordaccore.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\mscordaccore_amd64_amd64_5.0.721.25508.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\mscordbi.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\mscorrc.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ucrtbase.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\Accessibility.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\DirectWriteForwarder.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\Microsoft.VisualBasic.Forms.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\Microsoft.VisualBasic.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\PresentationCore.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\PresentationFramework-SystemCore.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\PresentationFramework-SystemData.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\PresentationFramework-SystemDrawing.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\PresentationFramework-SystemXml.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\PresentationFramework-SystemXmlLinq.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\PresentationFramework.Aero.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\PresentationFramework.Aero2.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\PresentationFramework.AeroLite.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\PresentationFramework.Classic.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\PresentationFramework.Luna.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\PresentationFramework.Royale.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\PresentationFramework.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\PresentationUI.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ReachFramework.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.CodeDom.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Configuration.ConfigurationManager.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Design.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Diagnostics.EventLog.Messages.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Diagnostics.EventLog.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Diagnostics.PerformanceCounter.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.DirectoryServices.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Drawing.Common.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Drawing.Design.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Drawing.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.IO.Packaging.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Printing.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Resources.Extensions.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Security.Cryptography.Pkcs.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Security.Cryptography.ProtectedData.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Security.Cryptography.Xml.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Security.Permissions.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Threading.AccessControl.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Windows.Controls.Ribbon.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Windows.Extensions.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Windows.Forms.Design.Editors.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Windows.Forms.Design.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Windows.Forms.Primitives.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Windows.Forms.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Windows.Input.Manipulations.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Windows.Presentation.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Xaml.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\UIAutomationClient.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\UIAutomationClientSideProviders.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\UIAutomationProvider.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\UIAutomationTypes.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\WindowsBase.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\WindowsFormsIntegration.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\cs\Microsoft.VisualBasic.Forms.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\cs\PresentationCore.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\cs\PresentationFramework.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\cs\PresentationUI.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\cs\ReachFramework.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\cs\System.Windows.Controls.Ribbon.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\cs\System.Windows.Forms.Design.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\cs\System.Windows.Forms.Primitives.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\cs\System.Windows.Forms.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\cs\System.Windows.Input.Manipulations.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\cs\System.Xaml.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\cs\UIAutomationClient.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\cs\UIAutomationClientSideProviders.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\cs\UIAutomationProvider.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\cs\UIAutomationTypes.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\cs\WindowsBase.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\cs\WindowsFormsIntegration.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\de\Microsoft.VisualBasic.Forms.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\de\PresentationCore.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\de\PresentationFramework.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\de\PresentationUI.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\de\ReachFramework.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\de\System.Windows.Controls.Ribbon.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\de\System.Windows.Forms.Design.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\de\System.Windows.Forms.Primitives.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\de\System.Windows.Forms.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\de\System.Windows.Input.Manipulations.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\de\System.Xaml.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\de\UIAutomationClient.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\de\UIAutomationClientSideProviders.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\de\UIAutomationProvider.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\de\UIAutomationTypes.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\de\WindowsBase.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\de\WindowsFormsIntegration.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\es\Microsoft.VisualBasic.Forms.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\es\PresentationCore.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\es\PresentationFramework.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\es\PresentationUI.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\es\ReachFramework.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\es\System.Windows.Controls.Ribbon.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\es\System.Windows.Forms.Design.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\es\System.Windows.Forms.Primitives.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\es\System.Windows.Forms.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\es\System.Windows.Input.Manipulations.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\es\System.Xaml.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\es\UIAutomationClient.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\es\UIAutomationClientSideProviders.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\es\UIAutomationProvider.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\es\UIAutomationTypes.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\es\WindowsBase.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\es\WindowsFormsIntegration.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\fr\Microsoft.VisualBasic.Forms.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\fr\PresentationCore.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\fr\PresentationFramework.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\fr\PresentationUI.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\fr\ReachFramework.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\fr\System.Windows.Controls.Ribbon.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\fr\System.Windows.Forms.Design.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\fr\System.Windows.Forms.Primitives.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\fr\System.Windows.Forms.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\fr\System.Windows.Input.Manipulations.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\fr\System.Xaml.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\fr\UIAutomationClient.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\fr\UIAutomationClientSideProviders.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\fr\UIAutomationProvider.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\fr\UIAutomationTypes.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\fr\WindowsBase.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\fr\WindowsFormsIntegration.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\it\Microsoft.VisualBasic.Forms.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\it\PresentationCore.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\it\PresentationFramework.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\it\PresentationUI.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\it\ReachFramework.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\it\System.Windows.Controls.Ribbon.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\it\System.Windows.Forms.Design.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\it\System.Windows.Forms.Primitives.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\it\System.Windows.Forms.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\it\System.Windows.Input.Manipulations.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\it\System.Xaml.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\it\UIAutomationClient.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\it\UIAutomationClientSideProviders.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\it\UIAutomationProvider.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\it\UIAutomationTypes.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\it\WindowsBase.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\it\WindowsFormsIntegration.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ja\Microsoft.VisualBasic.Forms.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ja\PresentationCore.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ja\PresentationFramework.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ja\PresentationUI.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ja\ReachFramework.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ja\System.Windows.Controls.Ribbon.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ja\System.Windows.Forms.Design.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ja\System.Windows.Forms.Primitives.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ja\System.Windows.Forms.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ja\System.Windows.Input.Manipulations.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ja\System.Xaml.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ja\UIAutomationClient.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ja\UIAutomationClientSideProviders.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ja\UIAutomationProvider.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ja\UIAutomationTypes.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ja\WindowsBase.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ja\WindowsFormsIntegration.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ko\Microsoft.VisualBasic.Forms.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ko\PresentationCore.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ko\PresentationFramework.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ko\PresentationUI.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ko\ReachFramework.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ko\System.Windows.Controls.Ribbon.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ko\System.Windows.Forms.Design.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ko\System.Windows.Forms.Primitives.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ko\System.Windows.Forms.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ko\System.Windows.Input.Manipulations.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ko\System.Xaml.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ko\UIAutomationClient.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ko\UIAutomationClientSideProviders.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ko\UIAutomationProvider.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ko\UIAutomationTypes.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ko\WindowsBase.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ko\WindowsFormsIntegration.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pl\Microsoft.VisualBasic.Forms.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pl\PresentationCore.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pl\PresentationFramework.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pl\PresentationUI.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pl\ReachFramework.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pl\System.Windows.Controls.Ribbon.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pl\System.Windows.Forms.Design.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pl\System.Windows.Forms.Primitives.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pl\System.Windows.Forms.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pl\System.Windows.Input.Manipulations.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pl\System.Xaml.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pl\UIAutomationClient.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pl\UIAutomationClientSideProviders.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pl\UIAutomationProvider.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pl\UIAutomationTypes.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pl\WindowsBase.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pl\WindowsFormsIntegration.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pt-BR\Microsoft.VisualBasic.Forms.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pt-BR\PresentationCore.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pt-BR\PresentationFramework.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pt-BR\PresentationUI.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pt-BR\ReachFramework.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pt-BR\System.Windows.Controls.Ribbon.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pt-BR\System.Windows.Forms.Design.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pt-BR\System.Windows.Forms.Primitives.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pt-BR\System.Windows.Forms.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pt-BR\System.Windows.Input.Manipulations.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pt-BR\System.Xaml.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pt-BR\UIAutomationClient.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pt-BR\UIAutomationClientSideProviders.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pt-BR\UIAutomationProvider.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pt-BR\UIAutomationTypes.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pt-BR\WindowsBase.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pt-BR\WindowsFormsIntegration.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ru\Microsoft.VisualBasic.Forms.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ru\PresentationCore.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ru\PresentationFramework.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ru\PresentationUI.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ru\ReachFramework.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ru\System.Windows.Controls.Ribbon.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ru\System.Windows.Forms.Design.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ru\System.Windows.Forms.Primitives.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ru\System.Windows.Forms.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ru\System.Windows.Input.Manipulations.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ru\System.Xaml.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ru\UIAutomationClient.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ru\UIAutomationClientSideProviders.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ru\UIAutomationProvider.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ru\UIAutomationTypes.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ru\WindowsBase.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ru\WindowsFormsIntegration.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\tr\Microsoft.VisualBasic.Forms.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\tr\PresentationCore.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\tr\PresentationFramework.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\tr\PresentationUI.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\tr\ReachFramework.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\tr\System.Windows.Controls.Ribbon.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\tr\System.Windows.Forms.Design.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\tr\System.Windows.Forms.Primitives.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\tr\System.Windows.Forms.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\tr\System.Windows.Input.Manipulations.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\tr\System.Xaml.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\tr\UIAutomationClient.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\tr\UIAutomationClientSideProviders.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\tr\UIAutomationProvider.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\tr\UIAutomationTypes.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\tr\WindowsBase.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\tr\WindowsFormsIntegration.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hans\Microsoft.VisualBasic.Forms.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hans\PresentationCore.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hans\PresentationFramework.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hans\PresentationUI.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hans\ReachFramework.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hans\System.Windows.Controls.Ribbon.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hans\System.Windows.Forms.Design.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hans\System.Windows.Forms.Primitives.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hans\System.Windows.Forms.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hans\System.Windows.Input.Manipulations.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hans\System.Xaml.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hans\UIAutomationClient.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hans\UIAutomationClientSideProviders.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hans\UIAutomationProvider.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hans\UIAutomationTypes.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hans\WindowsBase.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hans\WindowsFormsIntegration.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hant\Microsoft.VisualBasic.Forms.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hant\PresentationCore.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hant\PresentationFramework.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hant\PresentationUI.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hant\ReachFramework.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hant\System.Windows.Controls.Ribbon.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hant\System.Windows.Forms.Design.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hant\System.Windows.Forms.Primitives.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hant\System.Windows.Forms.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hant\System.Windows.Input.Manipulations.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hant\System.Xaml.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hant\UIAutomationClient.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hant\UIAutomationClientSideProviders.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hant\UIAutomationProvider.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hant\UIAutomationTypes.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hant\WindowsBase.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hant\WindowsFormsIntegration.resources.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\D3DCompiler_47_cor3.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\PenImc_cor3.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\PresentationNative_cor3.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\vcruntime140_cor3.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\wpfgfx_cor3.dll +C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.AssemblyInfoInputs.cache +C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.AssemblyInfo.cs +C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.csproj.CoreCompileInputs.cache +C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.csproj.CopyComplete +C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.dll +C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\ref\NetWork.dll +C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.pdb +C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.genruntimeconfig.cache diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.deps.json b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.deps.json new file mode 100644 index 0000000..318bb55 --- /dev/null +++ b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.deps.json @@ -0,0 +1,1016 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v5.0/win-x64", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v5.0": {}, + ".NETCoreApp,Version=v5.0/win-x64": { + "NetWork/1.0.0": { + "dependencies": { + "AudioControl.x64": "1.0.1", + "DotRas.for.Win8": "1.3.0", + "Microsoft.Management.Infrastructure": "2.0.0", + "Microsoft.NETCore.Windows.ApiSets": "1.0.1", + "Microsoft.NETCore.Windows.ApiSets-x64": "1.0.0", + "NAudio": "2.0.1", + "NETStandard.Library": "2.0.3", + "SimpleWifi.netstandard": "2.0.0", + "System.Management": "5.0.0", + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "5.0.7", + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64": "5.0.7" + }, + "runtime": { + "NetWork.dll": {} + } + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/5.0.7": { + "runtime": { + "Microsoft.CSharp.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "Microsoft.VisualBasic.Core.dll": { + "assemblyVersion": "10.0.6.0", + "fileVersion": "11.0.721.25508" + }, + "Microsoft.Win32.Primitives.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "Microsoft.Win32.Registry.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Collections.Concurrent.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Collections.Immutable.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Collections.NonGeneric.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Collections.Specialized.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Collections.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.ComponentModel.EventBasedAsync.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.ComponentModel.Primitives.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.ComponentModel.TypeConverter.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.ComponentModel.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Console.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Data.Common.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Diagnostics.FileVersionInfo.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Diagnostics.Process.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Diagnostics.StackTrace.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Diagnostics.TraceSource.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Drawing.Primitives.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Formats.Asn1.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.IO.Compression.Brotli.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.IO.Compression.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.IO.FileSystem.AccessControl.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.IO.FileSystem.DriveInfo.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.IO.FileSystem.Watcher.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.IO.FileSystem.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.IO.IsolatedStorage.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.IO.MemoryMappedFiles.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.IO.Pipes.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Linq.Expressions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Linq.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Memory.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Net.Http.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Net.NameResolution.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Net.NetworkInformation.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Net.Ping.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Net.Primitives.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Net.Requests.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Net.Security.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Net.ServicePoint.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Net.Sockets.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Net.WebClient.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Net.WebHeaderCollection.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.ObjectModel.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Private.DataContractSerialization.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Private.Uri.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Private.Xml.Linq.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Private.Xml.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Reflection.Metadata.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Resources.Writer.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Runtime.CompilerServices.Unsafe.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Runtime.CompilerServices.VisualC.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Runtime.InteropServices.RuntimeInformation.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Runtime.InteropServices.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Runtime.Numerics.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Runtime.Serialization.Formatters.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Runtime.Serialization.Primitives.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Security.AccessControl.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Security.Claims.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Security.Cryptography.Algorithms.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Security.Cryptography.Cng.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Security.Cryptography.Csp.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Security.Cryptography.Encoding.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Security.Cryptography.Primitives.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Security.Cryptography.X509Certificates.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Security.Principal.Windows.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Text.Encoding.CodePages.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Text.RegularExpressions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Threading.Channels.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Threading.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + }, + "System.Private.CoreLib.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.721.25508" + } + }, + "native": { + "clrcompression.dll": { + "fileVersion": "42.42.42.42424" + }, + "clrjit.dll": { + "fileVersion": "5.0.721.25508" + }, + "coreclr.dll": { + "fileVersion": "5.0.721.25508" + }, + "mscordaccore.dll": { + "fileVersion": "5.0.721.25508" + } + } + }, + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64/5.0.7": { + "runtime": { + "Accessibility.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.721.26307" + }, + "DirectWriteForwarder.dll": { + "assemblyVersion": "5.0.6.0", + "fileVersion": "5.0.621.26303" + }, + "Microsoft.VisualBasic.Forms.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.721.26307" + }, + "Microsoft.VisualBasic.dll": { + "assemblyVersion": "10.1.0.0", + "fileVersion": "5.0.721.26307" + }, + "Microsoft.Win32.Registry.AccessControl.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + }, + "Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + }, + "PresentationCore.dll": { + "assemblyVersion": "5.0.6.0", + "fileVersion": "5.0.621.26303" + }, + "PresentationFramework-SystemCore.dll": { + "assemblyVersion": "5.0.6.0", + "fileVersion": "5.0.621.26303" + }, + "PresentationFramework-SystemData.dll": { + "assemblyVersion": "5.0.6.0", + "fileVersion": "5.0.621.26303" + }, + "PresentationFramework-SystemDrawing.dll": { + "assemblyVersion": "5.0.6.0", + "fileVersion": "5.0.621.26303" + }, + "PresentationFramework-SystemXml.dll": { + "assemblyVersion": "5.0.6.0", + "fileVersion": "5.0.621.26303" + }, + "PresentationFramework-SystemXmlLinq.dll": { + "assemblyVersion": "5.0.6.0", + "fileVersion": "5.0.621.26303" + }, + "PresentationFramework.Aero.dll": { + "assemblyVersion": "5.0.6.0", + "fileVersion": "5.0.621.26303" + }, + "PresentationFramework.Aero2.dll": { + "assemblyVersion": "5.0.6.0", + "fileVersion": "5.0.621.26303" + }, + "PresentationFramework.AeroLite.dll": { + "assemblyVersion": "5.0.6.0", + "fileVersion": "5.0.621.26303" + }, + "PresentationFramework.Classic.dll": { + "assemblyVersion": "5.0.6.0", + "fileVersion": "5.0.621.26303" + }, + "PresentationFramework.Luna.dll": { + "assemblyVersion": "5.0.6.0", + "fileVersion": "5.0.621.26303" + }, + "PresentationFramework.Royale.dll": { + "assemblyVersion": "5.0.6.0", + "fileVersion": "5.0.621.26303" + }, + "PresentationFramework.dll": { + "assemblyVersion": "5.0.6.0", + "fileVersion": "5.0.621.26303" + }, + "PresentationUI.dll": { + "assemblyVersion": "5.0.6.0", + "fileVersion": "5.0.621.26303" + }, + "ReachFramework.dll": { + "assemblyVersion": "5.0.6.0", + "fileVersion": "5.0.621.26303" + }, + "System.CodeDom.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + }, + "System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + }, + "System.Design.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.721.26307" + }, + "System.Diagnostics.EventLog.Messages.dll": { + "assemblyVersion": "5.0.0.1", + "fileVersion": "0.0.0.0" + }, + "System.Diagnostics.EventLog.dll": { + "assemblyVersion": "5.0.0.1", + "fileVersion": "5.0.321.7212" + }, + "System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "5.0.0.1", + "fileVersion": "5.0.321.7212" + }, + "System.DirectoryServices.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.20.51904" + }, + "System.Drawing.Common.dll": { + "assemblyVersion": "5.0.0.2", + "fileVersion": "5.0.421.11614" + }, + "System.Drawing.Design.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.721.26307" + }, + "System.Drawing.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.721.26307" + }, + "System.IO.Packaging.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + }, + "System.Printing.dll": { + "assemblyVersion": "5.0.6.0", + "fileVersion": "5.0.621.26303" + }, + "System.Resources.Extensions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + }, + "System.Security.Cryptography.Pkcs.dll": { + "assemblyVersion": "5.0.0.1", + "fileVersion": "5.0.120.57516" + }, + "System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + }, + "System.Security.Cryptography.Xml.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + }, + "System.Security.Permissions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + }, + "System.Threading.AccessControl.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + }, + "System.Windows.Controls.Ribbon.dll": { + "assemblyVersion": "5.0.6.0", + "fileVersion": "5.0.621.26303" + }, + "System.Windows.Extensions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + }, + "System.Windows.Forms.Design.Editors.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.721.26307" + }, + "System.Windows.Forms.Design.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.721.26307" + }, + "System.Windows.Forms.Primitives.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.721.26307" + }, + "System.Windows.Forms.dll": { + "assemblyVersion": "5.0.7.0", + "fileVersion": "5.0.721.26307" + }, + "System.Windows.Input.Manipulations.dll": { + "assemblyVersion": "5.0.6.0", + "fileVersion": "5.0.621.26303" + }, + "System.Windows.Presentation.dll": { + "assemblyVersion": "5.0.6.0", + "fileVersion": "5.0.621.26303" + }, + "System.Xaml.dll": { + "assemblyVersion": "5.0.6.0", + "fileVersion": "5.0.621.26303" + }, + "UIAutomationClient.dll": { + "assemblyVersion": "5.0.6.0", + "fileVersion": "5.0.621.26303" + }, + "UIAutomationClientSideProviders.dll": { + "assemblyVersion": "5.0.6.0", + "fileVersion": "5.0.621.26303" + }, + "UIAutomationProvider.dll": { + "assemblyVersion": "5.0.6.0", + "fileVersion": "5.0.621.26303" + }, + "UIAutomationTypes.dll": { + "assemblyVersion": "5.0.6.0", + "fileVersion": "5.0.621.26303" + }, + "WindowsBase.dll": { + "assemblyVersion": "5.0.6.0", + "fileVersion": "5.0.621.26303" + }, + "WindowsFormsIntegration.dll": { + "assemblyVersion": "5.0.6.0", + "fileVersion": "5.0.621.26303" + } + }, + "native": { + "D3DCompiler_47_cor3.dll": { + "fileVersion": "10.0.19041.685" + }, + "PenImc_cor3.dll": { + "fileVersion": "5.0.621.26303" + }, + "PresentationNative_cor3.dll": { + "fileVersion": "5.0.621.26005" + }, + "vcruntime140_cor3.dll": { + "fileVersion": "14.29.30031.0" + }, + "wpfgfx_cor3.dll": { + "fileVersion": "5.0.621.26303" + } + } + }, + "AudioControl.x64/1.0.1": {}, + "DotRas.for.Win8/1.3.0": { + "runtime": { + "lib/net40/DotRas.dll": { + "assemblyVersion": "1.3.5166.33435", + "fileVersion": "1.3.0.0" + } + } + }, + "Microsoft.Management.Infrastructure/2.0.0": { + "dependencies": { + "Microsoft.Management.Infrastructure.Runtime.Unix": "2.0.0", + "Microsoft.Management.Infrastructure.Runtime.Win": "2.0.0" + } + }, + "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": {}, + "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": {}, + "Microsoft.NETCore.Platforms/5.0.0": {}, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": {}, + "Microsoft.NETCore.Windows.ApiSets-x64/1.0.0": {}, + "Microsoft.Win32.Registry/5.0.0": { + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "NAudio/2.0.1": { + "dependencies": { + "NAudio.Asio": "2.0.0", + "NAudio.Core": "2.0.0", + "NAudio.Midi": "2.0.1", + "NAudio.Wasapi": "2.0.0", + "NAudio.WinForms": "2.0.1", + "NAudio.WinMM": "2.0.1" + }, + "runtime": { + "lib/netstandard2.0/NAudio.dll": { + "assemblyVersion": "2.0.1.0", + "fileVersion": "2.0.1.0" + } + } + }, + "NAudio.Asio/2.0.0": { + "dependencies": { + "Microsoft.Win32.Registry": "5.0.0", + "NAudio.Core": "2.0.0" + }, + "runtime": { + "lib/netstandard2.0/NAudio.Asio.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "NAudio.Core/2.0.0": { + "runtime": { + "lib/netstandard2.0/NAudio.Core.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "NAudio.Midi/2.0.1": { + "dependencies": { + "NAudio.Core": "2.0.0" + }, + "runtime": { + "lib/netstandard2.0/NAudio.Midi.dll": { + "assemblyVersion": "2.0.1.0", + "fileVersion": "2.0.1.0" + } + } + }, + "NAudio.Wasapi/2.0.0": { + "dependencies": { + "NAudio.Core": "2.0.0" + }, + "runtime": { + "lib/netstandard2.0/NAudio.Wasapi.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "NAudio.WinForms/2.0.1": { + "dependencies": { + "NAudio.WinMM": "2.0.1" + }, + "runtime": { + "lib/netcoreapp3.1/NAudio.WinForms.dll": { + "assemblyVersion": "2.0.1.0", + "fileVersion": "2.0.1.0" + } + } + }, + "NAudio.WinMM/2.0.1": { + "dependencies": { + "Microsoft.Win32.Registry": "5.0.0", + "NAudio.Core": "2.0.0" + }, + "runtime": { + "lib/netstandard2.0/NAudio.WinMM.dll": { + "assemblyVersion": "2.0.1.0", + "fileVersion": "2.0.1.0" + } + } + }, + "NETStandard.Library/2.0.3": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0" + } + }, + "SimpleWifi.netstandard/2.0.0": { + "runtime": { + "lib/netstandard2.0/SimpleWifi.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "System.CodeDom/5.0.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": { + "runtimes/win/lib/netcoreapp2.0/System.Management.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Security.AccessControl/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "System.Security.Principal.Windows/5.0.0": {} + } + }, + "libraries": { + "NetWork/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/5.0.7": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64/5.0.7": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "AudioControl.x64/1.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bkuUEZkxVFug599MYBZMdCbGh5AepmcI9jkKY8biDPxblxslbZF6GImpMNnbqRa0qI8i9c0HQiYauAFSuhlD9Q==", + "path": "audiocontrol.x64/1.0.1", + "hashPath": "audiocontrol.x64.1.0.1.nupkg.sha512" + }, + "DotRas.for.Win8/1.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vetxGKzzinebFwexUOamgwA9fws5X86CM0Ta/jcTeWuOEBPNMjXsWDoE6e0EImLgnz3EAvUhM594duzxrkgBeg==", + "path": "dotras.for.win8/1.3.0", + "hashPath": "dotras.for.win8.1.3.0.nupkg.sha512" + }, + "Microsoft.Management.Infrastructure/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IaKZRNBBv3sdrmBWd+aqwHq8cVHk/3WgWFAN/dt40MRY9rbtHiDfTTmaEN0tGTmQqGCGDo/ncntA8MvFMvcsRw==", + "path": "microsoft.management.infrastructure/2.0.0", + "hashPath": "microsoft.management.infrastructure.2.0.0.nupkg.sha512" + }, + "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-p0lslMX5bdWLxO2P7ao+rjAMOB0LEwPYpzvdCQ2OEYgX2NxFpQ8ILvqPGnYlTAb53rT8gu5DyIol1HboHFYfxQ==", + "path": "microsoft.management.infrastructure.runtime.unix/2.0.0", + "hashPath": "microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512" + }, + "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vjBWQeDOjgernkrOdbEgn7M70SF7hof7ORdKPSlL06Uc15+oYdth5dZju9KsgUoti/cwnkZTiwtDx/lRtay0sA==", + "path": "microsoft.management.infrastructure.runtime.win/2.0.0", + "hashPath": "microsoft.management.infrastructure.runtime.win.2.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.Windows.ApiSets/1.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==", + "path": "microsoft.netcore.windows.apisets/1.0.1", + "hashPath": "microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512" + }, + "Microsoft.NETCore.Windows.ApiSets-x64/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NC+dpFMdhujz2sWAdJ8EmBk07p1zOlNi0FCCnZEbzftABpw9xZ99EMP/bUJrPTgCxHfzJAiuLPOtAauzVINk0w==", + "path": "microsoft.netcore.windows.apisets-x64/1.0.0", + "hashPath": "microsoft.netcore.windows.apisets-x64.1.0.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" + }, + "NAudio/2.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QTbkeWOC9IBRiq2rvyFnm47ro4HYZQXJQMrhgAD1BwbkUzH+NMt+2ayLDnAJNJQu6V69Of6KZSYyDfU2Pr+dzQ==", + "path": "naudio/2.0.1", + "hashPath": "naudio.2.0.1.nupkg.sha512" + }, + "NAudio.Asio/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/Pd51zAS2L3+MK/dJ5VrInz6ggHUie9j1qCXysXL3Vj53p9A2RxjpIZafuyba2ZdeMKaOMOHXdtkUqFdKqVMQg==", + "path": "naudio.asio/2.0.0", + "hashPath": "naudio.asio.2.0.0.nupkg.sha512" + }, + "NAudio.Core/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-knmGOIYbzn9ZGkFcVs5d3zEYvi50jVriyEirVtAHjkcDoo2ziK32bZb7KkFARLD4lhCGkqp6uT0+0fc4JIfQcw==", + "path": "naudio.core/2.0.0", + "hashPath": "naudio.core.2.0.0.nupkg.sha512" + }, + "NAudio.Midi/2.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-A5pQerGAmtNNfSMkGaRacqBJG1xg4bjQE0XaxsO3/rhEE80NLUN6gQm+x/m7ZGbSoPUB5fav2jW3tZkdPadZ7w==", + "path": "naudio.midi/2.0.1", + "hashPath": "naudio.midi.2.0.1.nupkg.sha512" + }, + "NAudio.Wasapi/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7ES+jfZyOooBp86gql9BZ/OjKFmGfLaSLCtJagtCYiRGxfauHp4hXyeuwxS2mPLBxBGxBo9oGThN6y3QY+/w/w==", + "path": "naudio.wasapi/2.0.0", + "hashPath": "naudio.wasapi.2.0.0.nupkg.sha512" + }, + "NAudio.WinForms/2.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SOyXRsLePAvIWG20OMRHiUkNijme6J28DKBVesmhdfh4i7OKgkvGLN19eT+vPfXr97yhMudULsyYp9Niz8/a+g==", + "path": "naudio.winforms/2.0.1", + "hashPath": "naudio.winforms.2.0.1.nupkg.sha512" + }, + "NAudio.WinMM/2.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-i7Da/gCqvwWvETFBRkuwCelSXEK5rPG7pTaqCU9aXFRiO0p7lwHjm/+k2lOWLmRGUJdLm/VSDO6Vknacnb6mSg==", + "path": "naudio.winmm/2.0.1", + "hashPath": "naudio.winmm.2.0.1.nupkg.sha512" + }, + "NETStandard.Library/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==", + "path": "netstandard.library/2.0.3", + "hashPath": "netstandard.library.2.0.3.nupkg.sha512" + }, + "SimpleWifi.netstandard/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJuk2zjX4snKbrxfDnDEwYb8dTFR/UbyMb9umljexOP1nuXjdYXNX3T2+zrdxZue359ZqvHC8aAAGkgWS6PFFw==", + "path": "simplewifi.netstandard/2.0.0", + "hashPath": "simplewifi.netstandard.2.0.0.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.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.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.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" + } + }, + "runtimes": { + "win-x64": [ + "win", + "any", + "base" + ], + "win-x64-aot": [ + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win10-x64": [ + "win10", + "win81-x64", + "win81", + "win8-x64", + "win8", + "win7-x64", + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win10-x64-aot": [ + "win10-aot", + "win10-x64", + "win10", + "win81-x64-aot", + "win81-aot", + "win81-x64", + "win81", + "win8-x64-aot", + "win8-aot", + "win8-x64", + "win8", + "win7-x64-aot", + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win7-x64": [ + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win7-x64-aot": [ + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win8-x64": [ + "win8", + "win7-x64", + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win8-x64-aot": [ + "win8-aot", + "win8-x64", + "win8", + "win7-x64-aot", + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ], + "win81-x64": [ + "win81", + "win8-x64", + "win8", + "win7-x64", + "win7", + "win-x64", + "win", + "any", + "base" + ], + "win81-x64-aot": [ + "win81-aot", + "win81-x64", + "win81", + "win8-x64-aot", + "win8-aot", + "win8-x64", + "win8", + "win7-x64-aot", + "win7-aot", + "win7-x64", + "win7", + "win-x64-aot", + "win-aot", + "win-x64", + "win", + "aot", + "any", + "base" + ] + } +} \ No newline at end of file diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.genruntimeconfig.cache b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.genruntimeconfig.cache new file mode 100644 index 0000000..618056c --- /dev/null +++ b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.genruntimeconfig.cache @@ -0,0 +1 @@ +5f68dd900527e551047945ae92c4afc1894d9d4f diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.pdb b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.pdb new file mode 100644 index 0000000..c1e081a Binary files /dev/null and b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.pdb differ diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/PublishOutputs.14905e3326.txt b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/PublishOutputs.14905e3326.txt new file mode 100644 index 0000000..19c5221 --- /dev/null +++ b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/PublishOutputs.14905e3326.txt @@ -0,0 +1,12 @@ +D:\Neutral Folder\NetWorkAutomation\NetWork.pdb +D:\Neutral Folder\NetWorkAutomation\AudioControlNative.dll +D:\Neutral Folder\NetWorkAutomation\clrcompression.dll +D:\Neutral Folder\NetWorkAutomation\clrjit.dll +D:\Neutral Folder\NetWorkAutomation\coreclr.dll +D:\Neutral Folder\NetWorkAutomation\mscordaccore.dll +D:\Neutral Folder\NetWorkAutomation\D3DCompiler_47_cor3.dll +D:\Neutral Folder\NetWorkAutomation\PenImc_cor3.dll +D:\Neutral Folder\NetWorkAutomation\PresentationNative_cor3.dll +D:\Neutral Folder\NetWorkAutomation\vcruntime140_cor3.dll +D:\Neutral Folder\NetWorkAutomation\wpfgfx_cor3.dll +D:\Neutral Folder\NetWorkAutomation\NetWork.exe diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/Microsoft.ApplicationInsights.pdb b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/Microsoft.ApplicationInsights.pdb new file mode 100644 index 0000000..27a0b71 Binary files /dev/null and b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/Microsoft.ApplicationInsights.pdb differ diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/Microsoft.CodeAnalysis.CSharp.pdb b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/Microsoft.CodeAnalysis.CSharp.pdb new file mode 100644 index 0000000..ebdb362 Binary files /dev/null and b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/Microsoft.CodeAnalysis.CSharp.pdb differ diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/Microsoft.CodeAnalysis.pdb b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/Microsoft.CodeAnalysis.pdb new file mode 100644 index 0000000..5df7cd0 Binary files /dev/null and b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/Microsoft.CodeAnalysis.pdb differ diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/NetWork.pdb b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/NetWork.pdb new file mode 100644 index 0000000..119dfda Binary files /dev/null and b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/NetWork.pdb differ diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.Private.ServiceModel.pdb b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.Private.ServiceModel.pdb new file mode 100644 index 0000000..f45efe9 Binary files /dev/null and b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.Private.ServiceModel.pdb differ diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.ServiceModel.Duplex.pdb b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.ServiceModel.Duplex.pdb new file mode 100644 index 0000000..990c347 Binary files /dev/null and b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.ServiceModel.Duplex.pdb differ diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.ServiceModel.Http.pdb b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.ServiceModel.Http.pdb new file mode 100644 index 0000000..c9ff9a3 Binary files /dev/null and b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.ServiceModel.Http.pdb differ diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.ServiceModel.NetTcp.pdb b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.ServiceModel.NetTcp.pdb new file mode 100644 index 0000000..afeff1a Binary files /dev/null and b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.ServiceModel.NetTcp.pdb differ diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.ServiceModel.Primitives.pdb b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.ServiceModel.Primitives.pdb new file mode 100644 index 0000000..1b8da3f Binary files /dev/null and b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.ServiceModel.Primitives.pdb differ diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.ServiceModel.Security.pdb b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.ServiceModel.Security.pdb new file mode 100644 index 0000000..5beb40e Binary files /dev/null and b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.ServiceModel.Security.pdb differ diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/singlefilehost.exe b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/singlefilehost.exe new file mode 100644 index 0000000..513f607 Binary files /dev/null and b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/singlefilehost.exe differ diff --git a/NetWork/NetWork/obj/project.assets.json b/NetWork/NetWork/obj/project.assets.json index 729f63d..556269e 100644 --- a/NetWork/NetWork/obj/project.assets.json +++ b/NetWork/NetWork/obj/project.assets.json @@ -17,173 +17,6 @@ "lib/net40/DotRas.dll": {} } }, - "Markdig.Signed/0.21.1": { - "type": "package", - "compile": { - "lib/netcoreapp3.1/Markdig.Signed.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Markdig.Signed.dll": {} - } - }, - "Microsoft.ApplicationInsights/2.15.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.DiagnosticSource": "4.6.0", - "System.Memory": "4.5.4" - }, - "compile": { - "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {} - } - }, - "Microsoft.CodeAnalysis.Analyzers/3.0.0": { - "type": "package", - "build": { - "build/_._": {} - } - }, - "Microsoft.CodeAnalysis.Common/3.7.0": { - "type": "package", - "dependencies": { - "Microsoft.CodeAnalysis.Analyzers": "3.0.0", - "System.Collections.Immutable": "1.5.0", - "System.Memory": "4.5.4", - "System.Reflection.Metadata": "1.6.0", - "System.Runtime.CompilerServices.Unsafe": "4.7.0", - "System.Text.Encoding.CodePages": "4.5.1", - "System.Threading.Tasks.Extensions": "4.5.3" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {} - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp/3.7.0": { - "type": "package", - "dependencies": { - "Microsoft.CodeAnalysis.Common": "[3.7.0]" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {} - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CSharp/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "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.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netstandard1.3/Microsoft.CSharp.dll": {} - } - }, "Microsoft.Management.Infrastructure/2.0.0": { "type": "package", "dependencies": { @@ -198,21 +31,6 @@ "lib/netstandard1.6/_._": {} } }, - "Microsoft.Management.Infrastructure.CimCmdlets/7.1.3": { - "type": "package", - "dependencies": { - "System.Management.Automation": "7.1.3" - }, - "compile": { - "ref/net5.0/System.Management.Automation.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net5.0/Microsoft.Management.Infrastructure.CimCmdlets.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { "type": "package", "runtimeTargets": { @@ -419,16 +237,7 @@ } } }, - "Microsoft.NETCore.Platforms/5.0.1": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.NETCore.Targets/1.1.0": { + "Microsoft.NETCore.Platforms/5.0.0": { "type": "package", "compile": { "lib/netstandard1.0/_._": {} @@ -1073,1261 +882,6 @@ } } }, - "Microsoft.PowerShell.Commands.Diagnostics/7.1.3": { - "type": "package", - "dependencies": { - "System.Management.Automation": "7.1.3" - }, - "compile": { - "ref/net5.0/System.Management.Automation.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net5.0/Microsoft.PowerShell.Commands.Diagnostics.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "Microsoft.PowerShell.Commands.Management/7.1.3": { - "type": "package", - "dependencies": { - "Microsoft.PowerShell.Security": "7.1.3", - "System.ServiceProcess.ServiceController": "5.0.0" - }, - "compile": { - "ref/net5.0/System.Management.Automation.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/net5.0/Microsoft.PowerShell.Commands.Management.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/net5.0/Microsoft.PowerShell.Commands.Management.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "Microsoft.PowerShell.Commands.Utility/7.1.3": { - "type": "package", - "dependencies": { - "Microsoft.CodeAnalysis.CSharp": "3.7.0", - "Microsoft.PowerShell.MarkdownRender": "7.1.3", - "NJsonSchema": "10.2.2", - "System.Drawing.Common": "5.0.2", - "System.Management.Automation": "7.1.3", - "System.Threading.AccessControl": "5.0.0" - }, - "compile": { - "ref/net5.0/Microsoft.PowerShell.Commands.Utility.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/net5.0/Microsoft.PowerShell.Commands.Utility.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/net5.0/Microsoft.PowerShell.Commands.Utility.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "Microsoft.PowerShell.ConsoleHost/7.1.3": { - "type": "package", - "dependencies": { - "System.Management.Automation": "7.1.3" - }, - "compile": { - "ref/net5.0/Microsoft.PowerShell.ConsoleHost.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/net5.0/Microsoft.PowerShell.ConsoleHost.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/net5.0/Microsoft.PowerShell.ConsoleHost.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "Microsoft.PowerShell.CoreCLR.Eventing/7.1.3": { - "type": "package", - "dependencies": { - "System.Diagnostics.EventLog": "5.0.1" - }, - "compile": { - "ref/net5.0/System.Management.Automation.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net5.0/Microsoft.PowerShell.CoreCLR.Eventing.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "Microsoft.PowerShell.MarkdownRender/7.1.3": { - "type": "package", - "dependencies": { - "Markdig.Signed": "0.21.1", - "System.Management.Automation": "7.1.3" - }, - "compile": { - "ref/net5.0/System.Management.Automation.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/net5.0/Microsoft.PowerShell.MarkdownRender.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/net5.0/Microsoft.PowerShell.MarkdownRender.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "Microsoft.PowerShell.Native/7.1.0": { - "type": "package", - "runtimeTargets": { - "runtimes/linux-arm/native/libpsl-native.so": { - "assetType": "native", - "rid": "linux-arm" - }, - "runtimes/linux-arm64/native/libpsl-native.so": { - "assetType": "native", - "rid": "linux-arm64" - }, - "runtimes/linux-musl-x64/native/libpsl-native.so": { - "assetType": "native", - "rid": "linux-musl-x64" - }, - "runtimes/linux-x64/native/libmi.so": { - "assetType": "native", - "rid": "linux-x64" - }, - "runtimes/linux-x64/native/libpsl-native.so": { - "assetType": "native", - "rid": "linux-x64" - }, - "runtimes/linux-x64/native/libpsrpclient.so": { - "assetType": "native", - "rid": "linux-x64" - }, - "runtimes/osx/native/libmi.dylib": { - "assetType": "native", - "rid": "osx" - }, - "runtimes/osx/native/libpsl-native.dylib": { - "assetType": "native", - "rid": "osx" - }, - "runtimes/osx/native/libpsrpclient.dylib": { - "assetType": "native", - "rid": "osx" - }, - "runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll": { - "assetType": "native", - "rid": "win-arm" - }, - "runtimes/win-arm/native/pwrshplugin.dll": { - "assetType": "native", - "rid": "win-arm" - }, - "runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll": { - "assetType": "native", - "rid": "win-arm64" - }, - "runtimes/win-arm64/native/pwrshplugin.dll": { - "assetType": "native", - "rid": "win-arm64" - }, - "runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll": { - "assetType": "native", - "rid": "win-x64" - }, - "runtimes/win-x64/native/pwrshplugin.dll": { - "assetType": "native", - "rid": "win-x64" - }, - "runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll": { - "assetType": "native", - "rid": "win-x86" - }, - "runtimes/win-x86/native/pwrshplugin.dll": { - "assetType": "native", - "rid": "win-x86" - } - } - }, - "Microsoft.PowerShell.SDK/7.1.3": { - "type": "package", - "dependencies": { - "Microsoft.Management.Infrastructure.CimCmdlets": "7.1.3", - "Microsoft.NETCore.Windows.ApiSets": "1.0.1", - "Microsoft.PowerShell.Commands.Diagnostics": "7.1.3", - "Microsoft.PowerShell.Commands.Management": "7.1.3", - "Microsoft.PowerShell.Commands.Utility": "7.1.3", - "Microsoft.PowerShell.ConsoleHost": "7.1.3", - "Microsoft.PowerShell.Security": "7.1.3", - "Microsoft.WSMan.Management": "7.1.3", - "Microsoft.Windows.Compatibility": "5.0.0", - "System.Data.SqlClient": "4.8.2", - "System.IO.Packaging": "5.0.0", - "System.Management.Automation": "7.1.3", - "System.Net.Http.WinHttpHandler": "5.0.0", - "System.Private.ServiceModel": "4.7.0", - "System.ServiceModel.Duplex": "4.7.0", - "System.ServiceModel.Http": "4.7.0", - "System.ServiceModel.NetTcp": "4.7.0", - "System.ServiceModel.Primitives": "4.7.0", - "System.ServiceModel.Security": "4.7.0", - "System.Text.Encodings.Web": "5.0.1" - }, - "compile": { - "ref/net5.0/Microsoft.PowerShell.Commands.Utility.dll": {}, - "ref/net5.0/Microsoft.PowerShell.ConsoleHost.dll": {}, - "ref/net5.0/System.Management.Automation.dll": {} - }, - "contentFiles": { - "contentFiles/any/any/ref/Microsoft.CSharp.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/Microsoft.CSharp.dll" - }, - "contentFiles/any/any/ref/Microsoft.VisualBasic.Core.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/Microsoft.VisualBasic.Core.dll" - }, - "contentFiles/any/any/ref/Microsoft.VisualBasic.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/Microsoft.VisualBasic.dll" - }, - "contentFiles/any/any/ref/Microsoft.Win32.Primitives.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/Microsoft.Win32.Primitives.dll" - }, - "contentFiles/any/any/ref/System.AppContext.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.AppContext.dll" - }, - "contentFiles/any/any/ref/System.Buffers.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Buffers.dll" - }, - "contentFiles/any/any/ref/System.Collections.Concurrent.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Collections.Concurrent.dll" - }, - "contentFiles/any/any/ref/System.Collections.Immutable.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Collections.Immutable.dll" - }, - "contentFiles/any/any/ref/System.Collections.NonGeneric.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Collections.NonGeneric.dll" - }, - "contentFiles/any/any/ref/System.Collections.Specialized.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Collections.Specialized.dll" - }, - "contentFiles/any/any/ref/System.Collections.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Collections.dll" - }, - "contentFiles/any/any/ref/System.ComponentModel.Annotations.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.ComponentModel.Annotations.dll" - }, - "contentFiles/any/any/ref/System.ComponentModel.DataAnnotations.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.ComponentModel.DataAnnotations.dll" - }, - "contentFiles/any/any/ref/System.ComponentModel.EventBasedAsync.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.ComponentModel.EventBasedAsync.dll" - }, - "contentFiles/any/any/ref/System.ComponentModel.Primitives.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.ComponentModel.Primitives.dll" - }, - "contentFiles/any/any/ref/System.ComponentModel.TypeConverter.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.ComponentModel.TypeConverter.dll" - }, - "contentFiles/any/any/ref/System.ComponentModel.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.ComponentModel.dll" - }, - "contentFiles/any/any/ref/System.Configuration.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Configuration.dll" - }, - "contentFiles/any/any/ref/System.Console.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Console.dll" - }, - "contentFiles/any/any/ref/System.Core.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Core.dll" - }, - "contentFiles/any/any/ref/System.Data.Common.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Data.Common.dll" - }, - "contentFiles/any/any/ref/System.Data.DataSetExtensions.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Data.DataSetExtensions.dll" - }, - "contentFiles/any/any/ref/System.Data.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Data.dll" - }, - "contentFiles/any/any/ref/System.Diagnostics.Contracts.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Diagnostics.Contracts.dll" - }, - "contentFiles/any/any/ref/System.Diagnostics.Debug.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Diagnostics.Debug.dll" - }, - "contentFiles/any/any/ref/System.Diagnostics.DiagnosticSource.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Diagnostics.DiagnosticSource.dll" - }, - "contentFiles/any/any/ref/System.Diagnostics.FileVersionInfo.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Diagnostics.FileVersionInfo.dll" - }, - "contentFiles/any/any/ref/System.Diagnostics.Process.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Diagnostics.Process.dll" - }, - "contentFiles/any/any/ref/System.Diagnostics.StackTrace.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Diagnostics.StackTrace.dll" - }, - "contentFiles/any/any/ref/System.Diagnostics.TextWriterTraceListener.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Diagnostics.TextWriterTraceListener.dll" - }, - "contentFiles/any/any/ref/System.Diagnostics.Tools.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Diagnostics.Tools.dll" - }, - "contentFiles/any/any/ref/System.Diagnostics.TraceSource.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Diagnostics.TraceSource.dll" - }, - "contentFiles/any/any/ref/System.Diagnostics.Tracing.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Diagnostics.Tracing.dll" - }, - "contentFiles/any/any/ref/System.Drawing.Primitives.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Drawing.Primitives.dll" - }, - "contentFiles/any/any/ref/System.Drawing.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Drawing.dll" - }, - "contentFiles/any/any/ref/System.Dynamic.Runtime.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Dynamic.Runtime.dll" - }, - "contentFiles/any/any/ref/System.Formats.Asn1.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Formats.Asn1.dll" - }, - "contentFiles/any/any/ref/System.Globalization.Calendars.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Globalization.Calendars.dll" - }, - "contentFiles/any/any/ref/System.Globalization.Extensions.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Globalization.Extensions.dll" - }, - "contentFiles/any/any/ref/System.Globalization.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Globalization.dll" - }, - "contentFiles/any/any/ref/System.IO.Compression.Brotli.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.IO.Compression.Brotli.dll" - }, - "contentFiles/any/any/ref/System.IO.Compression.FileSystem.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.IO.Compression.FileSystem.dll" - }, - "contentFiles/any/any/ref/System.IO.Compression.ZipFile.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.IO.Compression.ZipFile.dll" - }, - "contentFiles/any/any/ref/System.IO.Compression.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.IO.Compression.dll" - }, - "contentFiles/any/any/ref/System.IO.FileSystem.DriveInfo.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.IO.FileSystem.DriveInfo.dll" - }, - "contentFiles/any/any/ref/System.IO.FileSystem.Primitives.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.IO.FileSystem.Primitives.dll" - }, - "contentFiles/any/any/ref/System.IO.FileSystem.Watcher.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.IO.FileSystem.Watcher.dll" - }, - "contentFiles/any/any/ref/System.IO.FileSystem.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.IO.FileSystem.dll" - }, - "contentFiles/any/any/ref/System.IO.IsolatedStorage.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.IO.IsolatedStorage.dll" - }, - "contentFiles/any/any/ref/System.IO.MemoryMappedFiles.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.IO.MemoryMappedFiles.dll" - }, - "contentFiles/any/any/ref/System.IO.Pipes.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.IO.Pipes.dll" - }, - "contentFiles/any/any/ref/System.IO.UnmanagedMemoryStream.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.IO.UnmanagedMemoryStream.dll" - }, - "contentFiles/any/any/ref/System.IO.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.IO.dll" - }, - "contentFiles/any/any/ref/System.Linq.Expressions.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Linq.Expressions.dll" - }, - "contentFiles/any/any/ref/System.Linq.Parallel.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Linq.Parallel.dll" - }, - "contentFiles/any/any/ref/System.Linq.Queryable.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Linq.Queryable.dll" - }, - "contentFiles/any/any/ref/System.Linq.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Linq.dll" - }, - "contentFiles/any/any/ref/System.Memory.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Memory.dll" - }, - "contentFiles/any/any/ref/System.Net.Http.Json.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.Http.Json.dll" - }, - "contentFiles/any/any/ref/System.Net.Http.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.Http.dll" - }, - "contentFiles/any/any/ref/System.Net.HttpListener.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.HttpListener.dll" - }, - "contentFiles/any/any/ref/System.Net.Mail.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.Mail.dll" - }, - "contentFiles/any/any/ref/System.Net.NameResolution.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.NameResolution.dll" - }, - "contentFiles/any/any/ref/System.Net.NetworkInformation.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.NetworkInformation.dll" - }, - "contentFiles/any/any/ref/System.Net.Ping.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.Ping.dll" - }, - "contentFiles/any/any/ref/System.Net.Primitives.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.Primitives.dll" - }, - "contentFiles/any/any/ref/System.Net.Requests.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.Requests.dll" - }, - "contentFiles/any/any/ref/System.Net.Security.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.Security.dll" - }, - "contentFiles/any/any/ref/System.Net.ServicePoint.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.ServicePoint.dll" - }, - "contentFiles/any/any/ref/System.Net.Sockets.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.Sockets.dll" - }, - "contentFiles/any/any/ref/System.Net.WebClient.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.WebClient.dll" - }, - "contentFiles/any/any/ref/System.Net.WebHeaderCollection.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.WebHeaderCollection.dll" - }, - "contentFiles/any/any/ref/System.Net.WebProxy.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.WebProxy.dll" - }, - "contentFiles/any/any/ref/System.Net.WebSockets.Client.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.WebSockets.Client.dll" - }, - "contentFiles/any/any/ref/System.Net.WebSockets.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.WebSockets.dll" - }, - "contentFiles/any/any/ref/System.Net.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.dll" - }, - "contentFiles/any/any/ref/System.Numerics.Vectors.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Numerics.Vectors.dll" - }, - "contentFiles/any/any/ref/System.Numerics.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Numerics.dll" - }, - "contentFiles/any/any/ref/System.ObjectModel.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.ObjectModel.dll" - }, - "contentFiles/any/any/ref/System.Reflection.DispatchProxy.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Reflection.DispatchProxy.dll" - }, - "contentFiles/any/any/ref/System.Reflection.Emit.ILGeneration.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Reflection.Emit.ILGeneration.dll" - }, - "contentFiles/any/any/ref/System.Reflection.Emit.Lightweight.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Reflection.Emit.Lightweight.dll" - }, - "contentFiles/any/any/ref/System.Reflection.Emit.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Reflection.Emit.dll" - }, - "contentFiles/any/any/ref/System.Reflection.Extensions.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Reflection.Extensions.dll" - }, - "contentFiles/any/any/ref/System.Reflection.Metadata.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Reflection.Metadata.dll" - }, - "contentFiles/any/any/ref/System.Reflection.Primitives.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Reflection.Primitives.dll" - }, - "contentFiles/any/any/ref/System.Reflection.TypeExtensions.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Reflection.TypeExtensions.dll" - }, - "contentFiles/any/any/ref/System.Reflection.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Reflection.dll" - }, - "contentFiles/any/any/ref/System.Resources.Reader.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Resources.Reader.dll" - }, - "contentFiles/any/any/ref/System.Resources.ResourceManager.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Resources.ResourceManager.dll" - }, - "contentFiles/any/any/ref/System.Resources.Writer.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Resources.Writer.dll" - }, - "contentFiles/any/any/ref/System.Runtime.CompilerServices.Unsafe.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Runtime.CompilerServices.Unsafe.dll" - }, - "contentFiles/any/any/ref/System.Runtime.CompilerServices.VisualC.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Runtime.CompilerServices.VisualC.dll" - }, - "contentFiles/any/any/ref/System.Runtime.Extensions.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Runtime.Extensions.dll" - }, - "contentFiles/any/any/ref/System.Runtime.Handles.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Runtime.Handles.dll" - }, - "contentFiles/any/any/ref/System.Runtime.InteropServices.RuntimeInformation.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Runtime.InteropServices.RuntimeInformation.dll" - }, - "contentFiles/any/any/ref/System.Runtime.InteropServices.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Runtime.InteropServices.dll" - }, - "contentFiles/any/any/ref/System.Runtime.Intrinsics.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Runtime.Intrinsics.dll" - }, - "contentFiles/any/any/ref/System.Runtime.Loader.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Runtime.Loader.dll" - }, - "contentFiles/any/any/ref/System.Runtime.Numerics.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Runtime.Numerics.dll" - }, - "contentFiles/any/any/ref/System.Runtime.Serialization.Formatters.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Runtime.Serialization.Formatters.dll" - }, - "contentFiles/any/any/ref/System.Runtime.Serialization.Json.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Runtime.Serialization.Json.dll" - }, - "contentFiles/any/any/ref/System.Runtime.Serialization.Primitives.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Runtime.Serialization.Primitives.dll" - }, - "contentFiles/any/any/ref/System.Runtime.Serialization.Xml.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Runtime.Serialization.Xml.dll" - }, - "contentFiles/any/any/ref/System.Runtime.Serialization.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Runtime.Serialization.dll" - }, - "contentFiles/any/any/ref/System.Runtime.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Runtime.dll" - }, - "contentFiles/any/any/ref/System.Security.Claims.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Security.Claims.dll" - }, - "contentFiles/any/any/ref/System.Security.Cryptography.Algorithms.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Security.Cryptography.Algorithms.dll" - }, - "contentFiles/any/any/ref/System.Security.Cryptography.Csp.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Security.Cryptography.Csp.dll" - }, - "contentFiles/any/any/ref/System.Security.Cryptography.Encoding.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Security.Cryptography.Encoding.dll" - }, - "contentFiles/any/any/ref/System.Security.Cryptography.Primitives.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Security.Cryptography.Primitives.dll" - }, - "contentFiles/any/any/ref/System.Security.Cryptography.X509Certificates.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Security.Cryptography.X509Certificates.dll" - }, - "contentFiles/any/any/ref/System.Security.Principal.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Security.Principal.dll" - }, - "contentFiles/any/any/ref/System.Security.SecureString.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Security.SecureString.dll" - }, - "contentFiles/any/any/ref/System.Security.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Security.dll" - }, - "contentFiles/any/any/ref/System.ServiceModel.Web.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.ServiceModel.Web.dll" - }, - "contentFiles/any/any/ref/System.ServiceProcess.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.ServiceProcess.dll" - }, - "contentFiles/any/any/ref/System.Text.Encoding.CodePages.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Text.Encoding.CodePages.dll" - }, - "contentFiles/any/any/ref/System.Text.Encoding.Extensions.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Text.Encoding.Extensions.dll" - }, - "contentFiles/any/any/ref/System.Text.Encoding.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Text.Encoding.dll" - }, - "contentFiles/any/any/ref/System.Text.Json.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Text.Json.dll" - }, - "contentFiles/any/any/ref/System.Text.RegularExpressions.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Text.RegularExpressions.dll" - }, - "contentFiles/any/any/ref/System.Threading.Channels.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Threading.Channels.dll" - }, - "contentFiles/any/any/ref/System.Threading.Overlapped.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Threading.Overlapped.dll" - }, - "contentFiles/any/any/ref/System.Threading.Tasks.Dataflow.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Threading.Tasks.Dataflow.dll" - }, - "contentFiles/any/any/ref/System.Threading.Tasks.Extensions.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Threading.Tasks.Extensions.dll" - }, - "contentFiles/any/any/ref/System.Threading.Tasks.Parallel.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Threading.Tasks.Parallel.dll" - }, - "contentFiles/any/any/ref/System.Threading.Tasks.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Threading.Tasks.dll" - }, - "contentFiles/any/any/ref/System.Threading.Thread.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Threading.Thread.dll" - }, - "contentFiles/any/any/ref/System.Threading.ThreadPool.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Threading.ThreadPool.dll" - }, - "contentFiles/any/any/ref/System.Threading.Timer.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Threading.Timer.dll" - }, - "contentFiles/any/any/ref/System.Threading.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Threading.dll" - }, - "contentFiles/any/any/ref/System.Transactions.Local.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Transactions.Local.dll" - }, - "contentFiles/any/any/ref/System.Transactions.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Transactions.dll" - }, - "contentFiles/any/any/ref/System.ValueTuple.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.ValueTuple.dll" - }, - "contentFiles/any/any/ref/System.Web.HttpUtility.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Web.HttpUtility.dll" - }, - "contentFiles/any/any/ref/System.Web.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Web.dll" - }, - "contentFiles/any/any/ref/System.Windows.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Windows.dll" - }, - "contentFiles/any/any/ref/System.Xml.Linq.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Xml.Linq.dll" - }, - "contentFiles/any/any/ref/System.Xml.ReaderWriter.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Xml.ReaderWriter.dll" - }, - "contentFiles/any/any/ref/System.Xml.Serialization.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Xml.Serialization.dll" - }, - "contentFiles/any/any/ref/System.Xml.XDocument.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Xml.XDocument.dll" - }, - "contentFiles/any/any/ref/System.Xml.XPath.XDocument.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Xml.XPath.XDocument.dll" - }, - "contentFiles/any/any/ref/System.Xml.XPath.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Xml.XPath.dll" - }, - "contentFiles/any/any/ref/System.Xml.XmlDocument.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Xml.XmlDocument.dll" - }, - "contentFiles/any/any/ref/System.Xml.XmlSerializer.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Xml.XmlSerializer.dll" - }, - "contentFiles/any/any/ref/System.Xml.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Xml.dll" - }, - "contentFiles/any/any/ref/System.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.dll" - }, - "contentFiles/any/any/ref/WindowsBase.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/WindowsBase.dll" - }, - "contentFiles/any/any/ref/mscorlib.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/mscorlib.dll" - }, - "contentFiles/any/any/ref/netstandard.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/netstandard.dll" - }, - "contentFiles/any/any/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1" - }, - "contentFiles/any/any/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1" - }, - "contentFiles/any/any/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1" - }, - "contentFiles/any/any/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1" - }, - "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/CimCmdlets/CimCmdlets.psd1": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "runtimes/win/lib/net5.0/Modules/CimCmdlets/CimCmdlets.psd1" - }, - "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml" - }, - "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml" - }, - "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml" - }, - "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1" - }, - "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1" - }, - "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1" - }, - "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1" - }, - "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1" - }, - "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "runtimes/win/lib/net5.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1" - }, - "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "runtimes/win/lib/net5.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml" - }, - "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/PSDiagnostics/PSDiagnostics.psd1": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "runtimes/win/lib/net5.0/Modules/PSDiagnostics/PSDiagnostics.psd1" - }, - "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/PSDiagnostics/PSDiagnostics.psm1": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "runtimes/win/lib/net5.0/Modules/PSDiagnostics/PSDiagnostics.psm1" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/net5.0/Microsoft.PowerShell.SDK.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/net5.0/Microsoft.PowerShell.SDK.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "Microsoft.PowerShell.Security/7.1.3": { - "type": "package", - "dependencies": { - "System.Management.Automation": "7.1.3" - }, - "compile": { - "ref/net5.0/System.Management.Automation.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/net5.0/Microsoft.PowerShell.Security.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/net5.0/Microsoft.PowerShell.Security.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, "Microsoft.Win32.Registry/5.0.0": { "type": "package", "dependencies": { @@ -2347,132 +901,6 @@ } } }, - "Microsoft.Win32.Registry.AccessControl/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Registry": "5.0.0", - "System.Security.AccessControl": "5.0.0" - }, - "compile": { - "ref/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "Microsoft.Win32.SystemEvents/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0" - }, - "compile": { - "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "Microsoft.Windows.Compatibility/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Registry": "5.0.0", - "Microsoft.Win32.Registry.AccessControl": "5.0.0", - "Microsoft.Win32.SystemEvents": "5.0.0", - "System.CodeDom": "5.0.0", - "System.ComponentModel.Composition": "5.0.0", - "System.ComponentModel.Composition.Registration": "5.0.0", - "System.Configuration.ConfigurationManager": "5.0.0", - "System.Data.DataSetExtensions": "4.5.0", - "System.Data.Odbc": "5.0.0", - "System.Data.OleDb": "5.0.0", - "System.Data.SqlClient": "4.8.1", - "System.Diagnostics.EventLog": "5.0.0", - "System.Diagnostics.PerformanceCounter": "5.0.0", - "System.DirectoryServices": "5.0.0", - "System.DirectoryServices.AccountManagement": "5.0.0", - "System.DirectoryServices.Protocols": "5.0.0", - "System.Drawing.Common": "5.0.0", - "System.IO.FileSystem.AccessControl": "5.0.0", - "System.IO.Packaging": "5.0.0", - "System.IO.Pipes.AccessControl": "5.0.0", - "System.IO.Ports": "5.0.0", - "System.Management": "5.0.0", - "System.Reflection.Context": "5.0.0", - "System.Reflection.Emit": "4.7.0", - "System.Reflection.Emit.ILGeneration": "4.7.0", - "System.Reflection.Emit.Lightweight": "4.7.0", - "System.Runtime.Caching": "5.0.0", - "System.Security.AccessControl": "5.0.0", - "System.Security.Cryptography.Cng": "5.0.0", - "System.Security.Cryptography.Pkcs": "5.0.0", - "System.Security.Cryptography.ProtectedData": "5.0.0", - "System.Security.Cryptography.Xml": "5.0.0", - "System.Security.Permissions": "5.0.0", - "System.Security.Principal.Windows": "5.0.0", - "System.ServiceModel.Duplex": "4.7.0", - "System.ServiceModel.Http": "4.7.0", - "System.ServiceModel.NetTcp": "4.7.0", - "System.ServiceModel.Primitives": "4.7.0", - "System.ServiceModel.Security": "4.7.0", - "System.ServiceModel.Syndication": "5.0.0", - "System.ServiceProcess.ServiceController": "5.0.0", - "System.Text.Encoding.CodePages": "5.0.0", - "System.Threading.AccessControl": "5.0.0" - } - }, - "Microsoft.WSMan.Management/7.1.3": { - "type": "package", - "dependencies": { - "Microsoft.WSMan.Runtime": "7.1.3", - "System.Management.Automation": "7.1.3", - "System.ServiceProcess.ServiceController": "5.0.0" - }, - "compile": { - "ref/net5.0/System.Management.Automation.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net5.0/Microsoft.WSMan.Management.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "Microsoft.WSMan.Runtime/7.1.3": { - "type": "package", - "compile": { - "ref/net5.0/System.Management.Automation.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net5.0/Microsoft.WSMan.Runtime.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "Namotion.Reflection/1.0.14": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.3.0" - }, - "compile": { - "lib/netstandard2.0/Namotion.Reflection.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Namotion.Reflection.dll": {} - } - }, "NAudio/2.0.1": { "type": "package", "dependencies": { @@ -2579,108 +1007,6 @@ "build/netstandard2.0/NETStandard.Library.targets": {} } }, - "Newtonsoft.Json/12.0.3": { - "type": "package", - "compile": { - "lib/netstandard2.0/Newtonsoft.Json.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": {} - } - }, - "NJsonSchema/10.2.2": { - "type": "package", - "dependencies": { - "Namotion.Reflection": "1.0.14", - "Newtonsoft.Json": "9.0.1" - }, - "compile": { - "lib/netstandard2.0/NJsonSchema.dll": {} - }, - "runtime": { - "lib/netstandard2.0/NJsonSchema.dll": {} - } - }, - "runtime.linux-arm.runtime.native.System.IO.Ports/5.0.0-rtm.20519.4": { - "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-rtm.20519.4": { - "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-rtm.20519.4": { - "type": "package", - "runtimeTargets": { - "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so": { - "assetType": "native", - "rid": "linux-x64" - } - } - }, - "runtime.native.System.Data.SqlClient.sni/4.7.0": { - "type": "package", - "dependencies": { - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" - } - }, - "runtime.native.System.IO.Ports/5.0.0": { - "type": "package", - "dependencies": { - "runtime.linux-arm.runtime.native.System.IO.Ports": "5.0.0-rtm.20519.4", - "runtime.linux-arm64.runtime.native.System.IO.Ports": "5.0.0-rtm.20519.4", - "runtime.linux-x64.runtime.native.System.IO.Ports": "5.0.0-rtm.20519.4", - "runtime.osx-x64.runtime.native.System.IO.Ports": "5.0.0-rtm.20519.4" - } - }, - "runtime.osx-x64.runtime.native.System.IO.Ports/5.0.0-rtm.20519.4": { - "type": "package", - "runtimeTargets": { - "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib": { - "assetType": "native", - "rid": "osx-x64" - } - } - }, - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "runtimeTargets": { - "runtimes/win-arm64/native/sni.dll": { - "assetType": "native", - "rid": "win-arm64" - } - } - }, - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "runtimeTargets": { - "runtimes/win-x64/native/sni.dll": { - "assetType": "native", - "rid": "win-x64" - } - } - }, - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "runtimeTargets": { - "runtimes/win-x86/native/sni.dll": { - "assetType": "native", - "rid": "win-x86" - } - } - }, "SimpleWifi.netstandard/2.0.0": { "type": "package", "compile": { @@ -2699,481 +1025,6 @@ "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.Immutable/1.5.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Collections.Immutable.dll": {} - } - }, - "System.ComponentModel.Composition/5.0.0": { - "type": "package", - "compile": { - "ref/netstandard2.0/System.ComponentModel.Composition.dll": {} - }, - "runtime": { - "lib/netcoreapp2.0/System.ComponentModel.Composition.dll": {} - } - }, - "System.ComponentModel.Composition.Registration/5.0.0": { - "type": "package", - "dependencies": { - "System.ComponentModel.Composition": "5.0.0", - "System.Reflection.Context": "5.0.0" - }, - "compile": { - "ref/netstandard2.1/System.ComponentModel.Composition.Registration.dll": {} - }, - "runtime": { - "lib/netstandard2.1/System.ComponentModel.Composition.Registration.dll": {} - } - }, - "System.Configuration.ConfigurationManager/5.0.0": { - "type": "package", - "dependencies": { - "System.Security.Cryptography.ProtectedData": "5.0.0", - "System.Security.Permissions": "5.0.0" - }, - "compile": { - "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} - } - }, - "System.Data.DataSetExtensions/4.5.0": { - "type": "package", - "compile": { - "ref/netstandard2.0/System.Data.DataSetExtensions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Data.DataSetExtensions.dll": {} - } - }, - "System.Data.Odbc/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0" - }, - "compile": { - "ref/netstandard2.0/System.Data.Odbc.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Data.Odbc.dll": {} - }, - "runtimeTargets": { - "runtimes/freebsd/lib/netcoreapp2.0/System.Data.Odbc.dll": { - "assetType": "runtime", - "rid": "freebsd" - }, - "runtimes/linux/lib/netcoreapp2.0/System.Data.Odbc.dll": { - "assetType": "runtime", - "rid": "linux" - }, - "runtimes/osx/lib/netcoreapp2.0/System.Data.Odbc.dll": { - "assetType": "runtime", - "rid": "osx" - }, - "runtimes/win/lib/netcoreapp2.0/System.Data.Odbc.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Data.OleDb/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Registry": "5.0.0", - "System.Configuration.ConfigurationManager": "5.0.0", - "System.Diagnostics.PerformanceCounter": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - }, - "compile": { - "ref/netstandard2.0/System.Data.OleDb.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Data.OleDb.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/System.Data.OleDb.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Data.SqlClient/4.8.2": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Registry": "4.7.0", - "System.Security.Principal.Windows": "4.7.0", - "runtime.native.System.Data.SqlClient.sni": "4.7.0" - }, - "compile": { - "ref/netcoreapp2.1/System.Data.SqlClient.dll": {} - }, - "runtime": { - "lib/netcoreapp2.1/System.Data.SqlClient.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "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.6.0": { - "type": "package", - "compile": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} - } - }, - "System.Diagnostics.EventLog/5.0.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.1", - "Microsoft.Win32.Registry": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - }, - "compile": { - "ref/netstandard2.0/System.Diagnostics.EventLog.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.Messages.dll": { - "assetType": "runtime", - "rid": "win" - }, - "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Diagnostics.PerformanceCounter/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.Win32.Registry": "5.0.0", - "System.Configuration.ConfigurationManager": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - }, - "compile": { - "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.DirectoryServices/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.IO.FileSystem.AccessControl": "5.0.0", - "System.Security.AccessControl": "5.0.0", - "System.Security.Permissions": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - }, - "compile": { - "ref/netstandard2.0/System.DirectoryServices.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.DirectoryServices.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.DirectoryServices.AccountManagement/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Configuration.ConfigurationManager": "5.0.0", - "System.DirectoryServices": "5.0.0", - "System.DirectoryServices.Protocols": "5.0.0", - "System.IO.FileSystem.AccessControl": "5.0.0", - "System.Security.AccessControl": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - }, - "compile": { - "ref/netstandard2.0/System.DirectoryServices.AccountManagement.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.DirectoryServices.AccountManagement.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.AccountManagement.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.DirectoryServices.Protocols/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - }, - "compile": { - "ref/netstandard2.0/System.DirectoryServices.Protocols.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": {} - }, - "runtimeTargets": { - "runtimes/linux/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { - "assetType": "runtime", - "rid": "linux" - }, - "runtimes/osx/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { - "assetType": "runtime", - "rid": "osx" - }, - "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "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.Dynamic.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "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" - }, - "compile": { - "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} - } - }, - "System.Formats.Asn1/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/_._": {} - }, - "runtime": { - "lib/netstandard2.0/System.Formats.Asn1.dll": {} - } - }, - "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.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.AccessControl/5.0.0": { - "type": "package", - "dependencies": { - "System.Security.AccessControl": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - }, - "compile": { - "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.IO.Packaging/5.0.0": { - "type": "package", - "compile": { - "ref/netstandard2.0/System.IO.Packaging.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.IO.Packaging.dll": {} - } - }, - "System.IO.Pipes.AccessControl/5.0.0": { - "type": "package", - "dependencies": { - "System.Security.AccessControl": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - }, - "compile": { - "ref/net5.0/System.IO.Pipes.AccessControl.dll": {} - }, - "runtime": { - "lib/net5.0/System.IO.Pipes.AccessControl.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net5.0/System.IO.Pipes.AccessControl.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.IO.Ports/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Win32.Registry": "5.0.0", - "runtime.native.System.IO.Ports": "5.0.0" - }, - "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.Linq.Expressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "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" - }, - "compile": { - "ref/netstandard1.6/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.Linq.Expressions.dll": {} - } - }, "System.Management/5.0.0": { "type": "package", "dependencies": { @@ -3194,282 +1045,6 @@ } } }, - "System.Management.Automation/7.1.3": { - "type": "package", - "dependencies": { - "Microsoft.ApplicationInsights": "2.15.0", - "Microsoft.Management.Infrastructure": "2.0.0", - "Microsoft.PowerShell.CoreCLR.Eventing": "7.1.3", - "Microsoft.PowerShell.Native": "7.1.0", - "Microsoft.Win32.Registry.AccessControl": "5.0.0", - "Newtonsoft.Json": "12.0.3", - "System.Configuration.ConfigurationManager": "5.0.0", - "System.DirectoryServices": "5.0.0", - "System.IO.FileSystem.AccessControl": "5.0.0", - "System.Management": "5.0.0", - "System.Runtime.CompilerServices.Unsafe": "5.0.0", - "System.Security.AccessControl": "5.0.0", - "System.Security.Cryptography.Pkcs": "5.0.1", - "System.Security.Permissions": "5.0.0", - "System.Text.Encoding.CodePages": "5.0.0" - }, - "compile": { - "ref/net5.0/System.Management.Automation.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/net5.0/System.Management.Automation.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/net5.0/System.Management.Automation.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Memory/4.5.4": { - "type": "package", - "compile": { - "ref/netcoreapp2.1/_._": {} - }, - "runtime": { - "lib/netcoreapp2.1/_._": {} - } - }, - "System.Net.Http.WinHttpHandler/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.ObjectModel/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.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.ObjectModel.dll": {} - } - }, - "System.Private.ServiceModel/4.7.0": { - "type": "package", - "dependencies": { - "System.Reflection.DispatchProxy": "4.5.0", - "System.Security.Cryptography.Xml": "4.5.0", - "System.Security.Principal.Windows": "4.5.0" - }, - "compile": { - "ref/netstandard2.0/_._": {} - }, - "runtime": { - "lib/netstandard2.0/System.Private.ServiceModel.dll": {} - } - }, - "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.dll": {} - } - }, - "System.Reflection.Context/5.0.0": { - "type": "package", - "compile": { - "ref/netstandard2.0/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/netstandard2.1/System.Reflection.Context.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.5.0": { - "type": "package", - "compile": { - "ref/netstandard2.0/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/netcoreapp2.0/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.7.0": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.7.0": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "System.Reflection.Emit.Lightweight/4.7.0": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - } - }, - "System.Reflection.Metadata/1.6.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Reflection.Metadata.dll": {} - } - }, - "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.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/_._": {} - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} - } - }, - "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.Caching/5.0.0": { - "type": "package", - "dependencies": { - "System.Configuration.ConfigurationManager": "5.0.0" - }, - "compile": { - "ref/netstandard2.0/System.Runtime.Caching.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Runtime.Caching.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Runtime.CompilerServices.Unsafe/5.0.0": { - "type": "package", - "compile": { - "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": {} - }, - "runtime": { - "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.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.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.Security.AccessControl/5.0.0": { "type": "package", "dependencies": { @@ -3489,84 +1064,6 @@ } } }, - "System.Security.Cryptography.Cng/5.0.0": { - "type": "package", - "dependencies": { - "System.Formats.Asn1": "5.0.0" - }, - "compile": { - "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {} - }, - "runtime": { - "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Pkcs/5.0.1": { - "type": "package", - "dependencies": { - "System.Formats.Asn1": "5.0.0", - "System.Security.Cryptography.Cng": "5.0.0" - }, - "compile": { - "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {} - }, - "runtime": { - "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.ProtectedData/5.0.0": { - "type": "package", - "compile": { - "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Xml/5.0.0": { - "type": "package", - "dependencies": { - "System.Security.Cryptography.Pkcs": "5.0.0", - "System.Security.Permissions": "5.0.0" - }, - "compile": { - "ref/netstandard2.0/System.Security.Cryptography.Xml.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Security.Cryptography.Xml.dll": {} - } - }, - "System.Security.Permissions/5.0.0": { - "type": "package", - "dependencies": { - "System.Security.AccessControl": "5.0.0", - "System.Windows.Extensions": "5.0.0" - }, - "compile": { - "ref/net5.0/System.Security.Permissions.dll": {} - }, - "runtime": { - "lib/net5.0/System.Security.Permissions.dll": {} - } - }, "System.Security.Principal.Windows/5.0.0": { "type": "package", "compile": { @@ -3585,207 +1082,6 @@ "rid": "win" } } - }, - "System.ServiceModel.Duplex/4.7.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.7.0", - "System.ServiceModel.Primitives": "4.7.0" - }, - "compile": { - "ref/netstandard2.0/System.ServiceModel.Duplex.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.ServiceModel.Duplex.dll": {} - } - }, - "System.ServiceModel.Http/4.7.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.7.0", - "System.ServiceModel.Primitives": "4.7.0" - }, - "compile": { - "ref/netstandard2.0/System.ServiceModel.Http.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.ServiceModel.Http.dll": {} - } - }, - "System.ServiceModel.NetTcp/4.7.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.7.0", - "System.ServiceModel.Primitives": "4.7.0" - }, - "compile": { - "ref/netstandard2.0/System.ServiceModel.NetTcp.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.ServiceModel.NetTcp.dll": {} - } - }, - "System.ServiceModel.Primitives/4.7.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.7.0" - }, - "compile": { - "ref/netcoreapp2.1/System.ServiceModel.Primitives.dll": {}, - "ref/netcoreapp2.1/System.ServiceModel.dll": {} - }, - "runtime": { - "lib/netcoreapp2.1/System.ServiceModel.Primitives.dll": {}, - "lib/netcoreapp2.1/System.ServiceModel.dll": {} - } - }, - "System.ServiceModel.Security/4.7.0": { - "type": "package", - "dependencies": { - "System.Private.ServiceModel": "4.7.0", - "System.ServiceModel.Primitives": "4.7.0" - }, - "compile": { - "ref/netstandard2.0/System.ServiceModel.Security.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.ServiceModel.Security.dll": {} - } - }, - "System.ServiceModel.Syndication/5.0.0": { - "type": "package", - "compile": { - "ref/netcoreapp2.1/System.ServiceModel.Syndication.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.ServiceModel.Syndication.dll": {} - } - }, - "System.ServiceProcess.ServiceController/5.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.EventLog": "5.0.0" - }, - "compile": { - "ref/netstandard2.0/System.ServiceProcess.ServiceController.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.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/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "5.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.Text.Encodings.Web/5.0.1": { - "type": "package", - "compile": { - "lib/netcoreapp3.0/System.Text.Encodings.Web.dll": {} - }, - "runtime": { - "lib/netcoreapp3.0/System.Text.Encodings.Web.dll": {} - } - }, - "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.AccessControl/5.0.0": { - "type": "package", - "dependencies": { - "System.Security.AccessControl": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - }, - "compile": { - "ref/netstandard2.0/System.Threading.AccessControl.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Threading.AccessControl.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/System.Threading.AccessControl.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.3": { - "type": "package", - "compile": { - "ref/netcoreapp2.1/_._": {} - }, - "runtime": { - "lib/netcoreapp2.1/_._": {} - } - }, - "System.Windows.Extensions/5.0.0": { - "type": "package", - "dependencies": { - "System.Drawing.Common": "5.0.0" - }, - "compile": { - "ref/netcoreapp3.0/System.Windows.Extensions.dll": {} - }, - "runtime": { - "lib/netcoreapp3.0/System.Windows.Extensions.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { - "assetType": "runtime", - "rid": "win" - } - } } } }, @@ -3820,298 +1116,6 @@ "lib/net40/DotRas.xml" ] }, - "Markdig.Signed/0.21.1": { - "sha512": "Lg0FPQdKUXai4/XZpQGlQ/HldpHsGnsU6Jd+udJgHj/R7i3ngM2TtR+SZqdHRtgItIHe3dFh2DS/M5qXGSPRiQ==", - "type": "package", - "path": "markdig.signed/0.21.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net452/Markdig.Signed.dll", - "lib/net452/Markdig.Signed.xml", - "lib/netcoreapp2.1/Markdig.Signed.dll", - "lib/netcoreapp2.1/Markdig.Signed.xml", - "lib/netcoreapp3.1/Markdig.Signed.dll", - "lib/netcoreapp3.1/Markdig.Signed.xml", - "lib/netstandard2.0/Markdig.Signed.dll", - "lib/netstandard2.0/Markdig.Signed.xml", - "lib/netstandard2.1/Markdig.Signed.dll", - "lib/netstandard2.1/Markdig.Signed.xml", - "markdig.signed.0.21.1.nupkg.sha512", - "markdig.signed.nuspec" - ] - }, - "Microsoft.ApplicationInsights/2.15.0": { - "sha512": "tG9WZoFc0BTbkj+UjH4IUp8qkT9NA5st8zvPzlHbU8rJDgPFqZDJ3SSAQajl42jet1ghhJ5ZixsjjqVvwi4kaQ==", - "type": "package", - "path": "microsoft.applicationinsights/2.15.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "icon.png", - "lib/net452/Microsoft.ApplicationInsights.dll", - "lib/net452/Microsoft.ApplicationInsights.pdb", - "lib/net452/Microsoft.ApplicationInsights.xml", - "lib/net46/Microsoft.ApplicationInsights.dll", - "lib/net46/Microsoft.ApplicationInsights.pdb", - "lib/net46/Microsoft.ApplicationInsights.xml", - "lib/netstandard2.0/Microsoft.ApplicationInsights.dll", - "lib/netstandard2.0/Microsoft.ApplicationInsights.pdb", - "lib/netstandard2.0/Microsoft.ApplicationInsights.xml", - "microsoft.applicationinsights.2.15.0.nupkg.sha512", - "microsoft.applicationinsights.nuspec" - ] - }, - "Microsoft.CodeAnalysis.Analyzers/3.0.0": { - "sha512": "ojG5pGAhTPmjxRGTNvuszO3H8XPZqksDwr9xLd4Ae/JBjZZdl6GuoLk7uLMf+o7yl5wO0TAqoWcEKkEWqrZE5g==", - "type": "package", - "path": "microsoft.codeanalysis.analyzers/3.0.0", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "EULA.rtf", - "ThirdPartyNotices.rtf", - "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll", - "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", - "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll", - "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", - "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", - "build/Microsoft.CodeAnalysis.Analyzers.props", - "build/Microsoft.CodeAnalysis.Analyzers.targets", - "documentation/Analyzer Configuration.md", - "documentation/Microsoft.CodeAnalysis.Analyzers.md", - "documentation/Microsoft.CodeAnalysis.Analyzers.sarif", - "editorconfig/AllRulesDefault/.editorconfig", - "editorconfig/AllRulesDisabled/.editorconfig", - "editorconfig/AllRulesEnabled/.editorconfig", - "editorconfig/CorrectnessRulesDefault/.editorconfig", - "editorconfig/CorrectnessRulesEnabled/.editorconfig", - "editorconfig/DataflowRulesDefault/.editorconfig", - "editorconfig/DataflowRulesEnabled/.editorconfig", - "editorconfig/LibraryRulesDefault/.editorconfig", - "editorconfig/LibraryRulesEnabled/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig", - "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig", - "editorconfig/PortedFromFxCopRulesDefault/.editorconfig", - "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig", - "microsoft.codeanalysis.analyzers.3.0.0.nupkg.sha512", - "microsoft.codeanalysis.analyzers.nuspec", - "rulesets/AllRulesDefault.ruleset", - "rulesets/AllRulesDisabled.ruleset", - "rulesets/AllRulesEnabled.ruleset", - "rulesets/CorrectnessRulesDefault.ruleset", - "rulesets/CorrectnessRulesEnabled.ruleset", - "rulesets/DataflowRulesDefault.ruleset", - "rulesets/DataflowRulesEnabled.ruleset", - "rulesets/LibraryRulesDefault.ruleset", - "rulesets/LibraryRulesEnabled.ruleset", - "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset", - "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset", - "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset", - "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset", - "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset", - "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset", - "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset", - "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset", - "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset", - "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset", - "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset", - "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset", - "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset", - "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset", - "rulesets/PortedFromFxCopRulesDefault.ruleset", - "rulesets/PortedFromFxCopRulesEnabled.ruleset", - "tools/install.ps1", - "tools/uninstall.ps1" - ] - }, - "Microsoft.CodeAnalysis.Common/3.7.0": { - "sha512": "SFEdnbw8204hTlde3JePYSIpNX58h/MMXa7LctUsUDigWMR8Ar9gE8LnsLqAIFM0O33JEuQbJ0G4Sat+cPGldw==", - "type": "package", - "path": "microsoft.codeanalysis.common/3.7.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "ThirdPartyNotices.rtf", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.pdb", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.xml", - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/Microsoft.CodeAnalysis.dll", - "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb", - "lib/netstandard2.0/Microsoft.CodeAnalysis.xml", - "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", - "microsoft.codeanalysis.common.3.7.0.nupkg.sha512", - "microsoft.codeanalysis.common.nuspec" - ] - }, - "Microsoft.CodeAnalysis.CSharp/3.7.0": { - "sha512": "sKi5PIVy9nVDerkbplY6OQhJBNzEO4XJsMGrnmb6KFEa6K1ulGCHIv6NtDjdUQ/dGrouU3OExc3yzww0COD76w==", - "type": "package", - "path": "microsoft.codeanalysis.csharp/3.7.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "ThirdPartyNotices.rtf", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.pdb", - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.xml", - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll", - "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb", - "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml", - "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", - "microsoft.codeanalysis.csharp.3.7.0.nupkg.sha512", - "microsoft.codeanalysis.csharp.nuspec" - ] - }, - "Microsoft.CSharp/4.3.0": { - "sha512": "P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==", - "type": "package", - "path": "microsoft.csharp/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/Microsoft.CSharp.dll", - "lib/netstandard1.3/Microsoft.CSharp.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "microsoft.csharp.4.3.0.nupkg.sha512", - "microsoft.csharp.nuspec", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/Microsoft.CSharp.dll", - "ref/netcore50/Microsoft.CSharp.xml", - "ref/netcore50/de/Microsoft.CSharp.xml", - "ref/netcore50/es/Microsoft.CSharp.xml", - "ref/netcore50/fr/Microsoft.CSharp.xml", - "ref/netcore50/it/Microsoft.CSharp.xml", - "ref/netcore50/ja/Microsoft.CSharp.xml", - "ref/netcore50/ko/Microsoft.CSharp.xml", - "ref/netcore50/ru/Microsoft.CSharp.xml", - "ref/netcore50/zh-hans/Microsoft.CSharp.xml", - "ref/netcore50/zh-hant/Microsoft.CSharp.xml", - "ref/netstandard1.0/Microsoft.CSharp.dll", - "ref/netstandard1.0/Microsoft.CSharp.xml", - "ref/netstandard1.0/de/Microsoft.CSharp.xml", - "ref/netstandard1.0/es/Microsoft.CSharp.xml", - "ref/netstandard1.0/fr/Microsoft.CSharp.xml", - "ref/netstandard1.0/it/Microsoft.CSharp.xml", - "ref/netstandard1.0/ja/Microsoft.CSharp.xml", - "ref/netstandard1.0/ko/Microsoft.CSharp.xml", - "ref/netstandard1.0/ru/Microsoft.CSharp.xml", - "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", - "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, "Microsoft.Management.Infrastructure/2.0.0": { "sha512": "IaKZRNBBv3sdrmBWd+aqwHq8cVHk/3WgWFAN/dt40MRY9rbtHiDfTTmaEN0tGTmQqGCGDo/ncntA8MvFMvcsRw==", "type": "package", @@ -4128,20 +1132,6 @@ "ref/netstandard1.6/Microsoft.Management.Infrastructure.dll" ] }, - "Microsoft.Management.Infrastructure.CimCmdlets/7.1.3": { - "sha512": "IgXC2hL2nerZdLlmV8isXXXUVwC326k/Bodpzm+pxXmOU+D4XPY4789CZLPJFlOVMHR6ARmHE/M+iQpY3jeeGA==", - "type": "package", - "path": "microsoft.management.infrastructure.cimcmdlets/7.1.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Powershell_black_64.png", - "microsoft.management.infrastructure.cimcmdlets.7.1.3.nupkg.sha512", - "microsoft.management.infrastructure.cimcmdlets.nuspec", - "ref/net5.0/System.Management.Automation.dll", - "runtimes/win/lib/net5.0/Microsoft.Management.Infrastructure.CimCmdlets.dll" - ] - }, "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { "sha512": "p0lslMX5bdWLxO2P7ao+rjAMOB0LEwPYpzvdCQ2OEYgX2NxFpQ8ILvqPGnYlTAb53rT8gu5DyIol1HboHFYfxQ==", "type": "package", @@ -4233,10 +1223,10 @@ "runtimes/win81-x86/native/miutils.dll" ] }, - "Microsoft.NETCore.Platforms/5.0.1": { - "sha512": "z3YFkbnl1RMj6lb+Bm/2tsZ0cJCULlB4uPOFqlj6dNSm/8feJl4UrXmG6TcZh8ipJQwkAS5I6UCs1FnGog4QZg==", + "Microsoft.NETCore.Platforms/5.0.0": { + "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", "type": "package", - "path": "microsoft.netcore.platforms/5.0.1", + "path": "microsoft.netcore.platforms/5.0.0", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -4244,28 +1234,13 @@ "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", "lib/netstandard1.0/_._", - "microsoft.netcore.platforms.5.0.1.nupkg.sha512", + "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.NETCore.Windows.ApiSets/1.0.1": { "sha512": "SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==", "type": "package", @@ -4447,324 +1422,6 @@ "runtimes/win81-x64/native/api-ms-win-security-cpwl-l1-1-0.dll" ] }, - "Microsoft.PowerShell.Commands.Diagnostics/7.1.3": { - "sha512": "LjYU4Fn/CrA/8hBpadisKjnycJgGkS7GlP3PgnFCgVhMq5rsTABgm0akA9rucH8NQnFN9LjSk9dPrkL0wpP6Eg==", - "type": "package", - "path": "microsoft.powershell.commands.diagnostics/7.1.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Powershell_black_64.png", - "microsoft.powershell.commands.diagnostics.7.1.3.nupkg.sha512", - "microsoft.powershell.commands.diagnostics.nuspec", - "ref/net5.0/System.Management.Automation.dll", - "runtimes/win/lib/net5.0/Microsoft.PowerShell.Commands.Diagnostics.dll" - ] - }, - "Microsoft.PowerShell.Commands.Management/7.1.3": { - "sha512": "0z2I3xpfLTFb5lygdytPido1TEhpvurDFQSDRnYl0v1zIEbStFIPeJajT0WhqPhSIzXmI4uj/+MeToD/79qaHQ==", - "type": "package", - "path": "microsoft.powershell.commands.management/7.1.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Powershell_black_64.png", - "microsoft.powershell.commands.management.7.1.3.nupkg.sha512", - "microsoft.powershell.commands.management.nuspec", - "ref/net5.0/System.Management.Automation.dll", - "runtimes/unix/lib/net5.0/Microsoft.PowerShell.Commands.Management.dll", - "runtimes/win/lib/net5.0/Microsoft.PowerShell.Commands.Management.dll" - ] - }, - "Microsoft.PowerShell.Commands.Utility/7.1.3": { - "sha512": "AsQTmJdC13QN0JyqH0cy2vqi2VM9kGKWkfzGpyktYaY4lnWJbnzCg/0dOD1SJlmB+41DSyjTg03RBgTPOsoOXA==", - "type": "package", - "path": "microsoft.powershell.commands.utility/7.1.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Powershell_black_64.png", - "microsoft.powershell.commands.utility.7.1.3.nupkg.sha512", - "microsoft.powershell.commands.utility.nuspec", - "ref/net5.0/Microsoft.PowerShell.Commands.Utility.dll", - "runtimes/unix/lib/net5.0/Microsoft.PowerShell.Commands.Utility.dll", - "runtimes/win/lib/net5.0/Microsoft.PowerShell.Commands.Utility.dll" - ] - }, - "Microsoft.PowerShell.ConsoleHost/7.1.3": { - "sha512": "u/iNvSQ/cGYzxj1TJQCtcSM78H8pbpPiYs30I1HrJxvtj0tqKtBagzWvMoeCFYlA6p4ZgztPHSKr4xiHh/Wrxw==", - "type": "package", - "path": "microsoft.powershell.consolehost/7.1.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Powershell_black_64.png", - "microsoft.powershell.consolehost.7.1.3.nupkg.sha512", - "microsoft.powershell.consolehost.nuspec", - "ref/net5.0/Microsoft.PowerShell.ConsoleHost.dll", - "runtimes/unix/lib/net5.0/Microsoft.PowerShell.ConsoleHost.dll", - "runtimes/win/lib/net5.0/Microsoft.PowerShell.ConsoleHost.dll" - ] - }, - "Microsoft.PowerShell.CoreCLR.Eventing/7.1.3": { - "sha512": "gsshJYIbjJjlTDGlDntENxMkRd+KWZo0CXF1jLJrpqtF51nmP5AHMKysFXRTPBWTNFmFTZ0tqgazkzF5S92/VA==", - "type": "package", - "path": "microsoft.powershell.coreclr.eventing/7.1.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Powershell_black_64.png", - "microsoft.powershell.coreclr.eventing.7.1.3.nupkg.sha512", - "microsoft.powershell.coreclr.eventing.nuspec", - "ref/net5.0/System.Management.Automation.dll", - "runtimes/win/lib/net5.0/Microsoft.PowerShell.CoreCLR.Eventing.dll" - ] - }, - "Microsoft.PowerShell.MarkdownRender/7.1.3": { - "sha512": "86h8paEYo7BQ017G47cKL1twAxdhOD9sJRu6NSEuwbDgjVd3t5fahgLz7YDxwugcxDiA1TLCgH1cwUjChvoOrw==", - "type": "package", - "path": "microsoft.powershell.markdownrender/7.1.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Powershell_black_64.png", - "microsoft.powershell.markdownrender.7.1.3.nupkg.sha512", - "microsoft.powershell.markdownrender.nuspec", - "ref/net5.0/System.Management.Automation.dll", - "runtimes/unix/lib/net5.0/Microsoft.PowerShell.MarkdownRender.dll", - "runtimes/win/lib/net5.0/Microsoft.PowerShell.MarkdownRender.dll" - ] - }, - "Microsoft.PowerShell.Native/7.1.0": { - "sha512": "PJ/ei1HnYC+CMVDdUMT96PgWFONwVv/ZaJ5j//qLdk073alzdzOPWZiGsxYimJaRLP0TW4uomgIsR9q6jrf48A==", - "type": "package", - "path": "microsoft.powershell.native/7.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "PSRP_version.txt", - "Powershell_black_64.png", - "microsoft.powershell.native.7.1.0.nupkg.sha512", - "microsoft.powershell.native.nuspec", - "runtimes/linux-arm/native/libpsl-native.so", - "runtimes/linux-arm64/native/libpsl-native.so", - "runtimes/linux-musl-x64/native/libpsl-native.so", - "runtimes/linux-x64/native/libmi.so", - "runtimes/linux-x64/native/libpsl-native.so", - "runtimes/linux-x64/native/libpsrpclient.so", - "runtimes/osx/native/libmi.dylib", - "runtimes/osx/native/libpsl-native.dylib", - "runtimes/osx/native/libpsrpclient.dylib", - "runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll", - "runtimes/win-arm/native/pwrshplugin.dll", - "runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll", - "runtimes/win-arm64/native/pwrshplugin.dll", - "runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll", - "runtimes/win-x64/native/pwrshplugin.dll", - "runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll", - "runtimes/win-x86/native/pwrshplugin.dll" - ] - }, - "Microsoft.PowerShell.SDK/7.1.3": { - "sha512": "MwD8qwp+7LjtO5YVD5vSNtb3VlsMJGEg5PL5R3IgtFXfN3MDzvOF0BUEw60FC+Sf80RvYl3si1HacXr5DXxM5Q==", - "type": "package", - "path": "microsoft.powershell.sdk/7.1.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Powershell_black_64.png", - "contentFiles/any/any/ref/Microsoft.CSharp.dll", - "contentFiles/any/any/ref/Microsoft.VisualBasic.Core.dll", - "contentFiles/any/any/ref/Microsoft.VisualBasic.dll", - "contentFiles/any/any/ref/Microsoft.Win32.Primitives.dll", - "contentFiles/any/any/ref/System.AppContext.dll", - "contentFiles/any/any/ref/System.Buffers.dll", - "contentFiles/any/any/ref/System.Collections.Concurrent.dll", - "contentFiles/any/any/ref/System.Collections.Immutable.dll", - "contentFiles/any/any/ref/System.Collections.NonGeneric.dll", - "contentFiles/any/any/ref/System.Collections.Specialized.dll", - "contentFiles/any/any/ref/System.Collections.dll", - "contentFiles/any/any/ref/System.ComponentModel.Annotations.dll", - "contentFiles/any/any/ref/System.ComponentModel.DataAnnotations.dll", - "contentFiles/any/any/ref/System.ComponentModel.EventBasedAsync.dll", - "contentFiles/any/any/ref/System.ComponentModel.Primitives.dll", - "contentFiles/any/any/ref/System.ComponentModel.TypeConverter.dll", - "contentFiles/any/any/ref/System.ComponentModel.dll", - "contentFiles/any/any/ref/System.Configuration.dll", - "contentFiles/any/any/ref/System.Console.dll", - "contentFiles/any/any/ref/System.Core.dll", - "contentFiles/any/any/ref/System.Data.Common.dll", - "contentFiles/any/any/ref/System.Data.DataSetExtensions.dll", - "contentFiles/any/any/ref/System.Data.dll", - "contentFiles/any/any/ref/System.Diagnostics.Contracts.dll", - "contentFiles/any/any/ref/System.Diagnostics.Debug.dll", - "contentFiles/any/any/ref/System.Diagnostics.DiagnosticSource.dll", - "contentFiles/any/any/ref/System.Diagnostics.FileVersionInfo.dll", - "contentFiles/any/any/ref/System.Diagnostics.Process.dll", - "contentFiles/any/any/ref/System.Diagnostics.StackTrace.dll", - "contentFiles/any/any/ref/System.Diagnostics.TextWriterTraceListener.dll", - "contentFiles/any/any/ref/System.Diagnostics.Tools.dll", - "contentFiles/any/any/ref/System.Diagnostics.TraceSource.dll", - "contentFiles/any/any/ref/System.Diagnostics.Tracing.dll", - "contentFiles/any/any/ref/System.Drawing.Primitives.dll", - "contentFiles/any/any/ref/System.Drawing.dll", - "contentFiles/any/any/ref/System.Dynamic.Runtime.dll", - "contentFiles/any/any/ref/System.Formats.Asn1.dll", - "contentFiles/any/any/ref/System.Globalization.Calendars.dll", - "contentFiles/any/any/ref/System.Globalization.Extensions.dll", - "contentFiles/any/any/ref/System.Globalization.dll", - "contentFiles/any/any/ref/System.IO.Compression.Brotli.dll", - "contentFiles/any/any/ref/System.IO.Compression.FileSystem.dll", - "contentFiles/any/any/ref/System.IO.Compression.ZipFile.dll", - "contentFiles/any/any/ref/System.IO.Compression.dll", - "contentFiles/any/any/ref/System.IO.FileSystem.DriveInfo.dll", - "contentFiles/any/any/ref/System.IO.FileSystem.Primitives.dll", - "contentFiles/any/any/ref/System.IO.FileSystem.Watcher.dll", - "contentFiles/any/any/ref/System.IO.FileSystem.dll", - "contentFiles/any/any/ref/System.IO.IsolatedStorage.dll", - "contentFiles/any/any/ref/System.IO.MemoryMappedFiles.dll", - "contentFiles/any/any/ref/System.IO.Pipes.dll", - "contentFiles/any/any/ref/System.IO.UnmanagedMemoryStream.dll", - "contentFiles/any/any/ref/System.IO.dll", - "contentFiles/any/any/ref/System.Linq.Expressions.dll", - "contentFiles/any/any/ref/System.Linq.Parallel.dll", - "contentFiles/any/any/ref/System.Linq.Queryable.dll", - "contentFiles/any/any/ref/System.Linq.dll", - "contentFiles/any/any/ref/System.Memory.dll", - "contentFiles/any/any/ref/System.Net.Http.Json.dll", - "contentFiles/any/any/ref/System.Net.Http.dll", - "contentFiles/any/any/ref/System.Net.HttpListener.dll", - "contentFiles/any/any/ref/System.Net.Mail.dll", - "contentFiles/any/any/ref/System.Net.NameResolution.dll", - "contentFiles/any/any/ref/System.Net.NetworkInformation.dll", - "contentFiles/any/any/ref/System.Net.Ping.dll", - "contentFiles/any/any/ref/System.Net.Primitives.dll", - "contentFiles/any/any/ref/System.Net.Requests.dll", - "contentFiles/any/any/ref/System.Net.Security.dll", - "contentFiles/any/any/ref/System.Net.ServicePoint.dll", - "contentFiles/any/any/ref/System.Net.Sockets.dll", - "contentFiles/any/any/ref/System.Net.WebClient.dll", - "contentFiles/any/any/ref/System.Net.WebHeaderCollection.dll", - "contentFiles/any/any/ref/System.Net.WebProxy.dll", - "contentFiles/any/any/ref/System.Net.WebSockets.Client.dll", - "contentFiles/any/any/ref/System.Net.WebSockets.dll", - "contentFiles/any/any/ref/System.Net.dll", - "contentFiles/any/any/ref/System.Numerics.Vectors.dll", - "contentFiles/any/any/ref/System.Numerics.dll", - "contentFiles/any/any/ref/System.ObjectModel.dll", - "contentFiles/any/any/ref/System.Reflection.DispatchProxy.dll", - "contentFiles/any/any/ref/System.Reflection.Emit.ILGeneration.dll", - "contentFiles/any/any/ref/System.Reflection.Emit.Lightweight.dll", - "contentFiles/any/any/ref/System.Reflection.Emit.dll", - "contentFiles/any/any/ref/System.Reflection.Extensions.dll", - "contentFiles/any/any/ref/System.Reflection.Metadata.dll", - "contentFiles/any/any/ref/System.Reflection.Primitives.dll", - "contentFiles/any/any/ref/System.Reflection.TypeExtensions.dll", - "contentFiles/any/any/ref/System.Reflection.dll", - "contentFiles/any/any/ref/System.Resources.Reader.dll", - "contentFiles/any/any/ref/System.Resources.ResourceManager.dll", - "contentFiles/any/any/ref/System.Resources.Writer.dll", - "contentFiles/any/any/ref/System.Runtime.CompilerServices.Unsafe.dll", - "contentFiles/any/any/ref/System.Runtime.CompilerServices.VisualC.dll", - "contentFiles/any/any/ref/System.Runtime.Extensions.dll", - "contentFiles/any/any/ref/System.Runtime.Handles.dll", - "contentFiles/any/any/ref/System.Runtime.InteropServices.RuntimeInformation.dll", - "contentFiles/any/any/ref/System.Runtime.InteropServices.dll", - "contentFiles/any/any/ref/System.Runtime.Intrinsics.dll", - "contentFiles/any/any/ref/System.Runtime.Loader.dll", - "contentFiles/any/any/ref/System.Runtime.Numerics.dll", - "contentFiles/any/any/ref/System.Runtime.Serialization.Formatters.dll", - "contentFiles/any/any/ref/System.Runtime.Serialization.Json.dll", - "contentFiles/any/any/ref/System.Runtime.Serialization.Primitives.dll", - "contentFiles/any/any/ref/System.Runtime.Serialization.Xml.dll", - "contentFiles/any/any/ref/System.Runtime.Serialization.dll", - "contentFiles/any/any/ref/System.Runtime.dll", - "contentFiles/any/any/ref/System.Security.Claims.dll", - "contentFiles/any/any/ref/System.Security.Cryptography.Algorithms.dll", - "contentFiles/any/any/ref/System.Security.Cryptography.Csp.dll", - "contentFiles/any/any/ref/System.Security.Cryptography.Encoding.dll", - "contentFiles/any/any/ref/System.Security.Cryptography.Primitives.dll", - "contentFiles/any/any/ref/System.Security.Cryptography.X509Certificates.dll", - "contentFiles/any/any/ref/System.Security.Principal.dll", - "contentFiles/any/any/ref/System.Security.SecureString.dll", - "contentFiles/any/any/ref/System.Security.dll", - "contentFiles/any/any/ref/System.ServiceModel.Web.dll", - "contentFiles/any/any/ref/System.ServiceProcess.dll", - "contentFiles/any/any/ref/System.Text.Encoding.CodePages.dll", - "contentFiles/any/any/ref/System.Text.Encoding.Extensions.dll", - "contentFiles/any/any/ref/System.Text.Encoding.dll", - "contentFiles/any/any/ref/System.Text.Json.dll", - "contentFiles/any/any/ref/System.Text.RegularExpressions.dll", - "contentFiles/any/any/ref/System.Threading.Channels.dll", - "contentFiles/any/any/ref/System.Threading.Overlapped.dll", - "contentFiles/any/any/ref/System.Threading.Tasks.Dataflow.dll", - "contentFiles/any/any/ref/System.Threading.Tasks.Extensions.dll", - "contentFiles/any/any/ref/System.Threading.Tasks.Parallel.dll", - "contentFiles/any/any/ref/System.Threading.Tasks.dll", - "contentFiles/any/any/ref/System.Threading.Thread.dll", - "contentFiles/any/any/ref/System.Threading.ThreadPool.dll", - "contentFiles/any/any/ref/System.Threading.Timer.dll", - "contentFiles/any/any/ref/System.Threading.dll", - "contentFiles/any/any/ref/System.Transactions.Local.dll", - "contentFiles/any/any/ref/System.Transactions.dll", - "contentFiles/any/any/ref/System.ValueTuple.dll", - "contentFiles/any/any/ref/System.Web.HttpUtility.dll", - "contentFiles/any/any/ref/System.Web.dll", - "contentFiles/any/any/ref/System.Windows.dll", - "contentFiles/any/any/ref/System.Xml.Linq.dll", - "contentFiles/any/any/ref/System.Xml.ReaderWriter.dll", - "contentFiles/any/any/ref/System.Xml.Serialization.dll", - "contentFiles/any/any/ref/System.Xml.XDocument.dll", - "contentFiles/any/any/ref/System.Xml.XPath.XDocument.dll", - "contentFiles/any/any/ref/System.Xml.XPath.dll", - "contentFiles/any/any/ref/System.Xml.XmlDocument.dll", - "contentFiles/any/any/ref/System.Xml.XmlSerializer.dll", - "contentFiles/any/any/ref/System.Xml.dll", - "contentFiles/any/any/ref/System.dll", - "contentFiles/any/any/ref/WindowsBase.dll", - "contentFiles/any/any/ref/mscorlib.dll", - "contentFiles/any/any/ref/netstandard.dll", - "contentFiles/any/any/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1", - "contentFiles/any/any/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1", - "contentFiles/any/any/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1", - "contentFiles/any/any/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1", - "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/CimCmdlets/CimCmdlets.psd1", - "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml", - "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml", - "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml", - "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1", - "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1", - "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1", - "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1", - "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1", - "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1", - "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml", - "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/PSDiagnostics/PSDiagnostics.psd1", - "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/PSDiagnostics/PSDiagnostics.psm1", - "microsoft.powershell.sdk.7.1.3.nupkg.sha512", - "microsoft.powershell.sdk.nuspec", - "ref/net5.0/Microsoft.PowerShell.Commands.Utility.dll", - "ref/net5.0/Microsoft.PowerShell.ConsoleHost.dll", - "ref/net5.0/System.Management.Automation.dll", - "runtimes/unix/lib/net5.0/Microsoft.PowerShell.SDK.dll", - "runtimes/win/lib/net5.0/Microsoft.PowerShell.SDK.dll" - ] - }, - "Microsoft.PowerShell.Security/7.1.3": { - "sha512": "hmXwtDMiF13vUTF1wk/FArwy/nOM5YNtNoOEY5Vrtf0TOiYyjx/PCsObMEPCb5jLgpUO2AC4b5gtVNmyEw/5LQ==", - "type": "package", - "path": "microsoft.powershell.security/7.1.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Powershell_black_64.png", - "microsoft.powershell.security.7.1.3.nupkg.sha512", - "microsoft.powershell.security.nuspec", - "ref/net5.0/System.Management.Automation.dll", - "runtimes/unix/lib/net5.0/Microsoft.PowerShell.Security.dll", - "runtimes/win/lib/net5.0/Microsoft.PowerShell.Security.dll" - ] - }, "Microsoft.Win32.Registry/5.0.0": { "sha512": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", "type": "package", @@ -4809,141 +1466,6 @@ "version.txt" ] }, - "Microsoft.Win32.Registry.AccessControl/5.0.0": { - "sha512": "rwF501ZS/xKGWz5H3RLBvwta6E5kcMLB0UYGTgrZ8nL5bvrbGmtEcEObgMC/qRFhA3og/0Zh+eacrcA+0FBXJA==", - "type": "package", - "path": "microsoft.win32.registry.accesscontrol/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/Microsoft.Win32.Registry.AccessControl.dll", - "lib/net461/Microsoft.Win32.Registry.AccessControl.dll", - "lib/net461/Microsoft.Win32.Registry.AccessControl.xml", - "lib/netstandard1.3/Microsoft.Win32.Registry.AccessControl.dll", - "lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll", - "lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.xml", - "microsoft.win32.registry.accesscontrol.5.0.0.nupkg.sha512", - "microsoft.win32.registry.accesscontrol.nuspec", - "ref/net46/Microsoft.Win32.Registry.AccessControl.dll", - "ref/net461/Microsoft.Win32.Registry.AccessControl.dll", - "ref/net461/Microsoft.Win32.Registry.AccessControl.xml", - "ref/netstandard1.3/Microsoft.Win32.Registry.AccessControl.dll", - "ref/netstandard1.3/Microsoft.Win32.Registry.AccessControl.xml", - "ref/netstandard1.3/de/Microsoft.Win32.Registry.AccessControl.xml", - "ref/netstandard1.3/es/Microsoft.Win32.Registry.AccessControl.xml", - "ref/netstandard1.3/fr/Microsoft.Win32.Registry.AccessControl.xml", - "ref/netstandard1.3/it/Microsoft.Win32.Registry.AccessControl.xml", - "ref/netstandard1.3/ja/Microsoft.Win32.Registry.AccessControl.xml", - "ref/netstandard1.3/ko/Microsoft.Win32.Registry.AccessControl.xml", - "ref/netstandard1.3/ru/Microsoft.Win32.Registry.AccessControl.xml", - "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.AccessControl.xml", - "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.AccessControl.xml", - "ref/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll", - "ref/netstandard2.0/Microsoft.Win32.Registry.AccessControl.xml", - "runtimes/win/lib/net46/Microsoft.Win32.Registry.AccessControl.dll", - "runtimes/win/lib/net461/Microsoft.Win32.Registry.AccessControl.dll", - "runtimes/win/lib/net461/Microsoft.Win32.Registry.AccessControl.xml", - "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.AccessControl.dll", - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll", - "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.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" - ] - }, - "Microsoft.Windows.Compatibility/5.0.0": { - "sha512": "HujVMtkV1WTVlzbPWNZjHVG8ro6mIS15ul0XRLwmCq8NnbuI3C8bAUP3KdPTypK2D/Zr+u0q3m3qk7iM7b3JPg==", - "type": "package", - "path": "microsoft.windows.compatibility/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "microsoft.windows.compatibility.5.0.0.nupkg.sha512", - "microsoft.windows.compatibility.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.WSMan.Management/7.1.3": { - "sha512": "pSo+31uFqBNS2hXzb5X8MUXOy5BgzMdW0sadBeHA0kaGqSItVFniO/YI5nSboPzyFUPeJhENXnch/uQ3kBKsdg==", - "type": "package", - "path": "microsoft.wsman.management/7.1.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Powershell_black_64.png", - "microsoft.wsman.management.7.1.3.nupkg.sha512", - "microsoft.wsman.management.nuspec", - "ref/net5.0/System.Management.Automation.dll", - "runtimes/win/lib/net5.0/Microsoft.WSMan.Management.dll" - ] - }, - "Microsoft.WSMan.Runtime/7.1.3": { - "sha512": "whAtJ6Gl/KoclB3NALkk1MptpP6vaVlA8zSuQo4AXBrMuSLUZZV9cbsc3f8Xb2c/5W/C+Of5fSusBGsaGt6wgQ==", - "type": "package", - "path": "microsoft.wsman.runtime/7.1.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Powershell_black_64.png", - "microsoft.wsman.runtime.7.1.3.nupkg.sha512", - "microsoft.wsman.runtime.nuspec", - "ref/net5.0/System.Management.Automation.dll", - "runtimes/win/lib/net5.0/Microsoft.WSMan.Runtime.dll" - ] - }, - "Namotion.Reflection/1.0.14": { - "sha512": "wuJGiFvGfehH2w7jAhMbCJt0/rvUuHyqSZn0sMhNTviDfBZRyX8LFlR/ndQcofkGWulPDfH5nKYTeGXE8xBHPA==", - "type": "package", - "path": "namotion.reflection/1.0.14", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net40/Namotion.Reflection.dll", - "lib/net40/Namotion.Reflection.xml", - "lib/net45/Namotion.Reflection.dll", - "lib/net45/Namotion.Reflection.xml", - "lib/netstandard1.0/Namotion.Reflection.dll", - "lib/netstandard1.0/Namotion.Reflection.xml", - "lib/netstandard2.0/Namotion.Reflection.dll", - "lib/netstandard2.0/Namotion.Reflection.xml", - "namotion.reflection.1.0.14.nupkg.sha512", - "namotion.reflection.nuspec" - ] - }, "NAudio/2.0.1": { "sha512": "QTbkeWOC9IBRiq2rvyFnm47ro4HYZQXJQMrhgAD1BwbkUzH+NMt+2ayLDnAJNJQu6V69Of6KZSYyDfU2Pr+dzQ==", "type": "package", @@ -5169,203 +1691,6 @@ "netstandard.library.nuspec" ] }, - "Newtonsoft.Json/12.0.3": { - "sha512": "6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==", - "type": "package", - "path": "newtonsoft.json/12.0.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.md", - "lib/net20/Newtonsoft.Json.dll", - "lib/net20/Newtonsoft.Json.xml", - "lib/net35/Newtonsoft.Json.dll", - "lib/net35/Newtonsoft.Json.xml", - "lib/net40/Newtonsoft.Json.dll", - "lib/net40/Newtonsoft.Json.xml", - "lib/net45/Newtonsoft.Json.dll", - "lib/net45/Newtonsoft.Json.xml", - "lib/netstandard1.0/Newtonsoft.Json.dll", - "lib/netstandard1.0/Newtonsoft.Json.xml", - "lib/netstandard1.3/Newtonsoft.Json.dll", - "lib/netstandard1.3/Newtonsoft.Json.xml", - "lib/netstandard2.0/Newtonsoft.Json.dll", - "lib/netstandard2.0/Newtonsoft.Json.xml", - "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll", - "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml", - "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll", - "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml", - "newtonsoft.json.12.0.3.nupkg.sha512", - "newtonsoft.json.nuspec", - "packageIcon.png" - ] - }, - "NJsonSchema/10.2.2": { - "sha512": "s6oNUrjw5Ix5WVkYdU0vgyzoutZdi7p+uQqTGYa3QbLtjDYrkD4ahfGnfyCpHNoJUXun9pHKGy6AD0LJNcSgjQ==", - "type": "package", - "path": "njsonschema/10.2.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net40/NJsonSchema.dll", - "lib/net40/NJsonSchema.xml", - "lib/net45/NJsonSchema.dll", - "lib/net45/NJsonSchema.xml", - "lib/netstandard1.0/NJsonSchema.dll", - "lib/netstandard1.0/NJsonSchema.xml", - "lib/netstandard2.0/NJsonSchema.dll", - "lib/netstandard2.0/NJsonSchema.xml", - "njsonschema.10.2.2.nupkg.sha512", - "njsonschema.nuspec" - ] - }, - "runtime.linux-arm.runtime.native.System.IO.Ports/5.0.0-rtm.20519.4": { - "sha512": "Np6w3r1dSFB930GGZHIKCc5ZClRXZIqOrCAT0pzcd/zXnsZPvGqLZB1MnxAbVhvriJl71B0N0tJaaT1ICWXsyg==", - "type": "package", - "path": "runtime.linux-arm.runtime.native.system.io.ports/5.0.0-rtm.20519.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "runtime.linux-arm.runtime.native.system.io.ports.5.0.0-rtm.20519.4.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-rtm.20519.4": { - "sha512": "VnGZmQ7pzMNkcTVdmGtXUQIbytK4Xk8F4/mxm0I+n7zbrsW/WNgLrWMTv9pb2Uyq09azXazNDQhZao4R4ebWcw==", - "type": "package", - "path": "runtime.linux-arm64.runtime.native.system.io.ports/5.0.0-rtm.20519.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "runtime.linux-arm64.runtime.native.system.io.ports.5.0.0-rtm.20519.4.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-rtm.20519.4": { - "sha512": "kvMZgZjtcC6cA8Y8imKpjCpiOJKDtwlNekS86GzUol4Jmzh0FWiRwAj4E9ZKO8R7rTBGIA4rkmra9Ko8j7l6AA==", - "type": "package", - "path": "runtime.linux-x64.runtime.native.system.io.ports/5.0.0-rtm.20519.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "runtime.linux-x64.runtime.native.system.io.ports.5.0.0-rtm.20519.4.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.Data.SqlClient.sni/4.7.0": { - "sha512": "9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", - "type": "package", - "path": "runtime.native.system.data.sqlclient.sni/4.7.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", - "runtime.native.system.data.sqlclient.sni.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "runtime.native.System.IO.Ports/5.0.0": { - "sha512": "ME+/evR+UxVlWyGHUlLBoNTnsTdaylMbnvVwOp0Nl6XIZGGyXdqJqjlEew7e6TcKkJAA0lljhjKi3Kie+vzQ7g==", - "type": "package", - "path": "runtime.native.system.io.ports/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "runtime.native.system.io.ports.5.0.0.nupkg.sha512", - "runtime.native.system.io.ports.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "runtime.osx-x64.runtime.native.System.IO.Ports/5.0.0-rtm.20519.4": { - "sha512": "N+dbbqhT7JBnPVHa7n2+Z5fHYO4a4UUhm7cQkbuQQoNkjbxLpxYnQ4lpRjr1RuQptqYkPmunKvN5etdFOObaiw==", - "type": "package", - "path": "runtime.osx-x64.runtime.native.system.io.ports/5.0.0-rtm.20519.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "runtime.osx-x64.runtime.native.system.io.ports.5.0.0-rtm.20519.4.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.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", - "type": "package", - "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", - "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec", - "runtimes/win-arm64/native/sni.dll", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", - "type": "package", - "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", - "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec", - "runtimes/win-x64/native/sni.dll", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", - "type": "package", - "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", - "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec", - "runtimes/win-x86/native/sni.dll", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, "SimpleWifi.netstandard/2.0.0": { "sha512": "lJuk2zjX4snKbrxfDnDEwYb8dTFR/UbyMb9umljexOP1nuXjdYXNX3T2+zrdxZue359ZqvHC8aAAGkgWS6PFFw==", "type": "package", @@ -5404,1165 +1729,6 @@ "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.Immutable/1.5.0": { - "sha512": "EXKiDFsChZW0RjrZ4FYHu9aW6+P4MCgEDCklsVseRfhoO0F+dXeMSsMRAlVXIo06kGJ/zv+2w1a2uc2+kxxSaQ==", - "type": "package", - "path": "system.collections.immutable/1.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netstandard1.0/System.Collections.Immutable.dll", - "lib/netstandard1.0/System.Collections.Immutable.xml", - "lib/netstandard1.3/System.Collections.Immutable.dll", - "lib/netstandard1.3/System.Collections.Immutable.xml", - "lib/netstandard2.0/System.Collections.Immutable.dll", - "lib/netstandard2.0/System.Collections.Immutable.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", - "system.collections.immutable.1.5.0.nupkg.sha512", - "system.collections.immutable.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.ComponentModel.Composition/5.0.0": { - "sha512": "YL8iA3VOFxhyomn7FxtBgh3F+8XG5jOfT5UcqYLtkafSa6g6alQfKZuRwlEIWe+tzH6OVnj0Ekg5tn/DmV7SkQ==", - "type": "package", - "path": "system.componentmodel.composition/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcoreapp2.0/System.ComponentModel.Composition.dll", - "lib/netcoreapp2.0/System.ComponentModel.Composition.xml", - "lib/netstandard2.0/System.ComponentModel.Composition.dll", - "lib/netstandard2.0/System.ComponentModel.Composition.xml", - "lib/uap10.0.16299/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netstandard2.0/System.ComponentModel.Composition.dll", - "ref/netstandard2.0/System.ComponentModel.Composition.xml", - "ref/uap10.0.16299/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.composition.5.0.0.nupkg.sha512", - "system.componentmodel.composition.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.ComponentModel.Composition.Registration/5.0.0": { - "sha512": "CTTPajoCKcXQ1NVTlazz6ned37MHVFf1qKfzsBIdHkaFJBnRVVh4hYsVkPP7z+RrMQU5iXdiTcsfxDb5DWOKOA==", - "type": "package", - "path": "system.componentmodel.composition.registration/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net45/_._", - "lib/netstandard2.1/System.ComponentModel.Composition.Registration.dll", - "lib/netstandard2.1/System.ComponentModel.Composition.Registration.xml", - "ref/net45/_._", - "ref/netstandard2.1/System.ComponentModel.Composition.Registration.dll", - "ref/netstandard2.1/System.ComponentModel.Composition.Registration.xml", - "system.componentmodel.composition.registration.5.0.0.nupkg.sha512", - "system.componentmodel.composition.registration.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Configuration.ConfigurationManager/5.0.0": { - "sha512": "aM7cbfEfVNlEEOj3DsZP+2g9NRwbkyiAv2isQEzw7pnkDg9ekCU2m1cdJLM02Uq691OaCS91tooaxcEn8d0q5w==", - "type": "package", - "path": "system.configuration.configurationmanager/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Configuration.ConfigurationManager.dll", - "lib/net461/System.Configuration.ConfigurationManager.xml", - "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", - "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", - "ref/net461/System.Configuration.ConfigurationManager.dll", - "ref/net461/System.Configuration.ConfigurationManager.xml", - "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll", - "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml", - "system.configuration.configurationmanager.5.0.0.nupkg.sha512", - "system.configuration.configurationmanager.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Data.DataSetExtensions/4.5.0": { - "sha512": "221clPs1445HkTBZPL+K9sDBdJRB8UN8rgjO3ztB0CQ26z//fmJXtlsr6whGatscsKGBrhJl5bwJuKSA8mwFOw==", - "type": "package", - "path": "system.data.datasetextensions/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net45/_._", - "lib/netstandard2.0/System.Data.DataSetExtensions.dll", - "ref/net45/_._", - "ref/netstandard2.0/System.Data.DataSetExtensions.dll", - "system.data.datasetextensions.4.5.0.nupkg.sha512", - "system.data.datasetextensions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Data.Odbc/5.0.0": { - "sha512": "j4WsYGmcD7m1D0Tc3N7HqWqcdUHNn9+kdXh9ODTWEsOGrAvALf+BgRStd7L0/O/zDS0R4Uu9vNM8UY6EnK+WYw==", - "type": "package", - "path": "system.data.odbc/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Data.Odbc.dll", - "lib/net461/System.Data.Odbc.xml", - "lib/netstandard2.0/System.Data.Odbc.dll", - "lib/netstandard2.0/System.Data.Odbc.xml", - "ref/net461/System.Data.Odbc.dll", - "ref/net461/System.Data.Odbc.xml", - "ref/netstandard2.0/System.Data.Odbc.dll", - "ref/netstandard2.0/System.Data.Odbc.xml", - "runtimes/freebsd/lib/netcoreapp2.0/System.Data.Odbc.dll", - "runtimes/freebsd/lib/netcoreapp2.0/System.Data.Odbc.xml", - "runtimes/linux/lib/netcoreapp2.0/System.Data.Odbc.dll", - "runtimes/linux/lib/netcoreapp2.0/System.Data.Odbc.xml", - "runtimes/osx/lib/netcoreapp2.0/System.Data.Odbc.dll", - "runtimes/osx/lib/netcoreapp2.0/System.Data.Odbc.xml", - "runtimes/win/lib/net461/System.Data.Odbc.dll", - "runtimes/win/lib/net461/System.Data.Odbc.xml", - "runtimes/win/lib/netcoreapp2.0/System.Data.Odbc.dll", - "runtimes/win/lib/netcoreapp2.0/System.Data.Odbc.xml", - "system.data.odbc.5.0.0.nupkg.sha512", - "system.data.odbc.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Data.OleDb/5.0.0": { - "sha512": "DHCZucsidgFtUr1w5OggQNjb7M6N722QpNbkG6TV+3hCvPSLXdrm1NjJqVZB5/OW067gzuZVj9W147hrkTF/Ig==", - "type": "package", - "path": "system.data.oledb/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Data.OleDb.dll", - "lib/net461/System.Data.OleDb.xml", - "lib/netstandard2.0/System.Data.OleDb.dll", - "lib/netstandard2.0/System.Data.OleDb.xml", - "ref/net461/System.Data.OleDb.dll", - "ref/net461/System.Data.OleDb.xml", - "ref/netstandard2.0/System.Data.OleDb.dll", - "ref/netstandard2.0/System.Data.OleDb.xml", - "runtimes/win/lib/net461/System.Data.OleDb.dll", - "runtimes/win/lib/net461/System.Data.OleDb.xml", - "runtimes/win/lib/netstandard2.0/System.Data.OleDb.dll", - "runtimes/win/lib/netstandard2.0/System.Data.OleDb.xml", - "system.data.oledb.5.0.0.nupkg.sha512", - "system.data.oledb.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Data.SqlClient/4.8.2": { - "sha512": "80vGtW6uLB4AkyrdVuKTXYUyuXDPAsSKbTVfvjndZaRAYxzFzWhJbvUfeAKrN+128ycWZjLIAl61dFUwWHOOTw==", - "type": "package", - "path": "system.data.sqlclient/4.8.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net451/System.Data.SqlClient.dll", - "lib/net46/System.Data.SqlClient.dll", - "lib/net461/System.Data.SqlClient.dll", - "lib/net461/System.Data.SqlClient.xml", - "lib/netcoreapp2.1/System.Data.SqlClient.dll", - "lib/netcoreapp2.1/System.Data.SqlClient.xml", - "lib/netstandard1.2/System.Data.SqlClient.dll", - "lib/netstandard1.2/System.Data.SqlClient.xml", - "lib/netstandard1.3/System.Data.SqlClient.dll", - "lib/netstandard1.3/System.Data.SqlClient.xml", - "lib/netstandard2.0/System.Data.SqlClient.dll", - "lib/netstandard2.0/System.Data.SqlClient.xml", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net451/System.Data.SqlClient.dll", - "ref/net46/System.Data.SqlClient.dll", - "ref/net461/System.Data.SqlClient.dll", - "ref/net461/System.Data.SqlClient.xml", - "ref/netcoreapp2.1/System.Data.SqlClient.dll", - "ref/netcoreapp2.1/System.Data.SqlClient.xml", - "ref/netstandard1.2/System.Data.SqlClient.dll", - "ref/netstandard1.2/System.Data.SqlClient.xml", - "ref/netstandard1.2/de/System.Data.SqlClient.xml", - "ref/netstandard1.2/es/System.Data.SqlClient.xml", - "ref/netstandard1.2/fr/System.Data.SqlClient.xml", - "ref/netstandard1.2/it/System.Data.SqlClient.xml", - "ref/netstandard1.2/ja/System.Data.SqlClient.xml", - "ref/netstandard1.2/ko/System.Data.SqlClient.xml", - "ref/netstandard1.2/ru/System.Data.SqlClient.xml", - "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml", - "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml", - "ref/netstandard1.3/System.Data.SqlClient.dll", - "ref/netstandard1.3/System.Data.SqlClient.xml", - "ref/netstandard1.3/de/System.Data.SqlClient.xml", - "ref/netstandard1.3/es/System.Data.SqlClient.xml", - "ref/netstandard1.3/fr/System.Data.SqlClient.xml", - "ref/netstandard1.3/it/System.Data.SqlClient.xml", - "ref/netstandard1.3/ja/System.Data.SqlClient.xml", - "ref/netstandard1.3/ko/System.Data.SqlClient.xml", - "ref/netstandard1.3/ru/System.Data.SqlClient.xml", - "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml", - "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml", - "ref/netstandard2.0/System.Data.SqlClient.dll", - "ref/netstandard2.0/System.Data.SqlClient.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll", - "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.xml", - "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll", - "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll", - "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.xml", - "runtimes/win/lib/net451/System.Data.SqlClient.dll", - "runtimes/win/lib/net46/System.Data.SqlClient.dll", - "runtimes/win/lib/net461/System.Data.SqlClient.dll", - "runtimes/win/lib/net461/System.Data.SqlClient.xml", - "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll", - "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.xml", - "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll", - "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll", - "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.xml", - "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll", - "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.xml", - "system.data.sqlclient.4.8.2.nupkg.sha512", - "system.data.sqlclient.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "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.6.0": { - "sha512": "mbBgoR0rRfl2uimsZ2avZY8g7Xnh1Mza0rJZLPcxqiMWlkGukjmRkuMJ/er+AhQuiRIh80CR/Hpeztr80seV5g==", - "type": "package", - "path": "system.diagnostics.diagnosticsource/4.6.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net45/System.Diagnostics.DiagnosticSource.dll", - "lib/net45/System.Diagnostics.DiagnosticSource.xml", - "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.6.0.nupkg.sha512", - "system.diagnostics.diagnosticsource.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Diagnostics.EventLog/5.0.1": { - "sha512": "k4O5RrjnhJZrP4EgOklUVkcmVdAxs9+PoXCGmlNS3NPIwaSyMMLy7pUaamMHCFkduiOO/ZUzIRjyoCnvXLJpfw==", - "type": "package", - "path": "system.diagnostics.eventlog/5.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Diagnostics.EventLog.dll", - "lib/net461/System.Diagnostics.EventLog.xml", - "lib/netstandard2.0/System.Diagnostics.EventLog.dll", - "lib/netstandard2.0/System.Diagnostics.EventLog.xml", - "ref/net461/System.Diagnostics.EventLog.dll", - "ref/net461/System.Diagnostics.EventLog.xml", - "ref/netstandard2.0/System.Diagnostics.EventLog.dll", - "ref/netstandard2.0/System.Diagnostics.EventLog.xml", - "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.Messages.dll", - "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll", - "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.xml", - "system.diagnostics.eventlog.5.0.1.nupkg.sha512", - "system.diagnostics.eventlog.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Diagnostics.PerformanceCounter/5.0.0": { - "sha512": "kcQWWtGVC3MWMNXdMDWfrmIlFZZ2OdoeT6pSNVRtk9+Sa7jwdPiMlNwb0ZQcS7NRlT92pCfmjRtkSWUW3RAKwg==", - "type": "package", - "path": "system.diagnostics.performancecounter/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net461/System.Diagnostics.PerformanceCounter.dll", - "lib/net461/System.Diagnostics.PerformanceCounter.xml", - "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll", - "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net461/System.Diagnostics.PerformanceCounter.dll", - "ref/net461/System.Diagnostics.PerformanceCounter.xml", - "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll", - "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll", - "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.xml", - "system.diagnostics.performancecounter.5.0.0.nupkg.sha512", - "system.diagnostics.performancecounter.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.DirectoryServices/5.0.0": { - "sha512": "lAS54Y3KO1XV68akGa0/GJeddkkuuiv2CtcSkMiTmLHQ6o6kFbKpw4DmJZADF7a6KjPwYxmZnH4D3eGicrJdcg==", - "type": "package", - "path": "system.directoryservices/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net45/_._", - "lib/netstandard2.0/System.DirectoryServices.dll", - "lib/netstandard2.0/System.DirectoryServices.xml", - "ref/net45/_._", - "ref/netstandard2.0/System.DirectoryServices.dll", - "ref/netstandard2.0/System.DirectoryServices.xml", - "runtimes/win/lib/net45/_._", - "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll", - "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.xml", - "system.directoryservices.5.0.0.nupkg.sha512", - "system.directoryservices.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.DirectoryServices.AccountManagement/5.0.0": { - "sha512": "1WevH/8ULy0iixbsZW4k8ftV9fDqkeUJfeVMsJ7SySrHsnBISkRx1JuDRRV7QXfNTCQKrHeecfqcY5pevlDwog==", - "type": "package", - "path": "system.directoryservices.accountmanagement/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net45/_._", - "lib/netstandard2.0/System.DirectoryServices.AccountManagement.dll", - "lib/netstandard2.0/System.DirectoryServices.AccountManagement.xml", - "ref/net45/_._", - "ref/netstandard2.0/System.DirectoryServices.AccountManagement.dll", - "ref/netstandard2.0/System.DirectoryServices.AccountManagement.xml", - "runtimes/win/lib/net45/_._", - "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.AccountManagement.dll", - "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.AccountManagement.xml", - "system.directoryservices.accountmanagement.5.0.0.nupkg.sha512", - "system.directoryservices.accountmanagement.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.DirectoryServices.Protocols/5.0.0": { - "sha512": "uQvO3kpXBDCoRQecbY8yXiQTVBT5t6ZMCZwBsyGFeCL0KUTlNJDsaIx+hsqCKF+bLglaYyz5nWLVRaxPKVeBBw==", - "type": "package", - "path": "system.directoryservices.protocols/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net45/_._", - "lib/netstandard2.0/System.DirectoryServices.Protocols.dll", - "lib/netstandard2.0/System.DirectoryServices.Protocols.xml", - "ref/net45/_._", - "ref/netstandard2.0/System.DirectoryServices.Protocols.dll", - "ref/netstandard2.0/System.DirectoryServices.Protocols.xml", - "runtimes/linux/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll", - "runtimes/linux/lib/netcoreapp2.0/System.DirectoryServices.Protocols.xml", - "runtimes/osx/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll", - "runtimes/osx/lib/netcoreapp2.0/System.DirectoryServices.Protocols.xml", - "runtimes/win/lib/net45/_._", - "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll", - "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.xml", - "system.directoryservices.protocols.5.0.0.nupkg.sha512", - "system.directoryservices.protocols.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "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.Dynamic.Runtime/4.3.0": { - "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", - "type": "package", - "path": "system.dynamic.runtime/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Dynamic.Runtime.dll", - "lib/netstandard1.3/System.Dynamic.Runtime.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.Dynamic.Runtime.dll", - "ref/netcore50/System.Dynamic.Runtime.xml", - "ref/netcore50/de/System.Dynamic.Runtime.xml", - "ref/netcore50/es/System.Dynamic.Runtime.xml", - "ref/netcore50/fr/System.Dynamic.Runtime.xml", - "ref/netcore50/it/System.Dynamic.Runtime.xml", - "ref/netcore50/ja/System.Dynamic.Runtime.xml", - "ref/netcore50/ko/System.Dynamic.Runtime.xml", - "ref/netcore50/ru/System.Dynamic.Runtime.xml", - "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", - "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/System.Dynamic.Runtime.dll", - "ref/netstandard1.0/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/System.Dynamic.Runtime.dll", - "ref/netstandard1.3/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.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.Dynamic.Runtime.dll", - "system.dynamic.runtime.4.3.0.nupkg.sha512", - "system.dynamic.runtime.nuspec" - ] - }, - "System.Formats.Asn1/5.0.0": { - "sha512": "MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==", - "type": "package", - "path": "system.formats.asn1/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Formats.Asn1.dll", - "lib/net461/System.Formats.Asn1.xml", - "lib/netstandard2.0/System.Formats.Asn1.dll", - "lib/netstandard2.0/System.Formats.Asn1.xml", - "system.formats.asn1.5.0.0.nupkg.sha512", - "system.formats.asn1.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.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.AccessControl/5.0.0": { - "sha512": "SxHB3nuNrpptVk+vZ/F+7OHEpoHUIKKMl02bUmYHQr1r+glbZQxs7pRtsf4ENO29TVm2TH3AEeep2fJcy92oYw==", - "type": "package", - "path": "system.io.filesystem.accesscontrol/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/System.IO.FileSystem.AccessControl.dll", - "lib/net461/System.IO.FileSystem.AccessControl.dll", - "lib/net461/System.IO.FileSystem.AccessControl.xml", - "lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", - "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", - "lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", - "ref/net46/System.IO.FileSystem.AccessControl.dll", - "ref/net461/System.IO.FileSystem.AccessControl.dll", - "ref/net461/System.IO.FileSystem.AccessControl.xml", - "ref/netstandard1.3/System.IO.FileSystem.AccessControl.dll", - "ref/netstandard1.3/System.IO.FileSystem.AccessControl.xml", - "ref/netstandard1.3/de/System.IO.FileSystem.AccessControl.xml", - "ref/netstandard1.3/es/System.IO.FileSystem.AccessControl.xml", - "ref/netstandard1.3/fr/System.IO.FileSystem.AccessControl.xml", - "ref/netstandard1.3/it/System.IO.FileSystem.AccessControl.xml", - "ref/netstandard1.3/ja/System.IO.FileSystem.AccessControl.xml", - "ref/netstandard1.3/ko/System.IO.FileSystem.AccessControl.xml", - "ref/netstandard1.3/ru/System.IO.FileSystem.AccessControl.xml", - "ref/netstandard1.3/zh-hans/System.IO.FileSystem.AccessControl.xml", - "ref/netstandard1.3/zh-hant/System.IO.FileSystem.AccessControl.xml", - "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll", - "ref/netstandard2.0/System.IO.FileSystem.AccessControl.xml", - "runtimes/win/lib/net46/System.IO.FileSystem.AccessControl.dll", - "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll", - "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.xml", - "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", - "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", - "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", - "system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512", - "system.io.filesystem.accesscontrol.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.IO.Packaging/5.0.0": { - "sha512": "ebfUwKsgZF4HTwaRUj67SrJdsM4O62Fxsd6u1bSk3MNgvU8yjyfEK0xQmUFUqOYJi1IcL4HENoccl4SKVPndYw==", - "type": "package", - "path": "system.io.packaging/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/System.IO.Packaging.dll", - "lib/net46/System.IO.Packaging.xml", - "lib/netstandard1.3/System.IO.Packaging.dll", - "lib/netstandard1.3/System.IO.Packaging.xml", - "lib/netstandard2.0/System.IO.Packaging.dll", - "lib/netstandard2.0/System.IO.Packaging.xml", - "ref/net46/System.IO.Packaging.dll", - "ref/net46/System.IO.Packaging.xml", - "ref/netstandard1.3/System.IO.Packaging.dll", - "ref/netstandard1.3/System.IO.Packaging.xml", - "ref/netstandard2.0/System.IO.Packaging.dll", - "ref/netstandard2.0/System.IO.Packaging.xml", - "system.io.packaging.5.0.0.nupkg.sha512", - "system.io.packaging.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.IO.Pipes.AccessControl/5.0.0": { - "sha512": "P0FIsXSFNL1AXlHO9zpJ9atRUzVyoPZCkcbkYGZfXXMx9xlGA2H3HOGBwIhpKhB+h0eL3hry/z0UcfJZ+yb2kQ==", - "type": "package", - "path": "system.io.pipes.accesscontrol/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/System.IO.Pipes.AccessControl.dll", - "lib/net461/System.IO.Pipes.AccessControl.dll", - "lib/net5.0/System.IO.Pipes.AccessControl.dll", - "lib/net5.0/System.IO.Pipes.AccessControl.xml", - "lib/netstandard1.3/System.IO.Pipes.AccessControl.dll", - "lib/netstandard2.0/System.IO.Pipes.AccessControl.dll", - "ref/net46/System.IO.Pipes.AccessControl.dll", - "ref/net461/System.IO.Pipes.AccessControl.dll", - "ref/net461/System.IO.Pipes.AccessControl.xml", - "ref/net5.0/System.IO.Pipes.AccessControl.dll", - "ref/net5.0/System.IO.Pipes.AccessControl.xml", - "ref/netstandard1.3/System.IO.Pipes.AccessControl.dll", - "ref/netstandard2.0/System.IO.Pipes.AccessControl.dll", - "ref/netstandard2.0/System.IO.Pipes.AccessControl.xml", - "runtimes/win/lib/net46/System.IO.Pipes.AccessControl.dll", - "runtimes/win/lib/net461/System.IO.Pipes.AccessControl.dll", - "runtimes/win/lib/net5.0/System.IO.Pipes.AccessControl.dll", - "runtimes/win/lib/net5.0/System.IO.Pipes.AccessControl.xml", - "runtimes/win/lib/netcoreapp2.1/System.IO.Pipes.AccessControl.dll", - "system.io.pipes.accesscontrol.5.0.0.nupkg.sha512", - "system.io.pipes.accesscontrol.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.IO.Ports/5.0.0": { - "sha512": "MZY/0cgRg5bcuvHR4LKHqWnlxWV7GkoTgBaOdwIoWGZKsfSBC1twDz+BzG0o1Rk46WdRhhV30E2qzsBABHwGUA==", - "type": "package", - "path": "system.io.ports/5.0.0", - "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.0.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.Linq.Expressions/4.3.0": { - "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "type": "package", - "path": "system.linq.expressions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Linq.Expressions.dll", - "lib/netcore50/System.Linq.Expressions.dll", - "lib/netstandard1.6/System.Linq.Expressions.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.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.xml", - "ref/netcore50/de/System.Linq.Expressions.xml", - "ref/netcore50/es/System.Linq.Expressions.xml", - "ref/netcore50/fr/System.Linq.Expressions.xml", - "ref/netcore50/it/System.Linq.Expressions.xml", - "ref/netcore50/ja/System.Linq.Expressions.xml", - "ref/netcore50/ko/System.Linq.Expressions.xml", - "ref/netcore50/ru/System.Linq.Expressions.xml", - "ref/netcore50/zh-hans/System.Linq.Expressions.xml", - "ref/netcore50/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.0/System.Linq.Expressions.dll", - "ref/netstandard1.0/System.Linq.Expressions.xml", - "ref/netstandard1.0/de/System.Linq.Expressions.xml", - "ref/netstandard1.0/es/System.Linq.Expressions.xml", - "ref/netstandard1.0/fr/System.Linq.Expressions.xml", - "ref/netstandard1.0/it/System.Linq.Expressions.xml", - "ref/netstandard1.0/ja/System.Linq.Expressions.xml", - "ref/netstandard1.0/ko/System.Linq.Expressions.xml", - "ref/netstandard1.0/ru/System.Linq.Expressions.xml", - "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.3/System.Linq.Expressions.dll", - "ref/netstandard1.3/System.Linq.Expressions.xml", - "ref/netstandard1.3/de/System.Linq.Expressions.xml", - "ref/netstandard1.3/es/System.Linq.Expressions.xml", - "ref/netstandard1.3/fr/System.Linq.Expressions.xml", - "ref/netstandard1.3/it/System.Linq.Expressions.xml", - "ref/netstandard1.3/ja/System.Linq.Expressions.xml", - "ref/netstandard1.3/ko/System.Linq.Expressions.xml", - "ref/netstandard1.3/ru/System.Linq.Expressions.xml", - "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.6/System.Linq.Expressions.dll", - "ref/netstandard1.6/System.Linq.Expressions.xml", - "ref/netstandard1.6/de/System.Linq.Expressions.xml", - "ref/netstandard1.6/es/System.Linq.Expressions.xml", - "ref/netstandard1.6/fr/System.Linq.Expressions.xml", - "ref/netstandard1.6/it/System.Linq.Expressions.xml", - "ref/netstandard1.6/ja/System.Linq.Expressions.xml", - "ref/netstandard1.6/ko/System.Linq.Expressions.xml", - "ref/netstandard1.6/ru/System.Linq.Expressions.xml", - "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.6/zh-hant/System.Linq.Expressions.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.Linq.Expressions.dll", - "system.linq.expressions.4.3.0.nupkg.sha512", - "system.linq.expressions.nuspec" - ] - }, "System.Management/5.0.0": { "sha512": "MF1CHaRcC+MLFdnDthv4/bKWBZnlnSpkGqa87pKukQefgEdwtb9zFW6zs0GjPp73qtpYYg4q6PEKbzJbxCpKfw==", "type": "package", @@ -6588,1121 +1754,6 @@ "version.txt" ] }, - "System.Management.Automation/7.1.3": { - "sha512": "rXPo+ujbsrraKk7F0VYQLM5oTXUo8bOmd+lnALCNPXaeZZ7pcGLqAfayuGX/Y6sXd4zoOE0jDtF572u4vCR5fg==", - "type": "package", - "path": "system.management.automation/7.1.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Powershell_black_64.png", - "ref/net5.0/System.Management.Automation.dll", - "runtimes/unix/lib/net5.0/System.Management.Automation.dll", - "runtimes/win/lib/net5.0/System.Management.Automation.dll", - "system.management.automation.7.1.3.nupkg.sha512", - "system.management.automation.nuspec" - ] - }, - "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.WinHttpHandler/5.0.0": { - "sha512": "Mq6dPidztlkEwzjmzK4gtla8N8MTfjCyd0yub/8DY5UbkbV82wU+kiMoBHHjQ2fY70RrdraEoeZFgH915lHJhg==", - "type": "package", - "path": "system.net.http.winhttphandler/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/System.Net.Http.WinHttpHandler.dll", - "lib/net461/System.Net.Http.WinHttpHandler.dll", - "lib/net461/System.Net.Http.WinHttpHandler.xml", - "lib/netstandard1.3/System.Net.Http.WinHttpHandler.dll", - "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll", - "lib/netstandard2.0/System.Net.Http.WinHttpHandler.xml", - "runtimes/win/lib/net46/System.Net.Http.WinHttpHandler.dll", - "runtimes/win/lib/net461/System.Net.Http.WinHttpHandler.dll", - "runtimes/win/lib/net461/System.Net.Http.WinHttpHandler.xml", - "runtimes/win/lib/netstandard1.3/System.Net.Http.WinHttpHandler.dll", - "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll", - "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.xml", - "system.net.http.winhttphandler.5.0.0.nupkg.sha512", - "system.net.http.winhttphandler.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.ObjectModel/4.3.0": { - "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "type": "package", - "path": "system.objectmodel/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ObjectModel.dll", - "lib/netstandard1.3/System.ObjectModel.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.ObjectModel.dll", - "ref/netcore50/System.ObjectModel.xml", - "ref/netcore50/de/System.ObjectModel.xml", - "ref/netcore50/es/System.ObjectModel.xml", - "ref/netcore50/fr/System.ObjectModel.xml", - "ref/netcore50/it/System.ObjectModel.xml", - "ref/netcore50/ja/System.ObjectModel.xml", - "ref/netcore50/ko/System.ObjectModel.xml", - "ref/netcore50/ru/System.ObjectModel.xml", - "ref/netcore50/zh-hans/System.ObjectModel.xml", - "ref/netcore50/zh-hant/System.ObjectModel.xml", - "ref/netstandard1.0/System.ObjectModel.dll", - "ref/netstandard1.0/System.ObjectModel.xml", - "ref/netstandard1.0/de/System.ObjectModel.xml", - "ref/netstandard1.0/es/System.ObjectModel.xml", - "ref/netstandard1.0/fr/System.ObjectModel.xml", - "ref/netstandard1.0/it/System.ObjectModel.xml", - "ref/netstandard1.0/ja/System.ObjectModel.xml", - "ref/netstandard1.0/ko/System.ObjectModel.xml", - "ref/netstandard1.0/ru/System.ObjectModel.xml", - "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", - "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", - "ref/netstandard1.3/System.ObjectModel.dll", - "ref/netstandard1.3/System.ObjectModel.xml", - "ref/netstandard1.3/de/System.ObjectModel.xml", - "ref/netstandard1.3/es/System.ObjectModel.xml", - "ref/netstandard1.3/fr/System.ObjectModel.xml", - "ref/netstandard1.3/it/System.ObjectModel.xml", - "ref/netstandard1.3/ja/System.ObjectModel.xml", - "ref/netstandard1.3/ko/System.ObjectModel.xml", - "ref/netstandard1.3/ru/System.ObjectModel.xml", - "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", - "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.objectmodel.4.3.0.nupkg.sha512", - "system.objectmodel.nuspec" - ] - }, - "System.Private.ServiceModel/4.7.0": { - "sha512": "BItrYCkoTV3VzVPsrew+uc34fmLb+3ncgspa7vbO3vkfY9JQCea4u34pHE+Bcv1Iy16MgRs3n2jKVRCDg0rPfg==", - "type": "package", - "path": "system.private.servicemodel/4.7.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netstandard2.0/System.Private.ServiceModel.dll", - "lib/netstandard2.0/System.Private.ServiceModel.pdb", - "ref/netstandard2.0/_._", - "system.private.servicemodel.4.7.0.nupkg.sha512", - "system.private.servicemodel.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.Context/5.0.0": { - "sha512": "gG1wxxJLcjQaUkd07K2l2MKVoW+e0w8jS8Jye7QLPXrXT7XXMmOcFV/Ek6XyTOy5Z4GVN0WY95BQNp/iHEs5mw==", - "type": "package", - "path": "system.reflection.context/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Context.dll", - "lib/netstandard1.1/System.Reflection.Context.dll", - "lib/netstandard1.1/System.Reflection.Context.xml", - "lib/netstandard2.0/System.Reflection.Context.dll", - "lib/netstandard2.0/System.Reflection.Context.xml", - "lib/netstandard2.1/System.Reflection.Context.dll", - "lib/netstandard2.1/System.Reflection.Context.xml", - "lib/portable-net45+win8/_._", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Context.dll", - "ref/netcore50/System.Reflection.Context.xml", - "ref/netcore50/de/System.Reflection.Context.xml", - "ref/netcore50/es/System.Reflection.Context.xml", - "ref/netcore50/fr/System.Reflection.Context.xml", - "ref/netcore50/it/System.Reflection.Context.xml", - "ref/netcore50/ja/System.Reflection.Context.xml", - "ref/netcore50/ko/System.Reflection.Context.xml", - "ref/netcore50/ru/System.Reflection.Context.xml", - "ref/netcore50/zh-hans/System.Reflection.Context.xml", - "ref/netcore50/zh-hant/System.Reflection.Context.xml", - "ref/netstandard1.1/System.Reflection.Context.dll", - "ref/netstandard1.1/System.Reflection.Context.xml", - "ref/netstandard2.0/System.Reflection.Context.dll", - "ref/netstandard2.0/System.Reflection.Context.xml", - "ref/portable-net45+win8/_._", - "system.reflection.context.5.0.0.nupkg.sha512", - "system.reflection.context.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Reflection.DispatchProxy/4.5.0": { - "sha512": "+UW1hq11TNSeb+16rIk8hRQ02o339NFyzMc4ma/FqmxBzM30l1c2IherBB4ld1MNcenS48fz8tbt50OW4rVULA==", - "type": "package", - "path": "system.reflection.dispatchproxy/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net461/System.Reflection.DispatchProxy.dll", - "lib/netcoreapp2.0/System.Reflection.DispatchProxy.dll", - "lib/netstandard1.3/System.Reflection.DispatchProxy.dll", - "lib/netstandard2.0/System.Reflection.DispatchProxy.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/netstandard1.3/System.Reflection.DispatchProxy.dll", - "ref/netstandard1.3/System.Reflection.DispatchProxy.xml", - "ref/netstandard1.3/de/System.Reflection.DispatchProxy.xml", - "ref/netstandard1.3/es/System.Reflection.DispatchProxy.xml", - "ref/netstandard1.3/fr/System.Reflection.DispatchProxy.xml", - "ref/netstandard1.3/it/System.Reflection.DispatchProxy.xml", - "ref/netstandard1.3/ja/System.Reflection.DispatchProxy.xml", - "ref/netstandard1.3/ko/System.Reflection.DispatchProxy.xml", - "ref/netstandard1.3/ru/System.Reflection.DispatchProxy.xml", - "ref/netstandard1.3/zh-hans/System.Reflection.DispatchProxy.xml", - "ref/netstandard1.3/zh-hant/System.Reflection.DispatchProxy.xml", - "ref/netstandard2.0/System.Reflection.DispatchProxy.dll", - "ref/netstandard2.0/System.Reflection.DispatchProxy.xml", - "ref/uap10.0.16299/System.Reflection.DispatchProxy.dll", - "ref/uap10.0.16299/System.Reflection.DispatchProxy.xml", - "ref/uap10.0.16300/System.Reflection.DispatchProxy.dll", - "ref/uap10.0.16300/System.Reflection.DispatchProxy.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll", - "runtimes/win-aot/lib/uap10.0.16299/System.Reflection.DispatchProxy.dll", - "runtimes/win/lib/uap10.0.16299/System.Reflection.DispatchProxy.dll", - "system.reflection.dispatchproxy.4.5.0.nupkg.sha512", - "system.reflection.dispatchproxy.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Reflection.Emit/4.7.0": { - "sha512": "VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==", - "type": "package", - "path": "system.reflection.emit/4.7.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.dll", - "lib/netcoreapp2.0/_._", - "lib/netstandard1.1/System.Reflection.Emit.dll", - "lib/netstandard1.1/System.Reflection.Emit.xml", - "lib/netstandard1.3/System.Reflection.Emit.dll", - "lib/netstandard2.0/System.Reflection.Emit.dll", - "lib/netstandard2.0/System.Reflection.Emit.xml", - "lib/netstandard2.1/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcoreapp2.0/_._", - "ref/netstandard1.1/System.Reflection.Emit.dll", - "ref/netstandard1.1/System.Reflection.Emit.xml", - "ref/netstandard1.1/de/System.Reflection.Emit.xml", - "ref/netstandard1.1/es/System.Reflection.Emit.xml", - "ref/netstandard1.1/fr/System.Reflection.Emit.xml", - "ref/netstandard1.1/it/System.Reflection.Emit.xml", - "ref/netstandard1.1/ja/System.Reflection.Emit.xml", - "ref/netstandard1.1/ko/System.Reflection.Emit.xml", - "ref/netstandard1.1/ru/System.Reflection.Emit.xml", - "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", - "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", - "ref/netstandard2.0/System.Reflection.Emit.dll", - "ref/netstandard2.0/System.Reflection.Emit.xml", - "ref/netstandard2.1/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Reflection.Emit.dll", - "runtimes/aot/lib/netcore50/System.Reflection.Emit.xml", - "system.reflection.emit.4.7.0.nupkg.sha512", - "system.reflection.emit.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Reflection.Emit.ILGeneration/4.7.0": { - "sha512": "AucBYo3DSI0IDxdUjKksBcQJXPHyoPyrCXYURW1WDsLI4M65Ar/goSHjdnHOAY9MiYDNKqDlIgaYm+zL2hA1KA==", - "type": "package", - "path": "system.reflection.emit.ilgeneration/4.7.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", - "lib/netcoreapp2.0/_._", - "lib/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", - "lib/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", - "lib/netstandard2.0/System.Reflection.Emit.ILGeneration.dll", - "lib/netstandard2.0/System.Reflection.Emit.ILGeneration.xml", - "lib/netstandard2.1/_._", - "lib/portable-net45+wp8/_._", - "lib/wp80/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcoreapp2.0/_._", - "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", - "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard2.0/System.Reflection.Emit.ILGeneration.dll", - "ref/netstandard2.0/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard2.1/_._", - "ref/portable-net45+wp8/_._", - "ref/wp80/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Reflection.Emit.ILGeneration.dll", - "runtimes/aot/lib/netcore50/System.Reflection.Emit.ILGeneration.xml", - "system.reflection.emit.ilgeneration.4.7.0.nupkg.sha512", - "system.reflection.emit.ilgeneration.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Reflection.Emit.Lightweight/4.7.0": { - "sha512": "a4OLB4IITxAXJeV74MDx49Oq2+PsF6Sml54XAFv+2RyWwtDBcabzoxiiJRhdhx+gaohLh4hEGCLQyBozXoQPqA==", - "type": "package", - "path": "system.reflection.emit.lightweight/4.7.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.Lightweight.dll", - "lib/netcoreapp2.0/_._", - "lib/netstandard1.0/System.Reflection.Emit.Lightweight.dll", - "lib/netstandard1.0/System.Reflection.Emit.Lightweight.xml", - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", - "lib/netstandard2.0/System.Reflection.Emit.Lightweight.dll", - "lib/netstandard2.0/System.Reflection.Emit.Lightweight.xml", - "lib/netstandard2.1/_._", - "lib/portable-net45+wp8/_._", - "lib/wp80/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcoreapp2.0/_._", - "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", - "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard2.0/System.Reflection.Emit.Lightweight.dll", - "ref/netstandard2.0/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard2.1/_._", - "ref/portable-net45+wp8/_._", - "ref/wp80/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Reflection.Emit.Lightweight.dll", - "runtimes/aot/lib/netcore50/System.Reflection.Emit.Lightweight.xml", - "system.reflection.emit.lightweight.4.7.0.nupkg.sha512", - "system.reflection.emit.lightweight.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Reflection.Extensions/4.3.0": { - "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "type": "package", - "path": "system.reflection.extensions/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.Extensions.dll", - "ref/netcore50/System.Reflection.Extensions.xml", - "ref/netcore50/de/System.Reflection.Extensions.xml", - "ref/netcore50/es/System.Reflection.Extensions.xml", - "ref/netcore50/fr/System.Reflection.Extensions.xml", - "ref/netcore50/it/System.Reflection.Extensions.xml", - "ref/netcore50/ja/System.Reflection.Extensions.xml", - "ref/netcore50/ko/System.Reflection.Extensions.xml", - "ref/netcore50/ru/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", - "ref/netstandard1.0/System.Reflection.Extensions.dll", - "ref/netstandard1.0/System.Reflection.Extensions.xml", - "ref/netstandard1.0/de/System.Reflection.Extensions.xml", - "ref/netstandard1.0/es/System.Reflection.Extensions.xml", - "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", - "ref/netstandard1.0/it/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.reflection.extensions.4.3.0.nupkg.sha512", - "system.reflection.extensions.nuspec" - ] - }, - "System.Reflection.Metadata/1.6.0": { - "sha512": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==", - "type": "package", - "path": "system.reflection.metadata/1.6.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netstandard1.1/System.Reflection.Metadata.dll", - "lib/netstandard1.1/System.Reflection.Metadata.xml", - "lib/netstandard2.0/System.Reflection.Metadata.dll", - "lib/netstandard2.0/System.Reflection.Metadata.xml", - "lib/portable-net45+win8/System.Reflection.Metadata.dll", - "lib/portable-net45+win8/System.Reflection.Metadata.xml", - "system.reflection.metadata.1.6.0.nupkg.sha512", - "system.reflection.metadata.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "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.Reflection.TypeExtensions/4.3.0": { - "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "type": "package", - "path": "system.reflection.typeextensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Reflection.TypeExtensions.dll", - "lib/net462/System.Reflection.TypeExtensions.dll", - "lib/netcore50/System.Reflection.TypeExtensions.dll", - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Reflection.TypeExtensions.dll", - "ref/net462/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", - "system.reflection.typeextensions.4.3.0.nupkg.sha512", - "system.reflection.typeextensions.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.Caching/5.0.0": { - "sha512": "30D6MkO8WF9jVGWZIP0hmCN8l9BTY4LCsAzLIe4xFSXzs+AjDotR7DpSmj27pFskDURzUvqYYY0ikModgBTxWw==", - "type": "package", - "path": "system.runtime.caching/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netstandard2.0/System.Runtime.Caching.dll", - "lib/netstandard2.0/System.Runtime.Caching.xml", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netstandard2.0/System.Runtime.Caching.dll", - "ref/netstandard2.0/System.Runtime.Caching.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/win/lib/net45/_._", - "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll", - "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml", - "system.runtime.caching.5.0.0.nupkg.sha512", - "system.runtime.caching.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Runtime.CompilerServices.Unsafe/5.0.0": { - "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==", - "type": "package", - "path": "system.runtime.compilerservices.unsafe/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net45/System.Runtime.CompilerServices.Unsafe.dll", - "lib/net45/System.Runtime.CompilerServices.Unsafe.xml", - "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml", - "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", - "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", - "ref/net461/System.Runtime.CompilerServices.Unsafe.dll", - "ref/net461/System.Runtime.CompilerServices.Unsafe.xml", - "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", - "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", - "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", - "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", - "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll", - "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml", - "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512", - "system.runtime.compilerservices.unsafe.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "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.Security.AccessControl/5.0.0": { "sha512": "dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", "type": "package", @@ -7750,239 +1801,6 @@ "version.txt" ] }, - "System.Security.Cryptography.Cng/5.0.0": { - "sha512": "jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==", - "type": "package", - "path": "system.security.cryptography.cng/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Cng.dll", - "lib/net461/System.Security.Cryptography.Cng.dll", - "lib/net461/System.Security.Cryptography.Cng.xml", - "lib/net462/System.Security.Cryptography.Cng.dll", - "lib/net462/System.Security.Cryptography.Cng.xml", - "lib/net47/System.Security.Cryptography.Cng.dll", - "lib/net47/System.Security.Cryptography.Cng.xml", - "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", - "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll", - "lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml", - "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", - "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", - "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", - "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", - "lib/netstandard2.0/System.Security.Cryptography.Cng.xml", - "lib/netstandard2.1/System.Security.Cryptography.Cng.dll", - "lib/netstandard2.1/System.Security.Cryptography.Cng.xml", - "lib/uap10.0.16299/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Cng.dll", - "ref/net461/System.Security.Cryptography.Cng.dll", - "ref/net461/System.Security.Cryptography.Cng.xml", - "ref/net462/System.Security.Cryptography.Cng.dll", - "ref/net462/System.Security.Cryptography.Cng.xml", - "ref/net47/System.Security.Cryptography.Cng.dll", - "ref/net47/System.Security.Cryptography.Cng.xml", - "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", - "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", - "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", - "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", - "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll", - "ref/netcoreapp3.0/System.Security.Cryptography.Cng.xml", - "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", - "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", - "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", - "ref/netstandard2.1/System.Security.Cryptography.Cng.dll", - "ref/netstandard2.1/System.Security.Cryptography.Cng.xml", - "ref/uap10.0.16299/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Cng.xml", - "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net462/System.Security.Cryptography.Cng.xml", - "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net47/System.Security.Cryptography.Cng.xml", - "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml", - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/uap10.0.16299/_._", - "system.security.cryptography.cng.5.0.0.nupkg.sha512", - "system.security.cryptography.cng.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Security.Cryptography.Pkcs/5.0.1": { - "sha512": "9ualfJXOMrjW/E4z73cGHVcAvFMCCnMZQE+8xME9eX70bTZ0UAJCstG0khsMvL8B+9c9qw+ktowt1fN0BffMnQ==", - "type": "package", - "path": "system.security.cryptography.pkcs/5.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/System.Security.Cryptography.Pkcs.dll", - "lib/net461/System.Security.Cryptography.Pkcs.dll", - "lib/net461/System.Security.Cryptography.Pkcs.xml", - "lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll", - "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll", - "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml", - "lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll", - "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", - "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml", - "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll", - "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml", - "ref/net46/System.Security.Cryptography.Pkcs.dll", - "ref/net461/System.Security.Cryptography.Pkcs.dll", - "ref/net461/System.Security.Cryptography.Pkcs.xml", - "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll", - "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.xml", - "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll", - "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml", - "ref/netstandard1.3/System.Security.Cryptography.Pkcs.dll", - "ref/netstandard2.0/System.Security.Cryptography.Pkcs.dll", - "ref/netstandard2.0/System.Security.Cryptography.Pkcs.xml", - "ref/netstandard2.1/System.Security.Cryptography.Pkcs.dll", - "ref/netstandard2.1/System.Security.Cryptography.Pkcs.xml", - "runtimes/win/lib/net46/System.Security.Cryptography.Pkcs.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.xml", - "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll", - "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll", - "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml", - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll", - "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", - "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml", - "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll", - "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml", - "system.security.cryptography.pkcs.5.0.1.nupkg.sha512", - "system.security.cryptography.pkcs.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Security.Cryptography.ProtectedData/5.0.0": { - "sha512": "HGxMSAFAPLNoxBvSfW08vHde0F9uh7BjASwu6JF9JnXuEPhCY3YUqURn0+bQV/4UWeaqymmrHWV+Aw9riQCtCA==", - "type": "package", - "path": "system.security.cryptography.protecteddata/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.ProtectedData.dll", - "lib/net461/System.Security.Cryptography.ProtectedData.dll", - "lib/net461/System.Security.Cryptography.ProtectedData.xml", - "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", - "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", - "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.ProtectedData.dll", - "ref/net461/System.Security.Cryptography.ProtectedData.dll", - "ref/net461/System.Security.Cryptography.ProtectedData.xml", - "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", - "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", - "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml", - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", - "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", - "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", - "system.security.cryptography.protecteddata.5.0.0.nupkg.sha512", - "system.security.cryptography.protecteddata.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Security.Cryptography.Xml/5.0.0": { - "sha512": "MYmkHtCW+paFmPGFDktnLdOeH3zUrNchbZNki87E1ejNSMm9enSRbJokmvFrsWUrDE4bRE1lVeAle01+t6SGhA==", - "type": "package", - "path": "system.security.cryptography.xml/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Security.Cryptography.Xml.dll", - "lib/net461/System.Security.Cryptography.Xml.xml", - "lib/netstandard2.0/System.Security.Cryptography.Xml.dll", - "lib/netstandard2.0/System.Security.Cryptography.Xml.xml", - "ref/net461/System.Security.Cryptography.Xml.dll", - "ref/net461/System.Security.Cryptography.Xml.xml", - "ref/netstandard2.0/System.Security.Cryptography.Xml.dll", - "ref/netstandard2.0/System.Security.Cryptography.Xml.xml", - "system.security.cryptography.xml.5.0.0.nupkg.sha512", - "system.security.cryptography.xml.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Security.Permissions/5.0.0": { - "sha512": "uE8juAhEkp7KDBCdjDIE3H9R1HJuEHqeqX8nLX9gmYKWwsqk3T5qZlPx8qle5DPKimC/Fy3AFTdV7HamgCh9qQ==", - "type": "package", - "path": "system.security.permissions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Security.Permissions.dll", - "lib/net461/System.Security.Permissions.xml", - "lib/net5.0/System.Security.Permissions.dll", - "lib/net5.0/System.Security.Permissions.xml", - "lib/netcoreapp3.0/System.Security.Permissions.dll", - "lib/netcoreapp3.0/System.Security.Permissions.xml", - "lib/netstandard2.0/System.Security.Permissions.dll", - "lib/netstandard2.0/System.Security.Permissions.xml", - "ref/net461/System.Security.Permissions.dll", - "ref/net461/System.Security.Permissions.xml", - "ref/net5.0/System.Security.Permissions.dll", - "ref/net5.0/System.Security.Permissions.xml", - "ref/netcoreapp3.0/System.Security.Permissions.dll", - "ref/netcoreapp3.0/System.Security.Permissions.xml", - "ref/netstandard2.0/System.Security.Permissions.dll", - "ref/netstandard2.0/System.Security.Permissions.xml", - "system.security.permissions.5.0.0.nupkg.sha512", - "system.security.permissions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, "System.Security.Principal.Windows/5.0.0": { "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", "type": "package", @@ -8037,680 +1855,6 @@ "useSharedDesignerContext.txt", "version.txt" ] - }, - "System.ServiceModel.Duplex/4.7.0": { - "sha512": "7GBKQc2QWRxnEVQ49zMKq3z3RFKaHhhWjfMWhp+DP+dgfp0X4Szln/eL+UQumOKvv+sTU5bhOXjnJg5045liCA==", - "type": "package", - "path": "system.servicemodel.duplex/4.7.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net461/System.ServiceModel.Duplex.dll", - "lib/net461/System.ServiceModel.Duplex.pdb", - "lib/netcore50/System.ServiceModel.Duplex.dll", - "lib/netstandard1.3/System.ServiceModel.Duplex.dll", - "lib/netstandard2.0/System.ServiceModel.Duplex.dll", - "lib/netstandard2.0/System.ServiceModel.Duplex.pdb", - "lib/portable-net45+win8/_._", - "lib/win8/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net461/System.ServiceModel.Duplex.dll", - "ref/netcore50/System.ServiceModel.Duplex.dll", - "ref/netstandard1.1/System.ServiceModel.Duplex.dll", - "ref/netstandard2.0/System.ServiceModel.Duplex.dll", - "ref/portable-net45+win8/_._", - "ref/win8/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.servicemodel.duplex.4.7.0.nupkg.sha512", - "system.servicemodel.duplex.nuspec" - ] - }, - "System.ServiceModel.Http/4.7.0": { - "sha512": "+BB61ycl1cSlRbJDpABoqMa7bRE4boJfK1CfWfbNzTGeADFVmDkhylpfmC1bKloxtf95p2owj8/n7kilgRBAow==", - "type": "package", - "path": "system.servicemodel.http/4.7.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.ServiceModel.Http.dll", - "lib/net461/System.ServiceModel.Http.dll", - "lib/net461/System.ServiceModel.Http.pdb", - "lib/netcore50/System.ServiceModel.Http.dll", - "lib/netstandard1.3/System.ServiceModel.Http.dll", - "lib/netstandard2.0/System.ServiceModel.Http.dll", - "lib/netstandard2.0/System.ServiceModel.Http.pdb", - "lib/portable-net45+win8+wp8/_._", - "lib/win8/_._", - "lib/wp8/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.ServiceModel.Http.dll", - "ref/net461/System.ServiceModel.Http.dll", - "ref/netcore50/System.ServiceModel.Http.dll", - "ref/netstandard1.0/System.ServiceModel.Http.dll", - "ref/netstandard1.1/System.ServiceModel.Http.dll", - "ref/netstandard1.3/System.ServiceModel.Http.dll", - "ref/netstandard2.0/System.ServiceModel.Http.dll", - "ref/portable-net45+win8+wp8/_._", - "ref/win8/_._", - "ref/wp8/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.servicemodel.http.4.7.0.nupkg.sha512", - "system.servicemodel.http.nuspec" - ] - }, - "System.ServiceModel.NetTcp/4.7.0": { - "sha512": "snQgAc7kn4721eaus8nZ52eRu1QrdEnWGbru6I263hPWcISStntwHwSrT57Iwp1Z58b3Lz0J/hbjJhGP0yExOA==", - "type": "package", - "path": "system.servicemodel.nettcp/4.7.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.ServiceModel.NetTcp.dll", - "lib/net461/System.ServiceModel.NetTcp.dll", - "lib/net461/System.ServiceModel.NetTcp.pdb", - "lib/netcore50/System.ServiceModel.NetTcp.dll", - "lib/netstandard1.3/System.ServiceModel.NetTcp.dll", - "lib/netstandard2.0/System.ServiceModel.NetTcp.dll", - "lib/netstandard2.0/System.ServiceModel.NetTcp.pdb", - "lib/portable-net45+win8/_._", - "lib/win8/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.ServiceModel.NetTcp.dll", - "ref/net461/System.ServiceModel.NetTcp.dll", - "ref/netcore50/System.ServiceModel.NetTcp.dll", - "ref/netstandard1.1/System.ServiceModel.NetTcp.dll", - "ref/netstandard1.3/System.ServiceModel.NetTcp.dll", - "ref/netstandard2.0/System.ServiceModel.NetTcp.dll", - "ref/portable-net45+win8/_._", - "ref/win8/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.servicemodel.nettcp.4.7.0.nupkg.sha512", - "system.servicemodel.nettcp.nuspec" - ] - }, - "System.ServiceModel.Primitives/4.7.0": { - "sha512": "YUXIMO4kL1v6dUVptJGixAx/8Ai5trQzVn3gbk0mpwxh77kGAs+MyBRoHN/5ZoxtwNn4E1dq3N4rJCAgAUaiJA==", - "type": "package", - "path": "system.servicemodel.primitives/4.7.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.ServiceModel.Primitives.dll", - "lib/net461/System.ServiceModel.Primitives.dll", - "lib/net461/System.ServiceModel.Primitives.pdb", - "lib/netcore50/System.ServiceModel.Primitives.dll", - "lib/netcoreapp2.1/System.ServiceModel.Primitives.dll", - "lib/netcoreapp2.1/System.ServiceModel.Primitives.pdb", - "lib/netcoreapp2.1/System.ServiceModel.dll", - "lib/netstandard1.3/System.ServiceModel.Primitives.dll", - "lib/netstandard2.0/System.ServiceModel.Primitives.dll", - "lib/netstandard2.0/System.ServiceModel.Primitives.pdb", - "lib/netstandard2.0/System.ServiceModel.dll", - "lib/portable-net45+win8+wp8/_._", - "lib/win8/_._", - "lib/wp8/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.ServiceModel.Primitives.dll", - "ref/net461/System.ServiceModel.Primitives.dll", - "ref/netcore50/System.ServiceModel.Primitives.dll", - "ref/netcoreapp2.1/System.ServiceModel.Primitives.dll", - "ref/netcoreapp2.1/System.ServiceModel.dll", - "ref/netstandard1.0/System.ServiceModel.Primitives.dll", - "ref/netstandard1.1/System.ServiceModel.Primitives.dll", - "ref/netstandard1.3/System.ServiceModel.Primitives.dll", - "ref/netstandard2.0/System.ServiceModel.Primitives.dll", - "ref/netstandard2.0/System.ServiceModel.dll", - "ref/portable-net45+win8+wp8/_._", - "ref/win8/_._", - "ref/wp8/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.servicemodel.primitives.4.7.0.nupkg.sha512", - "system.servicemodel.primitives.nuspec" - ] - }, - "System.ServiceModel.Security/4.7.0": { - "sha512": "LjYrQRrP1rw+s/wieB+QIv3p6/oG2ucTfVpg5iWmX8/7+nfUxcqmy9l8rsbtYE8X8BEQnSq42OhWap/Dlhlh9Q==", - "type": "package", - "path": "system.servicemodel.security/4.7.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net461/System.ServiceModel.Security.dll", - "lib/net461/System.ServiceModel.Security.pdb", - "lib/netcore50/System.ServiceModel.Security.dll", - "lib/netstandard1.3/System.ServiceModel.Security.dll", - "lib/netstandard2.0/System.ServiceModel.Security.dll", - "lib/netstandard2.0/System.ServiceModel.Security.pdb", - "lib/portable-net45+win8+wp8/_._", - "lib/win8/_._", - "lib/wp8/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net461/System.ServiceModel.Security.dll", - "ref/netcore50/System.ServiceModel.Security.dll", - "ref/netstandard1.0/System.ServiceModel.Security.dll", - "ref/netstandard1.1/System.ServiceModel.Security.dll", - "ref/netstandard2.0/System.ServiceModel.Security.dll", - "ref/portable-net45+win8+wp8/_._", - "ref/win8/_._", - "ref/wp8/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.servicemodel.security.4.7.0.nupkg.sha512", - "system.servicemodel.security.nuspec" - ] - }, - "System.ServiceModel.Syndication/5.0.0": { - "sha512": "xjwRFydlevI/DMLlBcDRbOmofJTZNoJ0FCkEPdMw9i+85lDbl8Pw001LJKQbRSeHSVJCEuPfAvEuC1TAumxcmw==", - "type": "package", - "path": "system.servicemodel.syndication/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.ServiceModel.Syndication.dll", - "lib/net461/System.ServiceModel.Syndication.xml", - "lib/netstandard2.0/System.ServiceModel.Syndication.dll", - "lib/netstandard2.0/System.ServiceModel.Syndication.xml", - "ref/net461/System.ServiceModel.Syndication.dll", - "ref/net461/System.ServiceModel.Syndication.xml", - "ref/netcoreapp2.1/System.ServiceModel.Syndication.dll", - "ref/netcoreapp2.1/System.ServiceModel.Syndication.xml", - "ref/netstandard2.0/System.ServiceModel.Syndication.dll", - "ref/netstandard2.0/System.ServiceModel.Syndication.xml", - "runtimes/win/lib/net461/System.ServiceModel.Syndication.dll", - "runtimes/win/lib/net461/System.ServiceModel.Syndication.xml", - "system.servicemodel.syndication.5.0.0.nupkg.sha512", - "system.servicemodel.syndication.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.ServiceProcess.ServiceController/5.0.0": { - "sha512": "p2yX167GW1pr2DCR6cW+cBKrvhli4thckXk108faFaTPHnoudb0AYPcIPq3nmrwn7IQj9FEmjpyJlXzcOmIjjw==", - "type": "package", - "path": "system.serviceprocess.servicecontroller/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.ServiceProcess.ServiceController.dll", - "lib/net461/System.ServiceProcess.ServiceController.xml", - "lib/netstandard1.4/System.ServiceProcess.ServiceController.dll", - "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll", - "lib/netstandard2.0/System.ServiceProcess.ServiceController.xml", - "ref/net461/System.ServiceProcess.ServiceController.dll", - "ref/net461/System.ServiceProcess.ServiceController.xml", - "ref/netstandard1.4/System.ServiceProcess.ServiceController.dll", - "ref/netstandard1.4/System.ServiceProcess.ServiceController.xml", - "ref/netstandard1.4/de/System.ServiceProcess.ServiceController.xml", - "ref/netstandard1.4/es/System.ServiceProcess.ServiceController.xml", - "ref/netstandard1.4/fr/System.ServiceProcess.ServiceController.xml", - "ref/netstandard1.4/it/System.ServiceProcess.ServiceController.xml", - "ref/netstandard1.4/ja/System.ServiceProcess.ServiceController.xml", - "ref/netstandard1.4/ko/System.ServiceProcess.ServiceController.xml", - "ref/netstandard1.4/ru/System.ServiceProcess.ServiceController.xml", - "ref/netstandard1.4/zh-hans/System.ServiceProcess.ServiceController.xml", - "ref/netstandard1.4/zh-hant/System.ServiceProcess.ServiceController.xml", - "ref/netstandard2.0/System.ServiceProcess.ServiceController.dll", - "ref/netstandard2.0/System.ServiceProcess.ServiceController.xml", - "runtimes/win/lib/net461/System.ServiceProcess.ServiceController.dll", - "runtimes/win/lib/net461/System.ServiceProcess.ServiceController.xml", - "runtimes/win/lib/netstandard1.5/System.ServiceProcess.ServiceController.dll", - "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.dll", - "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.xml", - "system.serviceprocess.servicecontroller.5.0.0.nupkg.sha512", - "system.serviceprocess.servicecontroller.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/5.0.0": { - "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==", - "type": "package", - "path": "system.text.encoding.codepages/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "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.5.0.0.nupkg.sha512", - "system.text.encoding.codepages.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Text.Encodings.Web/5.0.1": { - "sha512": "KmJ+CJXizDofbq6mpqDoRRLcxgOd2z9X3XoFNULSbvbqVRZkFX3istvr+MUjL6Zw1RT+RNdoI4GYidIINtgvqQ==", - "type": "package", - "path": "system.text.encodings.web/5.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Text.Encodings.Web.dll", - "lib/net461/System.Text.Encodings.Web.xml", - "lib/netcoreapp3.0/System.Text.Encodings.Web.dll", - "lib/netcoreapp3.0/System.Text.Encodings.Web.xml", - "lib/netstandard1.0/System.Text.Encodings.Web.dll", - "lib/netstandard1.0/System.Text.Encodings.Web.xml", - "lib/netstandard2.0/System.Text.Encodings.Web.dll", - "lib/netstandard2.0/System.Text.Encodings.Web.xml", - "lib/netstandard2.1/System.Text.Encodings.Web.dll", - "lib/netstandard2.1/System.Text.Encodings.Web.xml", - "system.text.encodings.web.5.0.1.nupkg.sha512", - "system.text.encodings.web.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.AccessControl/5.0.0": { - "sha512": "WJ9w9m4iHJVq0VoH7hZvYAccbRq95itYRhAAXd6M4kVCzLmT6NqTwmSXKwp3oQilWHhYTXgqaIXxBfg8YaqtmA==", - "type": "package", - "path": "system.threading.accesscontrol/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net46/System.Threading.AccessControl.dll", - "lib/net461/System.Threading.AccessControl.dll", - "lib/net461/System.Threading.AccessControl.xml", - "lib/netstandard1.3/System.Threading.AccessControl.dll", - "lib/netstandard2.0/System.Threading.AccessControl.dll", - "lib/netstandard2.0/System.Threading.AccessControl.xml", - "ref/net46/System.Threading.AccessControl.dll", - "ref/net461/System.Threading.AccessControl.dll", - "ref/net461/System.Threading.AccessControl.xml", - "ref/netstandard1.3/System.Threading.AccessControl.dll", - "ref/netstandard1.3/System.Threading.AccessControl.xml", - "ref/netstandard1.3/de/System.Threading.AccessControl.xml", - "ref/netstandard1.3/es/System.Threading.AccessControl.xml", - "ref/netstandard1.3/fr/System.Threading.AccessControl.xml", - "ref/netstandard1.3/it/System.Threading.AccessControl.xml", - "ref/netstandard1.3/ja/System.Threading.AccessControl.xml", - "ref/netstandard1.3/ko/System.Threading.AccessControl.xml", - "ref/netstandard1.3/ru/System.Threading.AccessControl.xml", - "ref/netstandard1.3/zh-hans/System.Threading.AccessControl.xml", - "ref/netstandard1.3/zh-hant/System.Threading.AccessControl.xml", - "ref/netstandard2.0/System.Threading.AccessControl.dll", - "ref/netstandard2.0/System.Threading.AccessControl.xml", - "runtimes/win/lib/net46/System.Threading.AccessControl.dll", - "runtimes/win/lib/net461/System.Threading.AccessControl.dll", - "runtimes/win/lib/net461/System.Threading.AccessControl.xml", - "runtimes/win/lib/netstandard1.3/System.Threading.AccessControl.dll", - "runtimes/win/lib/netstandard2.0/System.Threading.AccessControl.dll", - "runtimes/win/lib/netstandard2.0/System.Threading.AccessControl.xml", - "system.threading.accesscontrol.5.0.0.nupkg.sha512", - "system.threading.accesscontrol.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "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.3": { - "sha512": "+MvhNtcvIbqmhANyKu91jQnvIRVSTiaOiFNfKWwXGHG48YAb4I/TyH8spsySiPYla7gKal5ZnF3teJqZAximyQ==", - "type": "package", - "path": "system.threading.tasks.extensions/4.5.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "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.3.nupkg.sha512", - "system.threading.tasks.extensions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Windows.Extensions/5.0.0": { - "sha512": "c1ho9WU9ZxMZawML+ssPKZfdnrg/OjR3pe0m9v8230z3acqphwvPJqzAkH54xRYm5ntZHGG1EPP3sux9H3qSPg==", - "type": "package", - "path": "system.windows.extensions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netcoreapp3.0/System.Windows.Extensions.dll", - "lib/netcoreapp3.0/System.Windows.Extensions.xml", - "ref/netcoreapp3.0/System.Windows.Extensions.dll", - "ref/netcoreapp3.0/System.Windows.Extensions.xml", - "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll", - "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml", - "system.windows.extensions.5.0.0.nupkg.sha512", - "system.windows.extensions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] } }, "projectFileDependencyGroups": { @@ -8720,7 +1864,6 @@ "Microsoft.Management.Infrastructure >= 2.0.0", "Microsoft.NETCore.Windows.ApiSets >= 1.0.1", "Microsoft.NETCore.Windows.ApiSets-x64 >= 1.0.0", - "Microsoft.PowerShell.SDK >= 7.1.3", "NAudio >= 2.0.1", "NETStandard.Library >= 2.0.3", "SimpleWifi.netstandard >= 2.0.0", @@ -8792,10 +1935,6 @@ "target": "Package", "version": "[1.0.0, )" }, - "Microsoft.PowerShell.SDK": { - "target": "Package", - "version": "[7.1.3, )" - }, "NAudio": { "target": "Package", "version": "[2.0.1, )" diff --git a/NetWork/NetWork/obj/project.nuget.cache b/NetWork/NetWork/obj/project.nuget.cache index 61eaf34..7355b67 100644 --- a/NetWork/NetWork/obj/project.nuget.cache +++ b/NetWork/NetWork/obj/project.nuget.cache @@ -1,41 +1,18 @@ { "version": 2, - "dgSpecHash": "BhydSiOG2NBu0uLVWATFfYgnfBtndQZ/9pD0bWY8wy4gGFVPlWJKfua4yE919sMzabPkJFM5GWgKvqi6WhxWZQ==", + "dgSpecHash": "eKrNSb5czMQrjXGP2pUE43ZmZzGO2c2J1hQ6OR0QcHyrRZp5+qziN7735xc7iLHR98jr2eXTcf/C4o0hrMzwDw==", "success": true, "projectFilePath": "C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\NetWork.csproj", "expectedPackageFiles": [ "C:\\Users\\סארט\\.nuget\\packages\\audiocontrol.x64\\1.0.1\\audiocontrol.x64.1.0.1.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\dotras.for.win8\\1.3.0\\dotras.for.win8.1.3.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\markdig.signed\\0.21.1\\markdig.signed.0.21.1.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\microsoft.applicationinsights\\2.15.0\\microsoft.applicationinsights.2.15.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.0.0\\microsoft.codeanalysis.analyzers.3.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\microsoft.codeanalysis.common\\3.7.0\\microsoft.codeanalysis.common.3.7.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\microsoft.codeanalysis.csharp\\3.7.0\\microsoft.codeanalysis.csharp.3.7.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\microsoft.csharp\\4.3.0\\microsoft.csharp.4.3.0.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\microsoft.management.infrastructure\\2.0.0\\microsoft.management.infrastructure.2.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\microsoft.management.infrastructure.cimcmdlets\\7.1.3\\microsoft.management.infrastructure.cimcmdlets.7.1.3.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\microsoft.management.infrastructure.runtime.unix\\2.0.0\\microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\microsoft.management.infrastructure.runtime.win\\2.0.0\\microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.1\\microsoft.netcore.platforms.5.0.1.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\microsoft.netcore.windows.apisets\\1.0.1\\microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\microsoft.netcore.windows.apisets-x64\\1.0.0\\microsoft.netcore.windows.apisets-x64.1.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\microsoft.powershell.commands.diagnostics\\7.1.3\\microsoft.powershell.commands.diagnostics.7.1.3.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\microsoft.powershell.commands.management\\7.1.3\\microsoft.powershell.commands.management.7.1.3.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\microsoft.powershell.commands.utility\\7.1.3\\microsoft.powershell.commands.utility.7.1.3.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\microsoft.powershell.consolehost\\7.1.3\\microsoft.powershell.consolehost.7.1.3.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\microsoft.powershell.coreclr.eventing\\7.1.3\\microsoft.powershell.coreclr.eventing.7.1.3.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\microsoft.powershell.markdownrender\\7.1.3\\microsoft.powershell.markdownrender.7.1.3.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\microsoft.powershell.native\\7.1.0\\microsoft.powershell.native.7.1.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\microsoft.powershell.sdk\\7.1.3\\microsoft.powershell.sdk.7.1.3.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\microsoft.powershell.security\\7.1.3\\microsoft.powershell.security.7.1.3.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\microsoft.win32.registry\\5.0.0\\microsoft.win32.registry.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\microsoft.win32.registry.accesscontrol\\5.0.0\\microsoft.win32.registry.accesscontrol.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\microsoft.win32.systemevents\\5.0.0\\microsoft.win32.systemevents.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\microsoft.windows.compatibility\\5.0.0\\microsoft.windows.compatibility.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\microsoft.wsman.management\\7.1.3\\microsoft.wsman.management.7.1.3.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\microsoft.wsman.runtime\\7.1.3\\microsoft.wsman.runtime.7.1.3.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\namotion.reflection\\1.0.14\\namotion.reflection.1.0.14.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\naudio\\2.0.1\\naudio.2.0.1.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\naudio.asio\\2.0.0\\naudio.asio.2.0.0.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\naudio.core\\2.0.0\\naudio.core.2.0.0.nupkg.sha512", @@ -44,91 +21,11 @@ "C:\\Users\\סארט\\.nuget\\packages\\naudio.winforms\\2.0.1\\naudio.winforms.2.0.1.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\naudio.winmm\\2.0.1\\naudio.winmm.2.0.1.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\netstandard.library\\2.0.3\\netstandard.library.2.0.3.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\newtonsoft.json\\12.0.3\\newtonsoft.json.12.0.3.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\njsonschema\\10.2.2\\njsonschema.10.2.2.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\runtime.linux-arm.runtime.native.system.io.ports\\5.0.0-rtm.20519.4\\runtime.linux-arm.runtime.native.system.io.ports.5.0.0-rtm.20519.4.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\runtime.linux-arm64.runtime.native.system.io.ports\\5.0.0-rtm.20519.4\\runtime.linux-arm64.runtime.native.system.io.ports.5.0.0-rtm.20519.4.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\runtime.linux-x64.runtime.native.system.io.ports\\5.0.0-rtm.20519.4\\runtime.linux-x64.runtime.native.system.io.ports.5.0.0-rtm.20519.4.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.7.0\\runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\runtime.native.system.io.ports\\5.0.0\\runtime.native.system.io.ports.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\runtime.osx-x64.runtime.native.system.io.ports\\5.0.0-rtm.20519.4\\runtime.osx-x64.runtime.native.system.io.ports.5.0.0-rtm.20519.4.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\runtime.win-x64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\runtime.win-x86.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\simplewifi.netstandard\\2.0.0\\simplewifi.netstandard.2.0.0.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\system.codedom\\5.0.0\\system.codedom.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.collections.immutable\\1.5.0\\system.collections.immutable.1.5.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.componentmodel.composition\\5.0.0\\system.componentmodel.composition.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.componentmodel.composition.registration\\5.0.0\\system.componentmodel.composition.registration.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.configuration.configurationmanager\\5.0.0\\system.configuration.configurationmanager.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.data.datasetextensions\\4.5.0\\system.data.datasetextensions.4.5.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.data.odbc\\5.0.0\\system.data.odbc.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.data.oledb\\5.0.0\\system.data.oledb.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.data.sqlclient\\4.8.2\\system.data.sqlclient.4.8.2.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.6.0\\system.diagnostics.diagnosticsource.4.6.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.diagnostics.eventlog\\5.0.1\\system.diagnostics.eventlog.5.0.1.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.diagnostics.performancecounter\\5.0.0\\system.diagnostics.performancecounter.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.directoryservices\\5.0.0\\system.directoryservices.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.directoryservices.accountmanagement\\5.0.0\\system.directoryservices.accountmanagement.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.directoryservices.protocols\\5.0.0\\system.directoryservices.protocols.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.drawing.common\\5.0.2\\system.drawing.common.5.0.2.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.formats.asn1\\5.0.0\\system.formats.asn1.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.io.filesystem.accesscontrol\\5.0.0\\system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.io.packaging\\5.0.0\\system.io.packaging.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.io.pipes.accesscontrol\\5.0.0\\system.io.pipes.accesscontrol.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.io.ports\\5.0.0\\system.io.ports.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\system.management\\5.0.0\\system.management.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.management.automation\\7.1.3\\system.management.automation.7.1.3.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.net.http.winhttphandler\\5.0.0\\system.net.http.winhttphandler.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.private.servicemodel\\4.7.0\\system.private.servicemodel.4.7.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.reflection.context\\5.0.0\\system.reflection.context.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.reflection.dispatchproxy\\4.5.0\\system.reflection.dispatchproxy.4.5.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.reflection.emit\\4.7.0\\system.reflection.emit.4.7.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.7.0\\system.reflection.emit.ilgeneration.4.7.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.reflection.emit.lightweight\\4.7.0\\system.reflection.emit.lightweight.4.7.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.reflection.metadata\\1.6.0\\system.reflection.metadata.1.6.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.runtime.caching\\5.0.0\\system.runtime.caching.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\5.0.0\\system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\system.security.accesscontrol\\5.0.0\\system.security.accesscontrol.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.security.cryptography.cng\\5.0.0\\system.security.cryptography.cng.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.security.cryptography.pkcs\\5.0.1\\system.security.cryptography.pkcs.5.0.1.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.security.cryptography.protecteddata\\5.0.0\\system.security.cryptography.protecteddata.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.security.cryptography.xml\\5.0.0\\system.security.cryptography.xml.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.security.permissions\\5.0.0\\system.security.permissions.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.servicemodel.duplex\\4.7.0\\system.servicemodel.duplex.4.7.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.servicemodel.http\\4.7.0\\system.servicemodel.http.4.7.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.servicemodel.nettcp\\4.7.0\\system.servicemodel.nettcp.4.7.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.servicemodel.primitives\\4.7.0\\system.servicemodel.primitives.4.7.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.servicemodel.security\\4.7.0\\system.servicemodel.security.4.7.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.servicemodel.syndication\\5.0.0\\system.servicemodel.syndication.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.serviceprocess.servicecontroller\\5.0.0\\system.serviceprocess.servicecontroller.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.text.encoding.codepages\\5.0.0\\system.text.encoding.codepages.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.text.encodings.web\\5.0.1\\system.text.encodings.web.5.0.1.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.threading.accesscontrol\\5.0.0\\system.threading.accesscontrol.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.3\\system.threading.tasks.extensions.4.5.3.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.windows.extensions\\5.0.0\\system.windows.extensions.5.0.0.nupkg.sha512" + "C:\\Users\\סארט\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512" ], "logs": [ { diff --git a/NetWork/NetWork/obj/publish/win-x64/NetWork.csproj.nuget.dgspec.json b/NetWork/NetWork/obj/publish/win-x64/NetWork.csproj.nuget.dgspec.json index 57832ff..ba84677 100644 --- a/NetWork/NetWork/obj/publish/win-x64/NetWork.csproj.nuget.dgspec.json +++ b/NetWork/NetWork/obj/publish/win-x64/NetWork.csproj.nuget.dgspec.json @@ -22,15 +22,16 @@ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ - "net5.0" + "net5.0-windows7.0" ], "sources": { "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Users\\סארט\\source\\repos\\NetWork": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { - "net5.0": { - "targetAlias": "net5.0", + "net5.0-windows7.0": { + "targetAlias": "net5.0-windows7.0", "projectReferences": {} } }, @@ -41,10 +42,42 @@ } }, "frameworks": { - "net5.0": { - "targetAlias": "net5.0", + "net5.0-windows7.0": { + "targetAlias": "net5.0-windows7.0", "dependencies": { - "Microsoft.Extensions.FileSystemGlobbing": { + "AudioControl.x64": { + "target": "Package", + "version": "[1.0.1, )" + }, + "DotRas.for.Win8": { + "target": "Package", + "version": "[1.3.0, )" + }, + "Microsoft.Management.Infrastructure": { + "target": "Package", + "version": "[2.0.0, )" + }, + "Microsoft.NETCore.Windows.ApiSets": { + "target": "Package", + "version": "[1.0.1, )" + }, + "Microsoft.NETCore.Windows.ApiSets-x64": { + "target": "Package", + "version": "[1.0.0, )" + }, + "NAudio": { + "target": "Package", + "version": "[2.0.1, )" + }, + "NETStandard.Library": { + "target": "Package", + "version": "[2.0.3, )" + }, + "SimpleWifi.netstandard": { + "target": "Package", + "version": "[2.0.0, )" + }, + "System.Management": { "target": "Package", "version": "[5.0.0, )" } diff --git a/NetWork/NetWork/obj/publish/win-x64/NetWork.csproj.nuget.g.targets b/NetWork/NetWork/obj/publish/win-x64/NetWork.csproj.nuget.g.targets index 53cfaa1..bc6f82a 100644 --- a/NetWork/NetWork/obj/publish/win-x64/NetWork.csproj.nuget.g.targets +++ b/NetWork/NetWork/obj/publish/win-x64/NetWork.csproj.nuget.g.targets @@ -3,4 +3,8 @@ $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + \ No newline at end of file diff --git a/NetWork/NetWork/obj/publish/win-x64/project.assets.json b/NetWork/NetWork/obj/publish/win-x64/project.assets.json index 1e42cab..3752995 100644 --- a/NetWork/NetWork/obj/publish/win-x64/project.assets.json +++ b/NetWork/NetWork/obj/publish/win-x64/project.assets.json @@ -1,54 +1,2098 @@ { "version": 3, "targets": { - "net5.0": { - "Microsoft.Extensions.FileSystemGlobbing/5.0.0": { + "net5.0-windows7.0": { + "AudioControl.x64/1.0.1": { + "type": "package", + "build": { + "build/AudioControl.x64.targets": {} + } + }, + "DotRas.for.Win8/1.3.0": { "type": "package", "compile": { - "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} + "lib/net40/DotRas.dll": {} }, "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} + "lib/net40/DotRas.dll": {} + } + }, + "Microsoft.Management.Infrastructure/2.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Management.Infrastructure.Runtime.Unix": "2.0.0", + "Microsoft.Management.Infrastructure.Runtime.Win": "2.0.0" + }, + "compile": { + "ref/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {}, + "ref/netstandard1.6/Microsoft.Management.Infrastructure.dll": {} + }, + "runtime": { + "lib/netstandard1.6/_._": {} + } + }, + "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { + "type": "package", + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win-arm" + }, + "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win-arm" + }, + "runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm/native/mi.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm/native/miutils.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win-arm64" + }, + "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/mi.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/miutils.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win10-x64" + }, + "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win10-x64" + }, + "runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win10-x64" + }, + "runtimes/win10-x64/native/mi.dll": { + "assetType": "native", + "rid": "win10-x64" + }, + "runtimes/win10-x64/native/miutils.dll": { + "assetType": "native", + "rid": "win10-x64" + }, + "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win10-x86" + }, + "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win10-x86" + }, + "runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win10-x86" + }, + "runtimes/win10-x86/native/mi.dll": { + "assetType": "native", + "rid": "win10-x86" + }, + "runtimes/win10-x86/native/miutils.dll": { + "assetType": "native", + "rid": "win10-x86" + }, + "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win7-x64" + }, + "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/mi.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/miutils.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win7-x86" + }, + "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win7-x86" + }, + "runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win7-x86" + }, + "runtimes/win7-x86/native/mi.dll": { + "assetType": "native", + "rid": "win7-x86" + }, + "runtimes/win7-x86/native/miutils.dll": { + "assetType": "native", + "rid": "win7-x86" + }, + "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win8-x64" + }, + "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/mi.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/miutils.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win8-x86" + }, + "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win8-x86" + }, + "runtimes/win8-x86/native/mi.dll": { + "assetType": "native", + "rid": "win8-x86" + }, + "runtimes/win8-x86/native/miutils.dll": { + "assetType": "native", + "rid": "win8-x86" + }, + "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win81-x64" + }, + "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win81-x64" + }, + "runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win81-x64" + }, + "runtimes/win81-x64/native/mi.dll": { + "assetType": "native", + "rid": "win81-x64" + }, + "runtimes/win81-x64/native/miutils.dll": { + "assetType": "native", + "rid": "win81-x64" + }, + "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win81-x86" + }, + "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win81-x86" + }, + "runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win81-x86" + }, + "runtimes/win81-x86/native/mi.dll": { + "assetType": "native", + "rid": "win81-x86" + }, + "runtimes/win81-x86/native/miutils.dll": { + "assetType": "native", + "rid": "win81-x86" + } + } + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "type": "package" + }, + "Microsoft.NETCore.Windows.ApiSets-x64/1.0.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win10-x64/native/_._": { + "assetType": "native", + "rid": "win10-x64" + }, + "runtimes/win7-x64/native/API-MS-Win-Base-Util-L1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/API-MS-Win-Core-PrivateProfile-L1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/API-MS-Win-Core-String-L2-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/API-MS-Win-Core-StringAnsi-L1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/API-MS-Win-EventLog-Legacy-L1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/API-MS-Win-Eventing-Consumer-L1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/API-MS-Win-Eventing-Controller-L1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/API-MS-Win-Eventing-Legacy-L1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/API-MS-Win-Eventing-Provider-L1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/API-MS-Win-Security-LsaPolicy-L1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/API-MS-Win-devices-config-L1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/API-MS-Win-devices-config-L1-1-1.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-com-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-com-private-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-comm-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-console-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-console-l2-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-datetime-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-datetime-l1-1-1.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-debug-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-debug-l1-1-1.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-delayload-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-errorhandling-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-errorhandling-l1-1-1.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-fibers-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-fibers-l1-1-1.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-file-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-file-l1-2-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-file-l1-2-1.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-file-l2-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-file-l2-1-1.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-handle-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-heap-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-heap-obsolete-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-interlocked-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-io-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-io-l1-1-1.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-kernel32-legacy-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-libraryloader-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-libraryloader-l1-1-1.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-localization-l1-2-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-localization-l1-2-1.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-localization-l2-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-localization-obsolete-l1-2-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-1.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-2.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-3.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-namedpipe-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-namedpipe-l1-2-1.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-normalization-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-privateprofile-l1-1-1.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-processenvironment-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-processenvironment-l1-2-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-processsecurity-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-processthreads-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-processthreads-l1-1-1.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-processthreads-l1-1-2.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-profile-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-psapi-ansi-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-psapi-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-psapi-obsolete-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-realtime-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-registry-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-registry-l2-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-rtlsupport-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-shlwapi-legacy-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-shutdown-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-shutdown-l1-1-1.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-string-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-string-obsolete-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-string-obsolete-l1-1-1.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-stringloader-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-stringloader-l1-1-1.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-synch-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-synch-l1-2-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-1.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-2.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-3.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-threadpool-l1-2-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-threadpool-legacy-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-threadpool-private-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-timezone-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-url-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-util-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-version-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-winrt-error-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-winrt-error-l1-1-1.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-winrt-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-winrt-registration-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-winrt-robuffer-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-winrt-string-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-wow64-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-xstate-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-core-xstate-l2-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-ro-typeresolution-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-security-base-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-security-cpwl-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-security-cryptoapi-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-security-lsalookup-l2-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-security-lsalookup-l2-1-1.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-security-provider-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-security-sddl-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-service-core-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-service-core-l1-1-1.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-service-management-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-service-management-l2-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-service-private-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-service-private-l1-1-1.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/api-ms-win-service-winsvc-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/ext-ms-win-advapi32-encryptedfile-l1-1-0.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win8-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/API-MS-Win-devices-config-L1-1-1.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/api-ms-win-core-file-l1-2-1.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/api-ms-win-core-file-l2-1-1.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/api-ms-win-core-localization-l1-2-1.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/api-ms-win-core-localization-obsolete-l1-2-0.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/api-ms-win-core-memory-l1-1-2.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/api-ms-win-core-memory-l1-1-3.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/api-ms-win-core-namedpipe-l1-2-1.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/api-ms-win-core-privateprofile-l1-1-1.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/api-ms-win-core-processthreads-l1-1-2.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/api-ms-win-core-shutdown-l1-1-1.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/api-ms-win-core-string-obsolete-l1-1-1.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/api-ms-win-core-stringloader-l1-1-1.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/api-ms-win-core-sysinfo-l1-2-1.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/api-ms-win-core-sysinfo-l1-2-2.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/api-ms-win-core-sysinfo-l1-2-3.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/api-ms-win-core-winrt-error-l1-1-1.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/api-ms-win-core-xstate-l2-1-0.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/api-ms-win-security-cpwl-l1-1-0.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/api-ms-win-security-cryptoapi-l1-1-0.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/api-ms-win-security-lsalookup-l2-1-1.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/api-ms-win-service-private-l1-1-1.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win81-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll": { + "assetType": "native", + "rid": "win81-x64" + }, + "runtimes/win81-x64/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll": { + "assetType": "native", + "rid": "win81-x64" + }, + "runtimes/win81-x64/native/api-ms-win-core-memory-l1-1-3.dll": { + "assetType": "native", + "rid": "win81-x64" + }, + "runtimes/win81-x64/native/api-ms-win-core-namedpipe-l1-2-1.dll": { + "assetType": "native", + "rid": "win81-x64" + }, + "runtimes/win81-x64/native/api-ms-win-core-string-obsolete-l1-1-1.dll": { + "assetType": "native", + "rid": "win81-x64" + }, + "runtimes/win81-x64/native/api-ms-win-core-sysinfo-l1-2-2.dll": { + "assetType": "native", + "rid": "win81-x64" + }, + "runtimes/win81-x64/native/api-ms-win-core-sysinfo-l1-2-3.dll": { + "assetType": "native", + "rid": "win81-x64" + }, + "runtimes/win81-x64/native/api-ms-win-security-cpwl-l1-1-0.dll": { + "assetType": "native", + "rid": "win81-x64" + } + } + }, + "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" + } + } + }, + "NAudio/2.0.1": { + "type": "package", + "dependencies": { + "NAudio.Asio": "2.0.0", + "NAudio.Core": "2.0.0", + "NAudio.Midi": "2.0.1", + "NAudio.Wasapi": "2.0.0", + "NAudio.WinForms": "2.0.1", + "NAudio.WinMM": "2.0.1" + }, + "compile": { + "lib/netstandard2.0/NAudio.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NAudio.dll": {} + } + }, + "NAudio.Asio/2.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "NAudio.Core": "2.0.0" + }, + "compile": { + "lib/netstandard2.0/NAudio.Asio.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NAudio.Asio.dll": {} + } + }, + "NAudio.Core/2.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/NAudio.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NAudio.Core.dll": {} + } + }, + "NAudio.Midi/2.0.1": { + "type": "package", + "dependencies": { + "NAudio.Core": "2.0.0" + }, + "compile": { + "lib/netstandard2.0/NAudio.Midi.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NAudio.Midi.dll": {} + } + }, + "NAudio.Wasapi/2.0.0": { + "type": "package", + "dependencies": { + "NAudio.Core": "2.0.0" + }, + "compile": { + "lib/netstandard2.0/NAudio.Wasapi.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NAudio.Wasapi.dll": {} + } + }, + "NAudio.WinForms/2.0.1": { + "type": "package", + "dependencies": { + "NAudio.WinMM": "2.0.1" + }, + "compile": { + "lib/netcoreapp3.1/NAudio.WinForms.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/NAudio.WinForms.dll": {} + }, + "frameworkReferences": [ + "Microsoft.WindowsDesktop.App.WindowsForms" + ] + }, + "NAudio.WinMM/2.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "NAudio.Core": "2.0.0" + }, + "compile": { + "lib/netstandard2.0/NAudio.WinMM.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NAudio.WinMM.dll": {} + } + }, + "NETStandard.Library/2.0.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + }, + "build": { + "build/netstandard2.0/NETStandard.Library.targets": {} + } + }, + "SimpleWifi.netstandard/2.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/SimpleWifi.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SimpleWifi.dll": {} + } + }, + "System.CodeDom/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.CodeDom.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.CodeDom.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.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.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" + } } } }, - "net5.0/win-x64": { - "Microsoft.Extensions.FileSystemGlobbing/5.0.0": { + "net5.0-windows7.0/win-x64": { + "AudioControl.x64/1.0.1": { + "type": "package", + "build": { + "build/AudioControl.x64.targets": {} + } + }, + "DotRas.for.Win8/1.3.0": { "type": "package", "compile": { - "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} + "lib/net40/DotRas.dll": {} }, "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {} + "lib/net40/DotRas.dll": {} + } + }, + "Microsoft.Management.Infrastructure/2.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Management.Infrastructure.Runtime.Unix": "2.0.0", + "Microsoft.Management.Infrastructure.Runtime.Win": "2.0.0" + }, + "compile": { + "ref/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {}, + "ref/netstandard1.6/Microsoft.Management.Infrastructure.dll": {} + }, + "runtime": { + "lib/netstandard1.6/_._": {} + } + }, + "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { + "type": "package" + }, + "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { + "type": "package" + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "type": "package" + }, + "Microsoft.NETCore.Windows.ApiSets-x64/1.0.0": { + "type": "package" + }, + "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": { + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} + } + }, + "NAudio/2.0.1": { + "type": "package", + "dependencies": { + "NAudio.Asio": "2.0.0", + "NAudio.Core": "2.0.0", + "NAudio.Midi": "2.0.1", + "NAudio.Wasapi": "2.0.0", + "NAudio.WinForms": "2.0.1", + "NAudio.WinMM": "2.0.1" + }, + "compile": { + "lib/netstandard2.0/NAudio.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NAudio.dll": {} + } + }, + "NAudio.Asio/2.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "NAudio.Core": "2.0.0" + }, + "compile": { + "lib/netstandard2.0/NAudio.Asio.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NAudio.Asio.dll": {} + } + }, + "NAudio.Core/2.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/NAudio.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NAudio.Core.dll": {} + } + }, + "NAudio.Midi/2.0.1": { + "type": "package", + "dependencies": { + "NAudio.Core": "2.0.0" + }, + "compile": { + "lib/netstandard2.0/NAudio.Midi.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NAudio.Midi.dll": {} + } + }, + "NAudio.Wasapi/2.0.0": { + "type": "package", + "dependencies": { + "NAudio.Core": "2.0.0" + }, + "compile": { + "lib/netstandard2.0/NAudio.Wasapi.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NAudio.Wasapi.dll": {} + } + }, + "NAudio.WinForms/2.0.1": { + "type": "package", + "dependencies": { + "NAudio.WinMM": "2.0.1" + }, + "compile": { + "lib/netcoreapp3.1/NAudio.WinForms.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/NAudio.WinForms.dll": {} + }, + "frameworkReferences": [ + "Microsoft.WindowsDesktop.App.WindowsForms" + ] + }, + "NAudio.WinMM/2.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "NAudio.Core": "2.0.0" + }, + "compile": { + "lib/netstandard2.0/NAudio.WinMM.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NAudio.WinMM.dll": {} + } + }, + "NETStandard.Library/2.0.3": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + }, + "build": { + "build/netstandard2.0/NETStandard.Library.targets": {} + } + }, + "SimpleWifi.netstandard/2.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/SimpleWifi.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SimpleWifi.dll": {} + } + }, + "System.CodeDom/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.CodeDom.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.CodeDom.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": { + "runtimes/win/lib/netcoreapp2.0/System.Management.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": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {} + } + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {} } } } }, "libraries": { - "Microsoft.Extensions.FileSystemGlobbing/5.0.0": { - "sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==", + "AudioControl.x64/1.0.1": { + "sha512": "bkuUEZkxVFug599MYBZMdCbGh5AepmcI9jkKY8biDPxblxslbZF6GImpMNnbqRa0qI8i9c0HQiYauAFSuhlD9Q==", "type": "package", - "path": "microsoft.extensions.filesystemglobbing/5.0.0", + "path": "audiocontrol.x64/1.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "AudioControlNative.dll", + "audiocontrol.x64.1.0.1.nupkg.sha512", + "audiocontrol.x64.nuspec", + "build/AudioControl.x64.targets", + "lib/net46/AudioControl.dll" + ] + }, + "DotRas.for.Win8/1.3.0": { + "sha512": "vetxGKzzinebFwexUOamgwA9fws5X86CM0Ta/jcTeWuOEBPNMjXsWDoE6e0EImLgnz3EAvUhM594duzxrkgBeg==", + "type": "package", + "path": "dotras.for.win8/1.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "docs/DotRas.chm", + "dotras.for.win8.1.3.0.nupkg.sha512", + "dotras.for.win8.nuspec", + "lib/net20/DotRas.dll", + "lib/net20/DotRas.xml", + "lib/net40/DotRas.dll", + "lib/net40/DotRas.xml" + ] + }, + "Microsoft.Management.Infrastructure/2.0.0": { + "sha512": "IaKZRNBBv3sdrmBWd+aqwHq8cVHk/3WgWFAN/dt40MRY9rbtHiDfTTmaEN0tGTmQqGCGDo/ncntA8MvFMvcsRw==", + "type": "package", + "path": "microsoft.management.infrastructure/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard1.6/_._", + "microsoft.management.infrastructure.2.0.0.nupkg.sha512", + "microsoft.management.infrastructure.nuspec", + "ref/net451/Microsoft.Management.Infrastructure.Native.dll", + "ref/net451/Microsoft.Management.Infrastructure.dll", + "ref/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "ref/netstandard1.6/Microsoft.Management.Infrastructure.dll" + ] + }, + "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { + "sha512": "p0lslMX5bdWLxO2P7ao+rjAMOB0LEwPYpzvdCQ2OEYgX2NxFpQ8ILvqPGnYlTAb53rT8gu5DyIol1HboHFYfxQ==", + "type": "package", + "path": "microsoft.management.infrastructure.runtime.unix/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512", + "microsoft.management.infrastructure.runtime.unix.nuspec", + "runtimes/unix/lib/net451/_._", + "runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll" + ] + }, + "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { + "sha512": "vjBWQeDOjgernkrOdbEgn7M70SF7hof7ORdKPSlL06Uc15+oYdth5dZju9KsgUoti/cwnkZTiwtDx/lRtay0sA==", + "type": "package", + "path": "microsoft.management.infrastructure.runtime.win/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512", + "microsoft.management.infrastructure.runtime.win.nuspec", + "runtimes/win-arm/lib/net451/_._", + "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win-arm/native/mi.dll", + "runtimes/win-arm/native/miutils.dll", + "runtimes/win-arm64/lib/net451/_._", + "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win-arm64/native/mi.dll", + "runtimes/win-arm64/native/miutils.dll", + "runtimes/win10-x64/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win10-x64/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win10-x64/native/mi.dll", + "runtimes/win10-x64/native/miutils.dll", + "runtimes/win10-x86/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win10-x86/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win10-x86/native/mi.dll", + "runtimes/win10-x86/native/miutils.dll", + "runtimes/win7-x64/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win7-x64/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win7-x64/native/mi.dll", + "runtimes/win7-x64/native/miutils.dll", + "runtimes/win7-x86/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win7-x86/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win7-x86/native/mi.dll", + "runtimes/win7-x86/native/miutils.dll", + "runtimes/win8-x64/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win8-x64/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win8-x64/native/mi.dll", + "runtimes/win8-x64/native/miutils.dll", + "runtimes/win8-x86/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win8-x86/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win8-x86/native/mi.dll", + "runtimes/win8-x86/native/miutils.dll", + "runtimes/win81-x64/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win81-x64/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win81-x64/native/mi.dll", + "runtimes/win81-x64/native/miutils.dll", + "runtimes/win81-x86/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win81-x86/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win81-x86/native/mi.dll", + "runtimes/win81-x86/native/miutils.dll" + ] + }, + "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/net461/Microsoft.Extensions.FileSystemGlobbing.dll", - "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml", - "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", - "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml", - "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512", - "microsoft.extensions.filesystemglobbing.nuspec", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "sha512": "SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==", + "type": "package", + "path": "microsoft.netcore.windows.apisets/1.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512", + "microsoft.netcore.windows.apisets.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Windows.ApiSets-x64/1.0.0": { + "sha512": "NC+dpFMdhujz2sWAdJ8EmBk07p1zOlNi0FCCnZEbzftABpw9xZ99EMP/bUJrPTgCxHfzJAiuLPOtAauzVINk0w==", + "type": "package", + "path": "microsoft.netcore.windows.apisets-x64/1.0.0", + "files": [ + ".nupkg.metadata", + "microsoft.netcore.windows.apisets-x64.1.0.0.nupkg.sha512", + "microsoft.netcore.windows.apisets-x64.nuspec", + "runtimes/win10-x64/native/_._", + "runtimes/win7-x64/native/API-MS-Win-Base-Util-L1-1-0.dll", + "runtimes/win7-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-0.dll", + "runtimes/win7-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll", + "runtimes/win7-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll", + "runtimes/win7-x64/native/API-MS-Win-Core-PrivateProfile-L1-1-0.dll", + "runtimes/win7-x64/native/API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll", + "runtimes/win7-x64/native/API-MS-Win-Core-String-L2-1-0.dll", + "runtimes/win7-x64/native/API-MS-Win-Core-StringAnsi-L1-1-0.dll", + "runtimes/win7-x64/native/API-MS-Win-EventLog-Legacy-L1-1-0.dll", + "runtimes/win7-x64/native/API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll", + "runtimes/win7-x64/native/API-MS-Win-Eventing-Consumer-L1-1-0.dll", + "runtimes/win7-x64/native/API-MS-Win-Eventing-Controller-L1-1-0.dll", + "runtimes/win7-x64/native/API-MS-Win-Eventing-Legacy-L1-1-0.dll", + "runtimes/win7-x64/native/API-MS-Win-Eventing-Provider-L1-1-0.dll", + "runtimes/win7-x64/native/API-MS-Win-Security-LsaPolicy-L1-1-0.dll", + "runtimes/win7-x64/native/API-MS-Win-devices-config-L1-1-0.dll", + "runtimes/win7-x64/native/API-MS-Win-devices-config-L1-1-1.dll", + "runtimes/win7-x64/native/api-ms-win-core-com-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-com-private-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-comm-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-console-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-console-l2-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-datetime-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-datetime-l1-1-1.dll", + "runtimes/win7-x64/native/api-ms-win-core-debug-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-debug-l1-1-1.dll", + "runtimes/win7-x64/native/api-ms-win-core-delayload-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-errorhandling-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-errorhandling-l1-1-1.dll", + "runtimes/win7-x64/native/api-ms-win-core-fibers-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-fibers-l1-1-1.dll", + "runtimes/win7-x64/native/api-ms-win-core-file-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-file-l1-2-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-file-l1-2-1.dll", + "runtimes/win7-x64/native/api-ms-win-core-file-l2-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-file-l2-1-1.dll", + "runtimes/win7-x64/native/api-ms-win-core-handle-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-heap-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-heap-obsolete-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-interlocked-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-io-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-io-l1-1-1.dll", + "runtimes/win7-x64/native/api-ms-win-core-kernel32-legacy-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll", + "runtimes/win7-x64/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll", + "runtimes/win7-x64/native/api-ms-win-core-libraryloader-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-libraryloader-l1-1-1.dll", + "runtimes/win7-x64/native/api-ms-win-core-localization-l1-2-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-localization-l1-2-1.dll", + "runtimes/win7-x64/native/api-ms-win-core-localization-l2-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-localization-obsolete-l1-2-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-1.dll", + "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-2.dll", + "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-3.dll", + "runtimes/win7-x64/native/api-ms-win-core-namedpipe-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-namedpipe-l1-2-1.dll", + "runtimes/win7-x64/native/api-ms-win-core-normalization-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-privateprofile-l1-1-1.dll", + "runtimes/win7-x64/native/api-ms-win-core-processenvironment-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-processenvironment-l1-2-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-processsecurity-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-processthreads-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-processthreads-l1-1-1.dll", + "runtimes/win7-x64/native/api-ms-win-core-processthreads-l1-1-2.dll", + "runtimes/win7-x64/native/api-ms-win-core-profile-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-psapi-ansi-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-psapi-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-psapi-obsolete-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-realtime-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-registry-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-registry-l2-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-rtlsupport-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-shlwapi-legacy-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-shutdown-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-shutdown-l1-1-1.dll", + "runtimes/win7-x64/native/api-ms-win-core-string-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-string-obsolete-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-string-obsolete-l1-1-1.dll", + "runtimes/win7-x64/native/api-ms-win-core-stringloader-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-stringloader-l1-1-1.dll", + "runtimes/win7-x64/native/api-ms-win-core-synch-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-synch-l1-2-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-1.dll", + "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-2.dll", + "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-3.dll", + "runtimes/win7-x64/native/api-ms-win-core-threadpool-l1-2-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-threadpool-legacy-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-threadpool-private-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-timezone-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-url-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-util-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-version-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-winrt-error-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-winrt-error-l1-1-1.dll", + "runtimes/win7-x64/native/api-ms-win-core-winrt-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-winrt-registration-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-winrt-robuffer-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-winrt-string-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-wow64-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-xstate-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-core-xstate-l2-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-ro-typeresolution-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-security-base-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-security-cpwl-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-security-cryptoapi-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-security-lsalookup-l2-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-security-lsalookup-l2-1-1.dll", + "runtimes/win7-x64/native/api-ms-win-security-provider-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-security-sddl-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-service-core-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-service-core-l1-1-1.dll", + "runtimes/win7-x64/native/api-ms-win-service-management-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-service-management-l2-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-service-private-l1-1-0.dll", + "runtimes/win7-x64/native/api-ms-win-service-private-l1-1-1.dll", + "runtimes/win7-x64/native/api-ms-win-service-winsvc-l1-1-0.dll", + "runtimes/win7-x64/native/ext-ms-win-advapi32-encryptedfile-l1-1-0.dll", + "runtimes/win8-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll", + "runtimes/win8-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll", + "runtimes/win8-x64/native/API-MS-Win-devices-config-L1-1-1.dll", + "runtimes/win8-x64/native/api-ms-win-core-file-l1-2-1.dll", + "runtimes/win8-x64/native/api-ms-win-core-file-l2-1-1.dll", + "runtimes/win8-x64/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll", + "runtimes/win8-x64/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll", + "runtimes/win8-x64/native/api-ms-win-core-localization-l1-2-1.dll", + "runtimes/win8-x64/native/api-ms-win-core-localization-obsolete-l1-2-0.dll", + "runtimes/win8-x64/native/api-ms-win-core-memory-l1-1-2.dll", + "runtimes/win8-x64/native/api-ms-win-core-memory-l1-1-3.dll", + "runtimes/win8-x64/native/api-ms-win-core-namedpipe-l1-2-1.dll", + "runtimes/win8-x64/native/api-ms-win-core-privateprofile-l1-1-1.dll", + "runtimes/win8-x64/native/api-ms-win-core-processthreads-l1-1-2.dll", + "runtimes/win8-x64/native/api-ms-win-core-shutdown-l1-1-1.dll", + "runtimes/win8-x64/native/api-ms-win-core-string-obsolete-l1-1-1.dll", + "runtimes/win8-x64/native/api-ms-win-core-stringloader-l1-1-1.dll", + "runtimes/win8-x64/native/api-ms-win-core-sysinfo-l1-2-1.dll", + "runtimes/win8-x64/native/api-ms-win-core-sysinfo-l1-2-2.dll", + "runtimes/win8-x64/native/api-ms-win-core-sysinfo-l1-2-3.dll", + "runtimes/win8-x64/native/api-ms-win-core-winrt-error-l1-1-1.dll", + "runtimes/win8-x64/native/api-ms-win-core-xstate-l2-1-0.dll", + "runtimes/win8-x64/native/api-ms-win-security-cpwl-l1-1-0.dll", + "runtimes/win8-x64/native/api-ms-win-security-cryptoapi-l1-1-0.dll", + "runtimes/win8-x64/native/api-ms-win-security-lsalookup-l2-1-1.dll", + "runtimes/win8-x64/native/api-ms-win-service-private-l1-1-1.dll", + "runtimes/win81-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll", + "runtimes/win81-x64/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll", + "runtimes/win81-x64/native/api-ms-win-core-memory-l1-1-3.dll", + "runtimes/win81-x64/native/api-ms-win-core-namedpipe-l1-2-1.dll", + "runtimes/win81-x64/native/api-ms-win-core-string-obsolete-l1-1-1.dll", + "runtimes/win81-x64/native/api-ms-win-core-sysinfo-l1-2-2.dll", + "runtimes/win81-x64/native/api-ms-win-core-sysinfo-l1-2-3.dll", + "runtimes/win81-x64/native/api-ms-win-security-cpwl-l1-1-0.dll" + ] + }, + "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" + ] + }, + "NAudio/2.0.1": { + "sha512": "QTbkeWOC9IBRiq2rvyFnm47ro4HYZQXJQMrhgAD1BwbkUzH+NMt+2ayLDnAJNJQu6V69Of6KZSYyDfU2Pr+dzQ==", + "type": "package", + "path": "naudio/2.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/NAudio.dll", + "lib/netstandard2.0/NAudio.xml", + "license.txt", + "naudio-icon.png", + "naudio.2.0.1.nupkg.sha512", + "naudio.nuspec" + ] + }, + "NAudio.Asio/2.0.0": { + "sha512": "/Pd51zAS2L3+MK/dJ5VrInz6ggHUie9j1qCXysXL3Vj53p9A2RxjpIZafuyba2ZdeMKaOMOHXdtkUqFdKqVMQg==", + "type": "package", + "path": "naudio.asio/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/NAudio.Asio.dll", + "naudio-icon.png", + "naudio.asio.2.0.0.nupkg.sha512", + "naudio.asio.nuspec" + ] + }, + "NAudio.Core/2.0.0": { + "sha512": "knmGOIYbzn9ZGkFcVs5d3zEYvi50jVriyEirVtAHjkcDoo2ziK32bZb7KkFARLD4lhCGkqp6uT0+0fc4JIfQcw==", + "type": "package", + "path": "naudio.core/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/NAudio.Core.dll", + "naudio-icon.png", + "naudio.core.2.0.0.nupkg.sha512", + "naudio.core.nuspec" + ] + }, + "NAudio.Midi/2.0.1": { + "sha512": "A5pQerGAmtNNfSMkGaRacqBJG1xg4bjQE0XaxsO3/rhEE80NLUN6gQm+x/m7ZGbSoPUB5fav2jW3tZkdPadZ7w==", + "type": "package", + "path": "naudio.midi/2.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/NAudio.Midi.dll", + "naudio-icon.png", + "naudio.midi.2.0.1.nupkg.sha512", + "naudio.midi.nuspec" + ] + }, + "NAudio.Wasapi/2.0.0": { + "sha512": "7ES+jfZyOooBp86gql9BZ/OjKFmGfLaSLCtJagtCYiRGxfauHp4hXyeuwxS2mPLBxBGxBo9oGThN6y3QY+/w/w==", + "type": "package", + "path": "naudio.wasapi/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/NAudio.Wasapi.dll", + "lib/uap10.0.17763/NAudio.Wasapi.dll", + "lib/uap10.0.17763/NAudio.Wasapi.pri", + "naudio-icon.png", + "naudio.wasapi.2.0.0.nupkg.sha512", + "naudio.wasapi.nuspec" + ] + }, + "NAudio.WinForms/2.0.1": { + "sha512": "SOyXRsLePAvIWG20OMRHiUkNijme6J28DKBVesmhdfh4i7OKgkvGLN19eT+vPfXr97yhMudULsyYp9Niz8/a+g==", + "type": "package", + "path": "naudio.winforms/2.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net472/NAudio.WinForms.dll", + "lib/netcoreapp3.1/NAudio.WinForms.dll", + "naudio-icon.png", + "naudio.winforms.2.0.1.nupkg.sha512", + "naudio.winforms.nuspec" + ] + }, + "NAudio.WinMM/2.0.1": { + "sha512": "i7Da/gCqvwWvETFBRkuwCelSXEK5rPG7pTaqCU9aXFRiO0p7lwHjm/+k2lOWLmRGUJdLm/VSDO6Vknacnb6mSg==", + "type": "package", + "path": "naudio.winmm/2.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/NAudio.WinMM.dll", + "naudio-icon.png", + "naudio.winmm.2.0.1.nupkg.sha512", + "naudio.winmm.nuspec" + ] + }, + "NETStandard.Library/2.0.3": { + "sha512": "st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==", + "type": "package", + "path": "netstandard.library/2.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "build/netstandard2.0/NETStandard.Library.targets", + "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll", + "build/netstandard2.0/ref/System.AppContext.dll", + "build/netstandard2.0/ref/System.Collections.Concurrent.dll", + "build/netstandard2.0/ref/System.Collections.NonGeneric.dll", + "build/netstandard2.0/ref/System.Collections.Specialized.dll", + "build/netstandard2.0/ref/System.Collections.dll", + "build/netstandard2.0/ref/System.ComponentModel.Composition.dll", + "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll", + "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll", + "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll", + "build/netstandard2.0/ref/System.ComponentModel.dll", + "build/netstandard2.0/ref/System.Console.dll", + "build/netstandard2.0/ref/System.Core.dll", + "build/netstandard2.0/ref/System.Data.Common.dll", + "build/netstandard2.0/ref/System.Data.dll", + "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll", + "build/netstandard2.0/ref/System.Diagnostics.Debug.dll", + "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll", + "build/netstandard2.0/ref/System.Diagnostics.Process.dll", + "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll", + "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll", + "build/netstandard2.0/ref/System.Diagnostics.Tools.dll", + "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll", + "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll", + "build/netstandard2.0/ref/System.Drawing.Primitives.dll", + "build/netstandard2.0/ref/System.Drawing.dll", + "build/netstandard2.0/ref/System.Dynamic.Runtime.dll", + "build/netstandard2.0/ref/System.Globalization.Calendars.dll", + "build/netstandard2.0/ref/System.Globalization.Extensions.dll", + "build/netstandard2.0/ref/System.Globalization.dll", + "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll", + "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll", + "build/netstandard2.0/ref/System.IO.Compression.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.dll", + "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll", + "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll", + "build/netstandard2.0/ref/System.IO.Pipes.dll", + "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll", + "build/netstandard2.0/ref/System.IO.dll", + "build/netstandard2.0/ref/System.Linq.Expressions.dll", + "build/netstandard2.0/ref/System.Linq.Parallel.dll", + "build/netstandard2.0/ref/System.Linq.Queryable.dll", + "build/netstandard2.0/ref/System.Linq.dll", + "build/netstandard2.0/ref/System.Net.Http.dll", + "build/netstandard2.0/ref/System.Net.NameResolution.dll", + "build/netstandard2.0/ref/System.Net.NetworkInformation.dll", + "build/netstandard2.0/ref/System.Net.Ping.dll", + "build/netstandard2.0/ref/System.Net.Primitives.dll", + "build/netstandard2.0/ref/System.Net.Requests.dll", + "build/netstandard2.0/ref/System.Net.Security.dll", + "build/netstandard2.0/ref/System.Net.Sockets.dll", + "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll", + "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll", + "build/netstandard2.0/ref/System.Net.WebSockets.dll", + "build/netstandard2.0/ref/System.Net.dll", + "build/netstandard2.0/ref/System.Numerics.dll", + "build/netstandard2.0/ref/System.ObjectModel.dll", + "build/netstandard2.0/ref/System.Reflection.Extensions.dll", + "build/netstandard2.0/ref/System.Reflection.Primitives.dll", + "build/netstandard2.0/ref/System.Reflection.dll", + "build/netstandard2.0/ref/System.Resources.Reader.dll", + "build/netstandard2.0/ref/System.Resources.ResourceManager.dll", + "build/netstandard2.0/ref/System.Resources.Writer.dll", + "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll", + "build/netstandard2.0/ref/System.Runtime.Extensions.dll", + "build/netstandard2.0/ref/System.Runtime.Handles.dll", + "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll", + "build/netstandard2.0/ref/System.Runtime.InteropServices.dll", + "build/netstandard2.0/ref/System.Runtime.Numerics.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.dll", + "build/netstandard2.0/ref/System.Runtime.dll", + "build/netstandard2.0/ref/System.Security.Claims.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll", + "build/netstandard2.0/ref/System.Security.Principal.dll", + "build/netstandard2.0/ref/System.Security.SecureString.dll", + "build/netstandard2.0/ref/System.ServiceModel.Web.dll", + "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll", + "build/netstandard2.0/ref/System.Text.Encoding.dll", + "build/netstandard2.0/ref/System.Text.RegularExpressions.dll", + "build/netstandard2.0/ref/System.Threading.Overlapped.dll", + "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll", + "build/netstandard2.0/ref/System.Threading.Tasks.dll", + "build/netstandard2.0/ref/System.Threading.Thread.dll", + "build/netstandard2.0/ref/System.Threading.ThreadPool.dll", + "build/netstandard2.0/ref/System.Threading.Timer.dll", + "build/netstandard2.0/ref/System.Threading.dll", + "build/netstandard2.0/ref/System.Transactions.dll", + "build/netstandard2.0/ref/System.ValueTuple.dll", + "build/netstandard2.0/ref/System.Web.dll", + "build/netstandard2.0/ref/System.Windows.dll", + "build/netstandard2.0/ref/System.Xml.Linq.dll", + "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll", + "build/netstandard2.0/ref/System.Xml.Serialization.dll", + "build/netstandard2.0/ref/System.Xml.XDocument.dll", + "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll", + "build/netstandard2.0/ref/System.Xml.XPath.dll", + "build/netstandard2.0/ref/System.Xml.XmlDocument.dll", + "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll", + "build/netstandard2.0/ref/System.Xml.dll", + "build/netstandard2.0/ref/System.dll", + "build/netstandard2.0/ref/mscorlib.dll", + "build/netstandard2.0/ref/netstandard.dll", + "build/netstandard2.0/ref/netstandard.xml", + "lib/netstandard1.0/_._", + "netstandard.library.2.0.3.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "SimpleWifi.netstandard/2.0.0": { + "sha512": "lJuk2zjX4snKbrxfDnDEwYb8dTFR/UbyMb9umljexOP1nuXjdYXNX3T2+zrdxZue359ZqvHC8aAAGkgWS6PFFw==", + "type": "package", + "path": "simplewifi.netstandard/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "lib/netstandard2.0/SimpleWifi.dll", + "lib/netstandard2.0/SimpleWifi.xml", + "simplewifi.netstandard.2.0.0.nupkg.sha512", + "simplewifi.netstandard.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.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.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.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" ] } }, "projectFileDependencyGroups": { - "net5.0": [ - "Microsoft.Extensions.FileSystemGlobbing >= 5.0.0" + "net5.0-windows7.0": [ + "AudioControl.x64 >= 1.0.1", + "DotRas.for.Win8 >= 1.3.0", + "Microsoft.Management.Infrastructure >= 2.0.0", + "Microsoft.NETCore.Windows.ApiSets >= 1.0.1", + "Microsoft.NETCore.Windows.ApiSets-x64 >= 1.0.0", + "NAudio >= 2.0.1", + "NETStandard.Library >= 2.0.3", + "SimpleWifi.netstandard >= 2.0.0", + "System.Management >= 5.0.0" ] }, "packageFolders": { @@ -73,15 +2117,16 @@ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ - "net5.0" + "net5.0-windows7.0" ], "sources": { "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Users\\סארט\\source\\repos\\NetWork": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { - "net5.0": { - "targetAlias": "net5.0", + "net5.0-windows7.0": { + "targetAlias": "net5.0-windows7.0", "projectReferences": {} } }, @@ -92,10 +2137,42 @@ } }, "frameworks": { - "net5.0": { - "targetAlias": "net5.0", + "net5.0-windows7.0": { + "targetAlias": "net5.0-windows7.0", "dependencies": { - "Microsoft.Extensions.FileSystemGlobbing": { + "AudioControl.x64": { + "target": "Package", + "version": "[1.0.1, )" + }, + "DotRas.for.Win8": { + "target": "Package", + "version": "[1.3.0, )" + }, + "Microsoft.Management.Infrastructure": { + "target": "Package", + "version": "[2.0.0, )" + }, + "Microsoft.NETCore.Windows.ApiSets": { + "target": "Package", + "version": "[1.0.1, )" + }, + "Microsoft.NETCore.Windows.ApiSets-x64": { + "target": "Package", + "version": "[1.0.0, )" + }, + "NAudio": { + "target": "Package", + "version": "[2.0.1, )" + }, + "NETStandard.Library": { + "target": "Package", + "version": "[2.0.3, )" + }, + "SimpleWifi.netstandard": { + "target": "Package", + "version": "[2.0.0, )" + }, + "System.Management": { "target": "Package", "version": "[5.0.0, )" } @@ -137,5 +2214,17 @@ "#import": [] } } - } + }, + "logs": [ + { + "code": "NU1701", + "level": "Warning", + "warningLevel": 1, + "message": "Package 'DotRas.for.Win8 1.3.0' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8' instead of the project target framework 'net5.0-windows7.0'. This package may not be fully compatible with your project.", + "libraryId": "DotRas.for.Win8", + "targetGraphs": [ + "net5.0-windows7.0" + ] + } + ] } \ No newline at end of file diff --git a/NetWork/NetWork/obj/publish/win-x64/project.nuget.cache b/NetWork/NetWork/obj/publish/win-x64/project.nuget.cache index 118d942..0c9754d 100644 --- a/NetWork/NetWork/obj/publish/win-x64/project.nuget.cache +++ b/NetWork/NetWork/obj/publish/win-x64/project.nuget.cache @@ -1,13 +1,45 @@ { "version": 2, - "dgSpecHash": "bMjlf2qSCrwvwyAoTPmdEvighgbXyxWv5ZrDDuZ5kcA558Y7UIPiY4JmXLHfwM2sEo2D3+o/sblliMTqmiea2A==", + "dgSpecHash": "9mCmI8FOaH0pdcjAAWd0+EWaSYvweY1t5bscDJCjfYRkqJAwV5WX1fbwcWrIk0QF0klioHiGmrbvej0lS1NFNw==", "success": true, "projectFilePath": "C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\NetWork.csproj", "expectedPackageFiles": [ - "C:\\Users\\סארט\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\5.0.0\\microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\audiocontrol.x64\\1.0.1\\audiocontrol.x64.1.0.1.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\dotras.for.win8\\1.3.0\\dotras.for.win8.1.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.management.infrastructure\\2.0.0\\microsoft.management.infrastructure.2.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.management.infrastructure.runtime.unix\\2.0.0\\microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.management.infrastructure.runtime.win\\2.0.0\\microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.netcore.windows.apisets\\1.0.1\\microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.netcore.windows.apisets-x64\\1.0.0\\microsoft.netcore.windows.apisets-x64.1.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.win32.registry\\5.0.0\\microsoft.win32.registry.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\naudio\\2.0.1\\naudio.2.0.1.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\naudio.asio\\2.0.0\\naudio.asio.2.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\naudio.core\\2.0.0\\naudio.core.2.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\naudio.midi\\2.0.1\\naudio.midi.2.0.1.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\naudio.wasapi\\2.0.0\\naudio.wasapi.2.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\naudio.winforms\\2.0.1\\naudio.winforms.2.0.1.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\naudio.winmm\\2.0.1\\naudio.winmm.2.0.1.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\netstandard.library\\2.0.3\\netstandard.library.2.0.3.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\simplewifi.netstandard\\2.0.0\\simplewifi.netstandard.2.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.codedom\\5.0.0\\system.codedom.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.management\\5.0.0\\system.management.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.security.accesscontrol\\5.0.0\\system.security.accesscontrol.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\microsoft.netcore.app.runtime.win-x64\\5.0.7\\microsoft.netcore.app.runtime.win-x64.5.0.7.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\microsoft.windowsdesktop.app.runtime.win-x64\\5.0.7\\microsoft.windowsdesktop.app.runtime.win-x64.5.0.7.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\microsoft.aspnetcore.app.runtime.win-x64\\5.0.7\\microsoft.aspnetcore.app.runtime.win-x64.5.0.7.nupkg.sha512" ], - "logs": [] + "logs": [ + { + "code": "NU1701", + "level": "Warning", + "warningLevel": 1, + "message": "Package 'DotRas.for.Win8 1.3.0' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8' instead of the project target framework 'net5.0-windows7.0'. This package may not be fully compatible with your project.", + "libraryId": "DotRas.for.Win8", + "targetGraphs": [ + "net5.0-windows7.0" + ] + } + ] } \ No newline at end of file