diff --git a/.gitignore b/.gitignore
index 181ab65..2c6ae63 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,4 +2,7 @@ desktop.ini
*/bin/*
*/Debug/*
*.dll
-*.pbk
\ No newline at end of file
+*.pbk
+.vs/
+*/obj/*
+*/desktop.ini
\ No newline at end of file
diff --git a/.vs/NetWork/DesignTimeBuild/.dtbcache.v2 b/.vs/NetWork/DesignTimeBuild/.dtbcache.v2
deleted file mode 100644
index 958e095..0000000
Binary files a/.vs/NetWork/DesignTimeBuild/.dtbcache.v2 and /dev/null differ
diff --git a/.vs/NetWork/v16/.suo b/.vs/NetWork/v16/.suo
deleted file mode 100644
index 5f0316a..0000000
Binary files a/.vs/NetWork/v16/.suo and /dev/null differ
diff --git a/.vs/NetWork/v17/.futdcache.v1 b/.vs/NetWork/v17/.futdcache.v1
deleted file mode 100644
index 84680c4..0000000
Binary files a/.vs/NetWork/v17/.futdcache.v1 and /dev/null differ
diff --git a/.vs/NetWork/v17/.suo b/.vs/NetWork/v17/.suo
deleted file mode 100644
index 6e2f215..0000000
Binary files a/.vs/NetWork/v17/.suo and /dev/null differ
diff --git a/.vs/VSWorkspaceState.json b/.vs/VSWorkspaceState.json
deleted file mode 100644
index 73a5caa..0000000
--- a/.vs/VSWorkspaceState.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "ExpandedNodes": [
- "",
- "\\Windows.Common",
- "\\Windows.Common\\obj",
- "\\Windows.Common\\obj\\Release",
- "\\Windows.Common\\Properties",
- "\\Windows.Common\\Wifi"
- ],
- "SelectedNode": "\\Windows.Common\\Wifi\\Interop.cs",
- "PreviewInSolutionExplorer": false
-}
\ No newline at end of file
diff --git a/.vs/desktop.ini b/.vs/desktop.ini
deleted file mode 100644
index 757d3e7..0000000
Binary files a/.vs/desktop.ini and /dev/null differ
diff --git a/NetWork/NetWork.csproj b/NetWork/NetWork.csproj
index a420694..a7d5c36 100644
--- a/NetWork/NetWork.csproj
+++ b/NetWork/NetWork.csproj
@@ -7,6 +7,7 @@
NetWork.Program
true
enable
+ .
@@ -37,6 +38,7 @@
+
@@ -56,7 +58,6 @@
-
diff --git a/NetWork/Other/earphones.json b/NetWork/Other/earphones.json
index 81ab2dd..cb2a25c 100644
--- a/NetWork/Other/earphones.json
+++ b/NetWork/Other/earphones.json
@@ -1,3 +1,4 @@
[
- "Mi True Wire"
+ "Mi True Wire",
+ "realme"
]
\ No newline at end of file
diff --git a/NetWork/Program.cs b/NetWork/Program.cs
index d6dd387..6e26b22 100644
--- a/NetWork/Program.cs
+++ b/NetWork/Program.cs
@@ -1,4 +1,6 @@
+using System.IO;
using DotRas;
+using Microsoft.Win32.TaskScheduler;
using NAudio.CoreAudioApi;
using Newtonsoft.Json.Linq;
using NLog;
@@ -6,11 +8,18 @@ using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
+using System.Net.NetworkInformation;
using System.ServiceProcess;
using System.Text.RegularExpressions;
+using System.Threading;
namespace NetWork {
class Program {
+ ///
+ /// this function gets an array of service names, and start or stop command, and it runs on the array and
+ ///
+ ///
+ ///
public static void Servicer(string[] service, bool stop = true) {
foreach (string s in service) {
Servicer(s, stop);
@@ -81,8 +90,8 @@ namespace NetWork {
/// String of paths
///
public static string[] StringsOfPaths = System.IO.Directory.GetFiles(@"C:\Program Files\Google\Drive File Stream\", "GoogleDriveFS.exe", System.IO.SearchOption.AllDirectories);
- public static Dictionary progs = new() { { "GoogleDriveFS", StringsOfPaths[^1] }, { "qbittorrent", @"C:\Program Files\qBittorrent\qbittorrent.exe" }, { "Surfshark", @"C:\Program Files (x86)\Surfshark\Surfshark.exe" }, { "cmd", @"C:\Windows\System32\cmd.exe" } };
- public static Dictionary paths = new() { { StringsOfPaths[^1], "GoogleDriveFS.exe" }, { @"C:\Program Files\qBittorrent\qbittorrent.exe", "qbittorrent.exe" }, { @"C:\Program Files (x86)\Surfshark\Surfshark.exe", "Surfshark" }, { @"C:\Windows\System32\cmd.exe", "cmd" } };
+ public static Dictionary progs = new() { { "GoogleDriveFS", StringsOfPaths[^1] }, { "qbittorrent", @"C:\Program Files\qBittorrent\qbittorrent.exe" }, { "Surfshark", @"C:\Program Files (x86)\Surfshark\Surfshark.exe" }, { "cmd", @"C:\Windows\System32\cmd.exe" }, { "teamviewer", @"C:\Program Files (x86)\TeamViewer\TeamViewer.exe" }, { "tv", @"C:\Program Files (x86)\TeamViewer\TeamViewer_Service.exe" } };
+ public static Dictionary paths = new() { { StringsOfPaths[^1], "GoogleDriveFS.exe" }, { @"C:\Program Files\qBittorrent\qbittorrent.exe", "qbittorrent.exe" }, { @"C:\Program Files (x86)\Surfshark\Surfshark.exe", "Surfshark" }, { @"C:\Windows\System32\cmd.exe", "cmd" }, { @"C:\Program Files (x86)\TeamViewer\TeamViewer.exe", "teamviewer" }, { @"C:\Program Files (x86)\TeamViewer\TeamViewer_Service.exe", "tv" } };
//public static string[,] progs = new string[2,5] { { "GoogleDriveFS.exe", "googledrivesync.exe", "qbittorrent.exe", "Surfshark.exe", "mstsc.exe" },{ StringsOfPaths[StringsOfPaths.Length-1], "C:\\Program Files\\Google\\Drive\\googledrivesync.exe", "C:\\Program Files\\qBittorrent\\qbittorrent.exe", "C:\\Program Files (x86)\\Surfshark\\Surfshark.exe" , "mstsc.exe" } };
///
/// This Function Stops the RDP connection to the office computer. it takes 'stop' parameter. if it is true, it stops the rdp. otherwise, it starts it.
@@ -131,7 +140,7 @@ namespace NetWork {
if (connect) {
RasDialer rasDialer = new();
rasDialer.AllowUseStoredCredentials = true;
- rasDialer.PhoneBookPath = @"D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\Other\ek.pbk";
+ rasDialer.PhoneBookPath = @"Other\ek.pbk";
rasDialer.PhoneNumber = "ek";
rasDialer.EntryName = "ek";
rasDialer.DialAsync();
@@ -191,6 +200,8 @@ namespace NetWork {
MuteSystem(mute);
}
public static void StartProgram(string[] Name, bool mute = false) {
+ Thread trd;
+
foreach (var process_name in Name) {
if (process_name.Contains("rdp") || process_name.Contains("mstsc")) {
StopRDP(false);
@@ -204,7 +215,9 @@ namespace NetWork {
} else {
process = @"C:\Windows\System32\rundll32.exe";
}
- Process.Start(process);
+ trd = new(new ThreadStart(() => Process.Start(process)));
+ trd.Start();
+ ;
}
}
MuteSystem(mute);
@@ -229,7 +242,7 @@ namespace NetWork {
return goodWifi;
}
static bool LanEthernet(System.Net.NetworkInformation.NetworkInterface networkAdapter) {
- if (networkAdapter.Name.Contains("Ethernet") || (networkAdapter.NetworkInterfaceType.ToString().Contains("Ethernet"))) {
+ if ((networkAdapter.Name.Contains("Ethernet") || (networkAdapter.NetworkInterfaceType.ToString().Contains("Ethernet"))) && (networkAdapter.OperationalStatus == OperationalStatus.Up)) {
return true;
}
return false;
@@ -340,37 +353,42 @@ namespace NetWork {
mMDeviceEnumerator.GetDefaultAudioEndpoint(DataFlow.Render, Role.Multimedia).AudioEndpointVolume.Mute = mute;
}
public static void DoTheSchtik(bool Run) {
+ //using StreamReader read = File.ReadAllText("Other/def.json");
+ //var networkAutomation = JObject()
if (Run) {
var network_connection = GetNetwork();
string[] programs_to_run;
string[] programs_to_stop;
- string[] services_to_stop = new string[] { };
- string[] services_to_start = new string[] { };
+ string[]? services_to_stop;
+ string[]? services_to_start;
bool mute;
switch (HirarcyNetworks(network_connection)) {
case "vpn":
programs_to_run = new string[] { "GoogleDriveFS", "qbittorrent", "Surfshark" };
- programs_to_stop = new string[] { "rdp" };
+ programs_to_stop = new string[] { "rdp", "tv", "teamviewer" };
services_to_start = new string[] { "Surf" };
+ services_to_stop = new string[] { "teamviewer" };
mute = false;
break;
case "ek":
programs_to_run = new string[] { "rdp", "GoogleDriveFS" };
programs_to_stop = new string[] { "qbittorrent", "Surfshark" };
services_to_stop = new string[] { "Surf" };
+ services_to_start = null;
mute = false;
break;
case "good_lan":
programs_to_run = new string[] { "GoogleDriveFS", "qbittorrent", "Surfshark" };
services_to_start = new string[] { "Surf" };
programs_to_stop = new string[] { "rdp" };
+ services_to_stop = null;
mute = false;
break;
case "lan":
programs_to_run = new string[] { "rdp", "GoogleDriveFS" };
programs_to_stop = new string[] { "qbittorrent", "Surfshark" };
services_to_stop = new string[] { "Surf" };
-
+ services_to_start = null;
mute = false;
Dial(true);
break;
@@ -379,13 +397,14 @@ namespace NetWork {
programs_to_run = new string[] { "GoogleDriveFS", "qbittorrent", "Surfshark" };
services_to_start = new string[] { "Surf" };
programs_to_stop = new string[] { "rdp" };
+ services_to_stop = null;
mute = false;
break;
} else {
programs_to_run = new string[] { "GoogleDriveFS" };
programs_to_stop = new string[] { "qbittorrent", "Surfshark", "rdp" };
services_to_stop = new string[] { "Surf" };
-
+ services_to_start = null;
mute = true;
}
break;
@@ -403,17 +422,23 @@ namespace NetWork {
StopProgram(programs_to_stop, mute);
MuteSystem(mute);
}
- if (services_to_start.Length > 0) {
+
+ if (services_to_start is not null) {
Servicer(services_to_start, false);
}
- if (services_to_stop.Length > 0) {
+ if (services_to_stop is not null) {
Servicer(services_to_stop);
}
}
+ StartTask();
System.Windows.Forms.Application.Exit();
}
+ private static void StartTask() {
+ TaskService task = new();
+ task.FindTask("StartUp and Run").Run();
+ }
public static bool IniData() {
- return System.IO.File.ReadAllText("D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\Other\\Data.ini").Equals("RunNetwork");
+ return System.IO.File.ReadAllText("Other\\Data.ini").Equals("RunNetwork");
}
static void Main(string[] args) {
logger.Debug("me");
diff --git a/NetWork/obj/Debug/NetWork.1.0.0.nuspec b/NetWork/obj/Debug/NetWork.1.0.0.nuspec
deleted file mode 100644
index 148d08b..0000000
--- a/NetWork/obj/Debug/NetWork.1.0.0.nuspec
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
- NetWork
- 1.0.0
- NetWork
- Package Description
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/NetWork/obj/Debug/net5.0-windows/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/NetWork/obj/Debug/net5.0-windows/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
deleted file mode 100644
index 2f7e5ec..0000000
--- a/NetWork/obj/Debug/net5.0-windows/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
diff --git a/NetWork/obj/Debug/net5.0-windows/NetWork.AssemblyInfo.cs b/NetWork/obj/Debug/net5.0-windows/NetWork.AssemblyInfo.cs
deleted file mode 100644
index d5ffd2b..0000000
--- a/NetWork/obj/Debug/net5.0-windows/NetWork.AssemblyInfo.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// 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("Debug")]
-[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/obj/Debug/net5.0-windows/NetWork.AssemblyInfoInputs.cache b/NetWork/obj/Debug/net5.0-windows/NetWork.AssemblyInfoInputs.cache
deleted file mode 100644
index dc9c679..0000000
--- a/NetWork/obj/Debug/net5.0-windows/NetWork.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-2141606a1b68e23e2902b1b40300852fe1ead34c
diff --git a/NetWork/obj/Debug/net5.0-windows/NetWork.GeneratedMSBuildEditorConfig.editorconfig b/NetWork/obj/Debug/net5.0-windows/NetWork.GeneratedMSBuildEditorConfig.editorconfig
deleted file mode 100644
index 7694274..0000000
--- a/NetWork/obj/Debug/net5.0-windows/NetWork.GeneratedMSBuildEditorConfig.editorconfig
+++ /dev/null
@@ -1,8 +0,0 @@
-is_global = true
-build_property.TargetFramework = net5.0-windows
-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/obj/Debug/net5.0-windows/NetWork.assets.cache b/NetWork/obj/Debug/net5.0-windows/NetWork.assets.cache
deleted file mode 100644
index 5fab086..0000000
Binary files a/NetWork/obj/Debug/net5.0-windows/NetWork.assets.cache and /dev/null differ
diff --git a/NetWork/obj/Debug/net5.0-windows/NetWork.csproj.AssemblyReference.cache b/NetWork/obj/Debug/net5.0-windows/NetWork.csproj.AssemblyReference.cache
deleted file mode 100644
index 71fb6df..0000000
Binary files a/NetWork/obj/Debug/net5.0-windows/NetWork.csproj.AssemblyReference.cache and /dev/null differ
diff --git a/NetWork/obj/Debug/net5.0-windows/NetWork.csproj.CopyComplete b/NetWork/obj/Debug/net5.0-windows/NetWork.csproj.CopyComplete
deleted file mode 100644
index e69de29..0000000
diff --git a/NetWork/obj/Debug/net5.0-windows/NetWork.csproj.CoreCompileInputs.cache b/NetWork/obj/Debug/net5.0-windows/NetWork.csproj.CoreCompileInputs.cache
deleted file mode 100644
index 2ea85bf..0000000
--- a/NetWork/obj/Debug/net5.0-windows/NetWork.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-ec68d7fc404689b78246332306eb7e9270823dce
diff --git a/NetWork/obj/Debug/net5.0-windows/NetWork.csproj.FileListAbsolute.txt b/NetWork/obj/Debug/net5.0-windows/NetWork.csproj.FileListAbsolute.txt
deleted file mode 100644
index 99dbf65..0000000
--- a/NetWork/obj/Debug/net5.0-windows/NetWork.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,207 +0,0 @@
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Debug\net5.0-windows\NetWork.csproj.AssemblyReference.cache
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Debug\net5.0-windows\NetWork.GeneratedMSBuildEditorConfig.editorconfig
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Debug\net5.0-windows\NetWork.AssemblyInfoInputs.cache
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Debug\net5.0-windows\NetWork.AssemblyInfo.cs
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Debug\net5.0-windows\NetWork.csproj.CoreCompileInputs.cache
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\NetWork.exe
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\NetWork.deps.json
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\NetWork.runtimeconfig.json
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\NetWork.runtimeconfig.dev.json
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\NetWork.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\ref\NetWork.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\NAudio.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\NAudio.Asio.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\NAudio.Core.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\NAudio.Midi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\NAudio.Wasapi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\NAudio.WinForms.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\NAudio.WinMM.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\System.Management.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\unix\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win-arm\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win-arm\native\mi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win-arm\native\miutils.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win-arm64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win-arm64\native\mi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win-arm64\native\miutils.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win10-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win10-x64\native\mi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win10-x64\native\miutils.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win10-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win10-x86\native\mi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win10-x86\native\miutils.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\mi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\miutils.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x86\native\mi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x86\native\miutils.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win8-x64\native\mi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win8-x64\native\miutils.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win8-x86\native\mi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win8-x86\native\miutils.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win81-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win81-x64\native\mi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win81-x64\native\miutils.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win81-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win81-x86\native\mi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win81-x86\native\miutils.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win\lib\netcoreapp2.0\System.Management.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Debug\net5.0-windows\NetWork.csproj.CopyComplete
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Debug\net5.0-windows\NetWork.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Debug\net5.0-windows\ref\NetWork.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Debug\net5.0-windows\NetWork.genruntimeconfig.cache
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\AudioControlNative.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\API-MS-Win-Base-Util-L1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-2.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\API-MS-Win-Core-PrivateProfile-L1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\API-MS-Win-Core-String-L2-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\API-MS-Win-Core-StringAnsi-L1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\API-MS-Win-EventLog-Legacy-L1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\API-MS-Win-Eventing-Consumer-L1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\API-MS-Win-Eventing-Controller-L1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\API-MS-Win-Eventing-Legacy-L1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\API-MS-Win-Eventing-Provider-L1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\API-MS-Win-Security-LsaPolicy-L1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\API-MS-Win-devices-config-L1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\API-MS-Win-devices-config-L1-1-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-com-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-com-private-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-comm-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-console-l2-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-datetime-l1-1-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-debug-l1-1-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-delayload-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-errorhandling-l1-1-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-fibers-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-fibers-l1-1-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-file-l1-2-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-file-l2-1-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-heap-obsolete-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-io-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-io-l1-1-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-kernel32-legacy-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-kernel32-legacy-l1-1-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-kernel32-legacy-l1-1-2.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-libraryloader-l1-1-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-localization-l1-2-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-localization-l2-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-localization-obsolete-l1-2-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-memory-l1-1-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-memory-l1-1-2.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-memory-l1-1-3.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-namedpipe-l1-2-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-normalization-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-privateprofile-l1-1-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-processenvironment-l1-2-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-processsecurity-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-processthreads-l1-1-2.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-psapi-ansi-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-psapi-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-psapi-obsolete-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-realtime-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-registry-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-registry-l2-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-shlwapi-legacy-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-shlwapi-obsolete-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-shutdown-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-shutdown-l1-1-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-string-obsolete-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-string-obsolete-l1-1-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-stringloader-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-stringloader-l1-1-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-2.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-3.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-threadpool-l1-2-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-threadpool-legacy-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-threadpool-private-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-url-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-version-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-winrt-error-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-winrt-error-l1-1-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-winrt-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-winrt-registration-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-winrt-robuffer-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-winrt-string-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-wow64-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-xstate-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-core-xstate-l2-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-ro-typeresolution-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-security-base-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-security-cpwl-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-security-cryptoapi-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-security-lsalookup-l2-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-security-lsalookup-l2-1-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-security-provider-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-security-sddl-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-service-core-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-service-core-l1-1-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-service-management-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-service-management-l2-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-service-private-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-service-private-l1-1-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\api-ms-win-service-winsvc-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win7-x64\native\ext-ms-win-advapi32-encryptedfile-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win8-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win8-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-2.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win8-x64\native\API-MS-Win-devices-config-L1-1-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win8-x64\native\api-ms-win-core-file-l1-2-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win8-x64\native\api-ms-win-core-file-l2-1-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win8-x64\native\api-ms-win-core-kernel32-legacy-l1-1-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win8-x64\native\api-ms-win-core-kernel32-legacy-l1-1-2.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win8-x64\native\api-ms-win-core-localization-l1-2-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win8-x64\native\api-ms-win-core-localization-obsolete-l1-2-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win8-x64\native\api-ms-win-core-memory-l1-1-2.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win8-x64\native\api-ms-win-core-memory-l1-1-3.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win8-x64\native\api-ms-win-core-namedpipe-l1-2-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win8-x64\native\api-ms-win-core-privateprofile-l1-1-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win8-x64\native\api-ms-win-core-processthreads-l1-1-2.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win8-x64\native\api-ms-win-core-shutdown-l1-1-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win8-x64\native\api-ms-win-core-string-obsolete-l1-1-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win8-x64\native\api-ms-win-core-stringloader-l1-1-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win8-x64\native\api-ms-win-core-sysinfo-l1-2-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win8-x64\native\api-ms-win-core-sysinfo-l1-2-2.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win8-x64\native\api-ms-win-core-sysinfo-l1-2-3.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win8-x64\native\api-ms-win-core-winrt-error-l1-1-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win8-x64\native\api-ms-win-core-xstate-l2-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win8-x64\native\api-ms-win-security-cpwl-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win8-x64\native\api-ms-win-security-cryptoapi-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win8-x64\native\api-ms-win-security-lsalookup-l2-1-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win8-x64\native\api-ms-win-service-private-l1-1-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win81-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-2.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win81-x64\native\api-ms-win-core-kernel32-legacy-l1-1-2.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win81-x64\native\api-ms-win-core-memory-l1-1-3.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win81-x64\native\api-ms-win-core-namedpipe-l1-2-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win81-x64\native\api-ms-win-core-string-obsolete-l1-1-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win81-x64\native\api-ms-win-core-sysinfo-l1-2-2.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win81-x64\native\api-ms-win-core-sysinfo-l1-2-3.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\runtimes\win81-x64\native\api-ms-win-security-cpwl-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\Windows.Common.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows\Windows.Common.pdb
diff --git a/NetWork/obj/Debug/net5.0-windows/NetWork.genruntimeconfig.cache b/NetWork/obj/Debug/net5.0-windows/NetWork.genruntimeconfig.cache
deleted file mode 100644
index 8e54849..0000000
--- a/NetWork/obj/Debug/net5.0-windows/NetWork.genruntimeconfig.cache
+++ /dev/null
@@ -1 +0,0 @@
-b9b6bd9282a348fd2886bc55786cc65f59ea834a
diff --git a/NetWork/obj/Debug/net5.0-windows/apphost.exe b/NetWork/obj/Debug/net5.0-windows/apphost.exe
deleted file mode 100644
index 35d932a..0000000
Binary files a/NetWork/obj/Debug/net5.0-windows/apphost.exe and /dev/null differ
diff --git a/NetWork/obj/Debug/net5.0-windows7.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/NetWork/obj/Debug/net5.0-windows7.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
deleted file mode 100644
index 2f7e5ec..0000000
--- a/NetWork/obj/Debug/net5.0-windows7.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
diff --git a/NetWork/obj/Debug/net5.0-windows7.0/NetWork.AssemblyInfo.cs b/NetWork/obj/Debug/net5.0-windows7.0/NetWork.AssemblyInfo.cs
deleted file mode 100644
index d5ffd2b..0000000
--- a/NetWork/obj/Debug/net5.0-windows7.0/NetWork.AssemblyInfo.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// 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("Debug")]
-[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/obj/Debug/net5.0-windows7.0/NetWork.AssemblyInfoInputs.cache b/NetWork/obj/Debug/net5.0-windows7.0/NetWork.AssemblyInfoInputs.cache
deleted file mode 100644
index dc9c679..0000000
--- a/NetWork/obj/Debug/net5.0-windows7.0/NetWork.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-2141606a1b68e23e2902b1b40300852fe1ead34c
diff --git a/NetWork/obj/Debug/net5.0-windows7.0/NetWork.GeneratedMSBuildEditorConfig.editorconfig b/NetWork/obj/Debug/net5.0-windows7.0/NetWork.GeneratedMSBuildEditorConfig.editorconfig
deleted file mode 100644
index e20c298..0000000
--- a/NetWork/obj/Debug/net5.0-windows7.0/NetWork.GeneratedMSBuildEditorConfig.editorconfig
+++ /dev/null
@@ -1,10 +0,0 @@
-is_global = true
-build_property.TargetFramework = net5.0-windows7.0
-build_property.TargetPlatformMinVersion = 7.0
-build_property.UsingMicrosoftNETSdkWeb =
-build_property.ProjectTypeGuids =
-build_property.InvariantGlobalization =
-build_property.PlatformNeutralAssembly =
-build_property._SupportedPlatformList = Linux,macOS,Windows
-build_property.RootNamespace = NetWork
-build_property.ProjectDir = D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\
diff --git a/NetWork/obj/Debug/net5.0-windows7.0/NetWork.Properties.Resources.resources b/NetWork/obj/Debug/net5.0-windows7.0/NetWork.Properties.Resources.resources
deleted file mode 100644
index 9e18731..0000000
Binary files a/NetWork/obj/Debug/net5.0-windows7.0/NetWork.Properties.Resources.resources and /dev/null differ
diff --git a/NetWork/obj/Debug/net5.0-windows7.0/NetWork.assets.cache b/NetWork/obj/Debug/net5.0-windows7.0/NetWork.assets.cache
deleted file mode 100644
index 9785227..0000000
Binary files a/NetWork/obj/Debug/net5.0-windows7.0/NetWork.assets.cache and /dev/null differ
diff --git a/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.AssemblyReference.cache b/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.AssemblyReference.cache
deleted file mode 100644
index f6d7575..0000000
Binary files a/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.AssemblyReference.cache and /dev/null differ
diff --git a/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.CoreCompileInputs.cache b/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.CoreCompileInputs.cache
deleted file mode 100644
index f6e6d3f..0000000
--- a/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-b4ed6d8a537dc56c254028ffc334f8f9594d60f0
diff --git a/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.FileListAbsolute.txt b/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.FileListAbsolute.txt
deleted file mode 100644
index b2ee9b4..0000000
--- a/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,441 +0,0 @@
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\AudioControlNative.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NetWork.exe
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NetWork.deps.json
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NetWork.runtimeconfig.json
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NetWork.runtimeconfig.dev.json
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NetWork.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\NetWork.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NAudio.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NAudio.Asio.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NAudio.Core.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NAudio.Midi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NAudio.Wasapi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NAudio.WinForms.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NAudio.WinMM.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.Management.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\unix\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm\native\mi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm\native\miutils.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm64\native\mi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm64\native\miutils.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win10-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win10-x64\native\mi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win10-x64\native\miutils.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win10-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win10-x86\native\mi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win10-x86\native\miutils.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\mi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\miutils.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x86\native\mi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x86\native\miutils.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\mi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\miutils.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x86\native\mi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x86\native\miutils.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x64\native\mi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x64\native\miutils.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x86\native\mi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x86\native\miutils.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\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\runtimes\win\lib\netcoreapp2.0\System.Management.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Debug\net5.0-windows7.0\NetWork.csproj.AssemblyReference.cache
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Debug\net5.0-windows7.0\NetWork.GeneratedMSBuildEditorConfig.editorconfig
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Debug\net5.0-windows7.0\NetWork.AssemblyInfoInputs.cache
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Debug\net5.0-windows7.0\NetWork.AssemblyInfo.cs
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Debug\net5.0-windows7.0\NetWork.csproj.CoreCompileInputs.cache
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Debug\net5.0-windows7.0\NetWork.csproj.CopyComplete
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Debug\net5.0-windows7.0\NetWork.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Debug\net5.0-windows7.0\ref\NetWork.dll
-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\Microsoft.Extensions.Configuration.Abstractions.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Microsoft.Extensions.DependencyInjection.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Microsoft.Extensions.Logging.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Microsoft.Extensions.Logging.Abstractions.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Microsoft.Extensions.Options.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Microsoft.Extensions.Primitives.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NLog.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NLog.Extensions.Logging.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Serilog.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Debug\net5.0-windows7.0\NetWork.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Debug\net5.0-windows7.0\ref\NetWork.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\AudioControlNative.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NetWork.exe
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NetWork.deps.json
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NetWork.runtimeconfig.json
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NetWork.runtimeconfig.dev.json
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NetWork.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\NetWork.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\DotRas.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Microsoft.Extensions.Configuration.Abstractions.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Microsoft.Extensions.DependencyInjection.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Microsoft.Extensions.Logging.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Microsoft.Extensions.Logging.Abstractions.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Microsoft.Extensions.Options.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Microsoft.Extensions.Primitives.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NAudio.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NAudio.Asio.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NAudio.Core.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NAudio.Midi.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NAudio.Wasapi.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NAudio.WinForms.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NAudio.WinMM.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NLog.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NLog.Extensions.Logging.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Serilog.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\SimpleWifi.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.Management.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\unix\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm\native\mi.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm\native\miutils.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm64\native\mi.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm64\native\miutils.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win10-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win10-x64\native\mi.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win10-x64\native\miutils.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win10-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win10-x86\native\mi.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win10-x86\native\miutils.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\mi.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\miutils.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x86\native\mi.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x86\native\miutils.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\mi.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\miutils.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x86\native\mi.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x86\native\miutils.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x64\native\mi.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x64\native\miutils.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x86\native\mi.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x86\native\miutils.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Base-Util-L1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-2.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-PrivateProfile-L1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-String-L2-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-StringAnsi-L1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-EventLog-Legacy-L1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Eventing-Consumer-L1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Eventing-Controller-L1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Eventing-Legacy-L1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Eventing-Provider-L1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Security-LsaPolicy-L1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-devices-config-L1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-devices-config-L1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-com-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-com-private-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-comm-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-console-l2-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-datetime-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-debug-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-delayload-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-errorhandling-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-fibers-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-fibers-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-file-l1-2-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-file-l2-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-heap-obsolete-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-io-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-io-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-kernel32-legacy-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-kernel32-legacy-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-kernel32-legacy-l1-1-2.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-libraryloader-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-localization-l1-2-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-localization-l2-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-localization-obsolete-l1-2-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-memory-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-memory-l1-1-2.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-memory-l1-1-3.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-namedpipe-l1-2-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-normalization-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-privateprofile-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-processenvironment-l1-2-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-processsecurity-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-processthreads-l1-1-2.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-psapi-ansi-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-psapi-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-psapi-obsolete-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-realtime-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-registry-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-registry-l2-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-shlwapi-legacy-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-shlwapi-obsolete-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-shutdown-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-shutdown-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-string-obsolete-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-string-obsolete-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-stringloader-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-stringloader-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-2.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-3.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-threadpool-l1-2-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-threadpool-legacy-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-threadpool-private-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-url-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-version-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-error-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-error-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-registration-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-robuffer-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-string-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-wow64-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-xstate-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-xstate-l2-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-ro-typeresolution-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-base-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-cpwl-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-cryptoapi-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-lsalookup-l2-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-lsalookup-l2-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-provider-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-sddl-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-core-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-core-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-management-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-management-l2-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-private-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-private-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-winsvc-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\ext-ms-win-advapi32-encryptedfile-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-2.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\API-MS-Win-devices-config-L1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-file-l1-2-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-file-l2-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-kernel32-legacy-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-kernel32-legacy-l1-1-2.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-localization-l1-2-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-localization-obsolete-l1-2-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-memory-l1-1-2.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-memory-l1-1-3.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-namedpipe-l1-2-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-privateprofile-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-processthreads-l1-1-2.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-shutdown-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-string-obsolete-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-stringloader-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-sysinfo-l1-2-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-sysinfo-l1-2-2.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-sysinfo-l1-2-3.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-winrt-error-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-xstate-l2-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-security-cpwl-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-security-cryptoapi-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-security-lsalookup-l2-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-service-private-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-2.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-kernel32-legacy-l1-1-2.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-memory-l1-1-3.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-namedpipe-l1-2-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-string-obsolete-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-sysinfo-l1-2-2.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-sysinfo-l1-2-3.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-security-cpwl-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\netcoreapp2.0\System.Management.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Debug\net5.0-windows7.0\NetWork.GeneratedMSBuildEditorConfig.editorconfig
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Debug\net5.0-windows7.0\NetWork.AssemblyInfoInputs.cache
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Debug\net5.0-windows7.0\NetWork.AssemblyInfo.cs
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Debug\net5.0-windows7.0\NetWork.csproj.CoreCompileInputs.cache
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Debug\net5.0-windows7.0\NetWork.genruntimeconfig.cache
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\VPNConnector.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Debug\net5.0-windows7.0\NetWork.Properties.Resources.resources
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Debug\net5.0-windows7.0\NetWork.csproj.GenerateResource.cache
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Debug\net5.0-windows7.0\NetWork.csproj.AssemblyReference.cache
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\AutoHotkey.Interop.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.ServiceProcess.ServiceController.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\netstandard2.0\System.ServiceProcess.ServiceController.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Newtonsoft.Json.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Other\earphones.json
diff --git a/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.GenerateResource.cache b/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.GenerateResource.cache
deleted file mode 100644
index b9ff7fa..0000000
Binary files a/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.GenerateResource.cache and /dev/null differ
diff --git a/NetWork/obj/Debug/net5.0-windows7.0/NetWork.genruntimeconfig.cache b/NetWork/obj/Debug/net5.0-windows7.0/NetWork.genruntimeconfig.cache
deleted file mode 100644
index 9494e0c..0000000
--- a/NetWork/obj/Debug/net5.0-windows7.0/NetWork.genruntimeconfig.cache
+++ /dev/null
@@ -1 +0,0 @@
-f1f7a2b227e661e8bded085edbeae4ef39679215
diff --git a/NetWork/obj/Debug/net5.0-windows7.0/PublishOutputs.b6becf02d1.txt b/NetWork/obj/Debug/net5.0-windows7.0/PublishOutputs.b6becf02d1.txt
deleted file mode 100644
index 7f39c88..0000000
--- a/NetWork/obj/Debug/net5.0-windows7.0/PublishOutputs.b6becf02d1.txt
+++ /dev/null
@@ -1,486 +0,0 @@
-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/obj/Debug/net5.0-windows7.0/apphost.exe b/NetWork/obj/Debug/net5.0-windows7.0/apphost.exe
deleted file mode 100644
index d04c032..0000000
Binary files a/NetWork/obj/Debug/net5.0-windows7.0/apphost.exe and /dev/null differ
diff --git a/NetWork/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/NetWork/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
deleted file mode 100644
index 2f7e5ec..0000000
--- a/NetWork/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
diff --git a/NetWork/obj/Debug/net5.0/NetWork.AssemblyInfo.cs b/NetWork/obj/Debug/net5.0/NetWork.AssemblyInfo.cs
deleted file mode 100644
index d79450c..0000000
--- a/NetWork/obj/Debug/net5.0/NetWork.AssemblyInfo.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// 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("Debug")]
-[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")]
-
-// Generated by the MSBuild WriteCodeFragment class.
-
diff --git a/NetWork/obj/Debug/net5.0/NetWork.AssemblyInfoInputs.cache b/NetWork/obj/Debug/net5.0/NetWork.AssemblyInfoInputs.cache
deleted file mode 100644
index 1e036cb..0000000
--- a/NetWork/obj/Debug/net5.0/NetWork.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-2761d80dcb43a98876e08ac792894a54714fd068
diff --git a/NetWork/obj/Debug/net5.0/NetWork.GeneratedMSBuildEditorConfig.editorconfig b/NetWork/obj/Debug/net5.0/NetWork.GeneratedMSBuildEditorConfig.editorconfig
deleted file mode 100644
index d7e2983..0000000
--- a/NetWork/obj/Debug/net5.0/NetWork.GeneratedMSBuildEditorConfig.editorconfig
+++ /dev/null
@@ -1,8 +0,0 @@
-is_global = true
-build_property.TargetFramework = net5.0
-build_property.TargetPlatformMinVersion =
-build_property.UsingMicrosoftNETSdkWeb =
-build_property.ProjectTypeGuids =
-build_property.PublishSingleFile =
-build_property.IncludeAllContentForSelfExtract =
-build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows
diff --git a/NetWork/obj/Debug/net5.0/NetWork.assets.cache b/NetWork/obj/Debug/net5.0/NetWork.assets.cache
deleted file mode 100644
index b2c8884..0000000
Binary files a/NetWork/obj/Debug/net5.0/NetWork.assets.cache and /dev/null differ
diff --git a/NetWork/obj/Debug/net5.0/NetWork.csproj.AssemblyReference.cache b/NetWork/obj/Debug/net5.0/NetWork.csproj.AssemblyReference.cache
deleted file mode 100644
index a1912fb..0000000
Binary files a/NetWork/obj/Debug/net5.0/NetWork.csproj.AssemblyReference.cache and /dev/null differ
diff --git a/NetWork/obj/Debug/net5.0/NetWork.csproj.CopyComplete b/NetWork/obj/Debug/net5.0/NetWork.csproj.CopyComplete
deleted file mode 100644
index e69de29..0000000
diff --git a/NetWork/obj/Debug/net5.0/NetWork.csproj.CoreCompileInputs.cache b/NetWork/obj/Debug/net5.0/NetWork.csproj.CoreCompileInputs.cache
deleted file mode 100644
index 07c155d..0000000
--- a/NetWork/obj/Debug/net5.0/NetWork.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-afef8824ff63ad5bc4ca40124f87b895957de2de
diff --git a/NetWork/obj/Debug/net5.0/NetWork.csproj.FileListAbsolute.txt b/NetWork/obj/Debug/net5.0/NetWork.csproj.FileListAbsolute.txt
deleted file mode 100644
index 9793dbc..0000000
--- a/NetWork/obj/Debug/net5.0/NetWork.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,71 +0,0 @@
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\NetWork.exe
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\NetWork.deps.json
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\NetWork.runtimeconfig.json
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\NetWork.runtimeconfig.dev.json
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\NetWork.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\ref\NetWork.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Debug\net5.0\NetWork.csproj.AssemblyReference.cache
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Debug\net5.0\NetWork.GeneratedMSBuildEditorConfig.editorconfig
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Debug\net5.0\NetWork.AssemblyInfoInputs.cache
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Debug\net5.0\NetWork.AssemblyInfo.cs
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Debug\net5.0\NetWork.csproj.CoreCompileInputs.cache
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Debug\net5.0\NetWork.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Debug\net5.0\ref\NetWork.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Debug\net5.0\NetWork.genruntimeconfig.cache
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\Microsoft.Extensions.FileSystemGlobbing.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Debug\net5.0\NetWork.csproj.CopyComplete
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\AudioSwitcher.AudioApi.CoreAudio.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\System.CodeDom.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\System.Management.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\unix\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win-arm\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win-arm\native\mi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win-arm\native\miutils.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win-arm64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win-arm64\native\mi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win-arm64\native\miutils.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win10-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win10-x64\native\mi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win10-x64\native\miutils.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win10-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win10-x86\native\mi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win10-x86\native\miutils.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win7-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win7-x64\native\mi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win7-x64\native\miutils.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win7-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win7-x86\native\mi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win7-x86\native\miutils.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win8-x64\native\mi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win8-x64\native\miutils.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win8-x86\native\mi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win8-x86\native\miutils.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win81-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win81-x64\native\mi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win81-x64\native\miutils.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win81-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win81-x86\native\mi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win81-x86\native\miutils.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\runtimes\win\lib\netcoreapp2.0\System.Management.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\DotRas.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0\VPNConnector.dll
diff --git a/NetWork/obj/Debug/net5.0/NetWork.genruntimeconfig.cache b/NetWork/obj/Debug/net5.0/NetWork.genruntimeconfig.cache
deleted file mode 100644
index 9e568eb..0000000
--- a/NetWork/obj/Debug/net5.0/NetWork.genruntimeconfig.cache
+++ /dev/null
@@ -1 +0,0 @@
-0623b80004f3e5b7c7573d42f3b5cc8e40910fda
diff --git a/NetWork/obj/Debug/net5.0/apphost.exe b/NetWork/obj/Debug/net5.0/apphost.exe
deleted file mode 100644
index 07756c9..0000000
Binary files a/NetWork/obj/Debug/net5.0/apphost.exe and /dev/null differ
diff --git a/NetWork/obj/NetWork.csproj.nuget.dgspec.json b/NetWork/obj/NetWork.csproj.nuget.dgspec.json
deleted file mode 100644
index 8aa0181..0000000
--- a/NetWork/obj/NetWork.csproj.nuget.dgspec.json
+++ /dev/null
@@ -1,134 +0,0 @@
-{
- "format": 1,
- "restore": {
- "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\NetWork.csproj": {}
- },
- "projects": {
- "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\NetWork.csproj": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\NetWork.csproj",
- "projectName": "NetWork",
- "projectPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\NetWork.csproj",
- "packagesPath": "C:\\Users\\סארט\\.nuget\\packages\\",
- "outputPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\obj\\",
- "projectStyle": "PackageReference",
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
- "configFilePaths": [
- "C:\\Users\\סארט\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "net5.0-windows7.0"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net5.0-windows7.0": {
- "targetAlias": "net5.0-windows7.0",
- "projectReferences": {}
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- }
- },
- "frameworks": {
- "net5.0-windows7.0": {
- "targetAlias": "net5.0-windows7.0",
- "dependencies": {
- "AudioControl.x64": {
- "target": "Package",
- "version": "[1.0.1, )"
- },
- "AutoHotkey.Interop": {
- "target": "Package",
- "version": "[1.0.0.1, )"
- },
- "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, )"
- },
- "NLog": {
- "target": "Package",
- "version": "[4.7.10, )"
- },
- "NLog.Extensions.Logging": {
- "target": "Package",
- "version": "[1.7.3, )"
- },
- "Newtonsoft.Json": {
- "target": "Package",
- "version": "[13.0.1, )"
- },
- "Serilog": {
- "target": "Package",
- "version": "[2.10.0, )"
- },
- "SimpleWifi.netstandard": {
- "target": "Package",
- "version": "[2.0.0, )"
- },
- "System.Management": {
- "target": "Package",
- "version": "[5.0.0, )"
- },
- "System.ServiceProcess.ServiceController": {
- "target": "Package",
- "version": "[5.0.0, )"
- },
- "VPNConnector": {
- "target": "Package",
- "version": "[1.0.0, )"
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "downloadDependencies": [
- {
- "name": "Microsoft.NETCore.App.Host.win-x64",
- "version": "[5.0.8, 5.0.8]"
- }
- ],
- "frameworkReferences": {
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100-preview.7.21379.14\\RuntimeIdentifierGraph.json"
- }
- }
- }
- }
-}
\ No newline at end of file
diff --git a/NetWork/obj/NetWork.csproj.nuget.g.props b/NetWork/obj/NetWork.csproj.nuget.g.props
deleted file mode 100644
index 4d0913f..0000000
--- a/NetWork/obj/NetWork.csproj.nuget.g.props
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
- True
- NuGet
- $(MSBuildThisFileDirectory)project.assets.json
- $(UserProfile)\.nuget\packages\
- C:\Users\סארט\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages
- PackageReference
- 6.0.0
-
-
-
-
-
-
- $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
-
-
\ No newline at end of file
diff --git a/NetWork/obj/NetWork.csproj.nuget.g.targets b/NetWork/obj/NetWork.csproj.nuget.g.targets
deleted file mode 100644
index bc6f82a..0000000
--- a/NetWork/obj/NetWork.csproj.nuget.g.targets
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
- $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
-
-
-
-
-
-
\ No newline at end of file
diff --git a/NetWork/obj/Release/NetWork.1.0.0.nuspec b/NetWork/obj/Release/NetWork.1.0.0.nuspec
deleted file mode 100644
index a641651..0000000
--- a/NetWork/obj/Release/NetWork.1.0.0.nuspec
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
- NetWork
- 1.0.0
- NetWork
- Package Description
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/NetWork/obj/Release/net5.0-windows/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/NetWork/obj/Release/net5.0-windows/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
deleted file mode 100644
index 2f7e5ec..0000000
--- a/NetWork/obj/Release/net5.0-windows/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
diff --git a/NetWork/obj/Release/net5.0-windows/NetWork.AssemblyInfo.cs b/NetWork/obj/Release/net5.0-windows/NetWork.AssemblyInfo.cs
deleted file mode 100644
index e9aa84b..0000000
--- a/NetWork/obj/Release/net5.0-windows/NetWork.AssemblyInfo.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// 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/obj/Release/net5.0-windows/NetWork.AssemblyInfoInputs.cache b/NetWork/obj/Release/net5.0-windows/NetWork.AssemblyInfoInputs.cache
deleted file mode 100644
index 78277e1..0000000
--- a/NetWork/obj/Release/net5.0-windows/NetWork.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-47b92528c37c5e1c33a2258e82955d216ab71c7d
diff --git a/NetWork/obj/Release/net5.0-windows/NetWork.GeneratedMSBuildEditorConfig.editorconfig b/NetWork/obj/Release/net5.0-windows/NetWork.GeneratedMSBuildEditorConfig.editorconfig
deleted file mode 100644
index 7694274..0000000
--- a/NetWork/obj/Release/net5.0-windows/NetWork.GeneratedMSBuildEditorConfig.editorconfig
+++ /dev/null
@@ -1,8 +0,0 @@
-is_global = true
-build_property.TargetFramework = net5.0-windows
-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/obj/Release/net5.0-windows/NetWork.assets.cache b/NetWork/obj/Release/net5.0-windows/NetWork.assets.cache
deleted file mode 100644
index 9a36d59..0000000
Binary files a/NetWork/obj/Release/net5.0-windows/NetWork.assets.cache and /dev/null differ
diff --git a/NetWork/obj/Release/net5.0-windows7.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/NetWork/obj/Release/net5.0-windows7.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
deleted file mode 100644
index 2f7e5ec..0000000
--- a/NetWork/obj/Release/net5.0-windows7.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
diff --git a/NetWork/obj/Release/net5.0-windows7.0/NetWork.AssemblyInfo.cs b/NetWork/obj/Release/net5.0-windows7.0/NetWork.AssemblyInfo.cs
deleted file mode 100644
index e9aa84b..0000000
--- a/NetWork/obj/Release/net5.0-windows7.0/NetWork.AssemblyInfo.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// 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/obj/Release/net5.0-windows7.0/NetWork.AssemblyInfoInputs.cache b/NetWork/obj/Release/net5.0-windows7.0/NetWork.AssemblyInfoInputs.cache
deleted file mode 100644
index 78277e1..0000000
--- a/NetWork/obj/Release/net5.0-windows7.0/NetWork.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-47b92528c37c5e1c33a2258e82955d216ab71c7d
diff --git a/NetWork/obj/Release/net5.0-windows7.0/NetWork.GeneratedMSBuildEditorConfig.editorconfig b/NetWork/obj/Release/net5.0-windows7.0/NetWork.GeneratedMSBuildEditorConfig.editorconfig
deleted file mode 100644
index e20c298..0000000
--- a/NetWork/obj/Release/net5.0-windows7.0/NetWork.GeneratedMSBuildEditorConfig.editorconfig
+++ /dev/null
@@ -1,10 +0,0 @@
-is_global = true
-build_property.TargetFramework = net5.0-windows7.0
-build_property.TargetPlatformMinVersion = 7.0
-build_property.UsingMicrosoftNETSdkWeb =
-build_property.ProjectTypeGuids =
-build_property.InvariantGlobalization =
-build_property.PlatformNeutralAssembly =
-build_property._SupportedPlatformList = Linux,macOS,Windows
-build_property.RootNamespace = NetWork
-build_property.ProjectDir = D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\
diff --git a/NetWork/obj/Release/net5.0-windows7.0/NetWork.Properties.Resources.resources b/NetWork/obj/Release/net5.0-windows7.0/NetWork.Properties.Resources.resources
deleted file mode 100644
index 9e18731..0000000
Binary files a/NetWork/obj/Release/net5.0-windows7.0/NetWork.Properties.Resources.resources and /dev/null differ
diff --git a/NetWork/obj/Release/net5.0-windows7.0/NetWork.assets.cache b/NetWork/obj/Release/net5.0-windows7.0/NetWork.assets.cache
deleted file mode 100644
index f150832..0000000
Binary files a/NetWork/obj/Release/net5.0-windows7.0/NetWork.assets.cache and /dev/null differ
diff --git a/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.AssemblyReference.cache b/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.AssemblyReference.cache
deleted file mode 100644
index 204fdef..0000000
Binary files a/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.AssemblyReference.cache and /dev/null differ
diff --git a/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.CopyComplete b/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.CopyComplete
deleted file mode 100644
index e69de29..0000000
diff --git a/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.CoreCompileInputs.cache b/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.CoreCompileInputs.cache
deleted file mode 100644
index e4e36f2..0000000
--- a/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-ed9f68123c2538539c82c92ec55bdea9c7b17e8b
diff --git a/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.FileListAbsolute.txt b/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.FileListAbsolute.txt
deleted file mode 100644
index ec6309f..0000000
--- a/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,436 +0,0 @@
-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
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\AudioControlNative.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\NetWork.exe
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\NetWork.deps.json
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\NetWork.runtimeconfig.json
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\NetWork.runtimeconfig.dev.json
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\NetWork.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\ref\NetWork.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\DotRas.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\Microsoft.Extensions.Configuration.Abstractions.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\Microsoft.Extensions.DependencyInjection.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\Microsoft.Extensions.Logging.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\Microsoft.Extensions.Logging.Abstractions.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\Microsoft.Extensions.Options.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\Microsoft.Extensions.Primitives.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\NAudio.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\NAudio.Asio.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\NAudio.Core.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\NAudio.Midi.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\NAudio.Wasapi.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\NAudio.WinForms.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\NAudio.WinMM.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\NLog.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\NLog.Extensions.Logging.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\Serilog.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\SimpleWifi.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\System.Management.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\VPNConnector.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\unix\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm\native\mi.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm\native\miutils.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm64\native\mi.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm64\native\miutils.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x64\native\mi.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x64\native\miutils.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x86\native\mi.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x86\native\miutils.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\mi.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\miutils.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x86\native\mi.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x86\native\miutils.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\mi.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\miutils.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x86\native\mi.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x86\native\miutils.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\mi.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\miutils.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x86\native\mi.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x86\native\miutils.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Base-Util-L1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-2.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-PrivateProfile-L1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-String-L2-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-StringAnsi-L1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-EventLog-Legacy-L1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Eventing-Consumer-L1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Eventing-Controller-L1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Eventing-Legacy-L1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Eventing-Provider-L1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Security-LsaPolicy-L1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-devices-config-L1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-devices-config-L1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-com-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-com-private-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-comm-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-console-l2-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-datetime-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-debug-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-delayload-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-errorhandling-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-fibers-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-fibers-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-file-l1-2-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-file-l2-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-heap-obsolete-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-io-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-io-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-kernel32-legacy-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-kernel32-legacy-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-kernel32-legacy-l1-1-2.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-libraryloader-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-localization-l1-2-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-localization-l2-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-localization-obsolete-l1-2-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-memory-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-memory-l1-1-2.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-memory-l1-1-3.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-namedpipe-l1-2-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-normalization-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-privateprofile-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-processenvironment-l1-2-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-processsecurity-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-processthreads-l1-1-2.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-psapi-ansi-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-psapi-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-psapi-obsolete-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-realtime-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-registry-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-registry-l2-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-shlwapi-legacy-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-shlwapi-obsolete-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-shutdown-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-shutdown-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-string-obsolete-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-string-obsolete-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-stringloader-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-stringloader-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-2.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-3.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-threadpool-l1-2-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-threadpool-legacy-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-threadpool-private-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-url-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-version-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-error-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-error-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-registration-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-robuffer-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-string-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-wow64-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-xstate-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-xstate-l2-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-ro-typeresolution-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-base-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-cpwl-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-cryptoapi-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-lsalookup-l2-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-lsalookup-l2-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-provider-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-sddl-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-core-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-core-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-management-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-management-l2-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-private-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-private-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-winsvc-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\ext-ms-win-advapi32-encryptedfile-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-2.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\API-MS-Win-devices-config-L1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-file-l1-2-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-file-l2-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-kernel32-legacy-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-kernel32-legacy-l1-1-2.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-localization-l1-2-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-localization-obsolete-l1-2-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-memory-l1-1-2.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-memory-l1-1-3.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-namedpipe-l1-2-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-privateprofile-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-processthreads-l1-1-2.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-shutdown-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-string-obsolete-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-stringloader-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-sysinfo-l1-2-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-sysinfo-l1-2-2.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-sysinfo-l1-2-3.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-winrt-error-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-xstate-l2-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-security-cpwl-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-security-cryptoapi-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-security-lsalookup-l2-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-service-private-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-2.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-kernel32-legacy-l1-1-2.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-memory-l1-1-3.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-namedpipe-l1-2-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-string-obsolete-l1-1-1.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-sysinfo-l1-2-2.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-sysinfo-l1-2-3.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-security-cpwl-l1-1-0.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win\lib\netcoreapp2.0\System.Management.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.Properties.Resources.resources
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.csproj.GenerateResource.cache
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.GeneratedMSBuildEditorConfig.editorconfig
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.AssemblyInfoInputs.cache
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.AssemblyInfo.cs
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.csproj.CoreCompileInputs.cache
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\ref\NetWork.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.genruntimeconfig.cache
-D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\AudioControlNative.dll
-D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\NetWork.exe
-D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\NetWork.deps.json
-D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\NetWork.runtimeconfig.json
-D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\NetWork.runtimeconfig.dev.json
-D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\NetWork.dll
-D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\ref\NetWork.dll
-D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\NetWork.xml
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.csproj.AssemblyReference.cache
diff --git a/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.GenerateResource.cache b/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.GenerateResource.cache
deleted file mode 100644
index b9ff7fa..0000000
Binary files a/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.GenerateResource.cache and /dev/null differ
diff --git a/NetWork/obj/Release/net5.0-windows7.0/NetWork.genruntimeconfig.cache b/NetWork/obj/Release/net5.0-windows7.0/NetWork.genruntimeconfig.cache
deleted file mode 100644
index b0a2003..0000000
--- a/NetWork/obj/Release/net5.0-windows7.0/NetWork.genruntimeconfig.cache
+++ /dev/null
@@ -1 +0,0 @@
-a4e49e640d8d9c4d337fba5225544a723df7e711
diff --git a/NetWork/obj/Release/net5.0-windows7.0/NetWork.pdb b/NetWork/obj/Release/net5.0-windows7.0/NetWork.pdb
deleted file mode 100644
index 65963bc..0000000
Binary files a/NetWork/obj/Release/net5.0-windows7.0/NetWork.pdb and /dev/null differ
diff --git a/NetWork/obj/Release/net5.0-windows7.0/apphost.exe b/NetWork/obj/Release/net5.0-windows7.0/apphost.exe
deleted file mode 100644
index d04c032..0000000
Binary files a/NetWork/obj/Release/net5.0-windows7.0/apphost.exe and /dev/null differ
diff --git a/NetWork/obj/Release/net5.0-windows7.0/win-x64/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/NetWork/obj/Release/net5.0-windows7.0/win-x64/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
deleted file mode 100644
index 2f7e5ec..0000000
--- a/NetWork/obj/Release/net5.0-windows7.0/win-x64/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
diff --git a/NetWork/obj/Release/net5.0-windows7.0/win-x64/Link.semaphore b/NetWork/obj/Release/net5.0-windows7.0/win-x64/Link.semaphore
deleted file mode 100644
index e69de29..0000000
diff --git a/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.AssemblyInfo.cs b/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.AssemblyInfo.cs
deleted file mode 100644
index e9aa84b..0000000
--- a/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.AssemblyInfo.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// 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/obj/Release/net5.0-windows7.0/win-x64/NetWork.AssemblyInfoInputs.cache b/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.AssemblyInfoInputs.cache
deleted file mode 100644
index 78277e1..0000000
--- a/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-47b92528c37c5e1c33a2258e82955d216ab71c7d
diff --git a/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.GeneratedMSBuildEditorConfig.editorconfig b/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.GeneratedMSBuildEditorConfig.editorconfig
deleted file mode 100644
index 7d13a00..0000000
--- a/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.GeneratedMSBuildEditorConfig.editorconfig
+++ /dev/null
@@ -1,8 +0,0 @@
-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/obj/Release/net5.0-windows7.0/win-x64/NetWork.Properties.Resources.resources b/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.Properties.Resources.resources
deleted file mode 100644
index 9e18731..0000000
Binary files a/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.Properties.Resources.resources and /dev/null differ
diff --git a/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.assets.cache b/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.assets.cache
deleted file mode 100644
index 788c6da..0000000
Binary files a/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.assets.cache and /dev/null differ
diff --git a/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.csproj.CopyComplete b/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.csproj.CopyComplete
deleted file mode 100644
index e69de29..0000000
diff --git a/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.csproj.CoreCompileInputs.cache b/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.csproj.CoreCompileInputs.cache
deleted file mode 100644
index cc6cb8b..0000000
--- a/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-363145e996162af7b3762734ad5c82c53d042074
diff --git a/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.csproj.FileListAbsolute.txt b/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.csproj.FileListAbsolute.txt
deleted file mode 100644
index c554acd..0000000
--- a/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,541 +0,0 @@
-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
-D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\win-x64\AudioControlNative.dll
-D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\win-x64\NetWork.exe
-D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\win-x64\NetWork.deps.json
-D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\win-x64\NetWork.runtimeconfig.json
-D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\win-x64\NetWork.runtimeconfig.dev.json
-D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\win-x64\NetWork.dll
-D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\win-x64\ref\NetWork.dll
-D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\win-x64\NetWork.xml
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.Properties.Resources.resources
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.csproj.GenerateResource.cache
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.GeneratedMSBuildEditorConfig.editorconfig
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.AssemblyInfoInputs.cache
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.AssemblyInfo.cs
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.csproj.CoreCompileInputs.cache
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.csproj.CopyComplete
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\ref\NetWork.dll
-D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.genruntimeconfig.cache
diff --git a/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.csproj.GenerateResource.cache b/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.csproj.GenerateResource.cache
deleted file mode 100644
index f5d8e5d..0000000
Binary files a/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.csproj.GenerateResource.cache and /dev/null differ
diff --git a/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.deps.json b/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.deps.json
deleted file mode 100644
index 1b23041..0000000
--- a/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.deps.json
+++ /dev/null
@@ -1,1560 +0,0 @@
-{
- "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",
- "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",
- "NLog": "4.7.10",
- "NLog.Extensions.Logging": "1.7.3",
- "Serilog": "2.10.0",
- "SimpleWifi.netstandard": "2.0.0",
- "System.Management": "5.0.0",
- "VPNConnector": "1.0.0",
- "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "5.0.8",
- "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64": "5.0.8"
- },
- "runtime": {
- "NetWork.dll": {}
- }
- },
- "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/5.0.8": {
- "runtime": {
- "Microsoft.CSharp.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "Microsoft.VisualBasic.Core.dll": {
- "assemblyVersion": "10.0.6.0",
- "fileVersion": "11.0.821.31504"
- },
- "Microsoft.Win32.Primitives.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "Microsoft.Win32.Registry.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.AppContext.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Buffers.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Collections.Concurrent.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Collections.Immutable.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Collections.NonGeneric.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Collections.Specialized.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Collections.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.ComponentModel.Annotations.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.ComponentModel.DataAnnotations.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.ComponentModel.EventBasedAsync.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.ComponentModel.Primitives.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.ComponentModel.TypeConverter.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.ComponentModel.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Configuration.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Console.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Core.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Data.Common.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Data.DataSetExtensions.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Data.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Diagnostics.Contracts.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Diagnostics.Debug.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Diagnostics.DiagnosticSource.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Diagnostics.FileVersionInfo.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Diagnostics.Process.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Diagnostics.StackTrace.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Diagnostics.TextWriterTraceListener.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Diagnostics.Tools.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Diagnostics.TraceSource.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Diagnostics.Tracing.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Drawing.Primitives.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Dynamic.Runtime.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Formats.Asn1.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Globalization.Calendars.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Globalization.Extensions.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Globalization.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.IO.Compression.Brotli.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.IO.Compression.FileSystem.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.IO.Compression.ZipFile.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.IO.Compression.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.IO.FileSystem.AccessControl.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.IO.FileSystem.DriveInfo.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.IO.FileSystem.Primitives.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.IO.FileSystem.Watcher.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.IO.FileSystem.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.IO.IsolatedStorage.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.IO.MemoryMappedFiles.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.IO.Pipes.AccessControl.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.IO.Pipes.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.IO.UnmanagedMemoryStream.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.IO.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Linq.Expressions.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Linq.Parallel.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Linq.Queryable.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Linq.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Memory.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Net.Http.Json.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Net.Http.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Net.HttpListener.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Net.Mail.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Net.NameResolution.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Net.NetworkInformation.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Net.Ping.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Net.Primitives.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Net.Requests.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Net.Security.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Net.ServicePoint.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Net.Sockets.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Net.WebClient.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Net.WebHeaderCollection.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Net.WebProxy.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Net.WebSockets.Client.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Net.WebSockets.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Net.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Numerics.Vectors.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Numerics.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.ObjectModel.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Private.DataContractSerialization.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Private.Uri.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Private.Xml.Linq.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Private.Xml.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Reflection.DispatchProxy.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Reflection.Emit.ILGeneration.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Reflection.Emit.Lightweight.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Reflection.Emit.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Reflection.Extensions.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Reflection.Metadata.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Reflection.Primitives.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Reflection.TypeExtensions.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Reflection.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Resources.Reader.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Resources.ResourceManager.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Resources.Writer.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Runtime.CompilerServices.Unsafe.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Runtime.CompilerServices.VisualC.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Runtime.Extensions.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Runtime.Handles.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Runtime.InteropServices.RuntimeInformation.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Runtime.InteropServices.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Runtime.Intrinsics.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Runtime.Loader.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Runtime.Numerics.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Runtime.Serialization.Formatters.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Runtime.Serialization.Json.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Runtime.Serialization.Primitives.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Runtime.Serialization.Xml.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Runtime.Serialization.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Runtime.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Security.AccessControl.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Security.Claims.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Security.Cryptography.Algorithms.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Security.Cryptography.Cng.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Security.Cryptography.Csp.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Security.Cryptography.Encoding.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Security.Cryptography.OpenSsl.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Security.Cryptography.Primitives.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Security.Cryptography.X509Certificates.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Security.Principal.Windows.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Security.Principal.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Security.SecureString.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Security.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.ServiceModel.Web.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.ServiceProcess.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Text.Encoding.CodePages.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Text.Encoding.Extensions.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Text.Encoding.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Text.Encodings.Web.dll": {
- "assemblyVersion": "5.0.0.1",
- "fileVersion": "5.0.821.31504"
- },
- "System.Text.Json.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Text.RegularExpressions.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Threading.Channels.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Threading.Overlapped.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Threading.Tasks.Dataflow.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Threading.Tasks.Extensions.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Threading.Tasks.Parallel.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Threading.Tasks.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Threading.Thread.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Threading.ThreadPool.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Threading.Timer.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Threading.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Transactions.Local.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Transactions.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.ValueTuple.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Web.HttpUtility.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Web.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Windows.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Xml.Linq.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Xml.ReaderWriter.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Xml.Serialization.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Xml.XDocument.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Xml.XPath.XDocument.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Xml.XPath.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Xml.XmlDocument.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Xml.XmlSerializer.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Xml.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "mscorlib.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "netstandard.dll": {
- "assemblyVersion": "2.1.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Private.CoreLib.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.821.31504"
- }
- },
- "native": {
- "clrcompression.dll": {
- "fileVersion": "42.42.42.42424"
- },
- "clrjit.dll": {
- "fileVersion": "5.0.821.31504"
- },
- "coreclr.dll": {
- "fileVersion": "5.0.821.31504"
- },
- "mscordaccore.dll": {
- "fileVersion": "5.0.821.31504"
- }
- }
- },
- "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64/5.0.8": {
- "runtime": {
- "Accessibility.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "DirectWriteForwarder.dll": {
- "assemblyVersion": "5.0.8.0",
- "fileVersion": "5.0.821.31506"
- },
- "Microsoft.VisualBasic.Forms.dll": {
- "assemblyVersion": "5.0.8.0",
- "fileVersion": "5.0.821.31504"
- },
- "Microsoft.VisualBasic.dll": {
- "assemblyVersion": "10.1.0.0",
- "fileVersion": "5.0.821.31504"
- },
- "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.8.0",
- "fileVersion": "5.0.821.31506"
- },
- "PresentationFramework-SystemCore.dll": {
- "assemblyVersion": "5.0.8.0",
- "fileVersion": "5.0.821.31506"
- },
- "PresentationFramework-SystemData.dll": {
- "assemblyVersion": "5.0.8.0",
- "fileVersion": "5.0.821.31506"
- },
- "PresentationFramework-SystemDrawing.dll": {
- "assemblyVersion": "5.0.8.0",
- "fileVersion": "5.0.821.31506"
- },
- "PresentationFramework-SystemXml.dll": {
- "assemblyVersion": "5.0.8.0",
- "fileVersion": "5.0.821.31506"
- },
- "PresentationFramework-SystemXmlLinq.dll": {
- "assemblyVersion": "5.0.8.0",
- "fileVersion": "5.0.821.31506"
- },
- "PresentationFramework.Aero.dll": {
- "assemblyVersion": "5.0.8.0",
- "fileVersion": "5.0.821.31506"
- },
- "PresentationFramework.Aero2.dll": {
- "assemblyVersion": "5.0.8.0",
- "fileVersion": "5.0.821.31506"
- },
- "PresentationFramework.AeroLite.dll": {
- "assemblyVersion": "5.0.8.0",
- "fileVersion": "5.0.821.31506"
- },
- "PresentationFramework.Classic.dll": {
- "assemblyVersion": "5.0.8.0",
- "fileVersion": "5.0.821.31506"
- },
- "PresentationFramework.Luna.dll": {
- "assemblyVersion": "5.0.8.0",
- "fileVersion": "5.0.821.31506"
- },
- "PresentationFramework.Royale.dll": {
- "assemblyVersion": "5.0.8.0",
- "fileVersion": "5.0.821.31506"
- },
- "PresentationFramework.dll": {
- "assemblyVersion": "5.0.8.0",
- "fileVersion": "5.0.821.31506"
- },
- "PresentationUI.dll": {
- "assemblyVersion": "5.0.8.0",
- "fileVersion": "5.0.821.31506"
- },
- "ReachFramework.dll": {
- "assemblyVersion": "5.0.8.0",
- "fileVersion": "5.0.821.31506"
- },
- "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.8.0",
- "fileVersion": "5.0.821.31504"
- },
- "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.8.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Drawing.dll": {
- "assemblyVersion": "5.0.8.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.IO.Packaging.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.20.51904"
- },
- "System.Printing.dll": {
- "assemblyVersion": "5.0.8.0",
- "fileVersion": "5.0.821.31506"
- },
- "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.8.0",
- "fileVersion": "5.0.821.31506"
- },
- "System.Windows.Extensions.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.20.51904"
- },
- "System.Windows.Forms.Design.Editors.dll": {
- "assemblyVersion": "5.0.8.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Windows.Forms.Design.dll": {
- "assemblyVersion": "5.0.8.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Windows.Forms.Primitives.dll": {
- "assemblyVersion": "5.0.8.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Windows.Forms.dll": {
- "assemblyVersion": "5.0.8.0",
- "fileVersion": "5.0.821.31504"
- },
- "System.Windows.Input.Manipulations.dll": {
- "assemblyVersion": "5.0.8.0",
- "fileVersion": "5.0.821.31506"
- },
- "System.Windows.Presentation.dll": {
- "assemblyVersion": "5.0.8.0",
- "fileVersion": "5.0.821.31506"
- },
- "System.Xaml.dll": {
- "assemblyVersion": "5.0.8.0",
- "fileVersion": "5.0.821.31506"
- },
- "UIAutomationClient.dll": {
- "assemblyVersion": "5.0.8.0",
- "fileVersion": "5.0.821.31506"
- },
- "UIAutomationClientSideProviders.dll": {
- "assemblyVersion": "5.0.8.0",
- "fileVersion": "5.0.821.31506"
- },
- "UIAutomationProvider.dll": {
- "assemblyVersion": "5.0.8.0",
- "fileVersion": "5.0.821.31506"
- },
- "UIAutomationTypes.dll": {
- "assemblyVersion": "5.0.8.0",
- "fileVersion": "5.0.821.31506"
- },
- "WindowsBase.dll": {
- "assemblyVersion": "5.0.8.0",
- "fileVersion": "5.0.821.31506"
- },
- "WindowsFormsIntegration.dll": {
- "assemblyVersion": "5.0.8.0",
- "fileVersion": "5.0.821.31506"
- }
- },
- "native": {
- "D3DCompiler_47_cor3.dll": {
- "fileVersion": "10.0.19041.685"
- },
- "PenImc_cor3.dll": {
- "fileVersion": "5.0.821.31506"
- },
- "PresentationNative_cor3.dll": {
- "fileVersion": "5.0.821.31102"
- },
- "vcruntime140_cor3.dll": {
- "fileVersion": "14.29.30035.0"
- },
- "wpfgfx_cor3.dll": {
- "fileVersion": "5.0.821.31506"
- }
- }
- },
- "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.Extensions.Configuration.Abstractions/5.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "5.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.20.51904"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection/5.0.0": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
- },
- "runtime": {
- "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.20.51904"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.20.51904"
- }
- }
- },
- "Microsoft.Extensions.Logging/5.0.0": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "5.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
- "Microsoft.Extensions.Options": "5.0.0"
- },
- "runtime": {
- "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.20.51904"
- }
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.20.51904"
- }
- }
- },
- "Microsoft.Extensions.Options/5.0.0": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
- "Microsoft.Extensions.Primitives": "5.0.0"
- },
- "runtime": {
- "lib/net5.0/Microsoft.Extensions.Options.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.20.51904"
- }
- }
- },
- "Microsoft.Extensions.Primitives/5.0.0": {
- "runtime": {
- "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.20.51904"
- }
- }
- },
- "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"
- }
- },
- "NLog/4.7.10": {
- "runtime": {
- "lib/netstandard2.0/NLog.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.7.10.13013"
- }
- }
- },
- "NLog.Extensions.Logging/1.7.3": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
- "Microsoft.Extensions.Logging": "5.0.0",
- "NLog": "4.7.10"
- },
- "runtime": {
- "lib/net5.0/NLog.Extensions.Logging.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "1.7.3.1580"
- }
- }
- },
- "Serilog/2.10.0": {
- "runtime": {
- "lib/netstandard2.1/Serilog.dll": {
- "assemblyVersion": "2.0.0.0",
- "fileVersion": "2.10.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": {},
- "VPNConnector/1.0.0": {
- "dependencies": {
- "DotRas.for.Win8": "1.3.0"
- },
- "runtime": {
- "lib/net452/VPNConnector.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- }
- }
- },
- "libraries": {
- "NetWork/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/5.0.8": {
- "type": "runtimepack",
- "serviceable": false,
- "sha512": ""
- },
- "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64/5.0.8": {
- "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.Extensions.Configuration.Abstractions/5.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
- "path": "microsoft.extensions.configuration.abstractions/5.0.0",
- "hashPath": "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection/5.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
- "path": "microsoft.extensions.dependencyinjection/5.0.0",
- "hashPath": "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
- "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
- "hashPath": "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging/5.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
- "path": "microsoft.extensions.logging/5.0.0",
- "hashPath": "microsoft.extensions.logging.5.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
- "path": "microsoft.extensions.logging.abstractions/5.0.0",
- "hashPath": "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Options/5.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
- "path": "microsoft.extensions.options/5.0.0",
- "hashPath": "microsoft.extensions.options.5.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Primitives/5.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
- "path": "microsoft.extensions.primitives/5.0.0",
- "hashPath": "microsoft.extensions.primitives.5.0.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"
- },
- "NLog/4.7.10": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rcegW7kYOCjl7wX0SzsqpPBqnJ51JKi1WkYb6QBVX0Wc5IgH19Pv4t/co+T0s06OS0Ne44xgkY/mHg0PdrmJow==",
- "path": "nlog/4.7.10",
- "hashPath": "nlog.4.7.10.nupkg.sha512"
- },
- "NLog.Extensions.Logging/1.7.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7RvUvGd9Ad37pNedjPHbCUroscLGuChLBo0OBveGp92vIpEHLZm/in+Ydd+c9qpv1XMQQIx7yZv1F5qyy/AxHQ==",
- "path": "nlog.extensions.logging/1.7.3",
- "hashPath": "nlog.extensions.logging.1.7.3.nupkg.sha512"
- },
- "Serilog/2.10.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA==",
- "path": "serilog/2.10.0",
- "hashPath": "serilog.2.10.0.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"
- },
- "VPNConnector/1.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-JI8OnCYcrkZ4tB9YTfTBDizCky40A+Xoti+/t/IDuYG9wXyI1/TfkEDA7v17ptybsNKSvtLyyT+HTWW/Bco80Q==",
- "path": "vpnconnector/1.0.0",
- "hashPath": "vpnconnector.1.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/obj/Release/net5.0-windows7.0/win-x64/NetWork.genruntimeconfig.cache b/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.genruntimeconfig.cache
deleted file mode 100644
index 416bd2d..0000000
--- a/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.genruntimeconfig.cache
+++ /dev/null
@@ -1 +0,0 @@
-8cbba98b5dd499cff41205bc84d4f2f9b4b8a28b
diff --git a/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.pdb b/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.pdb
deleted file mode 100644
index c1e081a..0000000
Binary files a/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.pdb and /dev/null differ
diff --git a/NetWork/obj/Release/net5.0-windows7.0/win-x64/PublishOutputs.14905e3326.txt b/NetWork/obj/Release/net5.0-windows7.0/win-x64/PublishOutputs.14905e3326.txt
deleted file mode 100644
index 8ca40c6..0000000
--- a/NetWork/obj/Release/net5.0-windows7.0/win-x64/PublishOutputs.14905e3326.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-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.xml
-D:\Neutral Folder\NetWorkAutomation\NetWork.exe
diff --git a/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/Microsoft.ApplicationInsights.pdb b/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/Microsoft.ApplicationInsights.pdb
deleted file mode 100644
index 27a0b71..0000000
Binary files a/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/Microsoft.ApplicationInsights.pdb and /dev/null differ
diff --git a/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/Microsoft.CodeAnalysis.CSharp.pdb b/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/Microsoft.CodeAnalysis.CSharp.pdb
deleted file mode 100644
index ebdb362..0000000
Binary files a/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/Microsoft.CodeAnalysis.CSharp.pdb and /dev/null differ
diff --git a/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/Microsoft.CodeAnalysis.pdb b/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/Microsoft.CodeAnalysis.pdb
deleted file mode 100644
index 5df7cd0..0000000
Binary files a/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/Microsoft.CodeAnalysis.pdb and /dev/null differ
diff --git a/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/NetWork.pdb b/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/NetWork.pdb
deleted file mode 100644
index 119dfda..0000000
Binary files a/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/NetWork.pdb and /dev/null differ
diff --git a/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.Private.ServiceModel.pdb b/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.Private.ServiceModel.pdb
deleted file mode 100644
index f45efe9..0000000
Binary files a/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.Private.ServiceModel.pdb and /dev/null differ
diff --git a/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.ServiceModel.Duplex.pdb b/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.ServiceModel.Duplex.pdb
deleted file mode 100644
index 990c347..0000000
Binary files a/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.ServiceModel.Duplex.pdb and /dev/null differ
diff --git a/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.ServiceModel.Http.pdb b/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.ServiceModel.Http.pdb
deleted file mode 100644
index c9ff9a3..0000000
Binary files a/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.ServiceModel.Http.pdb and /dev/null differ
diff --git a/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.ServiceModel.NetTcp.pdb b/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.ServiceModel.NetTcp.pdb
deleted file mode 100644
index afeff1a..0000000
Binary files a/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.ServiceModel.NetTcp.pdb and /dev/null differ
diff --git a/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.ServiceModel.Primitives.pdb b/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.ServiceModel.Primitives.pdb
deleted file mode 100644
index 1b8da3f..0000000
Binary files a/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.ServiceModel.Primitives.pdb and /dev/null differ
diff --git a/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.ServiceModel.Security.pdb b/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.ServiceModel.Security.pdb
deleted file mode 100644
index 5beb40e..0000000
Binary files a/NetWork/obj/Release/net5.0-windows7.0/win-x64/linked/System.ServiceModel.Security.pdb and /dev/null differ
diff --git a/NetWork/obj/Release/net5.0-windows7.0/win-x64/singlefilehost.exe b/NetWork/obj/Release/net5.0-windows7.0/win-x64/singlefilehost.exe
deleted file mode 100644
index d982382..0000000
Binary files a/NetWork/obj/Release/net5.0-windows7.0/win-x64/singlefilehost.exe and /dev/null differ
diff --git a/NetWork/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/NetWork/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
deleted file mode 100644
index 2f7e5ec..0000000
--- a/NetWork/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
diff --git a/NetWork/obj/Release/net5.0/NetWork.AssemblyInfo.cs b/NetWork/obj/Release/net5.0/NetWork.AssemblyInfo.cs
deleted file mode 100644
index 771d5ab..0000000
--- a/NetWork/obj/Release/net5.0/NetWork.AssemblyInfo.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// 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")]
-
-// Generated by the MSBuild WriteCodeFragment class.
-
diff --git a/NetWork/obj/Release/net5.0/NetWork.AssemblyInfoInputs.cache b/NetWork/obj/Release/net5.0/NetWork.AssemblyInfoInputs.cache
deleted file mode 100644
index 4276ba2..0000000
--- a/NetWork/obj/Release/net5.0/NetWork.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-5378575ff141246628e77d9cc16639875f5e3310
diff --git a/NetWork/obj/Release/net5.0/NetWork.GeneratedMSBuildEditorConfig.editorconfig b/NetWork/obj/Release/net5.0/NetWork.GeneratedMSBuildEditorConfig.editorconfig
deleted file mode 100644
index d7e2983..0000000
--- a/NetWork/obj/Release/net5.0/NetWork.GeneratedMSBuildEditorConfig.editorconfig
+++ /dev/null
@@ -1,8 +0,0 @@
-is_global = true
-build_property.TargetFramework = net5.0
-build_property.TargetPlatformMinVersion =
-build_property.UsingMicrosoftNETSdkWeb =
-build_property.ProjectTypeGuids =
-build_property.PublishSingleFile =
-build_property.IncludeAllContentForSelfExtract =
-build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows
diff --git a/NetWork/obj/Release/net5.0/NetWork.assets.cache b/NetWork/obj/Release/net5.0/NetWork.assets.cache
deleted file mode 100644
index d43439c..0000000
Binary files a/NetWork/obj/Release/net5.0/NetWork.assets.cache and /dev/null differ
diff --git a/NetWork/obj/Release/net5.0/NetWork.csproj.AssemblyReference.cache b/NetWork/obj/Release/net5.0/NetWork.csproj.AssemblyReference.cache
deleted file mode 100644
index 1977e34..0000000
Binary files a/NetWork/obj/Release/net5.0/NetWork.csproj.AssemblyReference.cache and /dev/null differ
diff --git a/NetWork/obj/Release/net5.0/NetWork.csproj.CopyComplete b/NetWork/obj/Release/net5.0/NetWork.csproj.CopyComplete
deleted file mode 100644
index e69de29..0000000
diff --git a/NetWork/obj/Release/net5.0/NetWork.csproj.CoreCompileInputs.cache b/NetWork/obj/Release/net5.0/NetWork.csproj.CoreCompileInputs.cache
deleted file mode 100644
index f3e7528..0000000
--- a/NetWork/obj/Release/net5.0/NetWork.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-679db5d6388fd2c5648a326c7140450a0e9e250e
diff --git a/NetWork/obj/Release/net5.0/NetWork.csproj.FileListAbsolute.txt b/NetWork/obj/Release/net5.0/NetWork.csproj.FileListAbsolute.txt
deleted file mode 100644
index 1044536..0000000
--- a/NetWork/obj/Release/net5.0/NetWork.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,18 +0,0 @@
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\NetWork.exe
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\NetWork.deps.json
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\NetWork.runtimeconfig.json
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\NetWork.runtimeconfig.dev.json
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\NetWork.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\ref\NetWork.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\NetWork.pdb
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\Microsoft.Extensions.FileSystemGlobbing.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\NetWork.csproj.AssemblyReference.cache
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\NetWork.GeneratedMSBuildEditorConfig.editorconfig
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\NetWork.AssemblyInfoInputs.cache
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\NetWork.AssemblyInfo.cs
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\NetWork.csproj.CoreCompileInputs.cache
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\NetWork.csproj.CopyComplete
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\NetWork.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\ref\NetWork.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\NetWork.pdb
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\NetWork.genruntimeconfig.cache
diff --git a/NetWork/obj/Release/net5.0/NetWork.genruntimeconfig.cache b/NetWork/obj/Release/net5.0/NetWork.genruntimeconfig.cache
deleted file mode 100644
index 9e568eb..0000000
--- a/NetWork/obj/Release/net5.0/NetWork.genruntimeconfig.cache
+++ /dev/null
@@ -1 +0,0 @@
-0623b80004f3e5b7c7573d42f3b5cc8e40910fda
diff --git a/NetWork/obj/Release/net5.0/NetWork.pdb b/NetWork/obj/Release/net5.0/NetWork.pdb
deleted file mode 100644
index e475701..0000000
Binary files a/NetWork/obj/Release/net5.0/NetWork.pdb and /dev/null differ
diff --git a/NetWork/obj/Release/net5.0/PublishOutputs.508def7f73.txt b/NetWork/obj/Release/net5.0/PublishOutputs.508def7f73.txt
deleted file mode 100644
index 074c656..0000000
--- a/NetWork/obj/Release/net5.0/PublishOutputs.508def7f73.txt
+++ /dev/null
@@ -1,6 +0,0 @@
-D:\Neutral Folder\NetWork.exe
-D:\Neutral Folder\NetWork.dll
-D:\Neutral Folder\NetWork.deps.json
-D:\Neutral Folder\NetWork.runtimeconfig.json
-D:\Neutral Folder\NetWork.pdb
-D:\Neutral Folder\Microsoft.Extensions.FileSystemGlobbing.dll
diff --git a/NetWork/obj/Release/net5.0/apphost.exe b/NetWork/obj/Release/net5.0/apphost.exe
deleted file mode 100644
index 07756c9..0000000
Binary files a/NetWork/obj/Release/net5.0/apphost.exe and /dev/null differ
diff --git a/NetWork/obj/Release/net5.0/win-x64/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/NetWork/obj/Release/net5.0/win-x64/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
deleted file mode 100644
index 2f7e5ec..0000000
--- a/NetWork/obj/Release/net5.0/win-x64/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
diff --git a/NetWork/obj/Release/net5.0/win-x64/Link.semaphore b/NetWork/obj/Release/net5.0/win-x64/Link.semaphore
deleted file mode 100644
index e69de29..0000000
diff --git a/NetWork/obj/Release/net5.0/win-x64/NetWork.AssemblyInfo.cs b/NetWork/obj/Release/net5.0/win-x64/NetWork.AssemblyInfo.cs
deleted file mode 100644
index 771d5ab..0000000
--- a/NetWork/obj/Release/net5.0/win-x64/NetWork.AssemblyInfo.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// 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")]
-
-// Generated by the MSBuild WriteCodeFragment class.
-
diff --git a/NetWork/obj/Release/net5.0/win-x64/NetWork.AssemblyInfoInputs.cache b/NetWork/obj/Release/net5.0/win-x64/NetWork.AssemblyInfoInputs.cache
deleted file mode 100644
index 4276ba2..0000000
--- a/NetWork/obj/Release/net5.0/win-x64/NetWork.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-5378575ff141246628e77d9cc16639875f5e3310
diff --git a/NetWork/obj/Release/net5.0/win-x64/NetWork.GeneratedMSBuildEditorConfig.editorconfig b/NetWork/obj/Release/net5.0/win-x64/NetWork.GeneratedMSBuildEditorConfig.editorconfig
deleted file mode 100644
index b5f0cd7..0000000
--- a/NetWork/obj/Release/net5.0/win-x64/NetWork.GeneratedMSBuildEditorConfig.editorconfig
+++ /dev/null
@@ -1,8 +0,0 @@
-is_global = true
-build_property.TargetFramework = net5.0
-build_property.TargetPlatformMinVersion =
-build_property.UsingMicrosoftNETSdkWeb =
-build_property.ProjectTypeGuids =
-build_property.PublishSingleFile = True
-build_property.IncludeAllContentForSelfExtract =
-build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows
diff --git a/NetWork/obj/Release/net5.0/win-x64/NetWork.assets.cache b/NetWork/obj/Release/net5.0/win-x64/NetWork.assets.cache
deleted file mode 100644
index 1dee133..0000000
Binary files a/NetWork/obj/Release/net5.0/win-x64/NetWork.assets.cache and /dev/null differ
diff --git a/NetWork/obj/Release/net5.0/win-x64/NetWork.csproj.CopyComplete b/NetWork/obj/Release/net5.0/win-x64/NetWork.csproj.CopyComplete
deleted file mode 100644
index e69de29..0000000
diff --git a/NetWork/obj/Release/net5.0/win-x64/NetWork.csproj.CoreCompileInputs.cache b/NetWork/obj/Release/net5.0/win-x64/NetWork.csproj.CoreCompileInputs.cache
deleted file mode 100644
index 652d13c..0000000
--- a/NetWork/obj/Release/net5.0/win-x64/NetWork.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-a3e113b4af9a4db0cffb0b07200f1b03670dc88d
diff --git a/NetWork/obj/Release/net5.0/win-x64/NetWork.csproj.FileListAbsolute.txt b/NetWork/obj/Release/net5.0/win-x64/NetWork.csproj.FileListAbsolute.txt
deleted file mode 100644
index a7f5360..0000000
--- a/NetWork/obj/Release/net5.0/win-x64/NetWork.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,236 +0,0 @@
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\NetWork.exe
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\NetWork.deps.json
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\NetWork.runtimeconfig.json
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\NetWork.runtimeconfig.dev.json
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\NetWork.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\ref\NetWork.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\NetWork.pdb
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\Microsoft.Extensions.FileSystemGlobbing.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\Microsoft.CSharp.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\Microsoft.VisualBasic.Core.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\Microsoft.VisualBasic.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\Microsoft.Win32.Primitives.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\Microsoft.Win32.Registry.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.AppContext.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Buffers.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Collections.Concurrent.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Collections.Immutable.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Collections.NonGeneric.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Collections.Specialized.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Collections.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.ComponentModel.Annotations.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.ComponentModel.DataAnnotations.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.ComponentModel.EventBasedAsync.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.ComponentModel.Primitives.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.ComponentModel.TypeConverter.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.ComponentModel.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Configuration.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Console.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Core.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Data.Common.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Data.DataSetExtensions.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Data.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Diagnostics.Contracts.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Diagnostics.Debug.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Diagnostics.DiagnosticSource.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Diagnostics.FileVersionInfo.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Diagnostics.Process.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Diagnostics.StackTrace.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Diagnostics.TextWriterTraceListener.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Diagnostics.Tools.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Diagnostics.TraceSource.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Diagnostics.Tracing.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Drawing.Primitives.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Drawing.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Dynamic.Runtime.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Formats.Asn1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Globalization.Calendars.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Globalization.Extensions.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Globalization.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.IO.Compression.Brotli.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.IO.Compression.FileSystem.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.IO.Compression.ZipFile.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.IO.Compression.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.IO.FileSystem.AccessControl.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.IO.FileSystem.DriveInfo.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.IO.FileSystem.Primitives.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.IO.FileSystem.Watcher.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.IO.FileSystem.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.IO.IsolatedStorage.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.IO.MemoryMappedFiles.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.IO.Pipes.AccessControl.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.IO.Pipes.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.IO.UnmanagedMemoryStream.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.IO.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Linq.Expressions.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Linq.Parallel.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Linq.Queryable.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Linq.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Memory.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.Http.Json.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.Http.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.HttpListener.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.Mail.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.NameResolution.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.NetworkInformation.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.Ping.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.Primitives.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.Requests.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.Security.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.ServicePoint.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.Sockets.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.WebClient.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.WebHeaderCollection.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.WebProxy.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.WebSockets.Client.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.WebSockets.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Numerics.Vectors.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Numerics.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.ObjectModel.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Private.DataContractSerialization.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Private.Uri.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Private.Xml.Linq.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Private.Xml.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Reflection.DispatchProxy.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Reflection.Emit.ILGeneration.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Reflection.Emit.Lightweight.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Reflection.Emit.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Reflection.Extensions.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Reflection.Metadata.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Reflection.Primitives.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Reflection.TypeExtensions.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Reflection.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Resources.Reader.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Resources.ResourceManager.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Resources.Writer.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Runtime.CompilerServices.Unsafe.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Runtime.CompilerServices.VisualC.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Runtime.Extensions.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Runtime.Handles.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Runtime.InteropServices.RuntimeInformation.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Runtime.InteropServices.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Runtime.Intrinsics.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Runtime.Loader.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Runtime.Numerics.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Runtime.Serialization.Formatters.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Runtime.Serialization.Json.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Runtime.Serialization.Primitives.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Runtime.Serialization.Xml.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Runtime.Serialization.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Runtime.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Security.AccessControl.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Security.Claims.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Security.Cryptography.Algorithms.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Security.Cryptography.Cng.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Security.Cryptography.Csp.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Security.Cryptography.Encoding.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Security.Cryptography.OpenSsl.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Security.Cryptography.Primitives.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Security.Cryptography.X509Certificates.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Security.Principal.Windows.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Security.Principal.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Security.SecureString.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Security.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.ServiceModel.Web.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.ServiceProcess.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Text.Encoding.CodePages.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Text.Encoding.Extensions.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Text.Encoding.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Text.Encodings.Web.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Text.Json.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Text.RegularExpressions.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Threading.Channels.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Threading.Overlapped.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Threading.Tasks.Dataflow.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Threading.Tasks.Extensions.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Threading.Tasks.Parallel.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Threading.Tasks.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Threading.Thread.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Threading.ThreadPool.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Threading.Timer.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Threading.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Transactions.Local.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Transactions.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.ValueTuple.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Web.HttpUtility.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Web.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Windows.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Xml.Linq.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Xml.ReaderWriter.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Xml.Serialization.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Xml.XDocument.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Xml.XPath.XDocument.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Xml.XPath.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Xml.XmlDocument.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Xml.XmlSerializer.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Xml.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\WindowsBase.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\mscorlib.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\netstandard.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\Microsoft.DiaSymReader.Native.amd64.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Private.CoreLib.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-console-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-console-l1-2-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-datetime-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-debug-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-errorhandling-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-file-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-file-l1-2-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-file-l2-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-handle-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-heap-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-interlocked-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-libraryloader-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-localization-l1-2-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-memory-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-namedpipe-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-processenvironment-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-processthreads-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-processthreads-l1-1-1.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-profile-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-rtlsupport-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-string-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-synch-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-synch-l1-2-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-sysinfo-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-timezone-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-util-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-crt-conio-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-crt-convert-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-crt-environment-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-crt-filesystem-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-crt-heap-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-crt-locale-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-crt-math-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-crt-multibyte-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-crt-private-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-crt-process-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-crt-runtime-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-crt-stdio-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-crt-string-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-crt-time-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-crt-utility-l1-1-0.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\clrcompression.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\clretwrc.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\clrjit.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\coreclr.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\createdump.exe
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\dbgshim.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\hostfxr.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\hostpolicy.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\mscordaccore.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\mscordaccore_amd64_amd64_5.0.721.25508.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\mscordbi.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\mscorrc.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\ucrtbase.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\win-x64\NetWork.GeneratedMSBuildEditorConfig.editorconfig
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\win-x64\NetWork.AssemblyInfoInputs.cache
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\win-x64\NetWork.AssemblyInfo.cs
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\win-x64\NetWork.csproj.CoreCompileInputs.cache
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\win-x64\NetWork.csproj.CopyComplete
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\win-x64\NetWork.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\win-x64\ref\NetWork.dll
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\win-x64\NetWork.pdb
-C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\win-x64\NetWork.genruntimeconfig.cache
diff --git a/NetWork/obj/Release/net5.0/win-x64/NetWork.deps.json b/NetWork/obj/Release/net5.0/win-x64/NetWork.deps.json
deleted file mode 100644
index 49bbab2..0000000
--- a/NetWork/obj/Release/net5.0/win-x64/NetWork.deps.json
+++ /dev/null
@@ -1,269 +0,0 @@
-{
- "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": {
- "Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
- "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "5.0.7"
- },
- "runtime": {
- "NetWork.dll": {}
- }
- },
- "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/5.0.7": {
- "runtime": {
- "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.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.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.IO.Compression.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.MemoryMappedFiles.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.ObjectModel.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.Runtime.CompilerServices.Unsafe.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.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"
- }
- }
- },
- "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.20.51904"
- }
- }
- }
- }
- },
- "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": ""
- },
- "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
- "path": "microsoft.extensions.filesystemglobbing/5.0.0",
- "hashPath": "microsoft.extensions.filesystemglobbing.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/obj/Release/net5.0/win-x64/NetWork.genruntimeconfig.cache b/NetWork/obj/Release/net5.0/win-x64/NetWork.genruntimeconfig.cache
deleted file mode 100644
index 72da847..0000000
--- a/NetWork/obj/Release/net5.0/win-x64/NetWork.genruntimeconfig.cache
+++ /dev/null
@@ -1 +0,0 @@
-37aa9ad611865df71a286fed1e1df3c4e23a21cc
diff --git a/NetWork/obj/Release/net5.0/win-x64/NetWork.pdb b/NetWork/obj/Release/net5.0/win-x64/NetWork.pdb
deleted file mode 100644
index 67b40f3..0000000
Binary files a/NetWork/obj/Release/net5.0/win-x64/NetWork.pdb and /dev/null differ
diff --git a/NetWork/obj/Release/net5.0/win-x64/PublishOutputs.508def7f73.txt b/NetWork/obj/Release/net5.0/win-x64/PublishOutputs.508def7f73.txt
deleted file mode 100644
index 59130d4..0000000
--- a/NetWork/obj/Release/net5.0/win-x64/PublishOutputs.508def7f73.txt
+++ /dev/null
@@ -1,6 +0,0 @@
-D:\Neutral Folder\NetWork.pdb
-D:\Neutral Folder\clrcompression.dll
-D:\Neutral Folder\clrjit.dll
-D:\Neutral Folder\coreclr.dll
-D:\Neutral Folder\mscordaccore.dll
-D:\Neutral Folder\NetWork.exe
diff --git a/NetWork/obj/Release/net5.0/win-x64/linked/NetWork.pdb b/NetWork/obj/Release/net5.0/win-x64/linked/NetWork.pdb
deleted file mode 100644
index 35238a2..0000000
Binary files a/NetWork/obj/Release/net5.0/win-x64/linked/NetWork.pdb and /dev/null differ
diff --git a/NetWork/obj/Release/net5.0/win-x64/singlefilehost.exe b/NetWork/obj/Release/net5.0/win-x64/singlefilehost.exe
deleted file mode 100644
index 513f607..0000000
Binary files a/NetWork/obj/Release/net5.0/win-x64/singlefilehost.exe and /dev/null differ
diff --git a/NetWork/obj/project.assets.json b/NetWork/obj/project.assets.json
deleted file mode 100644
index df6b796..0000000
--- a/NetWork/obj/project.assets.json
+++ /dev/null
@@ -1,2573 +0,0 @@
-{
- "version": 3,
- "targets": {
- "net5.0-windows7.0": {
- "AudioControl.x64/1.0.1": {
- "type": "package",
- "build": {
- "build/AudioControl.x64.targets": {}
- }
- },
- "AutoHotkey.Interop/1.0.0.1": {
- "type": "package",
- "compile": {
- "lib/net45/AutoHotkey.Interop.dll": {}
- },
- "runtime": {
- "lib/net45/AutoHotkey.Interop.dll": {}
- }
- },
- "DotRas.for.Win8/1.3.0": {
- "type": "package",
- "compile": {
- "lib/net40/DotRas.dll": {}
- },
- "runtime": {
- "lib/net40/DotRas.dll": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "5.0.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/5.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
- },
- "compile": {
- "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {}
- },
- "runtime": {
- "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
- }
- },
- "Microsoft.Extensions.Logging/5.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "5.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
- "Microsoft.Extensions.Options": "5.0.0"
- },
- "compile": {
- "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
- },
- "runtime": {
- "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
- }
- },
- "Microsoft.Extensions.Options/5.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
- "Microsoft.Extensions.Primitives": "5.0.0"
- },
- "compile": {
- "lib/net5.0/Microsoft.Extensions.Options.dll": {}
- },
- "runtime": {
- "lib/net5.0/Microsoft.Extensions.Options.dll": {}
- }
- },
- "Microsoft.Extensions.Primitives/5.0.0": {
- "type": "package",
- "compile": {
- "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {}
- },
- "runtime": {
- "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.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": {}
- }
- },
- "Newtonsoft.Json/13.0.1": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {}
- }
- },
- "NLog/4.7.10": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/NLog.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/NLog.dll": {}
- }
- },
- "NLog.Extensions.Logging/1.7.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
- "Microsoft.Extensions.Logging": "5.0.0",
- "NLog": "4.7.10"
- },
- "compile": {
- "lib/net5.0/NLog.Extensions.Logging.dll": {}
- },
- "runtime": {
- "lib/net5.0/NLog.Extensions.Logging.dll": {}
- }
- },
- "Serilog/2.10.0": {
- "type": "package",
- "compile": {
- "lib/netstandard2.1/Serilog.dll": {}
- },
- "runtime": {
- "lib/netstandard2.1/Serilog.dll": {}
- }
- },
- "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.Diagnostics.EventLog/5.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "5.0.0",
- "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.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "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"
- }
- }
- },
- "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"
- }
- }
- },
- "VPNConnector/1.0.0": {
- "type": "package",
- "dependencies": {
- "DotRas.for.Win8": "1.3.0"
- },
- "compile": {
- "lib/net452/VPNConnector.dll": {}
- },
- "runtime": {
- "lib/net452/VPNConnector.dll": {}
- }
- }
- }
- },
- "libraries": {
- "AudioControl.x64/1.0.1": {
- "sha512": "bkuUEZkxVFug599MYBZMdCbGh5AepmcI9jkKY8biDPxblxslbZF6GImpMNnbqRa0qI8i9c0HQiYauAFSuhlD9Q==",
- "type": "package",
- "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"
- ]
- },
- "AutoHotkey.Interop/1.0.0.1": {
- "sha512": "ZeJLYFmNDthkw/xj0kKDiQYaBWNHb5q54CqGd71vZ/jggi0xGKoMUA5pVQmT5k/+ssy3WFDw5NcBlAqSr2gy2g==",
- "type": "package",
- "path": "autohotkey.interop/1.0.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "autohotkey.interop.1.0.0.1.nupkg.sha512",
- "autohotkey.interop.nuspec",
- "docs/README.md",
- "images/icon.png",
- "lib/net45/AutoHotkey.Interop.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.Extensions.Configuration.Abstractions/5.0.0": {
- "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
- "type": "package",
- "path": "microsoft.extensions.configuration.abstractions/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
- "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
- "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
- "microsoft.extensions.configuration.abstractions.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.Extensions.DependencyInjection/5.0.0": {
- "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
- "type": "package",
- "path": "microsoft.extensions.dependencyinjection/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
- "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
- "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
- "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
- "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
- "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
- "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
- "microsoft.extensions.dependencyinjection.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
- "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
- "type": "package",
- "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
- "microsoft.extensions.dependencyinjection.abstractions.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.Extensions.Logging/5.0.0": {
- "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
- "type": "package",
- "path": "microsoft.extensions.logging/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/Microsoft.Extensions.Logging.dll",
- "lib/net461/Microsoft.Extensions.Logging.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
- "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
- "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
- "microsoft.extensions.logging.5.0.0.nupkg.sha512",
- "microsoft.extensions.logging.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
- "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
- "type": "package",
- "path": "microsoft.extensions.logging.abstractions/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
- "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
- "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
- "microsoft.extensions.logging.abstractions.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.Extensions.Options/5.0.0": {
- "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
- "type": "package",
- "path": "microsoft.extensions.options/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/Microsoft.Extensions.Options.dll",
- "lib/net461/Microsoft.Extensions.Options.xml",
- "lib/net5.0/Microsoft.Extensions.Options.dll",
- "lib/net5.0/Microsoft.Extensions.Options.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
- "microsoft.extensions.options.5.0.0.nupkg.sha512",
- "microsoft.extensions.options.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.Extensions.Primitives/5.0.0": {
- "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
- "type": "package",
- "path": "microsoft.extensions.primitives/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/Microsoft.Extensions.Primitives.dll",
- "lib/net461/Microsoft.Extensions.Primitives.xml",
- "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
- "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
- "microsoft.extensions.primitives.5.0.0.nupkg.sha512",
- "microsoft.extensions.primitives.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "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/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"
- ]
- },
- "Newtonsoft.Json/13.0.1": {
- "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
- "type": "package",
- "path": "newtonsoft.json/13.0.1",
- "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",
- "newtonsoft.json.13.0.1.nupkg.sha512",
- "newtonsoft.json.nuspec",
- "packageIcon.png"
- ]
- },
- "NLog/4.7.10": {
- "sha512": "rcegW7kYOCjl7wX0SzsqpPBqnJ51JKi1WkYb6QBVX0Wc5IgH19Pv4t/co+T0s06OS0Ne44xgkY/mHg0PdrmJow==",
- "type": "package",
- "path": "nlog/4.7.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/monoandroid44/NLog.dll",
- "lib/monoandroid44/NLog.xml",
- "lib/net35/NLog.dll",
- "lib/net35/NLog.xml",
- "lib/net40-client/NLog.dll",
- "lib/net40-client/NLog.xml",
- "lib/net45/NLog.dll",
- "lib/net45/NLog.xml",
- "lib/netstandard1.3/NLog.dll",
- "lib/netstandard1.3/NLog.xml",
- "lib/netstandard1.5/NLog.dll",
- "lib/netstandard1.5/NLog.xml",
- "lib/netstandard2.0/NLog.dll",
- "lib/netstandard2.0/NLog.xml",
- "lib/sl4/NLog.dll",
- "lib/sl4/NLog.xml",
- "lib/sl5/NLog.dll",
- "lib/sl5/NLog.xml",
- "lib/wp8/NLog.dll",
- "lib/wp8/NLog.xml",
- "lib/xamarinios10/NLog.dll",
- "lib/xamarinios10/NLog.xml",
- "nlog.4.7.10.nupkg.sha512",
- "nlog.nuspec"
- ]
- },
- "NLog.Extensions.Logging/1.7.3": {
- "sha512": "7RvUvGd9Ad37pNedjPHbCUroscLGuChLBo0OBveGp92vIpEHLZm/in+Ydd+c9qpv1XMQQIx7yZv1F5qyy/AxHQ==",
- "type": "package",
- "path": "nlog.extensions.logging/1.7.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "N.png",
- "lib/net451/NLog.Extensions.Logging.dll",
- "lib/net451/NLog.Extensions.Logging.xml",
- "lib/net461/NLog.Extensions.Logging.dll",
- "lib/net461/NLog.Extensions.Logging.xml",
- "lib/net5.0/NLog.Extensions.Logging.dll",
- "lib/net5.0/NLog.Extensions.Logging.xml",
- "lib/netcoreapp3.0/NLog.Extensions.Logging.dll",
- "lib/netcoreapp3.0/NLog.Extensions.Logging.xml",
- "lib/netstandard1.3/NLog.Extensions.Logging.dll",
- "lib/netstandard1.3/NLog.Extensions.Logging.xml",
- "lib/netstandard1.5/NLog.Extensions.Logging.dll",
- "lib/netstandard1.5/NLog.Extensions.Logging.xml",
- "lib/netstandard2.0/NLog.Extensions.Logging.dll",
- "lib/netstandard2.0/NLog.Extensions.Logging.xml",
- "nlog.extensions.logging.1.7.3.nupkg.sha512",
- "nlog.extensions.logging.nuspec"
- ]
- },
- "Serilog/2.10.0": {
- "sha512": "+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA==",
- "type": "package",
- "path": "serilog/2.10.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "icon.png",
- "lib/net45/Serilog.dll",
- "lib/net45/Serilog.xml",
- "lib/net46/Serilog.dll",
- "lib/net46/Serilog.xml",
- "lib/netstandard1.0/Serilog.dll",
- "lib/netstandard1.0/Serilog.xml",
- "lib/netstandard1.3/Serilog.dll",
- "lib/netstandard1.3/Serilog.xml",
- "lib/netstandard2.0/Serilog.dll",
- "lib/netstandard2.0/Serilog.xml",
- "lib/netstandard2.1/Serilog.dll",
- "lib/netstandard2.1/Serilog.xml",
- "serilog.2.10.0.nupkg.sha512",
- "serilog.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.Diagnostics.EventLog/5.0.0": {
- "sha512": "FHkCwUfsTs+/5tsK+c0egLfacUgbhvcwi3wUFWSEEArSXao343mYqcpOVVFMlcCkdNtjU4YwAWaKYwal6f02og==",
- "type": "package",
- "path": "system.diagnostics.eventlog/5.0.0",
- "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.dll",
- "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.xml",
- "system.diagnostics.eventlog.5.0.0.nupkg.sha512",
- "system.diagnostics.eventlog.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"
- ]
- },
- "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"
- ]
- },
- "VPNConnector/1.0.0": {
- "sha512": "JI8OnCYcrkZ4tB9YTfTBDizCky40A+Xoti+/t/IDuYG9wXyI1/TfkEDA7v17ptybsNKSvtLyyT+HTWW/Bco80Q==",
- "type": "package",
- "path": "vpnconnector/1.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net452/VPNConnector.dll",
- "vpnconnector.1.0.0.nupkg.sha512",
- "vpnconnector.nuspec"
- ]
- }
- },
- "projectFileDependencyGroups": {
- "net5.0-windows7.0": [
- "AudioControl.x64 >= 1.0.1",
- "AutoHotkey.Interop >= 1.0.0.1",
- "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",
- "NLog >= 4.7.10",
- "NLog.Extensions.Logging >= 1.7.3",
- "Newtonsoft.Json >= 13.0.1",
- "Serilog >= 2.10.0",
- "SimpleWifi.netstandard >= 2.0.0",
- "System.Management >= 5.0.0",
- "System.ServiceProcess.ServiceController >= 5.0.0",
- "VPNConnector >= 1.0.0"
- ]
- },
- "packageFolders": {
- "C:\\Users\\סארט\\.nuget\\packages\\": {},
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
- },
- "project": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\NetWork.csproj",
- "projectName": "NetWork",
- "projectPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\NetWork.csproj",
- "packagesPath": "C:\\Users\\סארט\\.nuget\\packages\\",
- "outputPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\obj\\",
- "projectStyle": "PackageReference",
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
- "configFilePaths": [
- "C:\\Users\\סארט\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "net5.0-windows7.0"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net5.0-windows7.0": {
- "targetAlias": "net5.0-windows7.0",
- "projectReferences": {}
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- }
- },
- "frameworks": {
- "net5.0-windows7.0": {
- "targetAlias": "net5.0-windows7.0",
- "dependencies": {
- "AudioControl.x64": {
- "target": "Package",
- "version": "[1.0.1, )"
- },
- "AutoHotkey.Interop": {
- "target": "Package",
- "version": "[1.0.0.1, )"
- },
- "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, )"
- },
- "NLog": {
- "target": "Package",
- "version": "[4.7.10, )"
- },
- "NLog.Extensions.Logging": {
- "target": "Package",
- "version": "[1.7.3, )"
- },
- "Newtonsoft.Json": {
- "target": "Package",
- "version": "[13.0.1, )"
- },
- "Serilog": {
- "target": "Package",
- "version": "[2.10.0, )"
- },
- "SimpleWifi.netstandard": {
- "target": "Package",
- "version": "[2.0.0, )"
- },
- "System.Management": {
- "target": "Package",
- "version": "[5.0.0, )"
- },
- "System.ServiceProcess.ServiceController": {
- "target": "Package",
- "version": "[5.0.0, )"
- },
- "VPNConnector": {
- "target": "Package",
- "version": "[1.0.0, )"
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "downloadDependencies": [
- {
- "name": "Microsoft.NETCore.App.Host.win-x64",
- "version": "[5.0.8, 5.0.8]"
- }
- ],
- "frameworkReferences": {
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100-preview.7.21379.14\\RuntimeIdentifierGraph.json"
- }
- }
- },
- "logs": [
- {
- "code": "NU1701",
- "level": "Warning",
- "warningLevel": 1,
- "message": "Package 'AutoHotkey.Interop 1.0.0.1' 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": "AutoHotkey.Interop",
- "targetGraphs": [
- "net5.0-windows7.0"
- ]
- },
- {
- "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"
- ]
- },
- {
- "code": "NU1701",
- "level": "Warning",
- "warningLevel": 1,
- "message": "Package 'VPNConnector 1.0.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": "VPNConnector",
- "targetGraphs": [
- "net5.0-windows7.0"
- ]
- }
- ]
-}
\ No newline at end of file
diff --git a/NetWork/obj/project.nuget.cache b/NetWork/obj/project.nuget.cache
deleted file mode 100644
index e04e32a..0000000
--- a/NetWork/obj/project.nuget.cache
+++ /dev/null
@@ -1,78 +0,0 @@
-{
- "version": 2,
- "dgSpecHash": "RsZwBOdmJC+HtSZVj29frQa854pLBJZSb3q4noFHCXT3gK+GWOadm4C/0QVaJD+dq8/EKPMN7xaYCWeVsSGBWg==",
- "success": true,
- "projectFilePath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\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\\autohotkey.interop\\1.0.0.1\\autohotkey.interop.1.0.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.extensions.configuration.abstractions\\5.0.0\\microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
- "C:\\Users\\סארט\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.0\\microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
- "C:\\Users\\סארט\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\5.0.0\\microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
- "C:\\Users\\סארט\\.nuget\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512",
- "C:\\Users\\סארט\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
- "C:\\Users\\סארט\\.nuget\\packages\\microsoft.extensions.options\\5.0.0\\microsoft.extensions.options.5.0.0.nupkg.sha512",
- "C:\\Users\\סארט\\.nuget\\packages\\microsoft.extensions.primitives\\5.0.0\\microsoft.extensions.primitives.5.0.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\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512",
- "C:\\Users\\סארט\\.nuget\\packages\\nlog\\4.7.10\\nlog.4.7.10.nupkg.sha512",
- "C:\\Users\\סארט\\.nuget\\packages\\nlog.extensions.logging\\1.7.3\\nlog.extensions.logging.1.7.3.nupkg.sha512",
- "C:\\Users\\סארט\\.nuget\\packages\\serilog\\2.10.0\\serilog.2.10.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.diagnostics.eventlog\\5.0.0\\system.diagnostics.eventlog.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\\system.serviceprocess.servicecontroller\\5.0.0\\system.serviceprocess.servicecontroller.5.0.0.nupkg.sha512",
- "C:\\Users\\סארט\\.nuget\\packages\\vpnconnector\\1.0.0\\vpnconnector.1.0.0.nupkg.sha512",
- "C:\\Users\\סארט\\.nuget\\packages\\microsoft.netcore.app.host.win-x64\\5.0.8\\microsoft.netcore.app.host.win-x64.5.0.8.nupkg.sha512"
- ],
- "logs": [
- {
- "code": "NU1701",
- "level": "Warning",
- "warningLevel": 1,
- "message": "Package 'AutoHotkey.Interop 1.0.0.1' 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": "AutoHotkey.Interop",
- "targetGraphs": [
- "net5.0-windows7.0"
- ]
- },
- {
- "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"
- ]
- },
- {
- "code": "NU1701",
- "level": "Warning",
- "warningLevel": 1,
- "message": "Package 'VPNConnector 1.0.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": "VPNConnector",
- "targetGraphs": [
- "net5.0-windows7.0"
- ]
- }
- ]
-}
\ No newline at end of file
diff --git a/NetWork/obj/publish/win-x64/NetWork.csproj.nuget.dgspec.json b/NetWork/obj/publish/win-x64/NetWork.csproj.nuget.dgspec.json
deleted file mode 100644
index 7c658c1..0000000
--- a/NetWork/obj/publish/win-x64/NetWork.csproj.nuget.dgspec.json
+++ /dev/null
@@ -1,135 +0,0 @@
-{
- "format": 1,
- "restore": {
- "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\NetWork.csproj": {}
- },
- "projects": {
- "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\NetWork.csproj": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\NetWork.csproj",
- "projectName": "NetWork",
- "projectPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\NetWork.csproj",
- "packagesPath": "C:\\Users\\סארט\\.nuget\\packages\\",
- "outputPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\obj\\publish\\win-x64\\",
- "projectStyle": "PackageReference",
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
- "configFilePaths": [
- "C:\\Users\\סארט\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "net5.0-windows7.0"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net5.0-windows7.0": {
- "targetAlias": "net5.0-windows7.0",
- "projectReferences": {}
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- }
- },
- "frameworks": {
- "net5.0-windows7.0": {
- "targetAlias": "net5.0-windows7.0",
- "dependencies": {
- "AudioControl.x64": {
- "target": "Package",
- "version": "[1.0.1, )"
- },
- "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, )"
- },
- "NLog": {
- "target": "Package",
- "version": "[4.7.10, )"
- },
- "NLog.Extensions.Logging": {
- "target": "Package",
- "version": "[1.7.3, )"
- },
- "Serilog": {
- "target": "Package",
- "version": "[2.10.0, )"
- },
- "SimpleWifi.netstandard": {
- "target": "Package",
- "version": "[2.0.0, )"
- },
- "System.Management": {
- "target": "Package",
- "version": "[5.0.0, )"
- },
- "VPNConnector": {
- "target": "Package",
- "version": "[1.0.0, )"
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "downloadDependencies": [
- {
- "name": "Microsoft.AspNetCore.App.Runtime.win-x64",
- "version": "[5.0.8, 5.0.8]"
- },
- {
- "name": "Microsoft.NETCore.App.Runtime.win-x64",
- "version": "[5.0.8, 5.0.8]"
- },
- {
- "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64",
- "version": "[5.0.8, 5.0.8]"
- }
- ],
- "frameworkReferences": {
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.302\\RuntimeIdentifierGraph.json"
- }
- },
- "runtimes": {
- "win-x64": {
- "#import": []
- }
- }
- }
- }
-}
\ No newline at end of file
diff --git a/NetWork/obj/publish/win-x64/NetWork.csproj.nuget.g.props b/NetWork/obj/publish/win-x64/NetWork.csproj.nuget.g.props
deleted file mode 100644
index 1fef40e..0000000
--- a/NetWork/obj/publish/win-x64/NetWork.csproj.nuget.g.props
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
- True
- NuGet
- $(MSBuildThisFileDirectory)project.assets.json
- $(UserProfile)\.nuget\packages\
- C:\Users\סארט\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages
- PackageReference
- 5.10.0
-
-
-
-
-
-
- $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
-
-
\ No newline at end of file
diff --git a/NetWork/obj/publish/win-x64/NetWork.csproj.nuget.g.targets b/NetWork/obj/publish/win-x64/NetWork.csproj.nuget.g.targets
deleted file mode 100644
index bc6f82a..0000000
--- a/NetWork/obj/publish/win-x64/NetWork.csproj.nuget.g.targets
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
- $(MSBuildAllProjects);$(MSBuildThisFileFullPath)
-
-
-
-
-
-
\ No newline at end of file
diff --git a/NetWork/obj/publish/win-x64/project.assets.json b/NetWork/obj/publish/win-x64/project.assets.json
deleted file mode 100644
index b9e6599..0000000
--- a/NetWork/obj/publish/win-x64/project.assets.json
+++ /dev/null
@@ -1,2745 +0,0 @@
-{
- "version": 3,
- "targets": {
- "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/net40/DotRas.dll": {}
- },
- "runtime": {
- "lib/net40/DotRas.dll": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "5.0.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/5.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
- },
- "compile": {
- "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {}
- },
- "runtime": {
- "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
- }
- },
- "Microsoft.Extensions.Logging/5.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "5.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
- "Microsoft.Extensions.Options": "5.0.0"
- },
- "compile": {
- "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
- },
- "runtime": {
- "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
- }
- },
- "Microsoft.Extensions.Options/5.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
- "Microsoft.Extensions.Primitives": "5.0.0"
- },
- "compile": {
- "lib/net5.0/Microsoft.Extensions.Options.dll": {}
- },
- "runtime": {
- "lib/net5.0/Microsoft.Extensions.Options.dll": {}
- }
- },
- "Microsoft.Extensions.Primitives/5.0.0": {
- "type": "package",
- "compile": {
- "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {}
- },
- "runtime": {
- "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.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": {}
- }
- },
- "NLog/4.7.10": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/NLog.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/NLog.dll": {}
- }
- },
- "NLog.Extensions.Logging/1.7.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
- "Microsoft.Extensions.Logging": "5.0.0",
- "NLog": "4.7.10"
- },
- "compile": {
- "lib/net5.0/NLog.Extensions.Logging.dll": {}
- },
- "runtime": {
- "lib/net5.0/NLog.Extensions.Logging.dll": {}
- }
- },
- "Serilog/2.10.0": {
- "type": "package",
- "compile": {
- "lib/netstandard2.1/Serilog.dll": {}
- },
- "runtime": {
- "lib/netstandard2.1/Serilog.dll": {}
- }
- },
- "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"
- }
- }
- },
- "VPNConnector/1.0.0": {
- "type": "package",
- "dependencies": {
- "DotRas.for.Win8": "1.3.0"
- },
- "compile": {
- "lib/net452/VPNConnector.dll": {}
- },
- "runtime": {
- "lib/net452/VPNConnector.dll": {}
- }
- }
- },
- "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/net40/DotRas.dll": {}
- },
- "runtime": {
- "lib/net40/DotRas.dll": {}
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Primitives": "5.0.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection/5.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
- },
- "compile": {
- "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {}
- },
- "runtime": {
- "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {}
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
- }
- },
- "Microsoft.Extensions.Logging/5.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "5.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
- "Microsoft.Extensions.Options": "5.0.0"
- },
- "compile": {
- "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
- },
- "runtime": {
- "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
- }
- },
- "Microsoft.Extensions.Options/5.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
- "Microsoft.Extensions.Primitives": "5.0.0"
- },
- "compile": {
- "lib/net5.0/Microsoft.Extensions.Options.dll": {}
- },
- "runtime": {
- "lib/net5.0/Microsoft.Extensions.Options.dll": {}
- }
- },
- "Microsoft.Extensions.Primitives/5.0.0": {
- "type": "package",
- "compile": {
- "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {}
- },
- "runtime": {
- "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.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": {}
- }
- },
- "NLog/4.7.10": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/NLog.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/NLog.dll": {}
- }
- },
- "NLog.Extensions.Logging/1.7.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
- "Microsoft.Extensions.Logging": "5.0.0",
- "NLog": "4.7.10"
- },
- "compile": {
- "lib/net5.0/NLog.Extensions.Logging.dll": {}
- },
- "runtime": {
- "lib/net5.0/NLog.Extensions.Logging.dll": {}
- }
- },
- "Serilog/2.10.0": {
- "type": "package",
- "compile": {
- "lib/netstandard2.1/Serilog.dll": {}
- },
- "runtime": {
- "lib/netstandard2.1/Serilog.dll": {}
- }
- },
- "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": {}
- }
- },
- "VPNConnector/1.0.0": {
- "type": "package",
- "dependencies": {
- "DotRas.for.Win8": "1.3.0"
- },
- "compile": {
- "lib/net452/VPNConnector.dll": {}
- },
- "runtime": {
- "lib/net452/VPNConnector.dll": {}
- }
- }
- }
- },
- "libraries": {
- "AudioControl.x64/1.0.1": {
- "sha512": "bkuUEZkxVFug599MYBZMdCbGh5AepmcI9jkKY8biDPxblxslbZF6GImpMNnbqRa0qI8i9c0HQiYauAFSuhlD9Q==",
- "type": "package",
- "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.Extensions.Configuration.Abstractions/5.0.0": {
- "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
- "type": "package",
- "path": "microsoft.extensions.configuration.abstractions/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
- "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
- "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
- "microsoft.extensions.configuration.abstractions.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.Extensions.DependencyInjection/5.0.0": {
- "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
- "type": "package",
- "path": "microsoft.extensions.dependencyinjection/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
- "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
- "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
- "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
- "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
- "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
- "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
- "microsoft.extensions.dependencyinjection.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
- "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
- "type": "package",
- "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
- "microsoft.extensions.dependencyinjection.abstractions.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.Extensions.Logging/5.0.0": {
- "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
- "type": "package",
- "path": "microsoft.extensions.logging/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/Microsoft.Extensions.Logging.dll",
- "lib/net461/Microsoft.Extensions.Logging.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
- "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
- "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
- "microsoft.extensions.logging.5.0.0.nupkg.sha512",
- "microsoft.extensions.logging.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
- "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
- "type": "package",
- "path": "microsoft.extensions.logging.abstractions/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
- "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
- "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
- "microsoft.extensions.logging.abstractions.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.Extensions.Options/5.0.0": {
- "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
- "type": "package",
- "path": "microsoft.extensions.options/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/Microsoft.Extensions.Options.dll",
- "lib/net461/Microsoft.Extensions.Options.xml",
- "lib/net5.0/Microsoft.Extensions.Options.dll",
- "lib/net5.0/Microsoft.Extensions.Options.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
- "microsoft.extensions.options.5.0.0.nupkg.sha512",
- "microsoft.extensions.options.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.Extensions.Primitives/5.0.0": {
- "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
- "type": "package",
- "path": "microsoft.extensions.primitives/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/Microsoft.Extensions.Primitives.dll",
- "lib/net461/Microsoft.Extensions.Primitives.xml",
- "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
- "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
- "microsoft.extensions.primitives.5.0.0.nupkg.sha512",
- "microsoft.extensions.primitives.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "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/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"
- ]
- },
- "NLog/4.7.10": {
- "sha512": "rcegW7kYOCjl7wX0SzsqpPBqnJ51JKi1WkYb6QBVX0Wc5IgH19Pv4t/co+T0s06OS0Ne44xgkY/mHg0PdrmJow==",
- "type": "package",
- "path": "nlog/4.7.10",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/monoandroid44/NLog.dll",
- "lib/monoandroid44/NLog.xml",
- "lib/net35/NLog.dll",
- "lib/net35/NLog.xml",
- "lib/net40-client/NLog.dll",
- "lib/net40-client/NLog.xml",
- "lib/net45/NLog.dll",
- "lib/net45/NLog.xml",
- "lib/netstandard1.3/NLog.dll",
- "lib/netstandard1.3/NLog.xml",
- "lib/netstandard1.5/NLog.dll",
- "lib/netstandard1.5/NLog.xml",
- "lib/netstandard2.0/NLog.dll",
- "lib/netstandard2.0/NLog.xml",
- "lib/sl4/NLog.dll",
- "lib/sl4/NLog.xml",
- "lib/sl5/NLog.dll",
- "lib/sl5/NLog.xml",
- "lib/wp8/NLog.dll",
- "lib/wp8/NLog.xml",
- "lib/xamarinios10/NLog.dll",
- "lib/xamarinios10/NLog.xml",
- "nlog.4.7.10.nupkg.sha512",
- "nlog.nuspec"
- ]
- },
- "NLog.Extensions.Logging/1.7.3": {
- "sha512": "7RvUvGd9Ad37pNedjPHbCUroscLGuChLBo0OBveGp92vIpEHLZm/in+Ydd+c9qpv1XMQQIx7yZv1F5qyy/AxHQ==",
- "type": "package",
- "path": "nlog.extensions.logging/1.7.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "N.png",
- "lib/net451/NLog.Extensions.Logging.dll",
- "lib/net451/NLog.Extensions.Logging.xml",
- "lib/net461/NLog.Extensions.Logging.dll",
- "lib/net461/NLog.Extensions.Logging.xml",
- "lib/net5.0/NLog.Extensions.Logging.dll",
- "lib/net5.0/NLog.Extensions.Logging.xml",
- "lib/netcoreapp3.0/NLog.Extensions.Logging.dll",
- "lib/netcoreapp3.0/NLog.Extensions.Logging.xml",
- "lib/netstandard1.3/NLog.Extensions.Logging.dll",
- "lib/netstandard1.3/NLog.Extensions.Logging.xml",
- "lib/netstandard1.5/NLog.Extensions.Logging.dll",
- "lib/netstandard1.5/NLog.Extensions.Logging.xml",
- "lib/netstandard2.0/NLog.Extensions.Logging.dll",
- "lib/netstandard2.0/NLog.Extensions.Logging.xml",
- "nlog.extensions.logging.1.7.3.nupkg.sha512",
- "nlog.extensions.logging.nuspec"
- ]
- },
- "Serilog/2.10.0": {
- "sha512": "+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA==",
- "type": "package",
- "path": "serilog/2.10.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "icon.png",
- "lib/net45/Serilog.dll",
- "lib/net45/Serilog.xml",
- "lib/net46/Serilog.dll",
- "lib/net46/Serilog.xml",
- "lib/netstandard1.0/Serilog.dll",
- "lib/netstandard1.0/Serilog.xml",
- "lib/netstandard1.3/Serilog.dll",
- "lib/netstandard1.3/Serilog.xml",
- "lib/netstandard2.0/Serilog.dll",
- "lib/netstandard2.0/Serilog.xml",
- "lib/netstandard2.1/Serilog.dll",
- "lib/netstandard2.1/Serilog.xml",
- "serilog.2.10.0.nupkg.sha512",
- "serilog.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"
- ]
- },
- "VPNConnector/1.0.0": {
- "sha512": "JI8OnCYcrkZ4tB9YTfTBDizCky40A+Xoti+/t/IDuYG9wXyI1/TfkEDA7v17ptybsNKSvtLyyT+HTWW/Bco80Q==",
- "type": "package",
- "path": "vpnconnector/1.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net452/VPNConnector.dll",
- "vpnconnector.1.0.0.nupkg.sha512",
- "vpnconnector.nuspec"
- ]
- }
- },
- "projectFileDependencyGroups": {
- "net5.0-windows7.0": [
- "AudioControl.x64 >= 1.0.1",
- "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",
- "NLog >= 4.7.10",
- "NLog.Extensions.Logging >= 1.7.3",
- "Serilog >= 2.10.0",
- "SimpleWifi.netstandard >= 2.0.0",
- "System.Management >= 5.0.0",
- "VPNConnector >= 1.0.0"
- ]
- },
- "packageFolders": {
- "C:\\Users\\סארט\\.nuget\\packages\\": {},
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
- },
- "project": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\NetWork.csproj",
- "projectName": "NetWork",
- "projectPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\NetWork.csproj",
- "packagesPath": "C:\\Users\\סארט\\.nuget\\packages\\",
- "outputPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\obj\\publish\\win-x64\\",
- "projectStyle": "PackageReference",
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
- "configFilePaths": [
- "C:\\Users\\סארט\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "net5.0-windows7.0"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net5.0-windows7.0": {
- "targetAlias": "net5.0-windows7.0",
- "projectReferences": {}
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- }
- },
- "frameworks": {
- "net5.0-windows7.0": {
- "targetAlias": "net5.0-windows7.0",
- "dependencies": {
- "AudioControl.x64": {
- "target": "Package",
- "version": "[1.0.1, )"
- },
- "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, )"
- },
- "NLog": {
- "target": "Package",
- "version": "[4.7.10, )"
- },
- "NLog.Extensions.Logging": {
- "target": "Package",
- "version": "[1.7.3, )"
- },
- "Serilog": {
- "target": "Package",
- "version": "[2.10.0, )"
- },
- "SimpleWifi.netstandard": {
- "target": "Package",
- "version": "[2.0.0, )"
- },
- "System.Management": {
- "target": "Package",
- "version": "[5.0.0, )"
- },
- "VPNConnector": {
- "target": "Package",
- "version": "[1.0.0, )"
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "downloadDependencies": [
- {
- "name": "Microsoft.AspNetCore.App.Runtime.win-x64",
- "version": "[5.0.8, 5.0.8]"
- },
- {
- "name": "Microsoft.NETCore.App.Runtime.win-x64",
- "version": "[5.0.8, 5.0.8]"
- },
- {
- "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64",
- "version": "[5.0.8, 5.0.8]"
- }
- ],
- "frameworkReferences": {
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.302\\RuntimeIdentifierGraph.json"
- }
- },
- "runtimes": {
- "win-x64": {
- "#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"
- ]
- },
- {
- "code": "NU1701",
- "level": "Warning",
- "warningLevel": 1,
- "message": "Package 'VPNConnector 1.0.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": "VPNConnector",
- "targetGraphs": [
- "net5.0-windows7.0"
- ]
- }
- ]
-}
\ No newline at end of file
diff --git a/NetWork/obj/publish/win-x64/project.nuget.cache b/NetWork/obj/publish/win-x64/project.nuget.cache
deleted file mode 100644
index 798732a..0000000
--- a/NetWork/obj/publish/win-x64/project.nuget.cache
+++ /dev/null
@@ -1,66 +0,0 @@
-{
- "version": 2,
- "dgSpecHash": "kpzjsCozReCOD+ZITrOvC6GvutUpujiGjqYov+WgbvL5uCqlnnt51gbxNhJKVI4zMQjcOZenB5CVDPxpa14oIA==",
- "success": true,
- "projectFilePath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\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\\microsoft.extensions.configuration.abstractions\\5.0.0\\microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
- "C:\\Users\\סארט\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.0\\microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
- "C:\\Users\\סארט\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\5.0.0\\microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
- "C:\\Users\\סארט\\.nuget\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512",
- "C:\\Users\\סארט\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
- "C:\\Users\\סארט\\.nuget\\packages\\microsoft.extensions.options\\5.0.0\\microsoft.extensions.options.5.0.0.nupkg.sha512",
- "C:\\Users\\סארט\\.nuget\\packages\\microsoft.extensions.primitives\\5.0.0\\microsoft.extensions.primitives.5.0.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\\nlog\\4.7.10\\nlog.4.7.10.nupkg.sha512",
- "C:\\Users\\סארט\\.nuget\\packages\\nlog.extensions.logging\\1.7.3\\nlog.extensions.logging.1.7.3.nupkg.sha512",
- "C:\\Users\\סארט\\.nuget\\packages\\serilog\\2.10.0\\serilog.2.10.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.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\\vpnconnector\\1.0.0\\vpnconnector.1.0.0.nupkg.sha512",
- "C:\\Users\\סארט\\.nuget\\packages\\microsoft.netcore.app.runtime.win-x64\\5.0.8\\microsoft.netcore.app.runtime.win-x64.5.0.8.nupkg.sha512",
- "C:\\Users\\סארט\\.nuget\\packages\\microsoft.windowsdesktop.app.runtime.win-x64\\5.0.8\\microsoft.windowsdesktop.app.runtime.win-x64.5.0.8.nupkg.sha512",
- "C:\\Users\\סארט\\.nuget\\packages\\microsoft.aspnetcore.app.runtime.win-x64\\5.0.8\\microsoft.aspnetcore.app.runtime.win-x64.5.0.8.nupkg.sha512"
- ],
- "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"
- ]
- },
- {
- "code": "NU1701",
- "level": "Warning",
- "warningLevel": 1,
- "message": "Package 'VPNConnector 1.0.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": "VPNConnector",
- "targetGraphs": [
- "net5.0-windows7.0"
- ]
- }
- ]
-}
\ No newline at end of file