detects ethernet that are up, deleted unwantted files
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -3,3 +3,6 @@ desktop.ini
|
||||
*/Debug/*
|
||||
*.dll
|
||||
*.pbk
|
||||
.vs/
|
||||
*/obj/*
|
||||
*/desktop.ini
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -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
|
||||
}
|
BIN
.vs/desktop.ini
BIN
.vs/desktop.ini
Binary file not shown.
@@ -7,6 +7,7 @@
|
||||
<StartupObject>NetWork.Program</StartupObject>
|
||||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
||||
<Nullable>enable</Nullable>
|
||||
<StartWorkingDirectory>.</StartWorkingDirectory>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||||
@@ -37,6 +38,7 @@
|
||||
<PackageReference Include="System.Management" Version="5.0.0" />
|
||||
<PackageReference Include="System.ServiceProcess.ServiceController" Version="5.0.0" />
|
||||
<PackageReference Include="VPNConnector" Version="1.0.0" />
|
||||
<PackageReference Include="TaskScheduler" Version="2.9.2" />
|
||||
|
||||
</ItemGroup>
|
||||
|
||||
@@ -56,7 +58,6 @@
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Remove="C:\Users\סארט\.nuget\packages\audiocontrol.x64\1.0.1\build\\..\AudioControlNative.dll" />
|
||||
<None Remove="Other\ek.pbk" />
|
||||
|
||||
<None Remove="Other\Windows.Common.dll" />
|
||||
|
@@ -1,3 +1,4 @@
|
||||
[
|
||||
"Mi True Wire"
|
||||
"Mi True Wire",
|
||||
"realme"
|
||||
]
|
@@ -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 {
|
||||
/// <summary>
|
||||
/// this function gets an array of service names, and start or stop command, and it runs on the array and
|
||||
/// </summary>
|
||||
/// <param name="service"></param>
|
||||
/// <param name="stop"></param>
|
||||
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
|
||||
/// </summary>
|
||||
public static string[] StringsOfPaths = System.IO.Directory.GetFiles(@"C:\Program Files\Google\Drive File Stream\", "GoogleDriveFS.exe", System.IO.SearchOption.AllDirectories);
|
||||
public static Dictionary<string, string> 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<string, string> 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<string, string> 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<string, string> 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" } };
|
||||
/// <summary>
|
||||
/// 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");
|
||||
|
@@ -1,32 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>NetWork</id>
|
||||
<version>1.0.0</version>
|
||||
<authors>NetWork</authors>
|
||||
<description>Package Description</description>
|
||||
<dependencies>
|
||||
<group targetFramework="net5.0-windows7.0">
|
||||
<dependency id="AudioControl.x64" version="1.0.1" exclude="Build,Analyzers" />
|
||||
<dependency id="AutoHotkey.Interop" version="1.0.0.1" exclude="Build,Analyzers" />
|
||||
<dependency id="Microsoft.Management.Infrastructure" version="2.0.0" exclude="Build,Analyzers" />
|
||||
<dependency id="Microsoft.NETCore.Windows.ApiSets" version="1.0.1" exclude="Build,Analyzers" />
|
||||
<dependency id="Microsoft.NETCore.Windows.ApiSets-x64" version="1.0.0" exclude="Build,Analyzers" />
|
||||
<dependency id="NAudio" version="2.0.1" exclude="Build,Analyzers" />
|
||||
<dependency id="NETStandard.Library" version="2.0.3" exclude="Build,Analyzers" />
|
||||
<dependency id="NLog" version="4.7.10" exclude="Build,Analyzers" />
|
||||
<dependency id="NLog.Extensions.Logging" version="1.7.3" exclude="Build,Analyzers" />
|
||||
<dependency id="Newtonsoft.Json" version="13.0.1" exclude="Build,Analyzers" />
|
||||
<dependency id="Serilog" version="2.10.0" exclude="Build,Analyzers" />
|
||||
<dependency id="SimpleWifi.netstandard" version="2.0.0" exclude="Build,Analyzers" />
|
||||
<dependency id="System.Management" version="5.0.0" exclude="Build,Analyzers" />
|
||||
<dependency id="System.ServiceProcess.ServiceController" version="5.0.0" exclude="Build,Analyzers" />
|
||||
<dependency id="VPNConnector" version="1.0.0" exclude="Build,Analyzers" />
|
||||
</group>
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NetWork.runtimeconfig.json" target="lib\net5.0-windows7.0\NetWork.runtimeconfig.json" />
|
||||
<file src="D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NetWork.dll" target="lib\net5.0-windows7.0\NetWork.dll" />
|
||||
</files>
|
||||
</package>
|
@@ -1,4 +0,0 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
|
@@ -1,25 +0,0 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 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.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
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.
|
||||
|
@@ -1 +0,0 @@
|
||||
2141606a1b68e23e2902b1b40300852fe1ead34c
|
@@ -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
|
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
||||
ec68d7fc404689b78246332306eb7e9270823dce
|
@@ -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
|
@@ -1 +0,0 @@
|
||||
b9b6bd9282a348fd2886bc55786cc65f59ea834a
|
Binary file not shown.
@@ -1,4 +0,0 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
|
@@ -1,25 +0,0 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 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.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
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.
|
||||
|
@@ -1 +0,0 @@
|
||||
2141606a1b68e23e2902b1b40300852fe1ead34c
|
@@ -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\
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
||||
b4ed6d8a537dc56c254028ffc334f8f9594d60f0
|
@@ -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
|
Binary file not shown.
@@ -1 +0,0 @@
|
||||
f1f7a2b227e661e8bded085edbeae4ef39679215
|
@@ -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
|
Binary file not shown.
@@ -1,4 +0,0 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
|
@@ -1,23 +0,0 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 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.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
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.
|
||||
|
@@ -1 +0,0 @@
|
||||
2761d80dcb43a98876e08ac792894a54714fd068
|
@@ -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
|
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
||||
afef8824ff63ad5bc4ca40124f87b895957de2de
|
@@ -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
|
@@ -1 +0,0 @@
|
||||
0623b80004f3e5b7c7573d42f3b5cc8e40910fda
|
Binary file not shown.
@@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@@ -1,19 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\סארט\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.0.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\סארט\.nuget\packages\" />
|
||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||
</PropertyGroup>
|
||||
</Project>
|
@@ -1,10 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||
</PropertyGroup>
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets" Condition="Exists('$(NuGetPackageRoot)netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)audiocontrol.x64\1.0.1\build\AudioControl.x64.targets" Condition="Exists('$(NuGetPackageRoot)audiocontrol.x64\1.0.1\build\AudioControl.x64.targets')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
@@ -1,30 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>NetWork</id>
|
||||
<version>1.0.0</version>
|
||||
<authors>NetWork</authors>
|
||||
<description>Package Description</description>
|
||||
<dependencies>
|
||||
<group targetFramework="net5.0-windows7.0">
|
||||
<dependency id="AudioControl.x64" version="1.0.1" exclude="Build,Analyzers" />
|
||||
<dependency id="Microsoft.Management.Infrastructure" version="2.0.0" exclude="Build,Analyzers" />
|
||||
<dependency id="Microsoft.NETCore.Windows.ApiSets" version="1.0.1" exclude="Build,Analyzers" />
|
||||
<dependency id="Microsoft.NETCore.Windows.ApiSets-x64" version="1.0.0" exclude="Build,Analyzers" />
|
||||
<dependency id="NAudio" version="2.0.1" exclude="Build,Analyzers" />
|
||||
<dependency id="NETStandard.Library" version="2.0.3" exclude="Build,Analyzers" />
|
||||
<dependency id="NLog" version="4.7.10" exclude="Build,Analyzers" />
|
||||
<dependency id="NLog.Extensions.Logging" version="1.7.3" exclude="Build,Analyzers" />
|
||||
<dependency id="Serilog" version="2.10.0" exclude="Build,Analyzers" />
|
||||
<dependency id="SimpleWifi.netstandard" version="2.0.0" exclude="Build,Analyzers" />
|
||||
<dependency id="System.Management" version="5.0.0" exclude="Build,Analyzers" />
|
||||
<dependency id="VPNConnector" version="1.0.0" exclude="Build,Analyzers" />
|
||||
</group>
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\NetWork.runtimeconfig.json" target="lib\net5.0-windows7.0\NetWork.runtimeconfig.json" />
|
||||
<file src="D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\NetWork.dll" target="lib\net5.0-windows7.0\NetWork.dll" />
|
||||
<file src="D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\NetWork.xml" target="lib\net5.0-windows7.0\NetWork.xml" />
|
||||
</files>
|
||||
</package>
|
@@ -1,4 +0,0 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
|
@@ -1,25 +0,0 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 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.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
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.
|
||||
|
@@ -1 +0,0 @@
|
||||
47b92528c37c5e1c33a2258e82955d216ab71c7d
|
@@ -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
|
Binary file not shown.
@@ -1,4 +0,0 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
|
@@ -1,25 +0,0 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 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.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
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.
|
||||
|
@@ -1 +0,0 @@
|
||||
47b92528c37c5e1c33a2258e82955d216ab71c7d
|
@@ -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\
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
||||
ed9f68123c2538539c82c92ec55bdea9c7b17e8b
|
@@ -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
|
Binary file not shown.
@@ -1 +0,0 @@
|
||||
a4e49e640d8d9c4d337fba5225544a723df7e711
|
Binary file not shown.
Binary file not shown.
@@ -1,4 +0,0 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
|
@@ -1,25 +0,0 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 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.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
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.
|
||||
|
@@ -1 +0,0 @@
|
||||
47b92528c37c5e1c33a2258e82955d216ab71c7d
|
@@ -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
|
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
||||
363145e996162af7b3762734ad5c82c53d042074
|
@@ -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
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@@ -1 +0,0 @@
|
||||
8cbba98b5dd499cff41205bc84d4f2f9b4b8a28b
|
Binary file not shown.
@@ -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
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,4 +0,0 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
|
@@ -1,23 +0,0 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 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.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
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.
|
||||
|
@@ -1 +0,0 @@
|
||||
5378575ff141246628e77d9cc16639875f5e3310
|
@@ -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
|
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user