Compare commits
27 Commits
0.1
...
121dfa381d
Author | SHA1 | Date | |
---|---|---|---|
121dfa381d | |||
80b2df1121 | |||
1137495368 | |||
4be5de8177 | |||
131a169676 | |||
ad1dae18a9 | |||
ff8304a149 | |||
c3fa3ed29a | |||
6943b4f42d | |||
bda4e06bb4 | |||
51f48da38e | |||
e3b8129728 | |||
2fb2078aef | |||
f774509b9d | |||
9521abd8d7 | |||
8bc6113e0d | |||
5e29140834 | |||
6591cd7c9f | |||
c01fb877c2 | |||
cfd1f94d88 | |||
ae3a9c14fa | |||
e321d6b4d0 | |||
1817142a33 | |||
568f2acd63 | |||
1444d6abda | |||
d301c75787 | |||
50a68be7c6 |
10
.gitignore
vendored
Normal file
10
.gitignore
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
desktop.ini
|
||||
*/bin/*
|
||||
*/Debug/*
|
||||
*.dll
|
||||
*.pbk
|
||||
.vs/
|
||||
*/obj/*
|
||||
*/desktop.ini
|
||||
NetWork/Properties/PublishProfiles/
|
||||
Publish/
|
@@ -1,7 +1,7 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 16
|
||||
VisualStudioVersion = 16.0.31402.337
|
||||
# Visual Studio Version 17
|
||||
VisualStudioVersion = 17.0.31612.314
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NetWork", "NetWork\NetWork.csproj", "{A1D13A5A-C5C4-4559-BD8D-FB293DAA9034}"
|
||||
EndProject
|
4
NetWork.sln.DotSettings.user
Normal file
4
NetWork.sln.DotSettings.user
Normal file
@@ -0,0 +1,4 @@
|
||||
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
|
||||
<s:String x:Key="/Default/Environment/AssemblyExplorer/XmlDocument/@EntryValue"><AssemblyExplorer>
|
||||
<Assembly Path="C:\Users\Saret\.nuget\packages\dotras.for.win8\1.3.0\lib\net40\DotRas.dll" />
|
||||
</AssemblyExplorer></s:String></wpf:ResourceDictionary>
|
10
NetWork/.gitignore
vendored
10
NetWork/.gitignore
vendored
@@ -1,4 +1,6 @@
|
||||
desktop.ini
|
||||
*/bin/*
|
||||
*/Debug/*
|
||||
*.dll
|
||||
bin/
|
||||
net6.0*/
|
||||
Publish/
|
||||
NetWork/Publish/*/*
|
||||
*.exe
|
||||
NetWork/Properties/
|
@@ -1,12 +0,0 @@
|
||||
# EditorConfig is awesome: https://EditorConfig.org
|
||||
|
||||
# top-most EditorConfig file
|
||||
root = true
|
||||
|
||||
[*]
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
end_of_line = crlf
|
||||
charset = utf-8
|
||||
trim_trailing_whitespace = false
|
||||
insert_final_newline = false
|
Binary file not shown.
Binary file not shown.
@@ -1,3 +0,0 @@
|
||||
{
|
||||
"CurrentProjectSetting": null
|
||||
}
|
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"ExpandedNodes": [
|
||||
""
|
||||
],
|
||||
"SelectedNode": "\\NetWork.sln",
|
||||
"PreviewInSolutionExplorer": false
|
||||
}
|
Binary file not shown.
8
NetWork/DialUp.cs
Normal file
8
NetWork/DialUp.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
|
||||
namespace NetWork
|
||||
{
|
||||
class DialUp
|
||||
{
|
||||
|
||||
}
|
||||
}
|
15
NetWork/IgnoreFile.cs
Normal file
15
NetWork/IgnoreFile.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace NetWork
|
||||
{
|
||||
class IgnoreFile
|
||||
{
|
||||
public static void M()
|
||||
{
|
||||
var ahkk = AutoHotkey.Interop.AutoHotkeyEngine.Instance;
|
||||
ahkk.GetVar("shut");
|
||||
}
|
||||
static void Main(string[] args)
|
||||
{
|
||||
M();
|
||||
}
|
||||
}
|
||||
}
|
19
NetWork/Ip.cs
Normal file
19
NetWork/Ip.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace NetWork
|
||||
{
|
||||
interface Ip
|
||||
{
|
||||
[DllImport("IPHLPAPI.DLL")]
|
||||
public static extern int ipconfig();
|
||||
public static void Ma()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
115
NetWork/NetWork.csproj
Normal file
115
NetWork/NetWork.csproj
Normal file
@@ -0,0 +1,115 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<TargetFramework>net6.0-windows</TargetFramework>
|
||||
<ApplicationIcon />
|
||||
<StartupObject>NetWork.Program</StartupObject>
|
||||
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
|
||||
<Nullable>enable</Nullable>
|
||||
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
|
||||
<StartWorkingDirectory>.</StartWorkingDirectory>
|
||||
|
||||
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
|
||||
|
||||
<UseWindowsForms>True</UseWindowsForms>
|
||||
|
||||
<UseWPF>True</UseWPF>
|
||||
|
||||
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
|
||||
|
||||
<SignAssembly>False</SignAssembly>
|
||||
|
||||
<FileVersion>1.0.0.1</FileVersion>
|
||||
|
||||
<AssemblyVersion>0.1.1</AssemblyVersion>
|
||||
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
|
||||
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
|
||||
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||||
<DebugType>embedded</DebugType>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<PlatformTarget>x64</PlatformTarget>
|
||||
<Optimize>True</Optimize>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
||||
<DebugType>embedded</DebugType>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<PlatformTarget>x64</PlatformTarget>
|
||||
<DocumentationFile>.\NetWork.xml</DocumentationFile>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="AudioControl.x64" Version="1.0.1" />
|
||||
<PackageReference Include="AutoHotkey.Interop" Version="1.0.0.1" />
|
||||
<PackageReference Include="LiteDB" Version="5.0.16" />
|
||||
<PackageReference Include="Microsoft.Data.Sqlite.Core" Version="7.0.5" />
|
||||
<PackageReference Include="Microsoft.Management.Infrastructure" Version="2.0.0" />
|
||||
<PackageReference Include="Microsoft.NETCore.Windows.ApiSets-x64" Version="1.0.0" />
|
||||
<PackageReference Include="NAudio" Version="2.0.1" />
|
||||
<PackageReference Include="NETStandard.Library" Version="2.0.3" />
|
||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
||||
<PackageReference Include="NLog" Version="4.7.15" />
|
||||
<PackageReference Include="NLog.Extensions.Logging" Version="1.7.4" />
|
||||
<PackageReference Include="Serilog" Version="2.11.0" />
|
||||
<PackageReference Include="Serilog.Enrichers.Environment" Version="2.2.0" />
|
||||
<PackageReference Include="Serilog.Enrichers.Process" Version="2.0.2" />
|
||||
<PackageReference Include="Serilog.Extensions.Logging" Version="3.1.0" />
|
||||
<PackageReference Include="Serilog.Formatting.Compact" Version="1.1.0" />
|
||||
<PackageReference Include="Serilog.Sinks.Async" Version="1.5.0" />
|
||||
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
|
||||
<PackageReference Include="SimpleWifi.netstandard" Version="2.0.0" />
|
||||
<PackageReference Include="SQLite" Version="3.13.0" />
|
||||
<PackageReference Include="System.Management" Version="6.0.0" />
|
||||
<PackageReference Include="System.ServiceProcess.ServiceController" Version="6.0.0" />
|
||||
<PackageReference Include="TaskScheduler" Version="2.10.1" />
|
||||
<PackageReference Include="VPNConnector" Version="1.0.0" />
|
||||
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Update="Properties\Resources.Designer.cs">
|
||||
<DesignTime>True</DesignTime>
|
||||
<AutoGen>True</AutoGen>
|
||||
<DependentUpon>Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Update="Properties\Resources.resx">
|
||||
<Generator>ResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
||||
</EmbeddedResource>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
||||
<EmbeddedResource Include="Other\ek.pbk" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="Other\Windows.Common.dll" />
|
||||
<EmbeddedResource Include="Other\Windows.Common.pdb" />
|
||||
<EmbeddedResource Include="Other\earphones.json">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</EmbeddedResource>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Resource Include="Other\*" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Resource Update="Other\Data.ini">
|
||||
<CopyToOutputDirectory></CopyToOutputDirectory>
|
||||
</Resource>
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
|
||||
<AutoGenerateBindingRedirects>True</AutoGenerateBindingRedirects>
|
||||
</PropertyGroup>
|
||||
</Project>
|
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<_LastSelectedProfileId>C:\Users\סארט\source\repos\NetWork\NetWork\Properties\PublishProfiles\FolderProfile.pubxml</_LastSelectedProfileId>
|
||||
<_LastSelectedProfileId>C:\Users\Saret\Programming\C#\NetWork\NetWork\Properties\PublishProfiles\FolderProfile.pubxml</_LastSelectedProfileId>
|
||||
</PropertyGroup>
|
||||
</Project>
|
1471
NetWork/NetWork.xml
Normal file
1471
NetWork/NetWork.xml
Normal file
File diff suppressed because it is too large
Load Diff
@@ -1,28 +0,0 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<TargetFramework>net5.0-windows7.0</TargetFramework>
|
||||
<ApplicationIcon />
|
||||
<StartupObject>NetWork.Program</StartupObject>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||||
<DebugType>embedded</DebugType>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="AudioControl.x64" Version="1.0.1" />
|
||||
<PackageReference Include="DotRas.for.Win8" Version="1.3.0" />
|
||||
<PackageReference Include="Microsoft.Management.Infrastructure" Version="2.0.0" />
|
||||
<PackageReference Include="Microsoft.NETCore.Windows.ApiSets" Version="1.0.1" />
|
||||
<PackageReference Include="Microsoft.NETCore.Windows.ApiSets-x64" Version="1.0.0" />
|
||||
<PackageReference Include="Microsoft.PowerShell.SDK" Version="7.1.3" />
|
||||
<PackageReference Include="NAudio" Version="2.0.1" />
|
||||
<PackageReference Include="NETStandard.Library" Version="2.0.3" />
|
||||
<PackageReference Include="SimpleWifi.netstandard" Version="2.0.0" />
|
||||
<PackageReference Include="System.Management" Version="5.0.0" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
@@ -1,365 +0,0 @@
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
using System.Collections.Generic;
|
||||
using System.Management;
|
||||
using System.Text.RegularExpressions;
|
||||
using NAudio.CoreAudioApi;
|
||||
using SimpleWifi;
|
||||
using DotRas;
|
||||
|
||||
namespace NetWork
|
||||
{
|
||||
class Program
|
||||
{
|
||||
|
||||
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] }, { "googledrivesync", @"C:\Program Files\Google\Drive\googledrivesync.exe" }, { "qbittorrent", @"C:\Program Files\qBittorrent\qbittorrent.exe" }, { "Surfshark", @"C:\Program Files (x86)\Surfshark\Surfshark.exe" } };
|
||||
public static Dictionary<string, string> paths = new() { { StringsOfPaths[^1], "GoogleDriveFS.exe" }, { @"C:\Program Files\Google\Drive\googledrivesync.exe", "googledrivesync.exe" }, { @"C:\Program Files\qBittorrent\qbittorrent.exe", "qbittorrent.exe" }, { @"C:\Program Files (x86)\Surfshark\Surfshark.exe", "Surfshark" } };
|
||||
//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.
|
||||
/// </summary>
|
||||
/// <param name="stop">A bool parameter. it swiches between stopping (default) and starting rdp session.</param>
|
||||
public static void StopRDP(bool stop = true)
|
||||
{
|
||||
if (stop)
|
||||
{
|
||||
Process[] ids = Process.GetProcessesByName("mstsc");
|
||||
foreach (var id in ids)
|
||||
{
|
||||
|
||||
ManagementObjectSearcher search = new($"SELECT CommandLine FROM Win32_Process WHERE ProcessId = {id.Id}");
|
||||
Regex rdp = new("(משרדוש.rdp|161.2)");
|
||||
foreach (var searchedObject in search.Get())
|
||||
{
|
||||
if (rdp.Match(searchedObject["CommandLine"].ToString()).Success)
|
||||
{
|
||||
id.Kill();
|
||||
}
|
||||
}
|
||||
Console.WriteLine("");
|
||||
}
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
Process[] ids = Process.GetProcessesByName("mstsc");
|
||||
foreach (var id in ids)
|
||||
{
|
||||
bool started = false;
|
||||
ManagementObjectSearcher search = new($"SELECT CommandLine FROM Win32_Process WHERE ProcessId = {id.Id}");
|
||||
Regex rdp = new("(משרדוש.rdp|161.2)");
|
||||
foreach (var searchedObject in search.Get())
|
||||
{
|
||||
if (rdp.Match(searchedObject["CommandLine"].ToString()).Success)
|
||||
{
|
||||
started = true;
|
||||
}
|
||||
}
|
||||
if (!started)
|
||||
{
|
||||
StartProgram("rdp");
|
||||
}
|
||||
Console.WriteLine("");
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
/// <param name="connect"></param>
|
||||
/// <returns></returns>
|
||||
public static bool Dial(bool connect = true)
|
||||
{
|
||||
if (connect)
|
||||
{
|
||||
RasDialer rasDialer = new();
|
||||
rasDialer.AllowUseStoredCredentials = true;
|
||||
rasDialer.PhoneBookPath = @"C:\Users\סארט\AppData\Roaming\Microsoft\Network\Connections\Pbk\ek.pbk";
|
||||
rasDialer.PhoneNumber = "ek";
|
||||
rasDialer.EntryName = "ek";
|
||||
rasDialer.DialAsync();
|
||||
}
|
||||
return false;
|
||||
}
|
||||
public static string GetProgram(string Name)
|
||||
{
|
||||
/*
|
||||
this function decides if the program is a name, or a location.
|
||||
if it is a location, it returns the name of the program
|
||||
if it is a name, it returns the location
|
||||
otherwise, it returns empty string
|
||||
*/
|
||||
|
||||
if (progs.ContainsKey(Name))
|
||||
{
|
||||
return progs[Name];
|
||||
}
|
||||
if (paths.ContainsKey(Name))
|
||||
{
|
||||
return paths[Name];
|
||||
}
|
||||
return "";
|
||||
|
||||
}
|
||||
public static void StopProgram(string[] Name, bool mute = true)
|
||||
{
|
||||
foreach (string name in Name)
|
||||
{
|
||||
try
|
||||
{
|
||||
if (progs.ContainsKey(name))
|
||||
{
|
||||
Process[] p = Process.GetProcessesByName(name);
|
||||
foreach (Process proc in p)
|
||||
{
|
||||
proc.Kill(true);
|
||||
}
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
if (name.Contains("mstsc") || name.Contains("rdp"))
|
||||
{
|
||||
StopRDP();
|
||||
}
|
||||
}
|
||||
}
|
||||
catch
|
||||
{
|
||||
continue;
|
||||
}
|
||||
}
|
||||
MuteSystem(mute);
|
||||
}
|
||||
public static void StartProgram(string[] Name, bool mute = false)
|
||||
{
|
||||
|
||||
foreach (var process_name in Name)
|
||||
{
|
||||
if (process_name.Contains("rdp") || process_name.Contains("mstsc"))
|
||||
{
|
||||
Process.Start("mstsc.exe", "D:\\Drive\\מסמכים\\vms\\משרדוש.rdp");
|
||||
continue;
|
||||
}
|
||||
else if (Process.GetProcessesByName(process_name).Length < 1)
|
||||
{
|
||||
string process;
|
||||
if (progs.ContainsKey(process_name))
|
||||
{
|
||||
process = progs[process_name];
|
||||
}
|
||||
else if (paths.ContainsKey(process_name))
|
||||
{
|
||||
process = process_name;
|
||||
}
|
||||
else
|
||||
{
|
||||
process = @"C:\Windows\System32\rundll32.exe";
|
||||
}
|
||||
Process.Start(process);
|
||||
}
|
||||
}
|
||||
MuteSystem(mute);
|
||||
}
|
||||
public static string GetWifiNetwork()
|
||||
{
|
||||
SimpleWifi.Win32.WlanClient wlan = new();
|
||||
return wlan.Interfaces[0].CurrentConnection.profileName;
|
||||
}
|
||||
public static bool? IsItGoodWifi(string currentWifi)
|
||||
{
|
||||
Regex regex = new(currentWifi);
|
||||
bool? goodWifi;
|
||||
goodWifi = regex.IsMatch("Oliver Oliver5 Oliver x018_497622 TNCAPE5A34D MSBR Azrieli_Modiin_WIFI lu shalmata mickey Mickey Network 192.168.1. Silmarill wintunshark0 saret Saret huji-meonot") ? true : (regex.IsMatch("HUJI-netXeduroam HUJI-guest 132.64") ? false:null);
|
||||
|
||||
return goodWifi;
|
||||
}
|
||||
static string GetLan(System.Net.NetworkInformation.NetworkInterface networkAdapter)
|
||||
{
|
||||
if (networkAdapter.Name.Contains("Ethernet") && !(networkAdapter.Description.Contains("TAP")) && !(networkAdapter.Description.Contains("Hyper-V")))
|
||||
{
|
||||
return networkAdapter.GetPhysicalAddress().ToString();
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
static bool GetVpn(System.Net.NetworkInformation.NetworkInterface net)
|
||||
{
|
||||
if (net.Name.Contains("Surfshark") || net.Name.Contains("shark") || net.Description.Contains("TAP"))
|
||||
{
|
||||
return net.OperationalStatus.ToString().Equals("Up");
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public static Dictionary<string, dynamic> GetNetwork()
|
||||
{
|
||||
Dictionary<string, dynamic> net_dict = new() { { "vpn", false }, { "lan", false }, { "good_lan", false }, { "ek", false } };
|
||||
System.Net.NetworkInformation.NetworkInterface[] nets = System.Net.NetworkInformation.NetworkInterface.GetAllNetworkInterfaces();
|
||||
string getlan = "";
|
||||
bool getgoodland = false;
|
||||
string getwifi;
|
||||
getwifi = GetWifiNetwork();
|
||||
foreach (var net in nets)
|
||||
{
|
||||
net_dict["vpn"] |= GetVpn(net);
|
||||
getlan ??= GetLan(net);
|
||||
if (AllowedMac(net.GetPhysicalAddress().ToString()))
|
||||
{
|
||||
getgoodland |= true ;
|
||||
}
|
||||
|
||||
}
|
||||
net_dict.Add("Wi-Fi", IsItGoodWifi(getwifi));
|
||||
net_dict["good_lan"]=getgoodland;
|
||||
net_dict["lan"]= getlan;
|
||||
|
||||
//net_dict.Add("good_lan", AllowedMac());
|
||||
return net_dict;
|
||||
}
|
||||
private static string HirarcyNetworks(Dictionary<string, dynamic> network_dictionary)
|
||||
{
|
||||
if (network_dictionary["vpn"])
|
||||
{
|
||||
return "vpn";
|
||||
}
|
||||
else if (network_dictionary["ek"])
|
||||
{
|
||||
return "ek";
|
||||
}
|
||||
else if (network_dictionary["good_lan"])
|
||||
{
|
||||
return "good_lan";
|
||||
}
|
||||
else if (network_dictionary["lan"])
|
||||
{
|
||||
return "lan";
|
||||
}
|
||||
return "Wi-Fi";
|
||||
|
||||
}
|
||||
public static bool AllowedMac(string mac, string[] those_are_the_AllowedMacs = null)
|
||||
{
|
||||
string[] AllowedMac_adresses;
|
||||
if (!(those_are_the_AllowedMacs is null))
|
||||
{
|
||||
AllowedMac_adresses = those_are_the_AllowedMacs;
|
||||
}
|
||||
else
|
||||
{
|
||||
AllowedMac_adresses = new string[] { "00E04C6813E4" };
|
||||
}
|
||||
foreach (var mac_address in AllowedMac_adresses)
|
||||
{
|
||||
if (mac_address.Equals(mac))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
|
||||
}
|
||||
public static bool AllowedMac(string[] mac, string[] those_are_the_AllowedMacs = null)
|
||||
{
|
||||
foreach (var single_mac in mac)
|
||||
{
|
||||
if (AllowedMac(single_mac, those_are_the_AllowedMacs))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
public static void StartProgram(string process_name)
|
||||
{
|
||||
if (process_name.Contains("rdp") || process_name.Contains("mstsc"))
|
||||
{
|
||||
Process.Start("mstsc.exe", @"D:\Drive\מסמכים\vms\משרדוש.rdp");
|
||||
}
|
||||
else if (Process.GetProcessesByName(process_name).Length < 1)
|
||||
{
|
||||
string process;
|
||||
if (progs.ContainsKey(process_name))
|
||||
{
|
||||
process = progs[process_name];
|
||||
}
|
||||
else if (paths.ContainsKey(process_name))
|
||||
{
|
||||
process = process_name;
|
||||
}
|
||||
else
|
||||
{
|
||||
process = @"C:\Windows\System32\rundll32.exe";
|
||||
}
|
||||
Process.Start(process);
|
||||
}
|
||||
}
|
||||
public static void MuteSystem(bool mute = true)
|
||||
{
|
||||
MMDeviceEnumerator mMDeviceEnumerator = new();
|
||||
mMDeviceEnumerator.GetDefaultAudioEndpoint(DataFlow.Render, Role.Multimedia).AudioEndpointVolume.Mute = mute;
|
||||
}
|
||||
public static void DoTheSchtik()
|
||||
{
|
||||
var network_connection = GetNetwork();
|
||||
string[] programs_to_run;
|
||||
string[] programs_to_stop;
|
||||
bool mute;
|
||||
switch (HirarcyNetworks(network_connection))
|
||||
{
|
||||
case "vpn":
|
||||
programs_to_run = new string[] { "googledrivesync", "GoogleDriveFS", "qbittorrent", "Surfshark" };
|
||||
programs_to_stop = new string[] { "rdp" };
|
||||
mute = false;
|
||||
break;
|
||||
case "ek":
|
||||
programs_to_run = new string[] { "rdp", "googledrivesync", "GoogleDriveFS" };
|
||||
programs_to_stop = new string[] { "qbittorrent", "Surfshark" };
|
||||
mute = false;
|
||||
break;
|
||||
case "good_lan":
|
||||
programs_to_run = new string[] { "googledrivesync", "GoogleDriveFS", "qbittorrent", "Surfshark" };
|
||||
programs_to_stop = new string[] { "rdp" };
|
||||
mute = false;
|
||||
break;
|
||||
case "lan":
|
||||
programs_to_run = new string[] { "rdp", "googledrivesync", "GoogleDriveFS" };
|
||||
programs_to_stop = new string[] { "qbittorrent", "Surfshark" };
|
||||
mute = false;
|
||||
Dial(true);
|
||||
break;
|
||||
default:
|
||||
if (network_connection["Wi-Fi"])
|
||||
{
|
||||
programs_to_run = new string[] { "googledrivesync", "GoogleDriveFS", "qbittorrent", "Surfshark" };
|
||||
programs_to_stop = new string[] { "rdp" };
|
||||
mute = false;
|
||||
break;
|
||||
}
|
||||
else
|
||||
{
|
||||
programs_to_run = new string[] { "googledrivesync", "GoogleDriveFS" };
|
||||
programs_to_stop = new string[] { "qbittorrent", "Surfshark" };
|
||||
mute = true;
|
||||
}
|
||||
break;
|
||||
}
|
||||
if (programs_to_run is not null)
|
||||
{
|
||||
StartProgram(programs_to_run, mute);
|
||||
}
|
||||
if (programs_to_stop is not null)
|
||||
{
|
||||
StopProgram(programs_to_stop, mute);
|
||||
}
|
||||
System.Windows.Forms.Application.Exit();
|
||||
}
|
||||
static void Main(string[] args)
|
||||
{
|
||||
DoTheSchtik();
|
||||
|
||||
}
|
||||
}
|
||||
}
|
@@ -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,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 =
|
||||
build_property.IncludeAllContentForSelfExtract =
|
||||
build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows
|
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
||||
b755c1fcc436e3bd1ba3fa95bde9da72a01314b5
|
@@ -1,497 +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\ref\Microsoft.CSharp.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\Microsoft.VisualBasic.Core.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\Microsoft.VisualBasic.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\Microsoft.Win32.Primitives.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.AppContext.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Buffers.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Collections.Concurrent.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Collections.Immutable.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Collections.NonGeneric.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Collections.Specialized.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Collections.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.ComponentModel.Annotations.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.ComponentModel.DataAnnotations.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.ComponentModel.EventBasedAsync.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.ComponentModel.Primitives.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.ComponentModel.TypeConverter.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.ComponentModel.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Configuration.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Console.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Core.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Data.Common.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Data.DataSetExtensions.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Data.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Diagnostics.Contracts.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Diagnostics.Debug.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Diagnostics.DiagnosticSource.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Diagnostics.FileVersionInfo.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Diagnostics.Process.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Diagnostics.StackTrace.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Diagnostics.TextWriterTraceListener.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Diagnostics.Tools.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Diagnostics.TraceSource.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Diagnostics.Tracing.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Drawing.Primitives.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Drawing.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Dynamic.Runtime.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Formats.Asn1.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Globalization.Calendars.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Globalization.Extensions.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Globalization.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.IO.Compression.Brotli.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.IO.Compression.FileSystem.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.IO.Compression.ZipFile.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.IO.Compression.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.IO.FileSystem.DriveInfo.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.IO.FileSystem.Primitives.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.IO.FileSystem.Watcher.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.IO.FileSystem.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.IO.IsolatedStorage.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.IO.MemoryMappedFiles.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.IO.Pipes.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.IO.UnmanagedMemoryStream.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.IO.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Linq.Expressions.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Linq.Parallel.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Linq.Queryable.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Linq.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Memory.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.Http.Json.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.Http.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.HttpListener.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.Mail.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.NameResolution.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.NetworkInformation.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.Ping.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.Primitives.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.Requests.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.Security.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.ServicePoint.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.Sockets.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.WebClient.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.WebHeaderCollection.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.WebProxy.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.WebSockets.Client.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.WebSockets.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Net.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Numerics.Vectors.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Numerics.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.ObjectModel.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Reflection.DispatchProxy.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Reflection.Emit.ILGeneration.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Reflection.Emit.Lightweight.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Reflection.Emit.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Reflection.Extensions.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Reflection.Metadata.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Reflection.Primitives.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Reflection.TypeExtensions.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Reflection.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Resources.Reader.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Resources.ResourceManager.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Resources.Writer.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Runtime.CompilerServices.Unsafe.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Runtime.CompilerServices.VisualC.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Runtime.Extensions.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Runtime.Handles.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Runtime.InteropServices.RuntimeInformation.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Runtime.InteropServices.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Runtime.Intrinsics.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Runtime.Loader.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Runtime.Numerics.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Runtime.Serialization.Formatters.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Runtime.Serialization.Json.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Runtime.Serialization.Primitives.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Runtime.Serialization.Xml.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Runtime.Serialization.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Runtime.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Security.Claims.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Security.Cryptography.Algorithms.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Security.Cryptography.Csp.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Security.Cryptography.Encoding.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Security.Cryptography.Primitives.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Security.Cryptography.X509Certificates.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Security.Principal.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Security.SecureString.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Security.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.ServiceModel.Web.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.ServiceProcess.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Text.Encoding.CodePages.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Text.Encoding.Extensions.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Text.Encoding.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Text.Json.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Text.RegularExpressions.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Threading.Channels.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Threading.Overlapped.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Threading.Tasks.Dataflow.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Threading.Tasks.Extensions.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Threading.Tasks.Parallel.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Threading.Tasks.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Threading.Thread.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Threading.ThreadPool.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Threading.Timer.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Threading.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Transactions.Local.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Transactions.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.ValueTuple.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Web.HttpUtility.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Web.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Windows.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Xml.Linq.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Xml.ReaderWriter.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Xml.Serialization.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Xml.XDocument.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Xml.XPath.XDocument.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Xml.XPath.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Xml.XmlDocument.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Xml.XmlSerializer.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.Xml.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\System.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\WindowsBase.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\mscorlib.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\netstandard.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Modules\CimCmdlets\CimCmdlets.psd1
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\Diagnostics.format.ps1xml
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\Event.format.ps1xml
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\GetEvent.types.ps1xml
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\Microsoft.PowerShell.Diagnostics.psd1
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Modules\Microsoft.WSMan.Management\Microsoft.WSMan.Management.psd1
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Modules\Microsoft.WSMan.Management\WSMan.format.ps1xml
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Modules\PSDiagnostics\PSDiagnostics.psd1
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Modules\PSDiagnostics\PSDiagnostics.psm1
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Markdig.Signed.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Microsoft.ApplicationInsights.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Microsoft.CodeAnalysis.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Microsoft.CodeAnalysis.CSharp.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Namotion.Reflection.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Newtonsoft.Json.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NJsonSchema.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.ComponentModel.Composition.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.ComponentModel.Composition.Registration.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.Data.Odbc.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.Data.OleDb.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.Data.SqlClient.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.Diagnostics.EventLog.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.DirectoryServices.AccountManagement.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.DirectoryServices.Protocols.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.Drawing.Common.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.IO.Ports.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.Net.Http.WinHttpHandler.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.Private.ServiceModel.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.Reflection.Context.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.Runtime.Caching.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.Security.Cryptography.Pkcs.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.ServiceModel.Duplex.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.ServiceModel.Http.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.ServiceModel.NetTcp.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.ServiceModel.Primitives.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.ServiceModel.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.ServiceModel.Security.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.ServiceModel.Syndication.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.ServiceProcess.ServiceController.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.Text.Encodings.Web.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\cs\Microsoft.CodeAnalysis.resources.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\de\Microsoft.CodeAnalysis.resources.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\es\Microsoft.CodeAnalysis.resources.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\fr\Microsoft.CodeAnalysis.resources.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\it\Microsoft.CodeAnalysis.resources.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ja\Microsoft.CodeAnalysis.resources.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ko\Microsoft.CodeAnalysis.resources.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\pl\Microsoft.CodeAnalysis.resources.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\pt-BR\Microsoft.CodeAnalysis.resources.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ru\Microsoft.CodeAnalysis.resources.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\tr\Microsoft.CodeAnalysis.resources.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Microsoft.Management.Infrastructure.CimCmdlets.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Microsoft.PowerShell.Commands.Diagnostics.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\unix\lib\net5.0\Microsoft.PowerShell.Commands.Management.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Microsoft.PowerShell.Commands.Management.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\unix\lib\net5.0\Microsoft.PowerShell.Commands.Utility.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Microsoft.PowerShell.Commands.Utility.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\unix\lib\net5.0\Microsoft.PowerShell.ConsoleHost.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Microsoft.PowerShell.ConsoleHost.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Microsoft.PowerShell.CoreCLR.Eventing.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\unix\lib\net5.0\Microsoft.PowerShell.MarkdownRender.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Microsoft.PowerShell.MarkdownRender.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\linux-arm\native\libpsl-native.so
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\linux-arm64\native\libpsl-native.so
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\linux-musl-x64\native\libpsl-native.so
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\linux-x64\native\libmi.so
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\linux-x64\native\libpsl-native.so
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\linux-x64\native\libpsrpclient.so
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\osx\native\libmi.dylib
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\osx\native\libpsl-native.dylib
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\osx\native\libpsrpclient.dylib
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm\native\PowerShell.Core.Instrumentation.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm\native\pwrshplugin.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm64\native\PowerShell.Core.Instrumentation.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm64\native\pwrshplugin.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-x64\native\PowerShell.Core.Instrumentation.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-x64\native\pwrshplugin.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-x86\native\PowerShell.Core.Instrumentation.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-x86\native\pwrshplugin.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\unix\lib\net5.0\Microsoft.PowerShell.SDK.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Microsoft.PowerShell.SDK.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\unix\lib\net5.0\Microsoft.PowerShell.Security.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Microsoft.PowerShell.Security.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Microsoft.WSMan.Management.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\Microsoft.WSMan.Runtime.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\linux-arm\native\libSystem.IO.Ports.Native.so
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\linux-arm64\native\libSystem.IO.Ports.Native.so
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\linux-x64\native\libSystem.IO.Ports.Native.so
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\osx-x64\native\libSystem.IO.Ports.Native.dylib
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm64\native\sni.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-x64\native\sni.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-x86\native\sni.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\freebsd\lib\netcoreapp2.0\System.Data.Odbc.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\linux\lib\netcoreapp2.0\System.Data.Odbc.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\osx\lib\netcoreapp2.0\System.Data.Odbc.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\netcoreapp2.0\System.Data.Odbc.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\netstandard2.0\System.Data.OleDb.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.EventLog.Messages.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.EventLog.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.AccountManagement.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\linux\lib\netcoreapp2.0\System.DirectoryServices.Protocols.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\osx\lib\netcoreapp2.0\System.DirectoryServices.Protocols.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.Protocols.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\unix\lib\netcoreapp3.0\System.Drawing.Common.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\netcoreapp3.0\System.Drawing.Common.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\linux\lib\netstandard2.0\System.IO.Ports.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\osx\lib\netstandard2.0\System.IO.Ports.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\netstandard2.0\System.IO.Ports.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\unix\lib\net5.0\System.Management.Automation.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\net5.0\System.Management.Automation.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\netstandard2.0\System.Net.Http.WinHttpHandler.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\netcoreapp3.0\System.Security.Cryptography.Pkcs.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\netstandard2.0\System.ServiceProcess.ServiceController.dll
|
@@ -1 +0,0 @@
|
||||
542af5c956e3cb1b862c90ca6d1d2a799cd2003d
|
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,109 +0,0 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\NetWork.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\NetWork.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\NetWork.csproj",
|
||||
"projectName": "NetWork",
|
||||
"projectPath": "C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\NetWork.csproj",
|
||||
"packagesPath": "C:\\Users\\סארט\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\סארט\\source\\repos\\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\\": {},
|
||||
"C:\\Users\\סארט\\source\\repos\\NetWork": {},
|
||||
"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, )"
|
||||
},
|
||||
"DotRas.for.Win8": {
|
||||
"target": "Package",
|
||||
"version": "[1.3.0, )"
|
||||
},
|
||||
"Microsoft.Management.Infrastructure": {
|
||||
"target": "Package",
|
||||
"version": "[2.0.0, )"
|
||||
},
|
||||
"Microsoft.NETCore.Windows.ApiSets": {
|
||||
"target": "Package",
|
||||
"version": "[1.0.1, )"
|
||||
},
|
||||
"Microsoft.NETCore.Windows.ApiSets-x64": {
|
||||
"target": "Package",
|
||||
"version": "[1.0.0, )"
|
||||
},
|
||||
"Microsoft.PowerShell.SDK": {
|
||||
"target": "Package",
|
||||
"version": "[7.1.3, )"
|
||||
},
|
||||
"NAudio": {
|
||||
"target": "Package",
|
||||
"version": "[2.0.1, )"
|
||||
},
|
||||
"NETStandard.Library": {
|
||||
"target": "Package",
|
||||
"version": "[2.0.3, )"
|
||||
},
|
||||
"SimpleWifi.netstandard": {
|
||||
"target": "Package",
|
||||
"version": "[2.0.0, )"
|
||||
},
|
||||
"System.Management": {
|
||||
"target": "Package",
|
||||
"version": "[5.0.0, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
@@ -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,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,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.
Binary file not shown.
@@ -1 +0,0 @@
|
||||
679db5d6388fd2c5648a326c7140450a0e9e250e
|
@@ -1,18 +0,0 @@
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\NetWork.exe
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\NetWork.deps.json
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\NetWork.runtimeconfig.json
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\NetWork.runtimeconfig.dev.json
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\NetWork.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\ref\NetWork.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\NetWork.pdb
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\Microsoft.Extensions.FileSystemGlobbing.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\NetWork.csproj.AssemblyReference.cache
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\NetWork.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\NetWork.AssemblyInfoInputs.cache
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\NetWork.AssemblyInfo.cs
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\NetWork.csproj.CoreCompileInputs.cache
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\NetWork.csproj.CopyComplete
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\NetWork.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\ref\NetWork.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\NetWork.pdb
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\NetWork.genruntimeconfig.cache
|
@@ -1 +0,0 @@
|
||||
0623b80004f3e5b7c7573d42f3b5cc8e40910fda
|
Binary file not shown.
@@ -1,6 +0,0 @@
|
||||
D:\Neutral Folder\NetWork.exe
|
||||
D:\Neutral Folder\NetWork.dll
|
||||
D:\Neutral Folder\NetWork.deps.json
|
||||
D:\Neutral Folder\NetWork.runtimeconfig.json
|
||||
D:\Neutral Folder\NetWork.pdb
|
||||
D:\Neutral Folder\Microsoft.Extensions.FileSystemGlobbing.dll
|
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 = True
|
||||
build_property.IncludeAllContentForSelfExtract =
|
||||
build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows
|
Binary file not shown.
@@ -1 +0,0 @@
|
||||
a3e113b4af9a4db0cffb0b07200f1b03670dc88d
|
@@ -1,236 +0,0 @@
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\NetWork.exe
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\NetWork.deps.json
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\NetWork.runtimeconfig.json
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\NetWork.runtimeconfig.dev.json
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\NetWork.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\ref\NetWork.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\NetWork.pdb
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\Microsoft.Extensions.FileSystemGlobbing.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\Microsoft.CSharp.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\Microsoft.VisualBasic.Core.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\Microsoft.VisualBasic.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\Microsoft.Win32.Primitives.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\Microsoft.Win32.Registry.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.AppContext.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Buffers.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Collections.Concurrent.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Collections.Immutable.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Collections.NonGeneric.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Collections.Specialized.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Collections.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.ComponentModel.Annotations.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.ComponentModel.DataAnnotations.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.ComponentModel.EventBasedAsync.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.ComponentModel.Primitives.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.ComponentModel.TypeConverter.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.ComponentModel.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Configuration.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Console.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Core.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Data.Common.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Data.DataSetExtensions.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Data.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Diagnostics.Contracts.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Diagnostics.Debug.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Diagnostics.DiagnosticSource.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Diagnostics.FileVersionInfo.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Diagnostics.Process.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Diagnostics.StackTrace.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Diagnostics.TextWriterTraceListener.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Diagnostics.Tools.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Diagnostics.TraceSource.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Diagnostics.Tracing.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Drawing.Primitives.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Drawing.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Dynamic.Runtime.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Formats.Asn1.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Globalization.Calendars.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Globalization.Extensions.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Globalization.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.IO.Compression.Brotli.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.IO.Compression.FileSystem.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.IO.Compression.ZipFile.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.IO.Compression.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.IO.FileSystem.AccessControl.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.IO.FileSystem.DriveInfo.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.IO.FileSystem.Primitives.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.IO.FileSystem.Watcher.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.IO.FileSystem.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.IO.IsolatedStorage.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.IO.MemoryMappedFiles.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.IO.Pipes.AccessControl.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.IO.Pipes.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.IO.UnmanagedMemoryStream.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.IO.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Linq.Expressions.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Linq.Parallel.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Linq.Queryable.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Linq.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Memory.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.Http.Json.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.Http.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.HttpListener.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.Mail.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.NameResolution.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.NetworkInformation.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.Ping.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.Primitives.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.Requests.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.Security.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.ServicePoint.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.Sockets.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.WebClient.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.WebHeaderCollection.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.WebProxy.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.WebSockets.Client.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.WebSockets.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Net.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Numerics.Vectors.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Numerics.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.ObjectModel.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Private.DataContractSerialization.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Private.Uri.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Private.Xml.Linq.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Private.Xml.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Reflection.DispatchProxy.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Reflection.Emit.ILGeneration.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Reflection.Emit.Lightweight.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Reflection.Emit.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Reflection.Extensions.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Reflection.Metadata.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Reflection.Primitives.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Reflection.TypeExtensions.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Reflection.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Resources.Reader.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Resources.ResourceManager.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Resources.Writer.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Runtime.CompilerServices.Unsafe.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Runtime.CompilerServices.VisualC.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Runtime.Extensions.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Runtime.Handles.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Runtime.InteropServices.RuntimeInformation.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Runtime.InteropServices.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Runtime.Intrinsics.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Runtime.Loader.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Runtime.Numerics.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Runtime.Serialization.Formatters.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Runtime.Serialization.Json.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Runtime.Serialization.Primitives.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Runtime.Serialization.Xml.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Runtime.Serialization.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Runtime.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Security.AccessControl.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Security.Claims.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Security.Cryptography.Algorithms.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Security.Cryptography.Cng.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Security.Cryptography.Csp.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Security.Cryptography.Encoding.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Security.Cryptography.OpenSsl.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Security.Cryptography.Primitives.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Security.Cryptography.X509Certificates.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Security.Principal.Windows.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Security.Principal.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Security.SecureString.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Security.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.ServiceModel.Web.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.ServiceProcess.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Text.Encoding.CodePages.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Text.Encoding.Extensions.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Text.Encoding.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Text.Encodings.Web.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Text.Json.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Text.RegularExpressions.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Threading.Channels.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Threading.Overlapped.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Threading.Tasks.Dataflow.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Threading.Tasks.Extensions.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Threading.Tasks.Parallel.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Threading.Tasks.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Threading.Thread.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Threading.ThreadPool.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Threading.Timer.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Threading.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Transactions.Local.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Transactions.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.ValueTuple.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Web.HttpUtility.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Web.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Windows.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Xml.Linq.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Xml.ReaderWriter.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Xml.Serialization.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Xml.XDocument.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Xml.XPath.XDocument.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Xml.XPath.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Xml.XmlDocument.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Xml.XmlSerializer.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Xml.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\WindowsBase.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\mscorlib.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\netstandard.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\Microsoft.DiaSymReader.Native.amd64.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\System.Private.CoreLib.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-console-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-console-l1-2-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-datetime-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-debug-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-errorhandling-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-file-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-file-l1-2-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-file-l2-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-handle-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-heap-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-interlocked-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-libraryloader-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-localization-l1-2-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-memory-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-namedpipe-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-processenvironment-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-processthreads-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-processthreads-l1-1-1.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-profile-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-rtlsupport-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-string-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-synch-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-synch-l1-2-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-sysinfo-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-timezone-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-core-util-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-crt-conio-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-crt-convert-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-crt-environment-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-crt-filesystem-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-crt-heap-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-crt-locale-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-crt-math-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-crt-multibyte-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-crt-private-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-crt-process-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-crt-runtime-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-crt-stdio-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-crt-string-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-crt-time-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\api-ms-win-crt-utility-l1-1-0.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\clrcompression.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\clretwrc.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\clrjit.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\coreclr.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\createdump.exe
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\dbgshim.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\hostfxr.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\hostpolicy.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\mscordaccore.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\mscordaccore_amd64_amd64_5.0.721.25508.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\mscordbi.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\mscorrc.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0\win-x64\ucrtbase.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\win-x64\NetWork.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\win-x64\NetWork.AssemblyInfoInputs.cache
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\win-x64\NetWork.AssemblyInfo.cs
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\win-x64\NetWork.csproj.CoreCompileInputs.cache
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\win-x64\NetWork.csproj.CopyComplete
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\win-x64\NetWork.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\win-x64\ref\NetWork.dll
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\win-x64\NetWork.pdb
|
||||
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0\win-x64\NetWork.genruntimeconfig.cache
|
@@ -1,269 +0,0 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v5.0/win-x64",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v5.0": {},
|
||||
".NETCoreApp,Version=v5.0/win-x64": {
|
||||
"NetWork/1.0.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.FileSystemGlobbing": "5.0.0",
|
||||
"runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "5.0.7"
|
||||
},
|
||||
"runtime": {
|
||||
"NetWork.dll": {}
|
||||
}
|
||||
},
|
||||
"runtimepack.Microsoft.NETCore.App.Runtime.win-x64/5.0.7": {
|
||||
"runtime": {
|
||||
"Microsoft.Win32.Primitives.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.721.25508"
|
||||
},
|
||||
"Microsoft.Win32.Registry.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.721.25508"
|
||||
},
|
||||
"System.Collections.Concurrent.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.721.25508"
|
||||
},
|
||||
"System.Collections.Immutable.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.721.25508"
|
||||
},
|
||||
"System.Collections.NonGeneric.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.721.25508"
|
||||
},
|
||||
"System.Collections.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.721.25508"
|
||||
},
|
||||
"System.ComponentModel.Primitives.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.721.25508"
|
||||
},
|
||||
"System.ComponentModel.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.721.25508"
|
||||
},
|
||||
"System.Diagnostics.Process.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.721.25508"
|
||||
},
|
||||
"System.Diagnostics.StackTrace.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.721.25508"
|
||||
},
|
||||
"System.IO.Compression.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.721.25508"
|
||||
},
|
||||
"System.IO.FileSystem.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.721.25508"
|
||||
},
|
||||
"System.IO.MemoryMappedFiles.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.721.25508"
|
||||
},
|
||||
"System.Linq.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.721.25508"
|
||||
},
|
||||
"System.ObjectModel.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.721.25508"
|
||||
},
|
||||
"System.Reflection.Metadata.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.721.25508"
|
||||
},
|
||||
"System.Runtime.CompilerServices.Unsafe.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.721.25508"
|
||||
},
|
||||
"System.Runtime.Serialization.Formatters.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.721.25508"
|
||||
},
|
||||
"System.Private.CoreLib.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.721.25508"
|
||||
}
|
||||
},
|
||||
"native": {
|
||||
"clrcompression.dll": {
|
||||
"fileVersion": "42.42.42.42424"
|
||||
},
|
||||
"clrjit.dll": {
|
||||
"fileVersion": "5.0.721.25508"
|
||||
},
|
||||
"coreclr.dll": {
|
||||
"fileVersion": "5.0.721.25508"
|
||||
},
|
||||
"mscordaccore.dll": {
|
||||
"fileVersion": "5.0.721.25508"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"NetWork/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"runtimepack.Microsoft.NETCore.App.Runtime.win-x64/5.0.7": {
|
||||
"type": "runtimepack",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
|
||||
"path": "microsoft.extensions.filesystemglobbing/5.0.0",
|
||||
"hashPath": "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512"
|
||||
}
|
||||
},
|
||||
"runtimes": {
|
||||
"win-x64": [
|
||||
"win",
|
||||
"any",
|
||||
"base"
|
||||
],
|
||||
"win-x64-aot": [
|
||||
"win-aot",
|
||||
"win-x64",
|
||||
"win",
|
||||
"aot",
|
||||
"any",
|
||||
"base"
|
||||
],
|
||||
"win10-x64": [
|
||||
"win10",
|
||||
"win81-x64",
|
||||
"win81",
|
||||
"win8-x64",
|
||||
"win8",
|
||||
"win7-x64",
|
||||
"win7",
|
||||
"win-x64",
|
||||
"win",
|
||||
"any",
|
||||
"base"
|
||||
],
|
||||
"win10-x64-aot": [
|
||||
"win10-aot",
|
||||
"win10-x64",
|
||||
"win10",
|
||||
"win81-x64-aot",
|
||||
"win81-aot",
|
||||
"win81-x64",
|
||||
"win81",
|
||||
"win8-x64-aot",
|
||||
"win8-aot",
|
||||
"win8-x64",
|
||||
"win8",
|
||||
"win7-x64-aot",
|
||||
"win7-aot",
|
||||
"win7-x64",
|
||||
"win7",
|
||||
"win-x64-aot",
|
||||
"win-aot",
|
||||
"win-x64",
|
||||
"win",
|
||||
"aot",
|
||||
"any",
|
||||
"base"
|
||||
],
|
||||
"win7-x64": [
|
||||
"win7",
|
||||
"win-x64",
|
||||
"win",
|
||||
"any",
|
||||
"base"
|
||||
],
|
||||
"win7-x64-aot": [
|
||||
"win7-aot",
|
||||
"win7-x64",
|
||||
"win7",
|
||||
"win-x64-aot",
|
||||
"win-aot",
|
||||
"win-x64",
|
||||
"win",
|
||||
"aot",
|
||||
"any",
|
||||
"base"
|
||||
],
|
||||
"win8-x64": [
|
||||
"win8",
|
||||
"win7-x64",
|
||||
"win7",
|
||||
"win-x64",
|
||||
"win",
|
||||
"any",
|
||||
"base"
|
||||
],
|
||||
"win8-x64-aot": [
|
||||
"win8-aot",
|
||||
"win8-x64",
|
||||
"win8",
|
||||
"win7-x64-aot",
|
||||
"win7-aot",
|
||||
"win7-x64",
|
||||
"win7",
|
||||
"win-x64-aot",
|
||||
"win-aot",
|
||||
"win-x64",
|
||||
"win",
|
||||
"aot",
|
||||
"any",
|
||||
"base"
|
||||
],
|
||||
"win81-x64": [
|
||||
"win81",
|
||||
"win8-x64",
|
||||
"win8",
|
||||
"win7-x64",
|
||||
"win7",
|
||||
"win-x64",
|
||||
"win",
|
||||
"any",
|
||||
"base"
|
||||
],
|
||||
"win81-x64-aot": [
|
||||
"win81-aot",
|
||||
"win81-x64",
|
||||
"win81",
|
||||
"win8-x64-aot",
|
||||
"win8-aot",
|
||||
"win8-x64",
|
||||
"win8",
|
||||
"win7-x64-aot",
|
||||
"win7-aot",
|
||||
"win7-x64",
|
||||
"win7",
|
||||
"win-x64-aot",
|
||||
"win-aot",
|
||||
"win-x64",
|
||||
"win",
|
||||
"aot",
|
||||
"any",
|
||||
"base"
|
||||
]
|
||||
}
|
||||
}
|
@@ -1 +0,0 @@
|
||||
37aa9ad611865df71a286fed1e1df3c4e23a21cc
|
Binary file not shown.
@@ -1,6 +0,0 @@
|
||||
D:\Neutral Folder\NetWork.pdb
|
||||
D:\Neutral Folder\clrcompression.dll
|
||||
D:\Neutral Folder\clrjit.dll
|
||||
D:\Neutral Folder\coreclr.dll
|
||||
D:\Neutral Folder\mscordaccore.dll
|
||||
D:\Neutral Folder\NetWork.exe
|
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@@ -1,145 +0,0 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "BhydSiOG2NBu0uLVWATFfYgnfBtndQZ/9pD0bWY8wy4gGFVPlWJKfua4yE919sMzabPkJFM5GWgKvqi6WhxWZQ==",
|
||||
"success": true,
|
||||
"projectFilePath": "C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\NetWork.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\audiocontrol.x64\\1.0.1\\audiocontrol.x64.1.0.1.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\dotras.for.win8\\1.3.0\\dotras.for.win8.1.3.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\markdig.signed\\0.21.1\\markdig.signed.0.21.1.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.applicationinsights\\2.15.0\\microsoft.applicationinsights.2.15.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.0.0\\microsoft.codeanalysis.analyzers.3.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.codeanalysis.common\\3.7.0\\microsoft.codeanalysis.common.3.7.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.codeanalysis.csharp\\3.7.0\\microsoft.codeanalysis.csharp.3.7.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.csharp\\4.3.0\\microsoft.csharp.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.management.infrastructure\\2.0.0\\microsoft.management.infrastructure.2.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.management.infrastructure.cimcmdlets\\7.1.3\\microsoft.management.infrastructure.cimcmdlets.7.1.3.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.management.infrastructure.runtime.unix\\2.0.0\\microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.management.infrastructure.runtime.win\\2.0.0\\microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.1\\microsoft.netcore.platforms.5.0.1.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.netcore.windows.apisets\\1.0.1\\microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.netcore.windows.apisets-x64\\1.0.0\\microsoft.netcore.windows.apisets-x64.1.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.powershell.commands.diagnostics\\7.1.3\\microsoft.powershell.commands.diagnostics.7.1.3.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.powershell.commands.management\\7.1.3\\microsoft.powershell.commands.management.7.1.3.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.powershell.commands.utility\\7.1.3\\microsoft.powershell.commands.utility.7.1.3.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.powershell.consolehost\\7.1.3\\microsoft.powershell.consolehost.7.1.3.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.powershell.coreclr.eventing\\7.1.3\\microsoft.powershell.coreclr.eventing.7.1.3.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.powershell.markdownrender\\7.1.3\\microsoft.powershell.markdownrender.7.1.3.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.powershell.native\\7.1.0\\microsoft.powershell.native.7.1.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.powershell.sdk\\7.1.3\\microsoft.powershell.sdk.7.1.3.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.powershell.security\\7.1.3\\microsoft.powershell.security.7.1.3.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.win32.registry\\5.0.0\\microsoft.win32.registry.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.win32.registry.accesscontrol\\5.0.0\\microsoft.win32.registry.accesscontrol.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.win32.systemevents\\5.0.0\\microsoft.win32.systemevents.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.windows.compatibility\\5.0.0\\microsoft.windows.compatibility.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.wsman.management\\7.1.3\\microsoft.wsman.management.7.1.3.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.wsman.runtime\\7.1.3\\microsoft.wsman.runtime.7.1.3.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\namotion.reflection\\1.0.14\\namotion.reflection.1.0.14.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\naudio\\2.0.1\\naudio.2.0.1.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\naudio.asio\\2.0.0\\naudio.asio.2.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\naudio.core\\2.0.0\\naudio.core.2.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\naudio.midi\\2.0.1\\naudio.midi.2.0.1.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\naudio.wasapi\\2.0.0\\naudio.wasapi.2.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\naudio.winforms\\2.0.1\\naudio.winforms.2.0.1.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\naudio.winmm\\2.0.1\\naudio.winmm.2.0.1.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\netstandard.library\\2.0.3\\netstandard.library.2.0.3.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\newtonsoft.json\\12.0.3\\newtonsoft.json.12.0.3.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\njsonschema\\10.2.2\\njsonschema.10.2.2.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\runtime.linux-arm.runtime.native.system.io.ports\\5.0.0-rtm.20519.4\\runtime.linux-arm.runtime.native.system.io.ports.5.0.0-rtm.20519.4.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\runtime.linux-arm64.runtime.native.system.io.ports\\5.0.0-rtm.20519.4\\runtime.linux-arm64.runtime.native.system.io.ports.5.0.0-rtm.20519.4.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\runtime.linux-x64.runtime.native.system.io.ports\\5.0.0-rtm.20519.4\\runtime.linux-x64.runtime.native.system.io.ports.5.0.0-rtm.20519.4.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.7.0\\runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\runtime.native.system.io.ports\\5.0.0\\runtime.native.system.io.ports.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\runtime.osx-x64.runtime.native.system.io.ports\\5.0.0-rtm.20519.4\\runtime.osx-x64.runtime.native.system.io.ports.5.0.0-rtm.20519.4.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\runtime.win-x64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\runtime.win-x86.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\simplewifi.netstandard\\2.0.0\\simplewifi.netstandard.2.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.codedom\\5.0.0\\system.codedom.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.collections.immutable\\1.5.0\\system.collections.immutable.1.5.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.componentmodel.composition\\5.0.0\\system.componentmodel.composition.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.componentmodel.composition.registration\\5.0.0\\system.componentmodel.composition.registration.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.configuration.configurationmanager\\5.0.0\\system.configuration.configurationmanager.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.data.datasetextensions\\4.5.0\\system.data.datasetextensions.4.5.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.data.odbc\\5.0.0\\system.data.odbc.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.data.oledb\\5.0.0\\system.data.oledb.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.data.sqlclient\\4.8.2\\system.data.sqlclient.4.8.2.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.6.0\\system.diagnostics.diagnosticsource.4.6.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.diagnostics.eventlog\\5.0.1\\system.diagnostics.eventlog.5.0.1.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.diagnostics.performancecounter\\5.0.0\\system.diagnostics.performancecounter.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.directoryservices\\5.0.0\\system.directoryservices.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.directoryservices.accountmanagement\\5.0.0\\system.directoryservices.accountmanagement.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.directoryservices.protocols\\5.0.0\\system.directoryservices.protocols.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.drawing.common\\5.0.2\\system.drawing.common.5.0.2.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.formats.asn1\\5.0.0\\system.formats.asn1.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.io.filesystem.accesscontrol\\5.0.0\\system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.io.packaging\\5.0.0\\system.io.packaging.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.io.pipes.accesscontrol\\5.0.0\\system.io.pipes.accesscontrol.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.io.ports\\5.0.0\\system.io.ports.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.management\\5.0.0\\system.management.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.management.automation\\7.1.3\\system.management.automation.7.1.3.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.net.http.winhttphandler\\5.0.0\\system.net.http.winhttphandler.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.private.servicemodel\\4.7.0\\system.private.servicemodel.4.7.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.reflection.context\\5.0.0\\system.reflection.context.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.reflection.dispatchproxy\\4.5.0\\system.reflection.dispatchproxy.4.5.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.reflection.emit\\4.7.0\\system.reflection.emit.4.7.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.7.0\\system.reflection.emit.ilgeneration.4.7.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.reflection.emit.lightweight\\4.7.0\\system.reflection.emit.lightweight.4.7.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.reflection.metadata\\1.6.0\\system.reflection.metadata.1.6.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.runtime.caching\\5.0.0\\system.runtime.caching.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\5.0.0\\system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.security.accesscontrol\\5.0.0\\system.security.accesscontrol.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.security.cryptography.cng\\5.0.0\\system.security.cryptography.cng.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.security.cryptography.pkcs\\5.0.1\\system.security.cryptography.pkcs.5.0.1.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.security.cryptography.protecteddata\\5.0.0\\system.security.cryptography.protecteddata.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.security.cryptography.xml\\5.0.0\\system.security.cryptography.xml.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.security.permissions\\5.0.0\\system.security.permissions.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.servicemodel.duplex\\4.7.0\\system.servicemodel.duplex.4.7.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.servicemodel.http\\4.7.0\\system.servicemodel.http.4.7.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.servicemodel.nettcp\\4.7.0\\system.servicemodel.nettcp.4.7.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.servicemodel.primitives\\4.7.0\\system.servicemodel.primitives.4.7.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.servicemodel.security\\4.7.0\\system.servicemodel.security.4.7.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.servicemodel.syndication\\5.0.0\\system.servicemodel.syndication.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.serviceprocess.servicecontroller\\5.0.0\\system.serviceprocess.servicecontroller.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.text.encoding.codepages\\5.0.0\\system.text.encoding.codepages.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.text.encodings.web\\5.0.1\\system.text.encodings.web.5.0.1.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.threading.accesscontrol\\5.0.0\\system.threading.accesscontrol.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.3\\system.threading.tasks.extensions.4.5.3.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\system.windows.extensions\\5.0.0\\system.windows.extensions.5.0.0.nupkg.sha512"
|
||||
],
|
||||
"logs": [
|
||||
{
|
||||
"code": "NU1701",
|
||||
"level": "Warning",
|
||||
"warningLevel": 1,
|
||||
"message": "Package 'DotRas.for.Win8 1.3.0' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8' instead of the project target framework 'net5.0-windows7.0'. This package may not be fully compatible with your project.",
|
||||
"libraryId": "DotRas.for.Win8",
|
||||
"targetGraphs": [
|
||||
"net5.0-windows7.0"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@@ -1,91 +0,0 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\NetWork.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\NetWork.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\NetWork.csproj",
|
||||
"projectName": "NetWork",
|
||||
"projectPath": "C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\NetWork.csproj",
|
||||
"packagesPath": "C:\\Users\\סארט\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\obj\\publish\\win-x64\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\סארט\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net5.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net5.0": {
|
||||
"targetAlias": "net5.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net5.0": {
|
||||
"targetAlias": "net5.0",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.FileSystemGlobbing": {
|
||||
"target": "Package",
|
||||
"version": "[5.0.0, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"downloadDependencies": [
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App.Runtime.win-x64",
|
||||
"version": "[5.0.7, 5.0.7]"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.NETCore.App.Runtime.win-x64",
|
||||
"version": "[5.0.7, 5.0.7]"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.WindowsDesktop.App.Runtime.win-x64",
|
||||
"version": "[5.0.7, 5.0.7]"
|
||||
}
|
||||
],
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
},
|
||||
"runtimes": {
|
||||
"win-x64": {
|
||||
"#import": []
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@@ -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)' == '' ">5.10.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,6 +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>
|
||||
</Project>
|
@@ -1,141 +0,0 @@
|
||||
{
|
||||
"version": 3,
|
||||
"targets": {
|
||||
"net5.0": {
|
||||
"Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
|
||||
}
|
||||
}
|
||||
},
|
||||
"net5.0/win-x64": {
|
||||
"Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"Microsoft.Extensions.FileSystemGlobbing/5.0.0": {
|
||||
"sha512": "ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==",
|
||||
"type": "package",
|
||||
"path": "microsoft.extensions.filesystemglobbing/5.0.0",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"LICENSE.TXT",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
|
||||
"lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
|
||||
"lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
|
||||
"lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
|
||||
"microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
|
||||
"microsoft.extensions.filesystemglobbing.nuspec",
|
||||
"useSharedDesignerContext.txt",
|
||||
"version.txt"
|
||||
]
|
||||
}
|
||||
},
|
||||
"projectFileDependencyGroups": {
|
||||
"net5.0": [
|
||||
"Microsoft.Extensions.FileSystemGlobbing >= 5.0.0"
|
||||
]
|
||||
},
|
||||
"packageFolders": {
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\": {},
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\NetWork.csproj",
|
||||
"projectName": "NetWork",
|
||||
"projectPath": "C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\NetWork.csproj",
|
||||
"packagesPath": "C:\\Users\\סארט\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\obj\\publish\\win-x64\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\סארט\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net5.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net5.0": {
|
||||
"targetAlias": "net5.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net5.0": {
|
||||
"targetAlias": "net5.0",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.FileSystemGlobbing": {
|
||||
"target": "Package",
|
||||
"version": "[5.0.0, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"downloadDependencies": [
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App.Runtime.win-x64",
|
||||
"version": "[5.0.7, 5.0.7]"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.NETCore.App.Runtime.win-x64",
|
||||
"version": "[5.0.7, 5.0.7]"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.WindowsDesktop.App.Runtime.win-x64",
|
||||
"version": "[5.0.7, 5.0.7]"
|
||||
}
|
||||
],
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
},
|
||||
"runtimes": {
|
||||
"win-x64": {
|
||||
"#import": []
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@@ -1,13 +0,0 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "bMjlf2qSCrwvwyAoTPmdEvighgbXyxWv5ZrDDuZ5kcA558Y7UIPiY4JmXLHfwM2sEo2D3+o/sblliMTqmiea2A==",
|
||||
"success": true,
|
||||
"projectFilePath": "C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\NetWork.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\5.0.0\\microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.netcore.app.runtime.win-x64\\5.0.7\\microsoft.netcore.app.runtime.win-x64.5.0.7.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.windowsdesktop.app.runtime.win-x64\\5.0.7\\microsoft.windowsdesktop.app.runtime.win-x64.5.0.7.nupkg.sha512",
|
||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.aspnetcore.app.runtime.win-x64\\5.0.7\\microsoft.aspnetcore.app.runtime.win-x64.5.0.7.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
}
|
1
NetWork/Other/Data.ini
Normal file
1
NetWork/Other/Data.ini
Normal file
@@ -0,0 +1 @@
|
||||
RunNetwork
|
4
NetWork/Other/bluetooth.json
Normal file
4
NetWork/Other/bluetooth.json
Normal file
@@ -0,0 +1,4 @@
|
||||
|
||||
[
|
||||
""
|
||||
]
|
65
NetWork/Other/def.json
Normal file
65
NetWork/Other/def.json
Normal file
@@ -0,0 +1,65 @@
|
||||
[
|
||||
[{
|
||||
"GoogleDriveFS": "rep",
|
||||
"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"
|
||||
}, {
|
||||
"rep": "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"
|
||||
}
|
||||
|
||||
],
|
||||
{
|
||||
"vpn": {
|
||||
"programs_to_run": ["GoogleDriveFS", "qbittorrent", "Surfshark"],
|
||||
"programs_to_stop": ["rdp", "tv", "teamviewer"],
|
||||
"services_to_stop": ["Surf"],
|
||||
"services_to_start": ["teamviewer"],
|
||||
"mute": false
|
||||
},
|
||||
"ek": {
|
||||
"programs_to_run": ["rdp", "GoogleDriveFS"],
|
||||
"programs_to_stop": ["qbittorrent", "Surfshrk"],
|
||||
"services_to_stop": ["Surf"],
|
||||
"services_to_start": [],
|
||||
"mute": false
|
||||
},
|
||||
"good_lan": {
|
||||
"programs_to_run": ["GoogleDriveFS", "qbittorrent", "Surfshark"],
|
||||
"services_to_start": ["Surf"],
|
||||
"services_to_stop": [],
|
||||
"programs_to_stop": ["rdp"],
|
||||
"mute": false
|
||||
},
|
||||
"lan": {
|
||||
"programs_to_run": ["GoogleDriveFS", "rdp"],
|
||||
"services_to_start": [],
|
||||
"services_to_stop": ["Surf"],
|
||||
"programs_to_stop": ["qbittorrent", "Surfshark"],
|
||||
"mute": false,
|
||||
"macs": ["00-E0-4C-68-13-F8"]
|
||||
},
|
||||
"good_wifi": {
|
||||
"programs_to_run": ["GoogleDriveFS", "qbittorrent", "Surfshark"],
|
||||
"services_to_start": ["Surf"],
|
||||
"services_to_stop": [],
|
||||
"programs_to_stop": ["rdp"],
|
||||
"mute": false
|
||||
},
|
||||
"bad_wifi": {
|
||||
"programs_to_run": ["GoogleDriveFS"],
|
||||
"services_to_start": ["Surf"],
|
||||
"services_to_stop": [],
|
||||
"programs_to_stop": ["rdp", "qbittorrent", "Surfshark"],
|
||||
"mute": true
|
||||
|
||||
}
|
||||
}
|
||||
]
|
4
NetWork/Other/earphones.json
Normal file
4
NetWork/Other/earphones.json
Normal file
@@ -0,0 +1,4 @@
|
||||
[
|
||||
"Mi True Wire",
|
||||
"realme"
|
||||
]
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user