a little bit of change with the previews version
This commit is contained in:
Binary file not shown.
@@ -5,11 +5,13 @@
|
|||||||
<TargetFramework>net5.0-windows7.0</TargetFramework>
|
<TargetFramework>net5.0-windows7.0</TargetFramework>
|
||||||
<ApplicationIcon />
|
<ApplicationIcon />
|
||||||
<StartupObject>NetWork.Program</StartupObject>
|
<StartupObject>NetWork.Program</StartupObject>
|
||||||
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||||||
<DebugType>embedded</DebugType>
|
<DebugType>embedded</DebugType>
|
||||||
<DebugSymbols>true</DebugSymbols>
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
<PlatformTarget>x64</PlatformTarget>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
@@ -18,7 +20,6 @@
|
|||||||
<PackageReference Include="Microsoft.Management.Infrastructure" Version="2.0.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" Version="1.0.1" />
|
||||||
<PackageReference Include="Microsoft.NETCore.Windows.ApiSets-x64" Version="1.0.0" />
|
<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="NAudio" Version="2.0.1" />
|
||||||
<PackageReference Include="NETStandard.Library" Version="2.0.3" />
|
<PackageReference Include="NETStandard.Library" Version="2.0.3" />
|
||||||
<PackageReference Include="SimpleWifi.netstandard" Version="2.0.0" />
|
<PackageReference Include="SimpleWifi.netstandard" Version="2.0.0" />
|
||||||
|
@@ -0,0 +1,18 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||||
|
-->
|
||||||
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup>
|
||||||
|
<Configuration>Release</Configuration>
|
||||||
|
<Platform>Any CPU</Platform>
|
||||||
|
<PublishDir>D:\Neutral Folder\NetWorkAutomation</PublishDir>
|
||||||
|
<PublishProtocol>FileSystem</PublishProtocol>
|
||||||
|
<TargetFramework>net5.0-windows7.0</TargetFramework>
|
||||||
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
||||||
|
<SelfContained>true</SelfContained>
|
||||||
|
<PublishSingleFile>True</PublishSingleFile>
|
||||||
|
<PublishReadyToRun>True</PublishReadyToRun>
|
||||||
|
<PublishTrimmed>True</PublishTrimmed>
|
||||||
|
</PropertyGroup>
|
||||||
|
</Project>
|
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||||
|
-->
|
||||||
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup>
|
||||||
|
<History>True|2021-06-26T18:39:14.9764613Z;</History>
|
||||||
|
</PropertyGroup>
|
||||||
|
</Project>
|
7
NetWork/NetWork/Properties/launchSettings.json
Normal file
7
NetWork/NetWork/Properties/launchSettings.json
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"profiles": {
|
||||||
|
"NetWork": {
|
||||||
|
"commandName": "Project"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
211
NetWork/NetWork/Torrent And Sync.py
Normal file
211
NetWork/NetWork/Torrent And Sync.py
Normal file
@@ -0,0 +1,211 @@
|
|||||||
|
from typing import Sequence, Union
|
||||||
|
import wmi
|
||||||
|
import subprocess
|
||||||
|
import glob
|
||||||
|
import re
|
||||||
|
import pywinauto
|
||||||
|
import pywin
|
||||||
|
import psutil
|
||||||
|
import keyboard
|
||||||
|
processes = [p for p in wmi.WMI().Win32_Process() if p.Name in ["GoogleDriveFS.exe",
|
||||||
|
"googledrivesync.exe", "qbittorrent.exe", "Surfshark.exe", "mstsc.exe"]]
|
||||||
|
|
||||||
|
def rdp(start_rdp_software: bool = True):
|
||||||
|
'''rdp detects if the rdp software is running on the computer. if the start_rdp_software is true at calling, the function will start the rdp if there is no program that runs.
|
||||||
|
elsewise, it will close it
|
||||||
|
|
||||||
|
:param start_rdp_software: switch. it can be called to run(true) or stop(false) the rdp software, defaults to True
|
||||||
|
:type start_rdp_software: bool, optional
|
||||||
|
'''
|
||||||
|
if start_rdp_software:
|
||||||
|
running = False
|
||||||
|
for process in processes:
|
||||||
|
if process.CommandLine == '"mstsc.exe" "D:\\Drive\\מסמכים\\vms\\משרדוש.rdp"' or process.CommandLine == '"C:\\Windows\\System32\\mstsc.exe" /v:"132.64.161.2"':
|
||||||
|
running = True
|
||||||
|
if not running:
|
||||||
|
subprocess.Popen('"mstsc.exe" "D:\\Drive\\מסמכים\\vms\\משרדוש.rdp"',
|
||||||
|
creationflags=subprocess.CREATE_NO_WINDOW, stdout=subprocess.PIPE, shell=True)
|
||||||
|
else:
|
||||||
|
for process in processes:
|
||||||
|
if process.CommandLine == '"mstsc.exe" "D:\\Drive\\מסמכים\\vms\\משרדוש.rdp"' or process.CommandLine == '"C:\\Windows\\System32\\mstsc.exe" /v:"132.64.161.2"':
|
||||||
|
try:
|
||||||
|
process.Terminate()
|
||||||
|
except:
|
||||||
|
continue
|
||||||
|
|
||||||
|
def allowd_macs(mac_address: Union[dict, tuple, str]):
|
||||||
|
allowed = ['00-E0-4C-68-13-E4']
|
||||||
|
if isinstance(mac_address, str):
|
||||||
|
if mac_address in allowed:
|
||||||
|
return True
|
||||||
|
for allowed_elements in allowed:
|
||||||
|
if allowed_elements in mac_address:
|
||||||
|
return True
|
||||||
|
return False
|
||||||
|
|
||||||
|
|
||||||
|
def start_process(process_list: list):
|
||||||
|
start = {
|
||||||
|
"Surfshark.exe": 'C:/Program Files (x86)/Surfshark/Surfshark.exe',
|
||||||
|
'qbittorrent.exe': "C:/Program Files/qBittorrent/qbittorrent.exe", "GoogleDriveFS.exe": glob.glob(
|
||||||
|
'C:/Program Files/Google/Drive File Stream/*/GoogleDriveFS.exe', recursive=True)[0],
|
||||||
|
"googledrivesync.exe": 'C:/Program Files/Google/Drive/googledrivesync.exe'
|
||||||
|
}
|
||||||
|
for p in process_list:
|
||||||
|
start_this_process = False
|
||||||
|
for k in processes:
|
||||||
|
if p == k.Name:
|
||||||
|
start_this_process = True
|
||||||
|
if not start_this_process:
|
||||||
|
subprocess.Popen(start[p], shell=True, creationflags=subprocess.CREATE_NO_WINDOW, stdout=subprocess.PIPE)
|
||||||
|
|
||||||
|
|
||||||
|
def stop_process(process_list: list):
|
||||||
|
for proc in process_list:
|
||||||
|
for k in processes:
|
||||||
|
if proc == k.Name:
|
||||||
|
try:
|
||||||
|
k.Terminate()
|
||||||
|
except:
|
||||||
|
continue
|
||||||
|
|
||||||
|
|
||||||
|
def disallow(process_list: list = ["GoogleDriveFS.exe", "googledrivesync.exe"],
|
||||||
|
mute: bool = True, run_process: list = None):
|
||||||
|
stop_process(process_list)
|
||||||
|
if run_process:
|
||||||
|
start_process(run_process)
|
||||||
|
if mute:
|
||||||
|
subprocess.run(["powershell", "-command", "Set-AudioDevice -PlaybackMute $true"],
|
||||||
|
shell=True, creationflags=subprocess.CREATE_NO_WINDOW)
|
||||||
|
else:
|
||||||
|
subprocess.run(["powershell", "-command", "Set-AudioDevice -PlaybackMute $false"],
|
||||||
|
shell=True, creationflags=subprocess.CREATE_NO_WINDOW)
|
||||||
|
|
||||||
|
|
||||||
|
def allow(process_list: list = ["Surfshark.exe", 'qbittorrent.exe'], unmute: bool = True):
|
||||||
|
start_process(process_list)
|
||||||
|
if unmute:
|
||||||
|
subprocess.run(["powershell", "-command", "Set-AudioDevice -PlaybackMute $false"],
|
||||||
|
shell=True, creationflags=subprocess.CREATE_NO_WINDOW)
|
||||||
|
else:
|
||||||
|
subprocess.run(["powershell", "-command", "Set-AudioDevice -PlaybackMute $true"],
|
||||||
|
shell=True, creationflags=subprocess.CREATE_NO_WINDOW)
|
||||||
|
|
||||||
|
|
||||||
|
def _actiavte_rasdial():
|
||||||
|
pywinauto.findwindows.find_window()
|
||||||
|
|
||||||
|
|
||||||
|
def dial_connect(connection: str = 'Connected to\nek\nCommand completed successfully.\n'):
|
||||||
|
connected = False if connection == 'Connected to\nek\nCommand completed successfully.\n' else True
|
||||||
|
if connected:
|
||||||
|
subprocess.Popen(
|
||||||
|
'rasphone ek',
|
||||||
|
shell=True, creationflags=subprocess.CREATE_NO_WINDOW, stdout=subprocess.PIPE)
|
||||||
|
# _actiavte_rasdial()
|
||||||
|
# keyboard.press_and_release('alt')
|
||||||
|
keyboard.press_and_release('enter')
|
||||||
|
# _actiavte_rasdial()
|
||||||
|
keyboard.press_and_release('enter')
|
||||||
|
subprocess.Popen(["powershell", "-command", "Set-AudioDevice -PlaybackMute $false"],
|
||||||
|
shell=True, creationflags=subprocess.CREATE_NO_WINDOW, stdout=subprocess.PIPE)
|
||||||
|
|
||||||
|
def _hiercy(network_status: dict):
|
||||||
|
if network_status["ek"]:
|
||||||
|
return "ek"
|
||||||
|
elif network_status["good_lan"]:
|
||||||
|
return 'good_lan'
|
||||||
|
elif network_status["lan"]:
|
||||||
|
return "lan"
|
||||||
|
return "Wi-Fi"
|
||||||
|
|
||||||
|
|
||||||
|
def get_net_status(supreme_mac: Union[str, list, tuple, set] = '00-E0-4C-68-13-F8'):
|
||||||
|
|
||||||
|
nets, stats = psutil.net_if_addrs(), psutil.net_if_stats()
|
||||||
|
networks = subprocess.Popen('pwsh -executionPolicy bypass -command "Get-NetConnectionProfile"',
|
||||||
|
shell=True, stdout=subprocess.PIPE).communicate()[0].decode()
|
||||||
|
macs = {nets[key][0][1]: key.strip('\u200f') for key in nets if stats[key][0]}
|
||||||
|
lan_mac = get_lan(supreme_mac, macs)
|
||||||
|
profiles = [Net[19:].strip('\u200f') for net in networks.split('\r\n\r\n')
|
||||||
|
for Net in net.split('\r\n') if 'InterfaceAlias :' in Net]
|
||||||
|
wifi = [net[15:].split('\r\n')[0] for net in networks.split('Name') if 'Wi-Fi' in net]
|
||||||
|
wifi = wifi[0] if wifi else None
|
||||||
|
vpn = [key.strip('\u200f') for key in nets if stats[key][0] and re.search(r'(surf|shark)', key)]
|
||||||
|
return {"Wi-Fi": wifi, "lan": (lan_mac), "ek": ("ek" in profiles), "vpn": vpn, "good_lan": allowd_macs(macs)} if vpn else {"Wi-Fi": wifi, "lan": (lan_mac), "ek": ("ek" in profiles), "good_lan": allowd_macs(macs)}
|
||||||
|
|
||||||
|
|
||||||
|
def get_lan(macs: Union[str, list, tuple, set] = '00-E0-4C-68-13-F8', dict_of_macs: dict = None):
|
||||||
|
SMAC = ['00-E0-4C-68-13-F8', "00-FF-33-C8-0F-88"]
|
||||||
|
if isinstance(macs, str) and macs in dict_of_macs:
|
||||||
|
return True
|
||||||
|
elif not isinstance(macs, str):
|
||||||
|
for m in macs:
|
||||||
|
if m in SMAC:
|
||||||
|
return True
|
||||||
|
return False
|
||||||
|
|
||||||
|
|
||||||
|
def get_status(supreme_mac: Union[str, list, tuple, set] = '00-E0-4C-68-13-F8'):
|
||||||
|
wifi = {
|
||||||
|
"allowed":
|
||||||
|
["Oliver", "Oliver5", "Oliver", "x018_497622", "TNCAPE5A34D", "MSBR", "Azrieli_Modiin_WIFI", "lu shalmata",
|
||||||
|
"mickey", "Mickey", "Network", "192.168.1.", "Silmarill", "wintunshark0", "saret", "Saret", "huji-meonot"],
|
||||||
|
"disallowed": ["HUJI-netX", "eduroam", "HUJI-guest", "132.64"]}
|
||||||
|
network_status = get_net_status(supreme_mac)
|
||||||
|
hierarchy = _hiercy(network_status)
|
||||||
|
if hierarchy == "Wi-Fi":
|
||||||
|
current_network = network_status["Wi-Fi"].split(' ')[0]
|
||||||
|
w = 0 if re.search(current_network, " ".join(wifi["disallowed"])) else 1
|
||||||
|
return {"Wi-Fi": w, "vpn": network_status["vpn"]} if network_status.get("vpn") else {"Wi-Fi": w}
|
||||||
|
elif hierarchy == 'good_lan':
|
||||||
|
return {'good_lan': True}
|
||||||
|
elif hierarchy == "lan":
|
||||||
|
return {"lan": network_status["lan"], "vpn": network_status["vpn"]} if network_status.get("vpn") else {"lan": network_status["lan"]}
|
||||||
|
return {"ek": network_status["ek"], "vpn": network_status["vpn"]} if network_status.get("vpn") else {"ek": network_status["ek"]}
|
||||||
|
|
||||||
|
|
||||||
|
def do_the_schtik(supreme_mac: str = '00-E0-4C-68-13-F8', discontinue: str = None):
|
||||||
|
network_status = get_status(supreme_mac)
|
||||||
|
if network_status.get("vpn"):
|
||||||
|
allow(["qbittorrent.exe", "GoogleDriveFS.exe", "googledrivesync.exe", "Surfshark.exe"])
|
||||||
|
rdp(False)
|
||||||
|
if network_status.get("lan"):
|
||||||
|
dial_connect(discontinue)
|
||||||
|
elif network_status.get('Wi-Fi') and network_status['Wi-Fi'] == 0:
|
||||||
|
allow(["qbittorrent.exe", "GoogleDriveFS.exe", "googledrivesync.exe", "Surfshark.exe"], False)
|
||||||
|
elif network_status.get('Wi-Fi') and network_status['Wi-Fi'] == 1:
|
||||||
|
allow(["qbittorrent.exe", "GoogleDriveFS.exe", "googledrivesync.exe", "Surfshark.exe"])
|
||||||
|
rdp(False)
|
||||||
|
elif network_status.get("good_lan") and network_status["good_lan"]:
|
||||||
|
allow(["qbittorrent.exe", "GoogleDriveFS.exe", "googledrivesync.exe", "Surfshark.exe"])
|
||||||
|
rdp(False)
|
||||||
|
else:
|
||||||
|
if network_status.get("lan"):
|
||||||
|
dial_connect(discontinue)
|
||||||
|
disallow(["Surfshark.exe", 'qbittorrent.exe'], False,
|
||||||
|
run_process=["GoogleDriveFS.exe", "googledrivesync.exe"])
|
||||||
|
rdp()
|
||||||
|
elif network_status.get("ek"):
|
||||||
|
disallow(["Surfshark.exe", 'qbittorrent.exe'], False,
|
||||||
|
run_process=["GoogleDriveFS.exe", "googledrivesync.exe"])
|
||||||
|
rdp()
|
||||||
|
else:
|
||||||
|
disallow(["Surfshark.exe", 'qbittorrent.exe'], run_process=["GoogleDriveFS.exe", "googledrivesync.exe"])
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
discontinue = subprocess.Popen(
|
||||||
|
'rasdial',
|
||||||
|
shell=True, creationflags=subprocess.CREATE_NO_WINDOW, stdout=subprocess.PIPE).communicate()[0].decode().split(
|
||||||
|
"\r\n")[0]
|
||||||
|
do_the_schtik(discontinue=discontinue)
|
||||||
|
|
||||||
|
exit()
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
|
||||||
|
main()
|
||||||
|
# get_net_status()
|
26
NetWork/NetWork/obj/Debug/NetWork.1.0.0.nuspec
Normal file
26
NetWork/NetWork/obj/Debug/NetWork.1.0.0.nuspec
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
|
||||||
|
<metadata>
|
||||||
|
<id>NetWork</id>
|
||||||
|
<version>1.0.0</version>
|
||||||
|
<authors>NetWork</authors>
|
||||||
|
<description>Package Description</description>
|
||||||
|
<dependencies>
|
||||||
|
<group targetFramework="net5.0-windows7.0">
|
||||||
|
<dependency id="AudioControl.x64" version="1.0.1" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="DotRas.for.Win8" version="1.3.0" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="Microsoft.Management.Infrastructure" version="2.0.0" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="Microsoft.NETCore.Windows.ApiSets" version="1.0.1" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="Microsoft.NETCore.Windows.ApiSets-x64" version="1.0.0" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="NAudio" version="2.0.1" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="NETStandard.Library" version="2.0.3" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="SimpleWifi.netstandard" version="2.0.0" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="System.Management" version="5.0.0" exclude="Build,Analyzers" />
|
||||||
|
</group>
|
||||||
|
</dependencies>
|
||||||
|
</metadata>
|
||||||
|
<files>
|
||||||
|
<file src="C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NetWork.runtimeconfig.json" target="lib\net5.0-windows7.0\NetWork.runtimeconfig.json" />
|
||||||
|
<file src="C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NetWork.dll" target="lib\net5.0-windows7.0\NetWork.dll" />
|
||||||
|
</files>
|
||||||
|
</package>
|
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
|||||||
b755c1fcc436e3bd1ba3fa95bde9da72a01314b5
|
b12bbc8565f6610c6edf9c63353648b20956c171
|
||||||
|
@@ -205,293 +205,3 @@ C:\Users\סארט\source\repos\NetWork\NetWork\obj\Debug\net5.0-windows7.0\ref\N
|
|||||||
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Debug\net5.0-windows7.0\NetWork.genruntimeconfig.cache
|
C:\Users\סארט\source\repos\NetWork\NetWork\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\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\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
|
|
||||||
|
@@ -0,0 +1,486 @@
|
|||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\NetWork.exe
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\Microsoft.CSharp.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\Microsoft.VisualBasic.Core.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\Microsoft.VisualBasic.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\Microsoft.Win32.Primitives.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.AppContext.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Buffers.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Collections.Concurrent.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Collections.Immutable.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Collections.NonGeneric.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Collections.Specialized.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Collections.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.ComponentModel.Annotations.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.ComponentModel.DataAnnotations.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.ComponentModel.EventBasedAsync.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.ComponentModel.Primitives.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.ComponentModel.TypeConverter.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.ComponentModel.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Configuration.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Console.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Core.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Data.Common.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Data.DataSetExtensions.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Data.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Diagnostics.Contracts.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Diagnostics.Debug.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Diagnostics.DiagnosticSource.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Diagnostics.FileVersionInfo.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Diagnostics.Process.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Diagnostics.StackTrace.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Diagnostics.TextWriterTraceListener.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Diagnostics.Tools.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Diagnostics.TraceSource.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Diagnostics.Tracing.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Drawing.Primitives.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Drawing.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Dynamic.Runtime.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Formats.Asn1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Globalization.Calendars.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Globalization.Extensions.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Globalization.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.IO.Compression.Brotli.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.IO.Compression.FileSystem.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.IO.Compression.ZipFile.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.IO.Compression.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.IO.FileSystem.DriveInfo.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.IO.FileSystem.Primitives.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.IO.FileSystem.Watcher.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.IO.FileSystem.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.IO.IsolatedStorage.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.IO.MemoryMappedFiles.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.IO.Pipes.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.IO.UnmanagedMemoryStream.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.IO.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Linq.Expressions.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Linq.Parallel.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Linq.Queryable.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Linq.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Memory.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.Http.Json.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.Http.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.HttpListener.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.Mail.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.NameResolution.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.NetworkInformation.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.Ping.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.Primitives.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.Requests.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.Security.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.ServicePoint.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.Sockets.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.WebClient.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.WebHeaderCollection.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.WebProxy.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.WebSockets.Client.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.WebSockets.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Net.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Numerics.Vectors.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Numerics.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.ObjectModel.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Reflection.DispatchProxy.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Reflection.Emit.ILGeneration.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Reflection.Emit.Lightweight.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Reflection.Emit.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Reflection.Extensions.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Reflection.Metadata.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Reflection.Primitives.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Reflection.TypeExtensions.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Reflection.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Resources.Reader.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Resources.ResourceManager.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Resources.Writer.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Runtime.CompilerServices.Unsafe.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Runtime.CompilerServices.VisualC.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Runtime.Extensions.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Runtime.Handles.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Runtime.InteropServices.RuntimeInformation.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Runtime.InteropServices.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Runtime.Intrinsics.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Runtime.Loader.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Runtime.Numerics.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Runtime.Serialization.Formatters.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Runtime.Serialization.Json.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Runtime.Serialization.Primitives.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Runtime.Serialization.Xml.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Runtime.Serialization.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Runtime.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Security.Claims.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Security.Cryptography.Algorithms.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Security.Cryptography.Csp.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Security.Cryptography.Encoding.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Security.Cryptography.Primitives.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Security.Cryptography.X509Certificates.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Security.Principal.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Security.SecureString.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Security.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.ServiceModel.Web.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.ServiceProcess.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Text.Encoding.CodePages.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Text.Encoding.Extensions.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Text.Encoding.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Text.Json.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Text.RegularExpressions.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Threading.Channels.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Threading.Overlapped.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Threading.Tasks.Dataflow.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Threading.Tasks.Extensions.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Threading.Tasks.Parallel.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Threading.Tasks.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Threading.Thread.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Threading.ThreadPool.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Threading.Timer.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Threading.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Transactions.Local.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Transactions.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.ValueTuple.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Web.HttpUtility.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Web.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Windows.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Xml.Linq.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Xml.ReaderWriter.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Xml.Serialization.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Xml.XDocument.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Xml.XPath.XDocument.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Xml.XPath.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Xml.XmlDocument.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Xml.XmlSerializer.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.Xml.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\System.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\WindowsBase.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\mscorlib.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ref\netstandard.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Modules\CimCmdlets\CimCmdlets.psd1
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\Diagnostics.format.ps1xml
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\Event.format.ps1xml
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\GetEvent.types.ps1xml
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\Microsoft.PowerShell.Diagnostics.psd1
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Modules\Microsoft.WSMan.Management\Microsoft.WSMan.Management.psd1
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Modules\Microsoft.WSMan.Management\WSMan.format.ps1xml
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Modules\PSDiagnostics\PSDiagnostics.psd1
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Modules\PSDiagnostics\PSDiagnostics.psm1
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\AudioControlNative.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\NetWork.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\NetWork.deps.json
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\NetWork.runtimeconfig.json
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\DotRas.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\Markdig.Signed.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\Microsoft.ApplicationInsights.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\Microsoft.CodeAnalysis.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\Microsoft.CodeAnalysis.CSharp.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\Namotion.Reflection.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\NAudio.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\NAudio.Asio.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\NAudio.Core.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\NAudio.Midi.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\NAudio.Wasapi.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\NAudio.WinForms.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\NAudio.WinMM.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\Newtonsoft.Json.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\NJsonSchema.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\SimpleWifi.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.ComponentModel.Composition.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.ComponentModel.Composition.Registration.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.Data.Odbc.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.Data.OleDb.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.Data.SqlClient.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.Diagnostics.EventLog.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.DirectoryServices.AccountManagement.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.DirectoryServices.Protocols.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.Drawing.Common.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.IO.Ports.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.Management.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.Net.Http.WinHttpHandler.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.Private.ServiceModel.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.Reflection.Context.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.Runtime.Caching.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.Security.Cryptography.Pkcs.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.ServiceModel.Duplex.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.ServiceModel.Http.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.ServiceModel.NetTcp.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.ServiceModel.Primitives.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.ServiceModel.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.ServiceModel.Security.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.ServiceModel.Syndication.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.ServiceProcess.ServiceController.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\System.Text.Encodings.Web.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\cs\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\de\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\es\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\fr\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\it\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ja\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ko\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\pl\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\pt-BR\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ru\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\tr\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\zh-Hans\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\zh-Hant\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\cs\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\de\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\es\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\fr\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\it\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ja\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ko\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\pl\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\ru\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\tr\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Microsoft.Management.Infrastructure.CimCmdlets.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\unix\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-arm\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-arm\native\mi.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-arm\native\miutils.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-arm64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-arm64\native\mi.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-arm64\native\miutils.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win10-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win10-x64\native\mi.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win10-x64\native\miutils.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win10-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win10-x86\native\mi.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win10-x86\native\miutils.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\mi.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\miutils.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x86\native\mi.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x86\native\miutils.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\mi.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\miutils.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x86\native\mi.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x86\native\miutils.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x64\native\mi.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x64\native\miutils.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x86\native\mi.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x86\native\miutils.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\API-MS-Win-Base-Util-L1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-2.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\API-MS-Win-Core-PrivateProfile-L1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\API-MS-Win-Core-String-L2-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\API-MS-Win-Core-StringAnsi-L1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\API-MS-Win-EventLog-Legacy-L1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\API-MS-Win-Eventing-Consumer-L1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\API-MS-Win-Eventing-Controller-L1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\API-MS-Win-Eventing-Legacy-L1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\API-MS-Win-Eventing-Provider-L1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\API-MS-Win-Security-LsaPolicy-L1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\API-MS-Win-devices-config-L1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\API-MS-Win-devices-config-L1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-com-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-com-private-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-comm-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-console-l2-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-datetime-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-debug-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-delayload-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-errorhandling-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-fibers-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-fibers-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-file-l1-2-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-file-l2-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-heap-obsolete-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-io-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-io-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-kernel32-legacy-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-kernel32-legacy-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-kernel32-legacy-l1-1-2.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-libraryloader-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-localization-l1-2-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-localization-l2-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-localization-obsolete-l1-2-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-memory-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-memory-l1-1-2.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-memory-l1-1-3.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-namedpipe-l1-2-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-normalization-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-privateprofile-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-processenvironment-l1-2-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-processsecurity-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-processthreads-l1-1-2.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-psapi-ansi-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-psapi-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-psapi-obsolete-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-realtime-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-registry-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-registry-l2-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-shlwapi-legacy-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-shlwapi-obsolete-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-shutdown-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-shutdown-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-string-obsolete-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-string-obsolete-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-stringloader-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-stringloader-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-2.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-3.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-threadpool-l1-2-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-threadpool-legacy-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-threadpool-private-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-url-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-version-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-winrt-error-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-winrt-error-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-winrt-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-winrt-registration-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-winrt-robuffer-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-winrt-string-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-wow64-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-xstate-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-core-xstate-l2-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-ro-typeresolution-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-security-base-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-security-cpwl-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-security-cryptoapi-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-security-lsalookup-l2-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-security-lsalookup-l2-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-security-provider-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-security-sddl-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-service-core-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-service-core-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-service-management-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-service-management-l2-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-service-private-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-service-private-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\api-ms-win-service-winsvc-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win7-x64\native\ext-ms-win-advapi32-encryptedfile-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-2.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\API-MS-Win-devices-config-L1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-file-l1-2-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-file-l2-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-kernel32-legacy-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-kernel32-legacy-l1-1-2.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-localization-l1-2-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-localization-obsolete-l1-2-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-memory-l1-1-2.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-memory-l1-1-3.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-namedpipe-l1-2-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-privateprofile-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-processthreads-l1-1-2.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-shutdown-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-string-obsolete-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-stringloader-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-sysinfo-l1-2-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-sysinfo-l1-2-2.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-sysinfo-l1-2-3.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-winrt-error-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-core-xstate-l2-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-security-cpwl-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-security-cryptoapi-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-security-lsalookup-l2-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win8-x64\native\api-ms-win-service-private-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-2.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x64\native\api-ms-win-core-kernel32-legacy-l1-1-2.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x64\native\api-ms-win-core-memory-l1-1-3.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x64\native\api-ms-win-core-namedpipe-l1-2-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x64\native\api-ms-win-core-string-obsolete-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x64\native\api-ms-win-core-sysinfo-l1-2-2.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x64\native\api-ms-win-core-sysinfo-l1-2-3.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win81-x64\native\api-ms-win-security-cpwl-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Microsoft.PowerShell.Commands.Diagnostics.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\unix\lib\net5.0\Microsoft.PowerShell.Commands.Management.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Microsoft.PowerShell.Commands.Management.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\unix\lib\net5.0\Microsoft.PowerShell.Commands.Utility.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Microsoft.PowerShell.Commands.Utility.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\unix\lib\net5.0\Microsoft.PowerShell.ConsoleHost.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Microsoft.PowerShell.ConsoleHost.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Microsoft.PowerShell.CoreCLR.Eventing.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\unix\lib\net5.0\Microsoft.PowerShell.MarkdownRender.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Microsoft.PowerShell.MarkdownRender.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\linux-arm\native\libpsl-native.so
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\linux-arm64\native\libpsl-native.so
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\linux-musl-x64\native\libpsl-native.so
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\linux-x64\native\libmi.so
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\linux-x64\native\libpsl-native.so
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\linux-x64\native\libpsrpclient.so
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\osx\native\libmi.dylib
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\osx\native\libpsl-native.dylib
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\osx\native\libpsrpclient.dylib
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-arm\native\PowerShell.Core.Instrumentation.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-arm\native\pwrshplugin.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-arm64\native\PowerShell.Core.Instrumentation.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-arm64\native\pwrshplugin.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-x64\native\PowerShell.Core.Instrumentation.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-x64\native\pwrshplugin.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-x86\native\PowerShell.Core.Instrumentation.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-x86\native\pwrshplugin.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\unix\lib\net5.0\Microsoft.PowerShell.SDK.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Microsoft.PowerShell.SDK.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\unix\lib\net5.0\Microsoft.PowerShell.Security.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Microsoft.PowerShell.Security.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Microsoft.WSMan.Management.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\Microsoft.WSMan.Runtime.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\linux-arm\native\libSystem.IO.Ports.Native.so
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\linux-arm64\native\libSystem.IO.Ports.Native.so
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\linux-x64\native\libSystem.IO.Ports.Native.so
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\osx-x64\native\libSystem.IO.Ports.Native.dylib
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-arm64\native\sni.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-x64\native\sni.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win-x86\native\sni.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\freebsd\lib\netcoreapp2.0\System.Data.Odbc.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\linux\lib\netcoreapp2.0\System.Data.Odbc.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\osx\lib\netcoreapp2.0\System.Data.Odbc.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\netcoreapp2.0\System.Data.Odbc.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\netstandard2.0\System.Data.OleDb.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.EventLog.Messages.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.EventLog.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.AccountManagement.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\linux\lib\netcoreapp2.0\System.DirectoryServices.Protocols.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\osx\lib\netcoreapp2.0\System.DirectoryServices.Protocols.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.Protocols.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\unix\lib\netcoreapp3.0\System.Drawing.Common.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\netcoreapp3.0\System.Drawing.Common.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\linux\lib\netstandard2.0\System.IO.Ports.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\osx\lib\netstandard2.0\System.IO.Ports.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\netstandard2.0\System.IO.Ports.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\netcoreapp2.0\System.Management.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\unix\lib\net5.0\System.Management.Automation.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\net5.0\System.Management.Automation.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\netstandard2.0\System.Net.Http.WinHttpHandler.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\netcoreapp3.0\System.Security.Cryptography.Pkcs.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\publish\runtimes\win\lib\netstandard2.0\System.ServiceProcess.ServiceController.dll
|
@@ -65,10 +65,6 @@
|
|||||||
"target": "Package",
|
"target": "Package",
|
||||||
"version": "[1.0.0, )"
|
"version": "[1.0.0, )"
|
||||||
},
|
},
|
||||||
"Microsoft.PowerShell.SDK": {
|
|
||||||
"target": "Package",
|
|
||||||
"version": "[7.1.3, )"
|
|
||||||
},
|
|
||||||
"NAudio": {
|
"NAudio": {
|
||||||
"target": "Package",
|
"target": "Package",
|
||||||
"version": "[2.0.1, )"
|
"version": "[2.0.1, )"
|
||||||
|
File diff suppressed because it is too large
Load Diff
26
NetWork/NetWork/obj/Release/NetWork.1.0.0.nuspec
Normal file
26
NetWork/NetWork/obj/Release/NetWork.1.0.0.nuspec
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
|
||||||
|
<metadata>
|
||||||
|
<id>NetWork</id>
|
||||||
|
<version>1.0.0</version>
|
||||||
|
<authors>NetWork</authors>
|
||||||
|
<description>Package Description</description>
|
||||||
|
<dependencies>
|
||||||
|
<group targetFramework="net5.0-windows7.0">
|
||||||
|
<dependency id="AudioControl.x64" version="1.0.1" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="DotRas.for.Win8" version="1.3.0" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="Microsoft.Management.Infrastructure" version="2.0.0" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="Microsoft.NETCore.Windows.ApiSets" version="1.0.1" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="Microsoft.NETCore.Windows.ApiSets-x64" version="1.0.0" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="NAudio" version="2.0.1" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="NETStandard.Library" version="2.0.3" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="SimpleWifi.netstandard" version="2.0.0" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="System.Management" version="5.0.0" exclude="Build,Analyzers" />
|
||||||
|
</group>
|
||||||
|
</dependencies>
|
||||||
|
</metadata>
|
||||||
|
<files>
|
||||||
|
<file src="C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\NetWork.runtimeconfig.json" target="lib\net5.0-windows7.0\NetWork.runtimeconfig.json" />
|
||||||
|
<file src="C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\NetWork.dll" target="lib\net5.0-windows7.0\NetWork.dll" />
|
||||||
|
</files>
|
||||||
|
</package>
|
@@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
|
@@ -0,0 +1,25 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <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.
|
||||||
|
|
@@ -0,0 +1 @@
|
|||||||
|
47b92528c37c5e1c33a2258e82955d216ab71c7d
|
@@ -0,0 +1,8 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.TargetFramework = net5.0-windows7.0
|
||||||
|
build_property.TargetPlatformMinVersion = 7.0
|
||||||
|
build_property.UsingMicrosoftNETSdkWeb =
|
||||||
|
build_property.ProjectTypeGuids =
|
||||||
|
build_property.PublishSingleFile =
|
||||||
|
build_property.IncludeAllContentForSelfExtract =
|
||||||
|
build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows
|
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
5c8e073db52f158c560f0463e2afca6eaa9ef604
|
@@ -0,0 +1,209 @@
|
|||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\AudioControlNative.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\NetWork.exe
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\NetWork.deps.json
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\NetWork.runtimeconfig.json
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\NetWork.runtimeconfig.dev.json
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\NetWork.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\ref\NetWork.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\NetWork.pdb
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\DotRas.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\NAudio.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\NAudio.Asio.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\NAudio.Core.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\NAudio.Midi.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\NAudio.Wasapi.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\NAudio.WinForms.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\NAudio.WinMM.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\SimpleWifi.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\System.Management.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\unix\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm\native\mi.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm\native\miutils.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm64\native\mi.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm64\native\miutils.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x64\native\mi.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x64\native\miutils.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x86\native\mi.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x86\native\miutils.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\mi.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\miutils.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x86\native\mi.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x86\native\miutils.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\mi.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\miutils.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x86\native\mi.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x86\native\miutils.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\mi.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\miutils.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x86\native\mi.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x86\native\miutils.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Base-Util-L1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-2.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-PrivateProfile-L1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-String-L2-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-StringAnsi-L1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-EventLog-Legacy-L1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Eventing-Consumer-L1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Eventing-Controller-L1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Eventing-Legacy-L1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Eventing-Provider-L1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Security-LsaPolicy-L1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-devices-config-L1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-devices-config-L1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-com-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-com-private-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-comm-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-console-l2-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-datetime-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-debug-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-delayload-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-errorhandling-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-fibers-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-fibers-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-file-l1-2-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-file-l2-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-heap-obsolete-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-io-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-io-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-kernel32-legacy-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-kernel32-legacy-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-kernel32-legacy-l1-1-2.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-libraryloader-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-localization-l1-2-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-localization-l2-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-localization-obsolete-l1-2-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-memory-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-memory-l1-1-2.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-memory-l1-1-3.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-namedpipe-l1-2-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-normalization-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-privateprofile-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-processenvironment-l1-2-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-processsecurity-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-processthreads-l1-1-2.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-psapi-ansi-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-psapi-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-psapi-obsolete-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-realtime-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-registry-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-registry-l2-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-shlwapi-legacy-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-shlwapi-obsolete-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-shutdown-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-shutdown-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-string-obsolete-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-string-obsolete-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-stringloader-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-stringloader-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-2.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-3.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-threadpool-l1-2-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-threadpool-legacy-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-threadpool-private-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-url-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-version-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-error-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-error-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-registration-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-robuffer-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-string-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-wow64-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-xstate-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-xstate-l2-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-ro-typeresolution-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-base-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-cpwl-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-cryptoapi-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-lsalookup-l2-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-lsalookup-l2-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-provider-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-sddl-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-core-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-core-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-management-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-management-l2-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-private-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-private-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-winsvc-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\ext-ms-win-advapi32-encryptedfile-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-2.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\API-MS-Win-devices-config-L1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-file-l1-2-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-file-l2-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-kernel32-legacy-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-kernel32-legacy-l1-1-2.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-localization-l1-2-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-localization-obsolete-l1-2-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-memory-l1-1-2.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-memory-l1-1-3.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-namedpipe-l1-2-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-privateprofile-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-processthreads-l1-1-2.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-shutdown-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-string-obsolete-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-stringloader-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-sysinfo-l1-2-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-sysinfo-l1-2-2.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-sysinfo-l1-2-3.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-winrt-error-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-xstate-l2-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-security-cpwl-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-security-cryptoapi-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-security-lsalookup-l2-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-service-private-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-2.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-kernel32-legacy-l1-1-2.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-memory-l1-1-3.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-namedpipe-l1-2-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-string-obsolete-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-sysinfo-l1-2-2.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-sysinfo-l1-2-3.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-security-cpwl-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win\lib\netcoreapp2.0\System.Management.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.csproj.AssemblyReference.cache
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.AssemblyInfoInputs.cache
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.AssemblyInfo.cs
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.csproj.CoreCompileInputs.cache
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.csproj.CopyComplete
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\ref\NetWork.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.pdb
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.genruntimeconfig.cache
|
@@ -0,0 +1 @@
|
|||||||
|
542af5c956e3cb1b862c90ca6d1d2a799cd2003d
|
BIN
NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.pdb
Normal file
BIN
NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.pdb
Normal file
Binary file not shown.
BIN
NetWork/NetWork/obj/Release/net5.0-windows7.0/apphost.exe
Normal file
BIN
NetWork/NetWork/obj/Release/net5.0-windows7.0/apphost.exe
Normal file
Binary file not shown.
@@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
|
@@ -0,0 +1,25 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <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.
|
||||||
|
|
@@ -0,0 +1 @@
|
|||||||
|
47b92528c37c5e1c33a2258e82955d216ab71c7d
|
@@ -0,0 +1,8 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.TargetFramework = net5.0-windows7.0
|
||||||
|
build_property.TargetPlatformMinVersion = 7.0
|
||||||
|
build_property.UsingMicrosoftNETSdkWeb =
|
||||||
|
build_property.ProjectTypeGuids =
|
||||||
|
build_property.PublishSingleFile = True
|
||||||
|
build_property.IncludeAllContentForSelfExtract =
|
||||||
|
build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows
|
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
c915500b58dc9b718e3615d82fa51dc73689172b
|
@@ -0,0 +1,523 @@
|
|||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\AudioControlNative.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\NetWork.exe
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\NetWork.deps.json
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\NetWork.runtimeconfig.json
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\NetWork.runtimeconfig.dev.json
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\NetWork.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ref\NetWork.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\NetWork.pdb
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\DotRas.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\Microsoft.Win32.Registry.AccessControl.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\Microsoft.Win32.SystemEvents.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\NAudio.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\NAudio.Asio.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\NAudio.Core.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\NAudio.Midi.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\NAudio.Wasapi.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\NAudio.WinForms.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\NAudio.WinMM.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\SimpleWifi.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Management.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\Microsoft.CSharp.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\Microsoft.VisualBasic.Core.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\Microsoft.Win32.Primitives.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\Microsoft.Win32.Registry.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.AppContext.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Buffers.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Collections.Concurrent.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Collections.Immutable.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Collections.NonGeneric.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Collections.Specialized.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Collections.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.ComponentModel.Annotations.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.ComponentModel.DataAnnotations.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.ComponentModel.EventBasedAsync.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.ComponentModel.Primitives.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.ComponentModel.TypeConverter.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.ComponentModel.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Configuration.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Console.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Core.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Data.Common.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Data.DataSetExtensions.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Data.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Diagnostics.Contracts.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Diagnostics.Debug.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Diagnostics.DiagnosticSource.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Diagnostics.FileVersionInfo.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Diagnostics.Process.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Diagnostics.StackTrace.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Diagnostics.TextWriterTraceListener.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Diagnostics.Tools.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Diagnostics.TraceSource.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Diagnostics.Tracing.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Drawing.Primitives.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Dynamic.Runtime.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Formats.Asn1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Globalization.Calendars.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Globalization.Extensions.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Globalization.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.IO.Compression.Brotli.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.IO.Compression.FileSystem.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.IO.Compression.ZipFile.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.IO.Compression.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.IO.FileSystem.AccessControl.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.IO.FileSystem.DriveInfo.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.IO.FileSystem.Primitives.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.IO.FileSystem.Watcher.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.IO.FileSystem.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.IO.IsolatedStorage.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.IO.MemoryMappedFiles.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.IO.Pipes.AccessControl.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.IO.Pipes.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.IO.UnmanagedMemoryStream.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.IO.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Linq.Expressions.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Linq.Parallel.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Linq.Queryable.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Linq.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Memory.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.Http.Json.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.Http.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.HttpListener.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.Mail.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.NameResolution.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.NetworkInformation.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.Ping.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.Primitives.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.Requests.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.Security.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.ServicePoint.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.Sockets.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.WebClient.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.WebHeaderCollection.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.WebProxy.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.WebSockets.Client.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.WebSockets.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Net.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Numerics.Vectors.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Numerics.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.ObjectModel.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Private.DataContractSerialization.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Private.Uri.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Private.Xml.Linq.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Private.Xml.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Reflection.DispatchProxy.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Reflection.Emit.ILGeneration.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Reflection.Emit.Lightweight.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Reflection.Emit.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Reflection.Extensions.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Reflection.Metadata.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Reflection.Primitives.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Reflection.TypeExtensions.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Reflection.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Resources.Reader.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Resources.ResourceManager.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Resources.Writer.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Runtime.CompilerServices.Unsafe.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Runtime.CompilerServices.VisualC.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Runtime.Extensions.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Runtime.Handles.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Runtime.InteropServices.RuntimeInformation.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Runtime.InteropServices.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Runtime.Intrinsics.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Runtime.Loader.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Runtime.Numerics.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Runtime.Serialization.Formatters.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Runtime.Serialization.Json.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Runtime.Serialization.Primitives.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Runtime.Serialization.Xml.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Runtime.Serialization.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Runtime.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Security.AccessControl.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Security.Claims.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Security.Cryptography.Algorithms.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Security.Cryptography.Cng.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Security.Cryptography.Csp.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Security.Cryptography.Encoding.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Security.Cryptography.OpenSsl.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Security.Cryptography.Primitives.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Security.Cryptography.X509Certificates.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Security.Principal.Windows.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Security.Principal.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Security.SecureString.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Security.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.ServiceModel.Web.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.ServiceProcess.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Text.Encoding.CodePages.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Text.Encoding.Extensions.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Text.Encoding.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Text.Encodings.Web.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Text.Json.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Text.RegularExpressions.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Threading.Channels.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Threading.Overlapped.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Threading.Tasks.Dataflow.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Threading.Tasks.Extensions.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Threading.Tasks.Parallel.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Threading.Tasks.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Threading.Thread.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Threading.ThreadPool.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Threading.Timer.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Threading.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Transactions.Local.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Transactions.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.ValueTuple.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Web.HttpUtility.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Web.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Windows.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Xml.Linq.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Xml.ReaderWriter.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Xml.Serialization.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Xml.XDocument.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Xml.XPath.XDocument.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Xml.XPath.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Xml.XmlDocument.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Xml.XmlSerializer.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Xml.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\mscorlib.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\netstandard.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\Microsoft.DiaSymReader.Native.amd64.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Private.CoreLib.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-console-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-console-l1-2-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-datetime-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-debug-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-errorhandling-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-file-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-file-l1-2-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-file-l2-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-handle-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-heap-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-interlocked-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-libraryloader-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-localization-l1-2-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-memory-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-namedpipe-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-processenvironment-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-processthreads-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-processthreads-l1-1-1.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-profile-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-rtlsupport-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-string-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-synch-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-synch-l1-2-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-sysinfo-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-timezone-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-core-util-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-crt-conio-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-crt-convert-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-crt-environment-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-crt-filesystem-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-crt-heap-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-crt-locale-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-crt-math-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-crt-multibyte-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-crt-private-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-crt-process-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-crt-runtime-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-crt-stdio-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-crt-string-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-crt-time-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\api-ms-win-crt-utility-l1-1-0.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\clrcompression.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\clretwrc.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\clrjit.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\coreclr.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\createdump.exe
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\dbgshim.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\hostfxr.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\hostpolicy.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\mscordaccore.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\mscordaccore_amd64_amd64_5.0.721.25508.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\mscordbi.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\mscorrc.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ucrtbase.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\Accessibility.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\DirectWriteForwarder.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\Microsoft.VisualBasic.Forms.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\Microsoft.VisualBasic.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\PresentationCore.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\PresentationFramework-SystemCore.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\PresentationFramework-SystemData.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\PresentationFramework-SystemDrawing.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\PresentationFramework-SystemXml.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\PresentationFramework-SystemXmlLinq.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\PresentationFramework.Aero.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\PresentationFramework.Aero2.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\PresentationFramework.AeroLite.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\PresentationFramework.Classic.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\PresentationFramework.Luna.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\PresentationFramework.Royale.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\PresentationFramework.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\PresentationUI.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ReachFramework.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.CodeDom.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Configuration.ConfigurationManager.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Design.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Diagnostics.EventLog.Messages.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Diagnostics.EventLog.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Diagnostics.PerformanceCounter.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.DirectoryServices.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Drawing.Common.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Drawing.Design.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Drawing.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.IO.Packaging.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Printing.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Resources.Extensions.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Security.Cryptography.Pkcs.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Security.Cryptography.ProtectedData.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Security.Cryptography.Xml.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Security.Permissions.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Threading.AccessControl.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Windows.Controls.Ribbon.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Windows.Extensions.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Windows.Forms.Design.Editors.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Windows.Forms.Design.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Windows.Forms.Primitives.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Windows.Forms.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Windows.Input.Manipulations.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Windows.Presentation.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\System.Xaml.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\UIAutomationClient.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\UIAutomationClientSideProviders.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\UIAutomationProvider.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\UIAutomationTypes.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\WindowsBase.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\WindowsFormsIntegration.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\cs\Microsoft.VisualBasic.Forms.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\cs\PresentationCore.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\cs\PresentationFramework.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\cs\PresentationUI.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\cs\ReachFramework.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\cs\System.Windows.Controls.Ribbon.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\cs\System.Windows.Forms.Design.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\cs\System.Windows.Forms.Primitives.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\cs\System.Windows.Forms.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\cs\System.Windows.Input.Manipulations.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\cs\System.Xaml.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\cs\UIAutomationClient.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\cs\UIAutomationClientSideProviders.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\cs\UIAutomationProvider.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\cs\UIAutomationTypes.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\cs\WindowsBase.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\cs\WindowsFormsIntegration.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\de\Microsoft.VisualBasic.Forms.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\de\PresentationCore.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\de\PresentationFramework.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\de\PresentationUI.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\de\ReachFramework.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\de\System.Windows.Controls.Ribbon.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\de\System.Windows.Forms.Design.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\de\System.Windows.Forms.Primitives.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\de\System.Windows.Forms.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\de\System.Windows.Input.Manipulations.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\de\System.Xaml.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\de\UIAutomationClient.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\de\UIAutomationClientSideProviders.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\de\UIAutomationProvider.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\de\UIAutomationTypes.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\de\WindowsBase.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\de\WindowsFormsIntegration.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\es\Microsoft.VisualBasic.Forms.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\es\PresentationCore.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\es\PresentationFramework.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\es\PresentationUI.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\es\ReachFramework.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\es\System.Windows.Controls.Ribbon.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\es\System.Windows.Forms.Design.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\es\System.Windows.Forms.Primitives.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\es\System.Windows.Forms.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\es\System.Windows.Input.Manipulations.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\es\System.Xaml.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\es\UIAutomationClient.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\es\UIAutomationClientSideProviders.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\es\UIAutomationProvider.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\es\UIAutomationTypes.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\es\WindowsBase.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\es\WindowsFormsIntegration.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\fr\Microsoft.VisualBasic.Forms.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\fr\PresentationCore.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\fr\PresentationFramework.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\fr\PresentationUI.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\fr\ReachFramework.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\fr\System.Windows.Controls.Ribbon.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\fr\System.Windows.Forms.Design.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\fr\System.Windows.Forms.Primitives.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\fr\System.Windows.Forms.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\fr\System.Windows.Input.Manipulations.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\fr\System.Xaml.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\fr\UIAutomationClient.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\fr\UIAutomationClientSideProviders.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\fr\UIAutomationProvider.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\fr\UIAutomationTypes.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\fr\WindowsBase.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\fr\WindowsFormsIntegration.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\it\Microsoft.VisualBasic.Forms.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\it\PresentationCore.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\it\PresentationFramework.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\it\PresentationUI.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\it\ReachFramework.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\it\System.Windows.Controls.Ribbon.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\it\System.Windows.Forms.Design.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\it\System.Windows.Forms.Primitives.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\it\System.Windows.Forms.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\it\System.Windows.Input.Manipulations.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\it\System.Xaml.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\it\UIAutomationClient.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\it\UIAutomationClientSideProviders.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\it\UIAutomationProvider.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\it\UIAutomationTypes.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\it\WindowsBase.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\it\WindowsFormsIntegration.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ja\Microsoft.VisualBasic.Forms.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ja\PresentationCore.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ja\PresentationFramework.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ja\PresentationUI.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ja\ReachFramework.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ja\System.Windows.Controls.Ribbon.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ja\System.Windows.Forms.Design.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ja\System.Windows.Forms.Primitives.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ja\System.Windows.Forms.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ja\System.Windows.Input.Manipulations.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ja\System.Xaml.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ja\UIAutomationClient.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ja\UIAutomationClientSideProviders.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ja\UIAutomationProvider.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ja\UIAutomationTypes.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ja\WindowsBase.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ja\WindowsFormsIntegration.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ko\Microsoft.VisualBasic.Forms.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ko\PresentationCore.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ko\PresentationFramework.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ko\PresentationUI.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ko\ReachFramework.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ko\System.Windows.Controls.Ribbon.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ko\System.Windows.Forms.Design.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ko\System.Windows.Forms.Primitives.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ko\System.Windows.Forms.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ko\System.Windows.Input.Manipulations.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ko\System.Xaml.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ko\UIAutomationClient.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ko\UIAutomationClientSideProviders.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ko\UIAutomationProvider.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ko\UIAutomationTypes.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ko\WindowsBase.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ko\WindowsFormsIntegration.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pl\Microsoft.VisualBasic.Forms.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pl\PresentationCore.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pl\PresentationFramework.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pl\PresentationUI.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pl\ReachFramework.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pl\System.Windows.Controls.Ribbon.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pl\System.Windows.Forms.Design.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pl\System.Windows.Forms.Primitives.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pl\System.Windows.Forms.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pl\System.Windows.Input.Manipulations.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pl\System.Xaml.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pl\UIAutomationClient.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pl\UIAutomationClientSideProviders.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pl\UIAutomationProvider.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pl\UIAutomationTypes.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pl\WindowsBase.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pl\WindowsFormsIntegration.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pt-BR\Microsoft.VisualBasic.Forms.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pt-BR\PresentationCore.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pt-BR\PresentationFramework.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pt-BR\PresentationUI.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pt-BR\ReachFramework.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pt-BR\System.Windows.Controls.Ribbon.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pt-BR\System.Windows.Forms.Design.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pt-BR\System.Windows.Forms.Primitives.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pt-BR\System.Windows.Forms.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pt-BR\System.Windows.Input.Manipulations.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pt-BR\System.Xaml.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pt-BR\UIAutomationClient.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pt-BR\UIAutomationClientSideProviders.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pt-BR\UIAutomationProvider.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pt-BR\UIAutomationTypes.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pt-BR\WindowsBase.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\pt-BR\WindowsFormsIntegration.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ru\Microsoft.VisualBasic.Forms.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ru\PresentationCore.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ru\PresentationFramework.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ru\PresentationUI.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ru\ReachFramework.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ru\System.Windows.Controls.Ribbon.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ru\System.Windows.Forms.Design.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ru\System.Windows.Forms.Primitives.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ru\System.Windows.Forms.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ru\System.Windows.Input.Manipulations.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ru\System.Xaml.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ru\UIAutomationClient.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ru\UIAutomationClientSideProviders.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ru\UIAutomationProvider.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ru\UIAutomationTypes.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ru\WindowsBase.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\ru\WindowsFormsIntegration.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\tr\Microsoft.VisualBasic.Forms.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\tr\PresentationCore.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\tr\PresentationFramework.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\tr\PresentationUI.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\tr\ReachFramework.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\tr\System.Windows.Controls.Ribbon.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\tr\System.Windows.Forms.Design.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\tr\System.Windows.Forms.Primitives.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\tr\System.Windows.Forms.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\tr\System.Windows.Input.Manipulations.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\tr\System.Xaml.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\tr\UIAutomationClient.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\tr\UIAutomationClientSideProviders.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\tr\UIAutomationProvider.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\tr\UIAutomationTypes.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\tr\WindowsBase.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\tr\WindowsFormsIntegration.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hans\Microsoft.VisualBasic.Forms.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hans\PresentationCore.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hans\PresentationFramework.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hans\PresentationUI.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hans\ReachFramework.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hans\System.Windows.Controls.Ribbon.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hans\System.Windows.Forms.Design.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hans\System.Windows.Forms.Primitives.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hans\System.Windows.Forms.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hans\System.Windows.Input.Manipulations.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hans\System.Xaml.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hans\UIAutomationClient.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hans\UIAutomationClientSideProviders.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hans\UIAutomationProvider.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hans\UIAutomationTypes.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hans\WindowsBase.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hans\WindowsFormsIntegration.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hant\Microsoft.VisualBasic.Forms.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hant\PresentationCore.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hant\PresentationFramework.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hant\PresentationUI.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hant\ReachFramework.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hant\System.Windows.Controls.Ribbon.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hant\System.Windows.Forms.Design.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hant\System.Windows.Forms.Primitives.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hant\System.Windows.Forms.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hant\System.Windows.Input.Manipulations.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hant\System.Xaml.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hant\UIAutomationClient.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hant\UIAutomationClientSideProviders.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hant\UIAutomationProvider.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hant\UIAutomationTypes.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hant\WindowsBase.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\zh-Hant\WindowsFormsIntegration.resources.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\D3DCompiler_47_cor3.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\PenImc_cor3.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\PresentationNative_cor3.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\vcruntime140_cor3.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\bin\Release\net5.0-windows7.0\win-x64\wpfgfx_cor3.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.AssemblyInfoInputs.cache
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.AssemblyInfo.cs
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.csproj.CoreCompileInputs.cache
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.csproj.CopyComplete
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\ref\NetWork.dll
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.pdb
|
||||||
|
C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.genruntimeconfig.cache
|
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1 @@
|
|||||||
|
5f68dd900527e551047945ae92c4afc1894d9d4f
|
Binary file not shown.
@@ -0,0 +1,12 @@
|
|||||||
|
D:\Neutral Folder\NetWorkAutomation\NetWork.pdb
|
||||||
|
D:\Neutral Folder\NetWorkAutomation\AudioControlNative.dll
|
||||||
|
D:\Neutral Folder\NetWorkAutomation\clrcompression.dll
|
||||||
|
D:\Neutral Folder\NetWorkAutomation\clrjit.dll
|
||||||
|
D:\Neutral Folder\NetWorkAutomation\coreclr.dll
|
||||||
|
D:\Neutral Folder\NetWorkAutomation\mscordaccore.dll
|
||||||
|
D:\Neutral Folder\NetWorkAutomation\D3DCompiler_47_cor3.dll
|
||||||
|
D:\Neutral Folder\NetWorkAutomation\PenImc_cor3.dll
|
||||||
|
D:\Neutral Folder\NetWorkAutomation\PresentationNative_cor3.dll
|
||||||
|
D:\Neutral Folder\NetWorkAutomation\vcruntime140_cor3.dll
|
||||||
|
D:\Neutral Folder\NetWorkAutomation\wpfgfx_cor3.dll
|
||||||
|
D:\Neutral Folder\NetWorkAutomation\NetWork.exe
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@@ -1,41 +1,18 @@
|
|||||||
{
|
{
|
||||||
"version": 2,
|
"version": 2,
|
||||||
"dgSpecHash": "BhydSiOG2NBu0uLVWATFfYgnfBtndQZ/9pD0bWY8wy4gGFVPlWJKfua4yE919sMzabPkJFM5GWgKvqi6WhxWZQ==",
|
"dgSpecHash": "eKrNSb5czMQrjXGP2pUE43ZmZzGO2c2J1hQ6OR0QcHyrRZp5+qziN7735xc7iLHR98jr2eXTcf/C4o0hrMzwDw==",
|
||||||
"success": true,
|
"success": true,
|
||||||
"projectFilePath": "C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\NetWork.csproj",
|
"projectFilePath": "C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\NetWork.csproj",
|
||||||
"expectedPackageFiles": [
|
"expectedPackageFiles": [
|
||||||
"C:\\Users\\סארט\\.nuget\\packages\\audiocontrol.x64\\1.0.1\\audiocontrol.x64.1.0.1.nupkg.sha512",
|
"C:\\Users\\סארט\\.nuget\\packages\\audiocontrol.x64\\1.0.1\\audiocontrol.x64.1.0.1.nupkg.sha512",
|
||||||
"C:\\Users\\סארט\\.nuget\\packages\\dotras.for.win8\\1.3.0\\dotras.for.win8.1.3.0.nupkg.sha512",
|
"C:\\Users\\סארט\\.nuget\\packages\\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\\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.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.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.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.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\\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.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\\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\\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.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.core\\2.0.0\\naudio.core.2.0.0.nupkg.sha512",
|
||||||
@@ -44,91 +21,11 @@
|
|||||||
"C:\\Users\\סארט\\.nuget\\packages\\naudio.winforms\\2.0.1\\naudio.winforms.2.0.1.nupkg.sha512",
|
"C:\\Users\\סארט\\.nuget\\packages\\naudio.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\\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\\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\\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.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\\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.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.principal.windows\\5.0.0\\system.security.principal.windows.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": [
|
"logs": [
|
||||||
{
|
{
|
||||||
|
@@ -22,15 +22,16 @@
|
|||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||||
],
|
],
|
||||||
"originalTargetFrameworks": [
|
"originalTargetFrameworks": [
|
||||||
"net5.0"
|
"net5.0-windows7.0"
|
||||||
],
|
],
|
||||||
"sources": {
|
"sources": {
|
||||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||||
|
"C:\\Users\\סארט\\source\\repos\\NetWork": {},
|
||||||
"https://api.nuget.org/v3/index.json": {}
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"net5.0": {
|
"net5.0-windows7.0": {
|
||||||
"targetAlias": "net5.0",
|
"targetAlias": "net5.0-windows7.0",
|
||||||
"projectReferences": {}
|
"projectReferences": {}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -41,10 +42,42 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"net5.0": {
|
"net5.0-windows7.0": {
|
||||||
"targetAlias": "net5.0",
|
"targetAlias": "net5.0-windows7.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.Extensions.FileSystemGlobbing": {
|
"AudioControl.x64": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[1.0.1, )"
|
||||||
|
},
|
||||||
|
"DotRas.for.Win8": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[1.3.0, )"
|
||||||
|
},
|
||||||
|
"Microsoft.Management.Infrastructure": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[2.0.0, )"
|
||||||
|
},
|
||||||
|
"Microsoft.NETCore.Windows.ApiSets": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[1.0.1, )"
|
||||||
|
},
|
||||||
|
"Microsoft.NETCore.Windows.ApiSets-x64": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[1.0.0, )"
|
||||||
|
},
|
||||||
|
"NAudio": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[2.0.1, )"
|
||||||
|
},
|
||||||
|
"NETStandard.Library": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[2.0.3, )"
|
||||||
|
},
|
||||||
|
"SimpleWifi.netstandard": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[2.0.0, )"
|
||||||
|
},
|
||||||
|
"System.Management": {
|
||||||
"target": "Package",
|
"target": "Package",
|
||||||
"version": "[5.0.0, )"
|
"version": "[5.0.0, )"
|
||||||
}
|
}
|
||||||
|
@@ -3,4 +3,8 @@
|
|||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||||
</PropertyGroup>
|
</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>
|
</Project>
|
File diff suppressed because it is too large
Load Diff
@@ -1,13 +1,45 @@
|
|||||||
{
|
{
|
||||||
"version": 2,
|
"version": 2,
|
||||||
"dgSpecHash": "bMjlf2qSCrwvwyAoTPmdEvighgbXyxWv5ZrDDuZ5kcA558Y7UIPiY4JmXLHfwM2sEo2D3+o/sblliMTqmiea2A==",
|
"dgSpecHash": "9mCmI8FOaH0pdcjAAWd0+EWaSYvweY1t5bscDJCjfYRkqJAwV5WX1fbwcWrIk0QF0klioHiGmrbvej0lS1NFNw==",
|
||||||
"success": true,
|
"success": true,
|
||||||
"projectFilePath": "C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\NetWork.csproj",
|
"projectFilePath": "C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\NetWork.csproj",
|
||||||
"expectedPackageFiles": [
|
"expectedPackageFiles": [
|
||||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\5.0.0\\microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512",
|
"C:\\Users\\סארט\\.nuget\\packages\\audiocontrol.x64\\1.0.1\\audiocontrol.x64.1.0.1.nupkg.sha512",
|
||||||
|
"C:\\Users\\סארט\\.nuget\\packages\\dotras.for.win8\\1.3.0\\dotras.for.win8.1.3.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.management.infrastructure\\2.0.0\\microsoft.management.infrastructure.2.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.management.infrastructure.runtime.unix\\2.0.0\\microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.management.infrastructure.runtime.win\\2.0.0\\microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.netcore.windows.apisets\\1.0.1\\microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512",
|
||||||
|
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.netcore.windows.apisets-x64\\1.0.0\\microsoft.netcore.windows.apisets-x64.1.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.win32.registry\\5.0.0\\microsoft.win32.registry.5.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\סארט\\.nuget\\packages\\naudio\\2.0.1\\naudio.2.0.1.nupkg.sha512",
|
||||||
|
"C:\\Users\\סארט\\.nuget\\packages\\naudio.asio\\2.0.0\\naudio.asio.2.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\סארט\\.nuget\\packages\\naudio.core\\2.0.0\\naudio.core.2.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\סארט\\.nuget\\packages\\naudio.midi\\2.0.1\\naudio.midi.2.0.1.nupkg.sha512",
|
||||||
|
"C:\\Users\\סארט\\.nuget\\packages\\naudio.wasapi\\2.0.0\\naudio.wasapi.2.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\סארט\\.nuget\\packages\\naudio.winforms\\2.0.1\\naudio.winforms.2.0.1.nupkg.sha512",
|
||||||
|
"C:\\Users\\סארט\\.nuget\\packages\\naudio.winmm\\2.0.1\\naudio.winmm.2.0.1.nupkg.sha512",
|
||||||
|
"C:\\Users\\סארט\\.nuget\\packages\\netstandard.library\\2.0.3\\netstandard.library.2.0.3.nupkg.sha512",
|
||||||
|
"C:\\Users\\סארט\\.nuget\\packages\\simplewifi.netstandard\\2.0.0\\simplewifi.netstandard.2.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\סארט\\.nuget\\packages\\system.codedom\\5.0.0\\system.codedom.5.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\סארט\\.nuget\\packages\\system.management\\5.0.0\\system.management.5.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\סארט\\.nuget\\packages\\system.security.accesscontrol\\5.0.0\\system.security.accesscontrol.5.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\סארט\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.netcore.app.runtime.win-x64\\5.0.7\\microsoft.netcore.app.runtime.win-x64.5.0.7.nupkg.sha512",
|
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.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.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"
|
"C:\\Users\\סארט\\.nuget\\packages\\microsoft.aspnetcore.app.runtime.win-x64\\5.0.7\\microsoft.aspnetcore.app.runtime.win-x64.5.0.7.nupkg.sha512"
|
||||||
],
|
],
|
||||||
"logs": []
|
"logs": [
|
||||||
|
{
|
||||||
|
"code": "NU1701",
|
||||||
|
"level": "Warning",
|
||||||
|
"warningLevel": 1,
|
||||||
|
"message": "Package 'DotRas.for.Win8 1.3.0' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8' instead of the project target framework 'net5.0-windows7.0'. This package may not be fully compatible with your project.",
|
||||||
|
"libraryId": "DotRas.for.Win8",
|
||||||
|
"targetGraphs": [
|
||||||
|
"net5.0-windows7.0"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
Reference in New Issue
Block a user