diff --git a/.vs/ProjectSettings.json b/.vs/ProjectSettings.json new file mode 100644 index 0000000..f8b4888 --- /dev/null +++ b/.vs/ProjectSettings.json @@ -0,0 +1,3 @@ +{ + "CurrentProjectSetting": null +} \ No newline at end of file diff --git a/.vs/VSWorkspaceState.json b/.vs/VSWorkspaceState.json new file mode 100644 index 0000000..5552ee2 --- /dev/null +++ b/.vs/VSWorkspaceState.json @@ -0,0 +1,7 @@ +{ + "ExpandedNodes": [ + "" + ], + "SelectedNode": "\\Neutral Folder.sln", + "PreviewInSolutionExplorer": false +} \ No newline at end of file diff --git a/.vs/desktop.ini b/.vs/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/.vs/desktop.ini differ diff --git a/.vs/slnx.sqlite b/.vs/slnx.sqlite new file mode 100644 index 0000000..80b348d Binary files /dev/null and b/.vs/slnx.sqlite differ diff --git a/DownloadMyScript/.vs/DownloadMyScript/desktop.ini b/DownloadMyScript/.vs/DownloadMyScript/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/DownloadMyScript/.vs/DownloadMyScript/desktop.ini differ diff --git a/DownloadMyScript/.vs/DownloadMyScript/v16/.suo b/DownloadMyScript/.vs/DownloadMyScript/v16/.suo new file mode 100644 index 0000000..1fb71ab Binary files /dev/null and b/DownloadMyScript/.vs/DownloadMyScript/v16/.suo differ diff --git a/DownloadMyScript/.vs/DownloadMyScript/v16/desktop.ini b/DownloadMyScript/.vs/DownloadMyScript/v16/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/DownloadMyScript/.vs/DownloadMyScript/v16/desktop.ini differ diff --git a/DownloadMyScript/.vs/desktop.ini b/DownloadMyScript/.vs/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/DownloadMyScript/.vs/desktop.ini differ diff --git a/DownloadMyScript/DownloadMyScript.sln b/DownloadMyScript/DownloadMyScript.sln new file mode 100644 index 0000000..04cf5c3 --- /dev/null +++ b/DownloadMyScript/DownloadMyScript.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31424.327 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DownloadMyScript", "DownloadMyScript\DownloadMyScript.csproj", "{537DD54D-4FF8-4366-9B1A-7FC7E16A521D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {537DD54D-4FF8-4366-9B1A-7FC7E16A521D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {537DD54D-4FF8-4366-9B1A-7FC7E16A521D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {537DD54D-4FF8-4366-9B1A-7FC7E16A521D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {537DD54D-4FF8-4366-9B1A-7FC7E16A521D}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {B64C8F5A-CCB1-4C2B-9F7B-3485ED0C2CE1} + EndGlobalSection +EndGlobal diff --git a/DownloadMyScript/DownloadMyScript/DownloadMyScript.csproj b/DownloadMyScript/DownloadMyScript/DownloadMyScript.csproj new file mode 100644 index 0000000..b84e63f --- /dev/null +++ b/DownloadMyScript/DownloadMyScript/DownloadMyScript.csproj @@ -0,0 +1,12 @@ + + + + Exe + net5.0 + + + + + + + diff --git a/DownloadMyScript/DownloadMyScript/Program.cs b/DownloadMyScript/DownloadMyScript/Program.cs new file mode 100644 index 0000000..65393d4 --- /dev/null +++ b/DownloadMyScript/DownloadMyScript/Program.cs @@ -0,0 +1,22 @@ +using System; +using Newtonsoft.Json; +namespace DownloadMyScript +{ + class Program + { + static void Main(string[] args) + { + System.Net.WebRequest data_element = System.Net.WebRequest.Create("https://api.github.com/gists/cd81e5005e7c7be3f71af94ab635d647"); + data_element.Method = "GET"; + data_element.ContentType = "application/json"; + data_element.Credentials = "foo"; + System.Net.WebResponse res = data_element.GetResponse(); + System.IO.Stream stream = res.GetResponseStream(); + string data_content = stream.ToString(); + dynamic data = JsonConvert.DeserializeObject(data_content); + data_element = System.Net.WebRequest.Create(data["files"]["myscript 2.0.exe"]["raw_url"].Value); + //byte[] binaryWriter = data_element.Method; + //System.IO.File.WriteAllBytes("D:\\Neutral Folder\\File.exe",binaryWriter); + } + } +} diff --git a/DownloadMyScript/DownloadMyScript/bin/Debug/desktop.ini b/DownloadMyScript/DownloadMyScript/bin/Debug/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/DownloadMyScript/DownloadMyScript/bin/Debug/desktop.ini differ diff --git a/DownloadMyScript/DownloadMyScript/bin/Debug/net5.0/DownloadMyScript.deps.json b/DownloadMyScript/DownloadMyScript/bin/Debug/net5.0/DownloadMyScript.deps.json new file mode 100644 index 0000000..c44d487 --- /dev/null +++ b/DownloadMyScript/DownloadMyScript/bin/Debug/net5.0/DownloadMyScript.deps.json @@ -0,0 +1,41 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v5.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v5.0": { + "DownloadMyScript/1.0.0": { + "dependencies": { + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "DownloadMyScript.dll": {} + } + }, + "Newtonsoft.Json/13.0.1": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" + } + } + } + } + }, + "libraries": { + "DownloadMyScript/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/DownloadMyScript/DownloadMyScript/bin/Debug/net5.0/DownloadMyScript.dll b/DownloadMyScript/DownloadMyScript/bin/Debug/net5.0/DownloadMyScript.dll new file mode 100644 index 0000000..57c98fe Binary files /dev/null and b/DownloadMyScript/DownloadMyScript/bin/Debug/net5.0/DownloadMyScript.dll differ diff --git a/DownloadMyScript/DownloadMyScript/bin/Debug/net5.0/DownloadMyScript.exe b/DownloadMyScript/DownloadMyScript/bin/Debug/net5.0/DownloadMyScript.exe new file mode 100644 index 0000000..fc25b3b Binary files /dev/null and b/DownloadMyScript/DownloadMyScript/bin/Debug/net5.0/DownloadMyScript.exe differ diff --git a/DownloadMyScript/DownloadMyScript/bin/Debug/net5.0/DownloadMyScript.pdb b/DownloadMyScript/DownloadMyScript/bin/Debug/net5.0/DownloadMyScript.pdb new file mode 100644 index 0000000..3947063 Binary files /dev/null and b/DownloadMyScript/DownloadMyScript/bin/Debug/net5.0/DownloadMyScript.pdb differ diff --git a/DownloadMyScript/DownloadMyScript/bin/Debug/net5.0/DownloadMyScript.runtimeconfig.dev.json b/DownloadMyScript/DownloadMyScript/bin/Debug/net5.0/DownloadMyScript.runtimeconfig.dev.json new file mode 100644 index 0000000..c1d81ac --- /dev/null +++ b/DownloadMyScript/DownloadMyScript/bin/Debug/net5.0/DownloadMyScript.runtimeconfig.dev.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "C:\\Users\\סארט\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\סארט\\.nuget\\packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ] + } +} \ No newline at end of file diff --git a/DownloadMyScript/DownloadMyScript/bin/Debug/net5.0/DownloadMyScript.runtimeconfig.json b/DownloadMyScript/DownloadMyScript/bin/Debug/net5.0/DownloadMyScript.runtimeconfig.json new file mode 100644 index 0000000..a8e7e82 --- /dev/null +++ b/DownloadMyScript/DownloadMyScript/bin/Debug/net5.0/DownloadMyScript.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net5.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "5.0.0" + } + } +} \ No newline at end of file diff --git a/DownloadMyScript/DownloadMyScript/bin/Debug/net5.0/Newtonsoft.Json.dll b/DownloadMyScript/DownloadMyScript/bin/Debug/net5.0/Newtonsoft.Json.dll new file mode 100644 index 0000000..1ffeabe Binary files /dev/null and b/DownloadMyScript/DownloadMyScript/bin/Debug/net5.0/Newtonsoft.Json.dll differ diff --git a/DownloadMyScript/DownloadMyScript/bin/Debug/net5.0/desktop.ini b/DownloadMyScript/DownloadMyScript/bin/Debug/net5.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/DownloadMyScript/DownloadMyScript/bin/Debug/net5.0/desktop.ini differ diff --git a/DownloadMyScript/DownloadMyScript/bin/Debug/net5.0/ref/DownloadMyScript.dll b/DownloadMyScript/DownloadMyScript/bin/Debug/net5.0/ref/DownloadMyScript.dll new file mode 100644 index 0000000..d2e78f8 Binary files /dev/null and b/DownloadMyScript/DownloadMyScript/bin/Debug/net5.0/ref/DownloadMyScript.dll differ diff --git a/DownloadMyScript/DownloadMyScript/bin/Debug/net5.0/ref/desktop.ini b/DownloadMyScript/DownloadMyScript/bin/Debug/net5.0/ref/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/DownloadMyScript/DownloadMyScript/bin/Debug/net5.0/ref/desktop.ini differ diff --git a/DownloadMyScript/DownloadMyScript/bin/Release/desktop.ini b/DownloadMyScript/DownloadMyScript/bin/Release/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/DownloadMyScript/DownloadMyScript/bin/Release/desktop.ini differ diff --git a/DownloadMyScript/DownloadMyScript/bin/Release/net5.0/desktop.ini b/DownloadMyScript/DownloadMyScript/bin/Release/net5.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/DownloadMyScript/DownloadMyScript/bin/Release/net5.0/desktop.ini differ diff --git a/DownloadMyScript/DownloadMyScript/bin/Release/net5.0/ref/desktop.ini b/DownloadMyScript/DownloadMyScript/bin/Release/net5.0/ref/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/DownloadMyScript/DownloadMyScript/bin/Release/net5.0/ref/desktop.ini differ diff --git a/DownloadMyScript/DownloadMyScript/bin/desktop.ini b/DownloadMyScript/DownloadMyScript/bin/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/DownloadMyScript/DownloadMyScript/bin/desktop.ini differ diff --git a/DownloadMyScript/DownloadMyScript/desktop.ini b/DownloadMyScript/DownloadMyScript/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/DownloadMyScript/DownloadMyScript/desktop.ini differ diff --git a/DownloadMyScript/DownloadMyScript/obj/Debug/desktop.ini b/DownloadMyScript/DownloadMyScript/obj/Debug/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/DownloadMyScript/DownloadMyScript/obj/Debug/desktop.ini differ diff --git a/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2f7e5ec --- /dev/null +++ b/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/DownloadMyScript.AssemblyInfo.cs b/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/DownloadMyScript.AssemblyInfo.cs new file mode 100644 index 0000000..35c3c81 --- /dev/null +++ b/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/DownloadMyScript.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("DownloadMyScript")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("DownloadMyScript")] +[assembly: System.Reflection.AssemblyTitleAttribute("DownloadMyScript")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/DownloadMyScript.AssemblyInfoInputs.cache b/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/DownloadMyScript.AssemblyInfoInputs.cache new file mode 100644 index 0000000..1ddcf4e --- /dev/null +++ b/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/DownloadMyScript.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +c9a85597ea4a5f5982dbe6b8d0b176aba8111283 diff --git a/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/DownloadMyScript.GeneratedMSBuildEditorConfig.editorconfig b/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/DownloadMyScript.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d7e2983 --- /dev/null +++ b/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/DownloadMyScript.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,8 @@ +is_global = true +build_property.TargetFramework = net5.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.PublishSingleFile = +build_property.IncludeAllContentForSelfExtract = +build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows diff --git a/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/DownloadMyScript.assets.cache b/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/DownloadMyScript.assets.cache new file mode 100644 index 0000000..811fd13 Binary files /dev/null and b/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/DownloadMyScript.assets.cache differ diff --git a/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/DownloadMyScript.csproj.AssemblyReference.cache b/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/DownloadMyScript.csproj.AssemblyReference.cache new file mode 100644 index 0000000..668c765 Binary files /dev/null and b/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/DownloadMyScript.csproj.AssemblyReference.cache differ diff --git a/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.CopyComplete b/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/DownloadMyScript.csproj.CopyComplete similarity index 100% rename from NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.CopyComplete rename to DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/DownloadMyScript.csproj.CopyComplete diff --git a/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/DownloadMyScript.csproj.CoreCompileInputs.cache b/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/DownloadMyScript.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..6fcad97 --- /dev/null +++ b/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/DownloadMyScript.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +df04e92bc1f90889acee3127c09f40d862e05d52 diff --git a/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/DownloadMyScript.csproj.FileListAbsolute.txt b/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/DownloadMyScript.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..36ea417 --- /dev/null +++ b/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/DownloadMyScript.csproj.FileListAbsolute.txt @@ -0,0 +1,18 @@ +C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\bin\Debug\net5.0\DownloadMyScript.exe +C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\bin\Debug\net5.0\DownloadMyScript.deps.json +C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\bin\Debug\net5.0\DownloadMyScript.runtimeconfig.json +C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\bin\Debug\net5.0\DownloadMyScript.runtimeconfig.dev.json +C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\bin\Debug\net5.0\DownloadMyScript.dll +C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\bin\Debug\net5.0\ref\DownloadMyScript.dll +C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\bin\Debug\net5.0\DownloadMyScript.pdb +C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\bin\Debug\net5.0\Newtonsoft.Json.dll +C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\obj\Debug\net5.0\DownloadMyScript.csproj.AssemblyReference.cache +C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\obj\Debug\net5.0\DownloadMyScript.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\obj\Debug\net5.0\DownloadMyScript.AssemblyInfoInputs.cache +C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\obj\Debug\net5.0\DownloadMyScript.AssemblyInfo.cs +C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\obj\Debug\net5.0\DownloadMyScript.csproj.CoreCompileInputs.cache +C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\obj\Debug\net5.0\DownloadMyScript.csproj.CopyComplete +C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\obj\Debug\net5.0\DownloadMyScript.dll +C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\obj\Debug\net5.0\ref\DownloadMyScript.dll +C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\obj\Debug\net5.0\DownloadMyScript.pdb +C:\Users\סארט\source\repos\DownloadMyScript\DownloadMyScript\obj\Debug\net5.0\DownloadMyScript.genruntimeconfig.cache diff --git a/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/DownloadMyScript.dll b/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/DownloadMyScript.dll new file mode 100644 index 0000000..57c98fe Binary files /dev/null and b/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/DownloadMyScript.dll differ diff --git a/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/DownloadMyScript.genruntimeconfig.cache b/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/DownloadMyScript.genruntimeconfig.cache new file mode 100644 index 0000000..c7a852f --- /dev/null +++ b/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/DownloadMyScript.genruntimeconfig.cache @@ -0,0 +1 @@ +fa85a2a72e640131834e709d9635d29afc128acb diff --git a/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/DownloadMyScript.pdb b/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/DownloadMyScript.pdb new file mode 100644 index 0000000..3947063 Binary files /dev/null and b/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/DownloadMyScript.pdb differ diff --git a/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/apphost.exe b/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/apphost.exe new file mode 100644 index 0000000..fc25b3b Binary files /dev/null and b/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/apphost.exe differ diff --git a/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/desktop.ini b/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/desktop.ini differ diff --git a/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/ref/DownloadMyScript.dll b/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/ref/DownloadMyScript.dll new file mode 100644 index 0000000..d2e78f8 Binary files /dev/null and b/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/ref/DownloadMyScript.dll differ diff --git a/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/ref/desktop.ini b/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/ref/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/DownloadMyScript/DownloadMyScript/obj/Debug/net5.0/ref/desktop.ini differ diff --git a/DownloadMyScript/DownloadMyScript/obj/DownloadMyScript.csproj.nuget.dgspec.json b/DownloadMyScript/DownloadMyScript/obj/DownloadMyScript.csproj.nuget.dgspec.json new file mode 100644 index 0000000..5af20cb --- /dev/null +++ b/DownloadMyScript/DownloadMyScript/obj/DownloadMyScript.csproj.nuget.dgspec.json @@ -0,0 +1,73 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\סארט\\source\\repos\\DownloadMyScript\\DownloadMyScript\\DownloadMyScript.csproj": {} + }, + "projects": { + "C:\\Users\\סארט\\source\\repos\\DownloadMyScript\\DownloadMyScript\\DownloadMyScript.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\סארט\\source\\repos\\DownloadMyScript\\DownloadMyScript\\DownloadMyScript.csproj", + "projectName": "DownloadMyScript", + "projectPath": "C:\\Users\\סארט\\source\\repos\\DownloadMyScript\\DownloadMyScript\\DownloadMyScript.csproj", + "packagesPath": "C:\\Users\\סארט\\.nuget\\packages\\", + "outputPath": "C:\\Users\\סארט\\source\\repos\\DownloadMyScript\\DownloadMyScript\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\סארט\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Users\\סארט\\source\\repos\\NetWork": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "dependencies": { + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/DownloadMyScript/DownloadMyScript/obj/DownloadMyScript.csproj.nuget.g.props b/DownloadMyScript/DownloadMyScript/obj/DownloadMyScript.csproj.nuget.g.props new file mode 100644 index 0000000..1fef40e --- /dev/null +++ b/DownloadMyScript/DownloadMyScript/obj/DownloadMyScript.csproj.nuget.g.props @@ -0,0 +1,19 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\סארט\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 5.10.0 + + + + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/DownloadMyScript/DownloadMyScript/obj/DownloadMyScript.csproj.nuget.g.targets b/DownloadMyScript/DownloadMyScript/obj/DownloadMyScript.csproj.nuget.g.targets new file mode 100644 index 0000000..53cfaa1 --- /dev/null +++ b/DownloadMyScript/DownloadMyScript/obj/DownloadMyScript.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/DownloadMyScript/DownloadMyScript/obj/Release/desktop.ini b/DownloadMyScript/DownloadMyScript/obj/Release/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/DownloadMyScript/DownloadMyScript/obj/Release/desktop.ini differ diff --git a/DownloadMyScript/DownloadMyScript/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/DownloadMyScript/DownloadMyScript/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2f7e5ec --- /dev/null +++ b/DownloadMyScript/DownloadMyScript/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/DownloadMyScript/DownloadMyScript/obj/Release/net5.0/DownloadMyScript.AssemblyInfo.cs b/DownloadMyScript/DownloadMyScript/obj/Release/net5.0/DownloadMyScript.AssemblyInfo.cs new file mode 100644 index 0000000..9272828 --- /dev/null +++ b/DownloadMyScript/DownloadMyScript/obj/Release/net5.0/DownloadMyScript.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("DownloadMyScript")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("DownloadMyScript")] +[assembly: System.Reflection.AssemblyTitleAttribute("DownloadMyScript")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/DownloadMyScript/DownloadMyScript/obj/Release/net5.0/DownloadMyScript.AssemblyInfoInputs.cache b/DownloadMyScript/DownloadMyScript/obj/Release/net5.0/DownloadMyScript.AssemblyInfoInputs.cache new file mode 100644 index 0000000..b75868a --- /dev/null +++ b/DownloadMyScript/DownloadMyScript/obj/Release/net5.0/DownloadMyScript.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +d8e6aaabf3d916a2d32ed3310e891e34c40f3e94 diff --git a/DownloadMyScript/DownloadMyScript/obj/Release/net5.0/DownloadMyScript.GeneratedMSBuildEditorConfig.editorconfig b/DownloadMyScript/DownloadMyScript/obj/Release/net5.0/DownloadMyScript.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d7e2983 --- /dev/null +++ b/DownloadMyScript/DownloadMyScript/obj/Release/net5.0/DownloadMyScript.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,8 @@ +is_global = true +build_property.TargetFramework = net5.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.PublishSingleFile = +build_property.IncludeAllContentForSelfExtract = +build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows diff --git a/DownloadMyScript/DownloadMyScript/obj/Release/net5.0/DownloadMyScript.assets.cache b/DownloadMyScript/DownloadMyScript/obj/Release/net5.0/DownloadMyScript.assets.cache new file mode 100644 index 0000000..575b036 Binary files /dev/null and b/DownloadMyScript/DownloadMyScript/obj/Release/net5.0/DownloadMyScript.assets.cache differ diff --git a/DownloadMyScript/DownloadMyScript/obj/Release/net5.0/DownloadMyScript.csproj.AssemblyReference.cache b/DownloadMyScript/DownloadMyScript/obj/Release/net5.0/DownloadMyScript.csproj.AssemblyReference.cache new file mode 100644 index 0000000..668c765 Binary files /dev/null and b/DownloadMyScript/DownloadMyScript/obj/Release/net5.0/DownloadMyScript.csproj.AssemblyReference.cache differ diff --git a/DownloadMyScript/DownloadMyScript/obj/Release/net5.0/desktop.ini b/DownloadMyScript/DownloadMyScript/obj/Release/net5.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/DownloadMyScript/DownloadMyScript/obj/Release/net5.0/desktop.ini differ diff --git a/DownloadMyScript/DownloadMyScript/obj/Release/net5.0/ref/desktop.ini b/DownloadMyScript/DownloadMyScript/obj/Release/net5.0/ref/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/DownloadMyScript/DownloadMyScript/obj/Release/net5.0/ref/desktop.ini differ diff --git a/DownloadMyScript/DownloadMyScript/obj/desktop.ini b/DownloadMyScript/DownloadMyScript/obj/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/DownloadMyScript/DownloadMyScript/obj/desktop.ini differ diff --git a/DownloadMyScript/DownloadMyScript/obj/project.assets.json b/DownloadMyScript/DownloadMyScript/obj/project.assets.json new file mode 100644 index 0000000..93c4885 --- /dev/null +++ b/DownloadMyScript/DownloadMyScript/obj/project.assets.json @@ -0,0 +1,119 @@ +{ + "version": 3, + "targets": { + "net5.0": { + "Newtonsoft.Json/13.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + } + } + }, + "libraries": { + "Newtonsoft.Json/13.0.1": { + "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "type": "package", + "path": "newtonsoft.json/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + } + }, + "projectFileDependencyGroups": { + "net5.0": [ + "Newtonsoft.Json >= 13.0.1" + ] + }, + "packageFolders": { + "C:\\Users\\סארט\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\סארט\\source\\repos\\DownloadMyScript\\DownloadMyScript\\DownloadMyScript.csproj", + "projectName": "DownloadMyScript", + "projectPath": "C:\\Users\\סארט\\source\\repos\\DownloadMyScript\\DownloadMyScript\\DownloadMyScript.csproj", + "packagesPath": "C:\\Users\\סארט\\.nuget\\packages\\", + "outputPath": "C:\\Users\\סארט\\source\\repos\\DownloadMyScript\\DownloadMyScript\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\סארט\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Users\\סארט\\source\\repos\\NetWork": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "dependencies": { + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/DownloadMyScript/DownloadMyScript/obj/project.nuget.cache b/DownloadMyScript/DownloadMyScript/obj/project.nuget.cache new file mode 100644 index 0000000..b6e218b --- /dev/null +++ b/DownloadMyScript/DownloadMyScript/obj/project.nuget.cache @@ -0,0 +1,10 @@ +{ + "version": 2, + "dgSpecHash": "PMTPDRGEm/HXTWcqwujTQlNlZX64Y/wdOapXAjVmGX1fbuhW2fnjCMmFUBhO073GZUuxxR8dTOJpcCGwIjg1IA==", + "success": true, + "projectFilePath": "C:\\Users\\סארט\\source\\repos\\DownloadMyScript\\DownloadMyScript\\DownloadMyScript.csproj", + "expectedPackageFiles": [ + "C:\\Users\\סארט\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/DownloadMyScript/desktop.ini b/DownloadMyScript/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/DownloadMyScript/desktop.ini differ diff --git a/Installizer/.vs/Installizer/DesignTimeBuild/.dtbcache.v2 b/Installizer/.vs/Installizer/DesignTimeBuild/.dtbcache.v2 new file mode 100644 index 0000000..9842711 Binary files /dev/null and b/Installizer/.vs/Installizer/DesignTimeBuild/.dtbcache.v2 differ diff --git a/Installizer/.vs/Installizer/DesignTimeBuild/desktop.ini b/Installizer/.vs/Installizer/DesignTimeBuild/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/.vs/Installizer/DesignTimeBuild/desktop.ini differ diff --git a/Installizer/.vs/Installizer/config/applicationhost.config b/Installizer/.vs/Installizer/config/applicationhost.config new file mode 100644 index 0000000..bd44eab --- /dev/null +++ b/Installizer/.vs/Installizer/config/applicationhost.config @@ -0,0 +1,1025 @@ + + + + + + + +
+
+
+
+
+
+
+
+ + + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+ +
+
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+ +
+
+ +
+
+ +
+
+
+ + +
+
+
+
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Installizer/.vs/Installizer/config/desktop.ini b/Installizer/.vs/Installizer/config/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/.vs/Installizer/config/desktop.ini differ diff --git a/Installizer/.vs/Installizer/desktop.ini b/Installizer/.vs/Installizer/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/.vs/Installizer/desktop.ini differ diff --git a/Installizer/.vs/Installizer/v16/.suo b/Installizer/.vs/Installizer/v16/.suo new file mode 100644 index 0000000..6b7f17b Binary files /dev/null and b/Installizer/.vs/Installizer/v16/.suo differ diff --git a/Installizer/.vs/Installizer/v16/desktop.ini b/Installizer/.vs/Installizer/v16/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/.vs/Installizer/v16/desktop.ini differ diff --git a/Installizer/.vs/Installizer/v17/.futdcache.v1 b/Installizer/.vs/Installizer/v17/.futdcache.v1 new file mode 100644 index 0000000..0616bd8 Binary files /dev/null and b/Installizer/.vs/Installizer/v17/.futdcache.v1 differ diff --git a/Installizer/.vs/Installizer/v17/.suo b/Installizer/.vs/Installizer/v17/.suo new file mode 100644 index 0000000..3dc17e7 Binary files /dev/null and b/Installizer/.vs/Installizer/v17/.suo differ diff --git a/Installizer/.vs/Installizer/v17/desktop.ini b/Installizer/.vs/Installizer/v17/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/.vs/Installizer/v17/desktop.ini differ diff --git a/Installizer/.vs/desktop.ini b/Installizer/.vs/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/.vs/desktop.ini differ diff --git a/Installizer/Installizer.sln b/Installizer/Installizer.sln new file mode 100644 index 0000000..40cdafb --- /dev/null +++ b/Installizer/Installizer.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31424.327 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Installizer", "Installizer\Installizer.csproj", "{3C87F9A8-0C2F-4874-BAA0-348727FEA7F3}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x86 = Debug|x86 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {3C87F9A8-0C2F-4874-BAA0-348727FEA7F3}.Debug|x86.ActiveCfg = Debug|Any CPU + {3C87F9A8-0C2F-4874-BAA0-348727FEA7F3}.Debug|x86.Build.0 = Debug|Any CPU + {3C87F9A8-0C2F-4874-BAA0-348727FEA7F3}.Release|x86.ActiveCfg = Release|Any CPU + {3C87F9A8-0C2F-4874-BAA0-348727FEA7F3}.Release|x86.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {FC60DE32-A197-43B1-8E29-1A738FD3772B} + EndGlobalSection +EndGlobal diff --git a/Installizer/Installizer/ChocoInstaller.cs b/Installizer/Installizer/ChocoInstaller.cs new file mode 100644 index 0000000..57610a3 --- /dev/null +++ b/Installizer/Installizer/ChocoInstaller.cs @@ -0,0 +1,51 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Installizer +{ + class ChocoInstaller + { + private string[] ListOfPackages; + + public ChocoInstaller(string chocoListOfPackages) + { + this.ListOfPackages = System.IO.File.ReadAllLines(chocoListOfPackages); + } + private string GetLink(string chocoPack) + { + return $"https://community.chocolatey.org/packages/{chocoPack}"; + } + private string GetPackageLink(string chocoPack) + { + string p = GetLink(chocoPack); + System.Net.WebRequest webRequest = System.Net.WebRequest.Create(p); + System.Net.HttpWebResponse response = (System.Net.HttpWebResponse)webRequest.GetResponse(); + System.IO.Stream stream= response.GetResponseStream(); + System.IO.StreamReader streamReader = new(stream); + response.Close(); + stream.Close(); + string data = streamReader.ReadToEnd(); + return data; + } + private void DownloadPackage(string chocoPack) + { + string htmlData = GetPackageLink(chocoPack); + string path = $"C:/Users/Public/Desktop/PackDown/{chocoPack}.nupkg"; + int begin = htmlData.IndexOf("https://community.chocolatey.org/api/v2/package"); + int end = htmlData.IndexOf('"', begin) - 1; + System.Net.WebRequest webRequest = System.Net.WebRequest.Create(htmlData.Substring(begin, (end - begin))); + System.Net.WebResponse webResponse = webRequest.GetResponse(); + System.IO.Stream stream = webRequest.GetRequestStream(); + System.IO.StreamWriter streamWriter = new(path); + streamWriter.Write(stream); + + } + public void SetContent(int idPack) + { + DownloadPackage(this.ListOfPackages[idPack]); + } + } +} diff --git a/Installizer/Installizer/Installizer.csproj b/Installizer/Installizer/Installizer.csproj new file mode 100644 index 0000000..678468f --- /dev/null +++ b/Installizer/Installizer/Installizer.csproj @@ -0,0 +1,24 @@ + + + + Exe + net5.0-windows + app.manifest + windows + 7.0 + + + + + x64 + + + + + + + + + + + diff --git a/Installizer/Installizer/Program.cs b/Installizer/Installizer/Program.cs new file mode 100644 index 0000000..e11e601 --- /dev/null +++ b/Installizer/Installizer/Program.cs @@ -0,0 +1,94 @@ +namespace Installizer +{ + class Program + { +#nullable enable + public static string requireInternetTasks = System.IO.Directory.GetFiles(@"C:\Users\Public\Desktop", @"RequireInternet.*", System.IO.SearchOption.AllDirectories)[0]; + public static string regularTasks = System.IO.Directory.GetFiles(@"C:\Users\Public\Desktop", @"Regular.*", System.IO.SearchOption.AllDirectories)[0]; + public static string serial = System.IO.Directory.GetFiles(@"C:\Users\Public\Desktop", @"Serial.*", System.IO.SearchOption.AllDirectories)[0]; + public static string registrySettings = System.IO.Directory.GetFiles(@"C:\Users\Public\Desktop", @"registry.json", System.IO.SearchOption.AllDirectories)[0]; + public static string[] wifis = System.IO.Directory.GetFiles(@"C:\Users\Public\Desktop", @"*.xml", System.IO.SearchOption.AllDirectories); + /// + /// + /// + /// + public static void SetRegistryOption(Newtonsoft.Json.Linq.JObject registryOption) + { + try + { + if ((registryOption.ContainsKey("Key")) && (registryOption.ContainsKey("Name")) && (registryOption.ContainsKey("Value"))) + { + if (registryOption.ContainsKey("Type")) + { + dynamic type; + string data = registryOption["Type"].ToString(); + switch (data) + { + case "dword": + { + type = Microsoft.Win32.RegistryValueKind.DWord; + break; + } + case "hex": + { + type = Microsoft.Win32.RegistryValueKind.Binary; + break; + } + default: + { + type = Microsoft.Win32.RegistryValueKind.String; + break; + } + } + Microsoft.Win32.Registry.SetValue((string)registryOption["Key"], (string)registryOption["Name"], (string)registryOption["Value"], type); + } + } + } + catch + { + } + } + public static void SetRegistryOptions() + { + Newtonsoft.Json.Linq.JArray registryOption = (Newtonsoft.Json.Linq.JArray)Newtonsoft.Json.JsonConvert.DeserializeObject(System.IO.File.ReadAllText(registrySettings)); + foreach (Newtonsoft.Json.Linq.JObject json in registryOption) + { + SetRegistryOption(json); + } + } + public static bool Connected() + { + return System.Net.NetworkInformation.NetworkInterface.GetIsNetworkAvailable(); + } + public static void AddWifi() + { + ManagedNativeWifi.ProfileDocument wifi = new(wifis[0]); + } + public static void RequireInternet() + { + if (Connected()) + { + string[] tasks = System.IO.File.ReadAllLines(requireInternetTasks); + } + } + + static void Main(string[] args) + { + //bool f = Connected(); + //Console.WriteLine("Hello World!"); + ////AddWifi(); + //RegistryCreator reg = new (@"D:\Neutral Folder\"); + //reg.RegToJsonFile(); + //ChocoInstaller chocoInstaller = new(@"D:\the Windows Deployment\Copy To Folders\Users\Public\Desktop\choco.txt"); + //chocoInstaller.SetContent(0); + Tasker tasker = new Tasker("ab", "cd"); + int[] i = new int[] { 1, 2 }; + tasker.TaskActionsDefine(@"C:\Program Files\PowerShell\7\pwsh.exe", null, null); + tasker.TaskDailyTriggerrDefine("12:30"); + //tasker.TaskSettingsDefine(); + tasker.TaskPrincipal(user: "Feanor\\סארט"); + tasker.RegisterTask(); + System.Console.WriteLine("now"); + } + } +} diff --git a/Installizer/Installizer/Properties/desktop.ini b/Installizer/Installizer/Properties/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/Installizer/Properties/desktop.ini differ diff --git a/Installizer/Installizer/Properties/launchSettings.json b/Installizer/Installizer/Properties/launchSettings.json new file mode 100644 index 0000000..d3b3be0 --- /dev/null +++ b/Installizer/Installizer/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "Installizer": { + "commandName": "Project", + "remoteDebugEnabled": false + } + } +} \ No newline at end of file diff --git a/Installizer/Installizer/Registrazier.cs b/Installizer/Installizer/Registrazier.cs new file mode 100644 index 0000000..39d2df7 --- /dev/null +++ b/Installizer/Installizer/Registrazier.cs @@ -0,0 +1,88 @@ +namespace Installizer +{ + class Registrayzier + { + private string regJson; + private string[] regFiles; + private System.Collections.Generic.List> listOfRegistries = new(); + public Registrayzier(string Folder) + { + this.regFiles = System.IO.Directory.GetFiles(Folder, "*.reg", System.IO.SearchOption.AllDirectories); + } + private string[] CropLocations(string regFileText) + { + return regFileText.Split("[")[1..^0]; + } + private string GetKey(string regFileText) + { + regFileText = regFileText.Replace(@"\", @"\\"); + if (regFileText.StartsWith("hk")) + { + regFileText = regFileText.Replace("hklm", "HKEY_LOCAL_MACHINE").Replace("hkcu", "HKEY_CURRENT_USER").Replace("hkcr", @"HKEY_LOCAL_MACHINE\SOFTWARE\Classes"); + } + if (regFileText.Contains(']')) + { + return regFileText.Split("]")[0]; + } + else if (regFileText.Contains("\r\n")) + { + return regFileText.Split("\r\n")[0]; + } + else if (regFileText.Contains("\n")) + { + return regFileText.Split("\n")[0]; + } + return regFileText; + } + private string[]? SplitReg(string regFileText) + { + if (regFileText.Contains("=")) + { + return regFileText.Split("="); + } + return null; + } + private string GetName(string regFileText) + { + string name = SplitReg(regFileText)[0] ?? ""; + return name; + } + private string GetType(string regFileText) + { + string type = SplitReg(regFileText)[1] ?? ""; + if (type.Length == 0) + { + return "None"; + } + else if (type.StartsWith("\"")) + { + return "string"; + } + else if (type.StartsWith("hex")) + { + return "hex"; + } + return "dword"; + } + private string GetValue(string regFileText) + { + string value; + string tempValue = SplitReg(regFileText)[1]; + string type = GetType(regFileText); + if(type == "string") + { + value = tempValue; + } + else if(type == "dword") + { + value = tempValue.Split("dword:")[1]; + } + else + { + value = ""; + } + return value; + } + //private string + } +} diff --git a/Installizer/Installizer/RegistryCreator.cs b/Installizer/Installizer/RegistryCreator.cs new file mode 100644 index 0000000..a2ed74c --- /dev/null +++ b/Installizer/Installizer/RegistryCreator.cs @@ -0,0 +1,119 @@ + +namespace Installizer +{ + public class RegistryCreator + { + private string regJson = @"[]"; + private string regFolder; + private string[] regs; + public RegistryCreator(string Path) + { + this.regFolder = Path; + RegFiles(); + } + private void RegFiles() + { + this.regs = System.IO.Directory.GetFiles(this.regFolder, "*.reg", System.IO.SearchOption.AllDirectories); + } + private string[] _cropRegFile(string regFileContent) + { + string[] regSplited = regFileContent.Split('['); + if(regSplited[0].StartsWith("Windows")) + { + regSplited = regSplited[1..^0]; + } + return regSplited; + } + private string getKey(string regText) + { + System.Text.RegularExpressions.Regex regex = new(@"([A-z]|\\|{|}|[0-9])+"); + return $"\"Key\":\"{regex.Match(regText).Value}\"".Replace(@"\",@"\\").Replace("]",""); + } + private string getName(string regText) + { + System.Text.RegularExpressions.Regex regex = new(@"([A-z]|""|[א-ת]|[ךםןףץ]|[0-9])+"); + string name = $"\"Name\":{regex.Match(regText.Split("=")[0]).Value}"; + if (name.EndsWith(':')) + { + name += "\"(Default)\""; + } + return name; + } + private string getType(string regText) + { + if (regText.Length < 1) + { + return ""; + } + if(regText.Contains(@"""=""")) + { + return "\"Type\":\"string\""; + } + else if(regText.Contains("hex")) + { + return "\"Type\":\"hex\""; + } + return "\"Type\":\"dword\""; + } + private string getValue(string regText, string typeReg) + { + string value = "\"Value\":"; + switch(typeReg) + { + case "\"Type\":\"dword\"": + { + System.Text.RegularExpressions.Regex regex = new(@"[0-9]+"); + value += $"\"{regex.Match(regText.Split("dword:")[^1]).Value}\""; + break; + } + default: + { + value += $"{regText.Split("=")[^1]}"; + break; + } + } + if(value.EndsWith(":")) + { + value += "\"\""; + } + return value; + } + private string regToJson(string regText) + { + string jsonReg = ""; + string key = getKey(regText); + string[] regTexts = regText.Split("\r\n")[1..^0]; + foreach (var reg in regTexts) + { + string type = getType(reg); + string value = getValue(reg, type); + string name = getName(reg); + jsonReg += $"{(char)123}{key},{name}, {value}, {type}{(char)125},"; + } + try + { + return $"{jsonReg[0..^1]}"; + + } + catch + { + + return jsonReg; + } + } + public void RegToJsonFile(string path = @"D:\Neutral Folder\registy.json") + { + string json = "["; + foreach(string regFile in this.regs) + { + string[] regContent = _cropRegFile(System.IO.File.ReadAllText(regFile)); + foreach (string regIt in regContent) + { + json += $"{regToJson(regIt)},"; + } + } + json += "]"; + System.IO.File.WriteAllText(path,json); + } + } +} diff --git a/Installizer/Installizer/Tasker.cs b/Installizer/Installizer/Tasker.cs new file mode 100644 index 0000000..b349de1 --- /dev/null +++ b/Installizer/Installizer/Tasker.cs @@ -0,0 +1,240 @@ +using Microsoft.Win32.TaskScheduler; +using Newtonsoft.Json.Linq; +namespace Installizer +{ + class Tasker + { + string TaskName; + string TaskPath; + TaskService serv; + TaskDefinition taskDefinition; + public Tasker(string TaskName, string TaskPath) + { + this.TaskName = TaskName; + this.TaskPath = TaskPath; + this.serv = new(); + this.taskDefinition = this.serv.NewTask(); + } + public void TaskSettingsDefine(bool batteries = true, bool enable = true, bool startwhenavailibale = true, bool hidden = false) + { + this.taskDefinition.Settings.DisallowStartIfOnBatteries = !batteries; + this.taskDefinition.Settings.StopIfGoingOnBatteries = !batteries; + this.taskDefinition.Settings.Enabled = enable; + this.taskDefinition.Settings.StartWhenAvailable = startwhenavailibale; + this.taskDefinition.Settings.Hidden = hidden; + } + + public void TaskPrincipal(bool highest = false, bool service = false, string user = "") + { + if (highest) + { + this.taskDefinition.Principal.RunLevel = TaskRunLevel.Highest; + } + else + { + this.taskDefinition.Principal.RunLevel = TaskRunLevel.LUA; + } + if (service) + { + this.taskDefinition.Principal.LogonType = TaskLogonType.S4U; + } + else + { + this.taskDefinition.Principal.LogonType = TaskLogonType.Password; + } + if (user != "") + { + this.taskDefinition.Principal.Id = user; + } + else + { + this.taskDefinition.Principal.Id = $"{System.Environment.MachineName}\\{System.Environment.UserName}"; + } + } + private System.DateTime Day(int day) + { + if (day > 0 && day < 8) + { + return new System.DateTime(1977, 12, 31).AddDays(day); + } + return new System.DateTime(1978, 1, 1); + } + private System.DateTime HourTime(string time) + { + return System.DateTime.Parse(time); + } + + public void TaskDailyTriggerrDefine(string hour) + { + DailyTrigger trigger = new(); + trigger.Enabled = true; + int h = System.Int32.Parse(hour.Split(":")[0]); + int m = System.Int32.Parse(hour.Split(":")[1]); + trigger.StartBoundary = System.DateTime.Today + System.TimeSpan.FromHours(h) + System.TimeSpan.FromMinutes(m); + trigger.Repetition.Duration = System.TimeSpan.FromDays(1); + trigger.Repetition.Interval = System.TimeSpan.FromMinutes(1); + this.taskDefinition.Triggers.Add(trigger); + } + public void TaskDailyTriggersDefine(string[] hours) + { + foreach (string hour in hours) + { + TaskDailyTriggerrDefine(hour); + } + } + //public void TaskMonthlyTriggerDefine(int month, int day, string hour) + //{ + // MonthlyTrigger trigger = new(); + // int[] d = new int[] { day }; + // trigger.DaysOfMonth = d; + // trigger. + //} + public void TaskWeeklyTriggerDefine(string hour, int day) + { + WeeklyTrigger trigger = new(); + DaysOfTheWeek dayS; + switch (day) + { + case 1: + { + dayS = DaysOfTheWeek.Sunday; + break; + } + case 2: + { + dayS = DaysOfTheWeek.Monday; + break; + } + case 3: + { + dayS = DaysOfTheWeek.Tuesday; + break; + } + case 4: + { + dayS = DaysOfTheWeek.Wednesday; + break; + + } + case 5: + { + dayS = DaysOfTheWeek.Thursday; + break; + + } + case 6: + { + dayS = DaysOfTheWeek.Friday; + break; + } + default: + { + dayS = DaysOfTheWeek.Saturday; + break; + } + } + trigger.DaysOfWeek = dayS; + trigger.StartBoundary = System.DateTime.Parse(hour, System.Globalization.CultureInfo.InvariantCulture); + trigger.Repetition.Interval = System.TimeSpan.FromMinutes(1); + this.taskDefinition.Triggers.Add(trigger); + } + public void TaskActionsDefine(string app, string? argus, string? location) + { + ExecAction action = new(); + action.Path = app; + if (argus != null) + { + action.Arguments = argus; + } + if (location != null) + { + action.WorkingDirectory = location; + } + this.taskDefinition.Actions.Add(action); + } + public void TaskActionsDefine(string[] apps, string?[] argus, string?[] locations) + { + for (int i = 0; i < apps.Length; i++) + { + TaskActionsDefine(apps[i], argus[i], locations[i]); + } + } + public void TaskWeeklyTriggerDefine(string hour, int[] days) + { + foreach (int day in days) + { + TaskWeeklyTriggerDefine(hour, day); + } + } + public void TaskWeeklyTriggerDefine(string[] hours, int[] days) + { + foreach (string hour in hours) + { + TaskWeeklyTriggerDefine(hour, days); + } + } + + //public void TaskTriggersDefine(int[] days, string[] hours) + //{ + // Trigger trigger; + // DateTime[] hrs = new DateTime[hours.Length]; + // DateTime[] dates = new System.DateTime[days.Length]; + // for (int i = 0; i < days.Length; i++) + // { + // foreach(string hor in hours) + // { + // if (days[i] > 0 && days[i] < 8) + // { + // dates[i] = System.DateTime.Parse($"0{days}/01/1978",null); + + // int horr=Int32.Parse( hor.Split(":")[0]); + // int minn = Int32.Parse(hor.Split(":")[1]); + // dates[i] = dates[i].AddHours(horr); + // dates[i].AddMinutes(minn); + // } + + // } + // } + + // trigger.StartBoundary = new DateTime[dates.Length]; + //} + public void RegisterTask() + { + this.taskDefinition.RegistrationInfo.Description = "texutal ttext"; + try + { + this.serv.RootFolder.RegisterTaskDefinition($"{this.TaskPath}\\{this.TaskName}", this.taskDefinition); + } + catch + { + this.serv.RootFolder.RegisterTaskDefinition(this.TaskPath, this.taskDefinition); + } + + //TaskService.Instance.RootFolder.RegisterTaskDefinition($"{this.TaskPath}\\{this.TaskName}", this.taskDefinition, TaskCreation.CreateOrUpdate, "סארט", null, TaskLogonType.Password); + + //serv.RootFolder.RegisterTaskDefinition(TaskPath); + } + public void ExportJson() + { + JObject Task = new(); + Task.Add(new JProperty("TaskName", this.TaskName)); + Task.Add(new JProperty("TaskPath", this.TaskPath)); + JArray actions = new(); + foreach (var act in this.taskDefinition.Actions) + { + + JArray array = new(); + array.Add(((ExecAction)act).Path); + array.Add(((ExecAction)act).Arguments); + array.Add(((ExecAction)act).WorkingDirectory); + actions.Add(array); + } + foreach (var trig in this.taskDefinition.Triggers) + { + JArray triggers = new JArray(); + // TODO: continue + } + //Task.Add(new JProperty()) + } + } +} diff --git a/Installizer/Installizer/app.manifest b/Installizer/Installizer/app.manifest new file mode 100644 index 0000000..438ee0d --- /dev/null +++ b/Installizer/Installizer/app.manifest @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Installizer/Installizer/bin/Debug/desktop.ini b/Installizer/Installizer/bin/Debug/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/Installizer/bin/Debug/desktop.ini differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/Installizer.deps.json b/Installizer/Installizer/bin/Debug/net5.0/Installizer.deps.json new file mode 100644 index 0000000..7c0de71 --- /dev/null +++ b/Installizer/Installizer/bin/Debug/net5.0/Installizer.deps.json @@ -0,0 +1,332 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v5.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v5.0": { + "Installizer/1.0.0": { + "dependencies": { + "ManagedNativeWifi": "2.1.0", + "Microsoft.Win32.Registry": "5.0.0", + "Newtonsoft.Json": "13.0.1", + "NuGet.Packaging": "5.11.0", + "TaskScheduler": "2.9.1" + }, + "runtime": { + "Installizer.dll": {} + } + }, + "ManagedNativeWifi/2.1.0": { + "runtime": { + "lib/net5.0/ManagedNativeWifi.dll": { + "assemblyVersion": "2.1.0.0", + "fileVersion": "2.1.0.0" + } + } + }, + "Microsoft.NETCore.Platforms/5.0.0": {}, + "Microsoft.Win32.Registry/5.0.0": { + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" + } + } + }, + "NuGet.Common/5.11.0": { + "dependencies": { + "NuGet.Frameworks": "5.11.0" + }, + "runtime": { + "lib/netstandard2.0/NuGet.Common.dll": { + "assemblyVersion": "5.11.0.10", + "fileVersion": "5.11.0.10" + } + } + }, + "NuGet.Configuration/5.11.0": { + "dependencies": { + "NuGet.Common": "5.11.0", + "System.Security.Cryptography.ProtectedData": "4.4.0" + }, + "runtime": { + "lib/netstandard2.0/NuGet.Configuration.dll": { + "assemblyVersion": "5.11.0.10", + "fileVersion": "5.11.0.10" + } + } + }, + "NuGet.Frameworks/5.11.0": { + "runtime": { + "lib/netstandard2.0/NuGet.Frameworks.dll": { + "assemblyVersion": "5.11.0.10", + "fileVersion": "5.11.0.10" + } + } + }, + "NuGet.Packaging/5.11.0": { + "dependencies": { + "Newtonsoft.Json": "13.0.1", + "NuGet.Configuration": "5.11.0", + "NuGet.Versioning": "5.11.0", + "System.Security.Cryptography.Cng": "5.0.0", + "System.Security.Cryptography.Pkcs": "5.0.0" + }, + "runtime": { + "lib/net5.0/NuGet.Packaging.dll": { + "assemblyVersion": "5.11.0.10", + "fileVersion": "5.11.0.10" + } + } + }, + "NuGet.Versioning/5.11.0": { + "runtime": { + "lib/netstandard2.0/NuGet.Versioning.dll": { + "assemblyVersion": "5.11.0.10", + "fileVersion": "5.11.0.10" + } + } + }, + "System.Diagnostics.EventLog/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.Win32.Registry": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.EventLog.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Formats.Asn1/5.0.0": {}, + "System.Security.AccessControl/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "System.Security.Cryptography.Cng/5.0.0": { + "dependencies": { + "System.Formats.Asn1": "5.0.0" + } + }, + "System.Security.Cryptography.Pkcs/5.0.0": { + "dependencies": { + "System.Formats.Asn1": "5.0.0", + "System.Security.Cryptography.Cng": "5.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Security.Cryptography.ProtectedData/4.4.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.25519.3" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.25519.3" + } + } + }, + "System.Security.Principal.Windows/5.0.0": {}, + "TaskScheduler/2.9.1": { + "dependencies": { + "Microsoft.Win32.Registry": "5.0.0", + "System.Diagnostics.EventLog": "5.0.0", + "System.Security.AccessControl": "5.0.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Win32.TaskScheduler.dll": { + "assemblyVersion": "2.9.1.0", + "fileVersion": "2.9.1.0" + } + }, + "resources": { + "lib/netcoreapp3.1/de/Microsoft.Win32.TaskScheduler.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.Win32.TaskScheduler.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.Win32.TaskScheduler.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.Win32.TaskScheduler.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/pl/Microsoft.Win32.TaskScheduler.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/ru/Microsoft.Win32.TaskScheduler.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/zh-CN/Microsoft.Win32.TaskScheduler.resources.dll": { + "locale": "zh-CN" + } + } + } + } + }, + "libraries": { + "Installizer/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "ManagedNativeWifi/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JljrCZt9ZzDj4+0INn3ppASTSHJI1NUwZo5P4SkG10hK2CiGc8XassdgJphQ7Izf3aEmxmP9XCjI40LXNE08fw==", + "path": "managednativewifi/2.1.0", + "hashPath": "managednativewifi.2.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "path": "microsoft.netcore.platforms/5.0.0", + "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", + "path": "microsoft.win32.registry/5.0.0", + "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + }, + "NuGet.Common/5.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WCHexQBfSqBDRqP3PSDSUw7YM+PwuvMHGAkT/sXI5UHze4T41yLE+VB/km2Fe0z9y3m2mudcr2djFZezivjMJw==", + "path": "nuget.common/5.11.0", + "hashPath": "nuget.common.5.11.0.nupkg.sha512" + }, + "NuGet.Configuration/5.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NqsQe198CTHoo7NMrKQL8utd6n9yVb9CPgJmpyF6kpEsLFo/9r0wqGL3ln8Mtcz8yuJpOPWFQEoOlzDzu3LfUg==", + "path": "nuget.configuration/5.11.0", + "hashPath": "nuget.configuration.5.11.0.nupkg.sha512" + }, + "NuGet.Frameworks/5.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eaiXkUjC4NPcquGWzAGMXjuxvLwc6XGKMptSyOGQeT0X70BUZObuybJFZLA0OfTdueLd3US23NBPTBb6iF3V1Q==", + "path": "nuget.frameworks/5.11.0", + "hashPath": "nuget.frameworks.5.11.0.nupkg.sha512" + }, + "NuGet.Packaging/5.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-knlpQuqTL8BEXUHTdZ9Wlz3pjck5nv0OYsCpSkaQAukl7fFcX4apAs8cwJgxHiEZjfWNG1npZOzpYdHG59v5xQ==", + "path": "nuget.packaging/5.11.0", + "hashPath": "nuget.packaging.5.11.0.nupkg.sha512" + }, + "NuGet.Versioning/5.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mCv/GzvMk5iatWoZY41PoIShEbwVxq9CDCc1fV/uqPFKZ4DD/1JuKZ5AL/FJJRsTanvMR3EOXKYCLdQ7PFYn8Q==", + "path": "nuget.versioning/5.11.0", + "hashPath": "nuget.versioning.5.11.0.nupkg.sha512" + }, + "System.Diagnostics.EventLog/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FHkCwUfsTs+/5tsK+c0egLfacUgbhvcwi3wUFWSEEArSXao343mYqcpOVVFMlcCkdNtjU4YwAWaKYwal6f02og==", + "path": "system.diagnostics.eventlog/5.0.0", + "hashPath": "system.diagnostics.eventlog.5.0.0.nupkg.sha512" + }, + "System.Formats.Asn1/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==", + "path": "system.formats.asn1/5.0.0", + "hashPath": "system.formats.asn1.5.0.0.nupkg.sha512" + }, + "System.Security.AccessControl/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", + "path": "system.security.accesscontrol/5.0.0", + "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==", + "path": "system.security.cryptography.cng/5.0.0", + "hashPath": "system.security.cryptography.cng.5.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Pkcs/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9TPLGjBCGKmNvG8pjwPeuYy0SMVmGZRwlTZvyPHDbYv/DRkoeumJdfumaaDNQzVGMEmbWtg07zUpSW9q70IlDQ==", + "path": "system.security.cryptography.pkcs/5.0.0", + "hashPath": "system.security.cryptography.pkcs.5.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cJV7ScGW7EhatRsjehfvvYVBvtiSMKgN8bOVI0bQhnF5bU7vnHVIsH49Kva7i7GWaWYvmEzkYVk1TC+gZYBEog==", + "path": "system.security.cryptography.protecteddata/4.4.0", + "hashPath": "system.security.cryptography.protecteddata.4.4.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "path": "system.security.principal.windows/5.0.0", + "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" + }, + "TaskScheduler/2.9.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wtiNKxMnWS4lpVvJooJM7FbATUpENusKsPfyV1gbusJS9WyZ7XfVp+S75XK8tpD4Grm6XQmTOlxwz2K4sCmPOw==", + "path": "taskscheduler/2.9.1", + "hashPath": "taskscheduler.2.9.1.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/Installizer/Installizer/bin/Debug/net5.0/Installizer.dll b/Installizer/Installizer/bin/Debug/net5.0/Installizer.dll new file mode 100644 index 0000000..bbd2f87 Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/Installizer.dll differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/Installizer.exe b/Installizer/Installizer/bin/Debug/net5.0/Installizer.exe new file mode 100644 index 0000000..5df2697 Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/Installizer.exe differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/Installizer.pdb b/Installizer/Installizer/bin/Debug/net5.0/Installizer.pdb new file mode 100644 index 0000000..8e47803 Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/Installizer.pdb differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/Installizer.runtimeconfig.dev.json b/Installizer/Installizer/bin/Debug/net5.0/Installizer.runtimeconfig.dev.json new file mode 100644 index 0000000..c1d81ac --- /dev/null +++ b/Installizer/Installizer/bin/Debug/net5.0/Installizer.runtimeconfig.dev.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "C:\\Users\\סארט\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\סארט\\.nuget\\packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ] + } +} \ No newline at end of file diff --git a/Installizer/Installizer/bin/Debug/net5.0/Installizer.runtimeconfig.json b/Installizer/Installizer/bin/Debug/net5.0/Installizer.runtimeconfig.json new file mode 100644 index 0000000..a8e7e82 --- /dev/null +++ b/Installizer/Installizer/bin/Debug/net5.0/Installizer.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net5.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "5.0.0" + } + } +} \ No newline at end of file diff --git a/Installizer/Installizer/bin/Debug/net5.0/ManagedNativeWifi.dll b/Installizer/Installizer/bin/Debug/net5.0/ManagedNativeWifi.dll new file mode 100644 index 0000000..0a68b5c Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/ManagedNativeWifi.dll differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/Microsoft.Win32.TaskScheduler.dll b/Installizer/Installizer/bin/Debug/net5.0/Microsoft.Win32.TaskScheduler.dll new file mode 100644 index 0000000..3544a5d Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/Microsoft.Win32.TaskScheduler.dll differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/Newtonsoft.Json.dll b/Installizer/Installizer/bin/Debug/net5.0/Newtonsoft.Json.dll new file mode 100644 index 0000000..1ffeabe Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/Newtonsoft.Json.dll differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/NuGet.Common.dll b/Installizer/Installizer/bin/Debug/net5.0/NuGet.Common.dll new file mode 100644 index 0000000..655eb58 Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/NuGet.Common.dll differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/NuGet.Configuration.dll b/Installizer/Installizer/bin/Debug/net5.0/NuGet.Configuration.dll new file mode 100644 index 0000000..bd7cb6f Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/NuGet.Configuration.dll differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/NuGet.Frameworks.dll b/Installizer/Installizer/bin/Debug/net5.0/NuGet.Frameworks.dll new file mode 100644 index 0000000..0fabf0c Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/NuGet.Frameworks.dll differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/NuGet.Packaging.dll b/Installizer/Installizer/bin/Debug/net5.0/NuGet.Packaging.dll new file mode 100644 index 0000000..54bfafc Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/NuGet.Packaging.dll differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/NuGet.Versioning.dll b/Installizer/Installizer/bin/Debug/net5.0/NuGet.Versioning.dll new file mode 100644 index 0000000..21e9536 Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/NuGet.Versioning.dll differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/System.Diagnostics.EventLog.dll b/Installizer/Installizer/bin/Debug/net5.0/System.Diagnostics.EventLog.dll new file mode 100644 index 0000000..988d1b5 Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/System.Diagnostics.EventLog.dll differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/System.Security.Cryptography.Pkcs.dll b/Installizer/Installizer/bin/Debug/net5.0/System.Security.Cryptography.Pkcs.dll new file mode 100644 index 0000000..661acf6 Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/System.Security.Cryptography.Pkcs.dll differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll b/Installizer/Installizer/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..2c177d4 Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/de/Microsoft.Win32.TaskScheduler.resources.dll b/Installizer/Installizer/bin/Debug/net5.0/de/Microsoft.Win32.TaskScheduler.resources.dll new file mode 100644 index 0000000..20e6b3e Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/de/Microsoft.Win32.TaskScheduler.resources.dll differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/de/desktop.ini b/Installizer/Installizer/bin/Debug/net5.0/de/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/de/desktop.ini differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/desktop.ini b/Installizer/Installizer/bin/Debug/net5.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/desktop.ini differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/es/Microsoft.Win32.TaskScheduler.resources.dll b/Installizer/Installizer/bin/Debug/net5.0/es/Microsoft.Win32.TaskScheduler.resources.dll new file mode 100644 index 0000000..ca9edfe Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/es/Microsoft.Win32.TaskScheduler.resources.dll differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/es/desktop.ini b/Installizer/Installizer/bin/Debug/net5.0/es/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/es/desktop.ini differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/fr/Microsoft.Win32.TaskScheduler.resources.dll b/Installizer/Installizer/bin/Debug/net5.0/fr/Microsoft.Win32.TaskScheduler.resources.dll new file mode 100644 index 0000000..9d52daa Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/fr/Microsoft.Win32.TaskScheduler.resources.dll differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/fr/desktop.ini b/Installizer/Installizer/bin/Debug/net5.0/fr/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/fr/desktop.ini differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/it/Microsoft.Win32.TaskScheduler.resources.dll b/Installizer/Installizer/bin/Debug/net5.0/it/Microsoft.Win32.TaskScheduler.resources.dll new file mode 100644 index 0000000..cddcf50 Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/it/Microsoft.Win32.TaskScheduler.resources.dll differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/it/desktop.ini b/Installizer/Installizer/bin/Debug/net5.0/it/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/it/desktop.ini differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/pl/Microsoft.Win32.TaskScheduler.resources.dll b/Installizer/Installizer/bin/Debug/net5.0/pl/Microsoft.Win32.TaskScheduler.resources.dll new file mode 100644 index 0000000..1ad3521 Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/pl/Microsoft.Win32.TaskScheduler.resources.dll differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/pl/desktop.ini b/Installizer/Installizer/bin/Debug/net5.0/pl/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/pl/desktop.ini differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/ref/Installizer.dll b/Installizer/Installizer/bin/Debug/net5.0/ref/Installizer.dll new file mode 100644 index 0000000..9f1fdf0 Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/ref/Installizer.dll differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/ref/desktop.ini b/Installizer/Installizer/bin/Debug/net5.0/ref/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/ref/desktop.ini differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/ru/Microsoft.Win32.TaskScheduler.resources.dll b/Installizer/Installizer/bin/Debug/net5.0/ru/Microsoft.Win32.TaskScheduler.resources.dll new file mode 100644 index 0000000..3a0b43f Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/ru/Microsoft.Win32.TaskScheduler.resources.dll differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/ru/desktop.ini b/Installizer/Installizer/bin/Debug/net5.0/ru/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/ru/desktop.ini differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/runtimes/desktop.ini b/Installizer/Installizer/bin/Debug/net5.0/runtimes/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/runtimes/desktop.ini differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/runtimes/win/desktop.ini b/Installizer/Installizer/bin/Debug/net5.0/runtimes/win/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/runtimes/win/desktop.ini differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/runtimes/win/lib/desktop.ini b/Installizer/Installizer/bin/Debug/net5.0/runtimes/win/lib/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/runtimes/win/lib/desktop.ini differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll b/Installizer/Installizer/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll new file mode 100644 index 0000000..bb76446 Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/desktop.ini b/Installizer/Installizer/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/desktop.ini differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll b/Installizer/Installizer/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll new file mode 100644 index 0000000..252b80c Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.0/desktop.ini b/Installizer/Installizer/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.0/desktop.ini differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll b/Installizer/Installizer/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..df95234 Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/desktop.ini b/Installizer/Installizer/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/desktop.ini differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/zh-CN/Microsoft.Win32.TaskScheduler.resources.dll b/Installizer/Installizer/bin/Debug/net5.0/zh-CN/Microsoft.Win32.TaskScheduler.resources.dll new file mode 100644 index 0000000..0ea6a6f Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/zh-CN/Microsoft.Win32.TaskScheduler.resources.dll differ diff --git a/Installizer/Installizer/bin/Debug/net5.0/zh-CN/desktop.ini b/Installizer/Installizer/bin/Debug/net5.0/zh-CN/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/Installizer/bin/Debug/net5.0/zh-CN/desktop.ini differ diff --git a/Installizer/Installizer/bin/Release/desktop.ini b/Installizer/Installizer/bin/Release/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/Installizer/bin/Release/desktop.ini differ diff --git a/Installizer/Installizer/bin/Release/net5.0/Installizer.deps.json b/Installizer/Installizer/bin/Release/net5.0/Installizer.deps.json new file mode 100644 index 0000000..1c47faa --- /dev/null +++ b/Installizer/Installizer/bin/Release/net5.0/Installizer.deps.json @@ -0,0 +1,84 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v5.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v5.0": { + "Installizer/1.0.0": { + "dependencies": { + "Microsoft.Win32.Registry": "5.0.0", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "Installizer.dll": {} + } + }, + "Microsoft.NETCore.Platforms/5.0.0": {}, + "Microsoft.Win32.Registry/5.0.0": { + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" + } + } + }, + "System.Security.AccessControl/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "System.Security.Principal.Windows/5.0.0": {} + } + }, + "libraries": { + "Installizer/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "path": "microsoft.netcore.platforms/5.0.0", + "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", + "path": "microsoft.win32.registry/5.0.0", + "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + }, + "System.Security.AccessControl/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", + "path": "system.security.accesscontrol/5.0.0", + "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "path": "system.security.principal.windows/5.0.0", + "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/Installizer/Installizer/bin/Release/net5.0/Installizer.dll b/Installizer/Installizer/bin/Release/net5.0/Installizer.dll new file mode 100644 index 0000000..90f9f34 Binary files /dev/null and b/Installizer/Installizer/bin/Release/net5.0/Installizer.dll differ diff --git a/Installizer/Installizer/bin/Release/net5.0/Installizer.exe b/Installizer/Installizer/bin/Release/net5.0/Installizer.exe new file mode 100644 index 0000000..5df2697 Binary files /dev/null and b/Installizer/Installizer/bin/Release/net5.0/Installizer.exe differ diff --git a/Installizer/Installizer/bin/Release/net5.0/Installizer.pdb b/Installizer/Installizer/bin/Release/net5.0/Installizer.pdb new file mode 100644 index 0000000..cffc5dc Binary files /dev/null and b/Installizer/Installizer/bin/Release/net5.0/Installizer.pdb differ diff --git a/Installizer/Installizer/bin/Release/net5.0/Installizer.runtimeconfig.dev.json b/Installizer/Installizer/bin/Release/net5.0/Installizer.runtimeconfig.dev.json new file mode 100644 index 0000000..c1d81ac --- /dev/null +++ b/Installizer/Installizer/bin/Release/net5.0/Installizer.runtimeconfig.dev.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "C:\\Users\\סארט\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\סארט\\.nuget\\packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ] + } +} \ No newline at end of file diff --git a/Installizer/Installizer/bin/Release/net5.0/Installizer.runtimeconfig.json b/Installizer/Installizer/bin/Release/net5.0/Installizer.runtimeconfig.json new file mode 100644 index 0000000..a8e7e82 --- /dev/null +++ b/Installizer/Installizer/bin/Release/net5.0/Installizer.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net5.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "5.0.0" + } + } +} \ No newline at end of file diff --git a/Installizer/Installizer/bin/Release/net5.0/Newtonsoft.Json.dll b/Installizer/Installizer/bin/Release/net5.0/Newtonsoft.Json.dll new file mode 100644 index 0000000..1ffeabe Binary files /dev/null and b/Installizer/Installizer/bin/Release/net5.0/Newtonsoft.Json.dll differ diff --git a/Installizer/Installizer/bin/Release/net5.0/desktop.ini b/Installizer/Installizer/bin/Release/net5.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/Installizer/bin/Release/net5.0/desktop.ini differ diff --git a/Installizer/Installizer/bin/Release/net5.0/ref/Installizer.dll b/Installizer/Installizer/bin/Release/net5.0/ref/Installizer.dll new file mode 100644 index 0000000..712a856 Binary files /dev/null and b/Installizer/Installizer/bin/Release/net5.0/ref/Installizer.dll differ diff --git a/Installizer/Installizer/bin/Release/net5.0/ref/desktop.ini b/Installizer/Installizer/bin/Release/net5.0/ref/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/Installizer/bin/Release/net5.0/ref/desktop.ini differ diff --git a/Installizer/Installizer/bin/desktop.ini b/Installizer/Installizer/bin/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/Installizer/bin/desktop.ini differ diff --git a/Installizer/Installizer/desktop.ini b/Installizer/Installizer/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/Installizer/desktop.ini differ diff --git a/Installizer/Installizer/js.json b/Installizer/Installizer/js.json new file mode 100644 index 0000000..eb92d84 --- /dev/null +++ b/Installizer/Installizer/js.json @@ -0,0 +1,28 @@ +{ + "TaskName": "Js", + "TaskPath": "f", + "actions": [ + ["C:\\Program Files\\PowerShell\\7\\pwsh.exe", null, null] + ], + "triggers": { + "weekly": { + "day": [1, 2, 3], + "hour": ["12:30"] + }, + "logon": true, + "dayly": ["12:30"] + }, + "description": "textual", + "author": "text", + "settings": { + "batteries": true, + "enable": true, + "startwhenavailibale": true, + "hidden": false + }, + "principal": { + "highest": false, + "service": false, + "user": "" + } +} \ No newline at end of file diff --git a/Installizer/Installizer/obj/Debug/desktop.ini b/Installizer/Installizer/obj/Debug/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/Installizer/obj/Debug/desktop.ini differ diff --git a/Installizer/Installizer/obj/Debug/net5.0-windows/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/Installizer/Installizer/obj/Debug/net5.0-windows/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2f7e5ec --- /dev/null +++ b/Installizer/Installizer/obj/Debug/net5.0-windows/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/Installizer/Installizer/obj/Debug/net5.0-windows/Installizer.AssemblyInfo.cs b/Installizer/Installizer/obj/Debug/net5.0-windows/Installizer.AssemblyInfo.cs new file mode 100644 index 0000000..2d8474b --- /dev/null +++ b/Installizer/Installizer/obj/Debug/net5.0-windows/Installizer.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Installizer")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Installizer")] +[assembly: System.Reflection.AssemblyTitleAttribute("Installizer")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Installizer/Installizer/obj/Debug/net5.0-windows/Installizer.AssemblyInfoInputs.cache b/Installizer/Installizer/obj/Debug/net5.0-windows/Installizer.AssemblyInfoInputs.cache new file mode 100644 index 0000000..36ac796 --- /dev/null +++ b/Installizer/Installizer/obj/Debug/net5.0-windows/Installizer.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +083a62191ffcfd3019ba2f6e05fa6006b36dc35d diff --git a/Installizer/Installizer/obj/Debug/net5.0-windows/Installizer.GeneratedMSBuildEditorConfig.editorconfig b/Installizer/Installizer/obj/Debug/net5.0-windows/Installizer.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..247ab3e --- /dev/null +++ b/Installizer/Installizer/obj/Debug/net5.0-windows/Installizer.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Installizer +build_property.ProjectDir = D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\ diff --git a/Installizer/Installizer/obj/Debug/net5.0-windows/Installizer.assets.cache b/Installizer/Installizer/obj/Debug/net5.0-windows/Installizer.assets.cache new file mode 100644 index 0000000..cccf68a Binary files /dev/null and b/Installizer/Installizer/obj/Debug/net5.0-windows/Installizer.assets.cache differ diff --git a/Installizer/Installizer/obj/Debug/net5.0-windows/Installizer.csproj.AssemblyReference.cache b/Installizer/Installizer/obj/Debug/net5.0-windows/Installizer.csproj.AssemblyReference.cache new file mode 100644 index 0000000..204fdef Binary files /dev/null and b/Installizer/Installizer/obj/Debug/net5.0-windows/Installizer.csproj.AssemblyReference.cache differ diff --git a/Installizer/Installizer/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/Installizer/Installizer/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2f7e5ec --- /dev/null +++ b/Installizer/Installizer/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/Installizer/Installizer/obj/Debug/net5.0/Installizer.AssemblyInfo.cs b/Installizer/Installizer/obj/Debug/net5.0/Installizer.AssemblyInfo.cs new file mode 100644 index 0000000..925384c --- /dev/null +++ b/Installizer/Installizer/obj/Debug/net5.0/Installizer.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Installizer")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Installizer")] +[assembly: System.Reflection.AssemblyTitleAttribute("Installizer")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Installizer/Installizer/obj/Debug/net5.0/Installizer.AssemblyInfoInputs.cache b/Installizer/Installizer/obj/Debug/net5.0/Installizer.AssemblyInfoInputs.cache new file mode 100644 index 0000000..dd6bdd4 --- /dev/null +++ b/Installizer/Installizer/obj/Debug/net5.0/Installizer.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +abb9548bfd09d1a2167dd5a039cc677bc4de4b14 diff --git a/Installizer/Installizer/obj/Debug/net5.0/Installizer.GeneratedMSBuildEditorConfig.editorconfig b/Installizer/Installizer/obj/Debug/net5.0/Installizer.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..9bb9188 --- /dev/null +++ b/Installizer/Installizer/obj/Debug/net5.0/Installizer.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Installizer +build_property.ProjectDir = D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\ diff --git a/Installizer/Installizer/obj/Debug/net5.0/Installizer.assets.cache b/Installizer/Installizer/obj/Debug/net5.0/Installizer.assets.cache new file mode 100644 index 0000000..86fce9b Binary files /dev/null and b/Installizer/Installizer/obj/Debug/net5.0/Installizer.assets.cache differ diff --git a/Installizer/Installizer/obj/Debug/net5.0/Installizer.csproj.AssemblyReference.cache b/Installizer/Installizer/obj/Debug/net5.0/Installizer.csproj.AssemblyReference.cache new file mode 100644 index 0000000..5419f5d Binary files /dev/null and b/Installizer/Installizer/obj/Debug/net5.0/Installizer.csproj.AssemblyReference.cache differ diff --git a/Installizer/Installizer/obj/Debug/net5.0/Installizer.csproj.CopyComplete b/Installizer/Installizer/obj/Debug/net5.0/Installizer.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/Installizer/Installizer/obj/Debug/net5.0/Installizer.csproj.CoreCompileInputs.cache b/Installizer/Installizer/obj/Debug/net5.0/Installizer.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..efe04e1 --- /dev/null +++ b/Installizer/Installizer/obj/Debug/net5.0/Installizer.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +922c5fa365b30d78d9eed3ca5a582903759eef6c diff --git a/Installizer/Installizer/obj/Debug/net5.0/Installizer.csproj.FileListAbsolute.txt b/Installizer/Installizer/obj/Debug/net5.0/Installizer.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..991da29 --- /dev/null +++ b/Installizer/Installizer/obj/Debug/net5.0/Installizer.csproj.FileListAbsolute.txt @@ -0,0 +1,56 @@ +C:\Users\סארט\source\repos\Installizer\Installizer\bin\Debug\net5.0\Installizer.exe +C:\Users\סארט\source\repos\Installizer\Installizer\bin\Debug\net5.0\Installizer.deps.json +C:\Users\סארט\source\repos\Installizer\Installizer\bin\Debug\net5.0\Installizer.runtimeconfig.json +C:\Users\סארט\source\repos\Installizer\Installizer\bin\Debug\net5.0\Installizer.runtimeconfig.dev.json +C:\Users\סארט\source\repos\Installizer\Installizer\bin\Debug\net5.0\Installizer.dll +C:\Users\סארט\source\repos\Installizer\Installizer\bin\Debug\net5.0\ref\Installizer.dll +C:\Users\סארט\source\repos\Installizer\Installizer\bin\Debug\net5.0\Installizer.pdb +C:\Users\סארט\source\repos\Installizer\Installizer\obj\Debug\net5.0\Installizer.csproj.AssemblyReference.cache +C:\Users\סארט\source\repos\Installizer\Installizer\obj\Debug\net5.0\Installizer.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\סארט\source\repos\Installizer\Installizer\obj\Debug\net5.0\Installizer.AssemblyInfoInputs.cache +C:\Users\סארט\source\repos\Installizer\Installizer\obj\Debug\net5.0\Installizer.AssemblyInfo.cs +C:\Users\סארט\source\repos\Installizer\Installizer\obj\Debug\net5.0\Installizer.csproj.CoreCompileInputs.cache +C:\Users\סארט\source\repos\Installizer\Installizer\obj\Debug\net5.0\Installizer.dll +C:\Users\סארט\source\repos\Installizer\Installizer\obj\Debug\net5.0\ref\Installizer.dll +C:\Users\סארט\source\repos\Installizer\Installizer\obj\Debug\net5.0\Installizer.pdb +C:\Users\סארט\source\repos\Installizer\Installizer\obj\Debug\net5.0\Installizer.genruntimeconfig.cache +C:\Users\סארט\source\repos\Installizer\Installizer\bin\Debug\net5.0\Newtonsoft.Json.dll +C:\Users\סארט\source\repos\Installizer\Installizer\obj\Debug\net5.0\Installizer.csproj.CopyComplete +C:\Users\סארט\source\repos\Installizer\Installizer\bin\Debug\net5.0\ManagedNativeWifi.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\bin\Debug\net5.0\Installizer.exe +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\bin\Debug\net5.0\Installizer.deps.json +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\bin\Debug\net5.0\Installizer.runtimeconfig.json +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\bin\Debug\net5.0\Installizer.runtimeconfig.dev.json +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\bin\Debug\net5.0\Installizer.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\bin\Debug\net5.0\ref\Installizer.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\bin\Debug\net5.0\Installizer.pdb +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\bin\Debug\net5.0\ManagedNativeWifi.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\bin\Debug\net5.0\Newtonsoft.Json.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\bin\Debug\net5.0\NuGet.Common.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\bin\Debug\net5.0\NuGet.Configuration.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\bin\Debug\net5.0\NuGet.Frameworks.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\bin\Debug\net5.0\NuGet.Packaging.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\bin\Debug\net5.0\NuGet.Versioning.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\bin\Debug\net5.0\System.Security.Cryptography.Pkcs.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\bin\Debug\net5.0\System.Security.Cryptography.ProtectedData.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\bin\Debug\net5.0\runtimes\win\lib\netcoreapp3.0\System.Security.Cryptography.Pkcs.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\bin\Debug\net5.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\obj\Debug\net5.0\Installizer.csproj.AssemblyReference.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\obj\Debug\net5.0\Installizer.GeneratedMSBuildEditorConfig.editorconfig +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\obj\Debug\net5.0\Installizer.AssemblyInfoInputs.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\obj\Debug\net5.0\Installizer.AssemblyInfo.cs +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\obj\Debug\net5.0\Installizer.csproj.CoreCompileInputs.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\obj\Debug\net5.0\Installizer.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\obj\Debug\net5.0\ref\Installizer.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\obj\Debug\net5.0\Installizer.pdb +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\obj\Debug\net5.0\Installizer.genruntimeconfig.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\bin\Debug\net5.0\System.Diagnostics.EventLog.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\bin\Debug\net5.0\Microsoft.Win32.TaskScheduler.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\bin\Debug\net5.0\de\Microsoft.Win32.TaskScheduler.resources.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\bin\Debug\net5.0\es\Microsoft.Win32.TaskScheduler.resources.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\bin\Debug\net5.0\fr\Microsoft.Win32.TaskScheduler.resources.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\bin\Debug\net5.0\it\Microsoft.Win32.TaskScheduler.resources.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\bin\Debug\net5.0\pl\Microsoft.Win32.TaskScheduler.resources.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\bin\Debug\net5.0\ru\Microsoft.Win32.TaskScheduler.resources.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\bin\Debug\net5.0\zh-CN\Microsoft.Win32.TaskScheduler.resources.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Installizer\Installizer\bin\Debug\net5.0\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.EventLog.dll diff --git a/Installizer/Installizer/obj/Debug/net5.0/Installizer.dll b/Installizer/Installizer/obj/Debug/net5.0/Installizer.dll new file mode 100644 index 0000000..bbd2f87 Binary files /dev/null and b/Installizer/Installizer/obj/Debug/net5.0/Installizer.dll differ diff --git a/Installizer/Installizer/obj/Debug/net5.0/Installizer.genruntimeconfig.cache b/Installizer/Installizer/obj/Debug/net5.0/Installizer.genruntimeconfig.cache new file mode 100644 index 0000000..34da484 --- /dev/null +++ b/Installizer/Installizer/obj/Debug/net5.0/Installizer.genruntimeconfig.cache @@ -0,0 +1 @@ +2fe377dcb6c79975df2d60a2f60de18f80b7428e diff --git a/Installizer/Installizer/obj/Debug/net5.0/Installizer.pdb b/Installizer/Installizer/obj/Debug/net5.0/Installizer.pdb new file mode 100644 index 0000000..8e47803 Binary files /dev/null and b/Installizer/Installizer/obj/Debug/net5.0/Installizer.pdb differ diff --git a/Installizer/Installizer/obj/Debug/net5.0/apphost.exe b/Installizer/Installizer/obj/Debug/net5.0/apphost.exe new file mode 100644 index 0000000..5df2697 Binary files /dev/null and b/Installizer/Installizer/obj/Debug/net5.0/apphost.exe differ diff --git a/Installizer/Installizer/obj/Debug/net5.0/desktop.ini b/Installizer/Installizer/obj/Debug/net5.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/Installizer/obj/Debug/net5.0/desktop.ini differ diff --git a/Installizer/Installizer/obj/Debug/net5.0/ref/Installizer.dll b/Installizer/Installizer/obj/Debug/net5.0/ref/Installizer.dll new file mode 100644 index 0000000..9f1fdf0 Binary files /dev/null and b/Installizer/Installizer/obj/Debug/net5.0/ref/Installizer.dll differ diff --git a/Installizer/Installizer/obj/Debug/net5.0/ref/desktop.ini b/Installizer/Installizer/obj/Debug/net5.0/ref/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/Installizer/obj/Debug/net5.0/ref/desktop.ini differ diff --git a/Installizer/Installizer/obj/Installizer.csproj.nuget.dgspec.json b/Installizer/Installizer/obj/Installizer.csproj.nuget.dgspec.json new file mode 100644 index 0000000..0d0ee3d --- /dev/null +++ b/Installizer/Installizer/obj/Installizer.csproj.nuget.dgspec.json @@ -0,0 +1,94 @@ +{ + "format": 1, + "restore": { + "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\Installizer\\Installizer\\Installizer.csproj": {} + }, + "projects": { + "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\Installizer\\Installizer\\Installizer.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\Installizer\\Installizer\\Installizer.csproj", + "projectName": "Installizer", + "projectPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\Installizer\\Installizer\\Installizer.csproj", + "packagesPath": "C:\\Users\\סארט\\.nuget\\packages\\", + "outputPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\Installizer\\Installizer\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\סארט\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0-windows7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0-windows7.0": { + "targetAlias": "net5.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0-windows7.0": { + "targetAlias": "net5.0-windows", + "dependencies": { + "ManagedNativeWifi": { + "target": "Package", + "version": "[2.1.0, )" + }, + "Microsoft.Win32.Registry": { + "target": "Package", + "version": "[5.0.0, )" + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.1, )" + }, + "NuGet.Packaging": { + "target": "Package", + "version": "[5.11.0, )" + }, + "TaskScheduler": { + "target": "Package", + "version": "[2.9.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.NETCore.App.Host.win-x64", + "version": "[5.0.8, 5.0.8]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100-preview.7.21379.14\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/Installizer/Installizer/obj/Installizer.csproj.nuget.g.props b/Installizer/Installizer/obj/Installizer.csproj.nuget.g.props new file mode 100644 index 0000000..4d0913f --- /dev/null +++ b/Installizer/Installizer/obj/Installizer.csproj.nuget.g.props @@ -0,0 +1,19 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\סארט\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.0.0 + + + + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/Installizer/Installizer/obj/Installizer.csproj.nuget.g.targets b/Installizer/Installizer/obj/Installizer.csproj.nuget.g.targets new file mode 100644 index 0000000..53cfaa1 --- /dev/null +++ b/Installizer/Installizer/obj/Installizer.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/Installizer/Installizer/obj/Release/desktop.ini b/Installizer/Installizer/obj/Release/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/Installizer/obj/Release/desktop.ini differ diff --git a/Installizer/Installizer/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/Installizer/Installizer/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2f7e5ec --- /dev/null +++ b/Installizer/Installizer/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/Installizer/Installizer/obj/Release/net5.0/Installizer.AssemblyInfo.cs b/Installizer/Installizer/obj/Release/net5.0/Installizer.AssemblyInfo.cs new file mode 100644 index 0000000..74add6f --- /dev/null +++ b/Installizer/Installizer/obj/Release/net5.0/Installizer.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Installizer")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Installizer")] +[assembly: System.Reflection.AssemblyTitleAttribute("Installizer")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Installizer/Installizer/obj/Release/net5.0/Installizer.AssemblyInfoInputs.cache b/Installizer/Installizer/obj/Release/net5.0/Installizer.AssemblyInfoInputs.cache new file mode 100644 index 0000000..f9755fd --- /dev/null +++ b/Installizer/Installizer/obj/Release/net5.0/Installizer.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +ead68209908e8c1778a7a2a92bfab5405a055fd2 diff --git a/Installizer/Installizer/obj/Release/net5.0/Installizer.GeneratedMSBuildEditorConfig.editorconfig b/Installizer/Installizer/obj/Release/net5.0/Installizer.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d7e2983 --- /dev/null +++ b/Installizer/Installizer/obj/Release/net5.0/Installizer.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,8 @@ +is_global = true +build_property.TargetFramework = net5.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.PublishSingleFile = +build_property.IncludeAllContentForSelfExtract = +build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows diff --git a/Installizer/Installizer/obj/Release/net5.0/Installizer.assets.cache b/Installizer/Installizer/obj/Release/net5.0/Installizer.assets.cache new file mode 100644 index 0000000..1287db2 Binary files /dev/null and b/Installizer/Installizer/obj/Release/net5.0/Installizer.assets.cache differ diff --git a/Installizer/Installizer/obj/Release/net5.0/Installizer.csproj.AssemblyReference.cache b/Installizer/Installizer/obj/Release/net5.0/Installizer.csproj.AssemblyReference.cache new file mode 100644 index 0000000..8fc9c43 Binary files /dev/null and b/Installizer/Installizer/obj/Release/net5.0/Installizer.csproj.AssemblyReference.cache differ diff --git a/Installizer/Installizer/obj/Release/net5.0/Installizer.csproj.CopyComplete b/Installizer/Installizer/obj/Release/net5.0/Installizer.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/Installizer/Installizer/obj/Release/net5.0/Installizer.csproj.CoreCompileInputs.cache b/Installizer/Installizer/obj/Release/net5.0/Installizer.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..e8669e2 --- /dev/null +++ b/Installizer/Installizer/obj/Release/net5.0/Installizer.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +1f79c7e92e6907999106abfba4b5fe531370be74 diff --git a/Installizer/Installizer/obj/Release/net5.0/Installizer.csproj.FileListAbsolute.txt b/Installizer/Installizer/obj/Release/net5.0/Installizer.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..ba8000b --- /dev/null +++ b/Installizer/Installizer/obj/Release/net5.0/Installizer.csproj.FileListAbsolute.txt @@ -0,0 +1,17 @@ +C:\Users\סארט\source\repos\Installizer\Installizer\bin\Release\net5.0\Installizer.exe +C:\Users\סארט\source\repos\Installizer\Installizer\bin\Release\net5.0\Installizer.deps.json +C:\Users\סארט\source\repos\Installizer\Installizer\bin\Release\net5.0\Installizer.runtimeconfig.json +C:\Users\סארט\source\repos\Installizer\Installizer\bin\Release\net5.0\Installizer.runtimeconfig.dev.json +C:\Users\סארט\source\repos\Installizer\Installizer\bin\Release\net5.0\Installizer.dll +C:\Users\סארט\source\repos\Installizer\Installizer\bin\Release\net5.0\ref\Installizer.dll +C:\Users\סארט\source\repos\Installizer\Installizer\bin\Release\net5.0\Installizer.pdb +C:\Users\סארט\source\repos\Installizer\Installizer\bin\Release\net5.0\Newtonsoft.Json.dll +C:\Users\סארט\source\repos\Installizer\Installizer\obj\Release\net5.0\Installizer.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\סארט\source\repos\Installizer\Installizer\obj\Release\net5.0\Installizer.AssemblyInfoInputs.cache +C:\Users\סארט\source\repos\Installizer\Installizer\obj\Release\net5.0\Installizer.AssemblyInfo.cs +C:\Users\סארט\source\repos\Installizer\Installizer\obj\Release\net5.0\Installizer.csproj.CoreCompileInputs.cache +C:\Users\סארט\source\repos\Installizer\Installizer\obj\Release\net5.0\Installizer.csproj.CopyComplete +C:\Users\סארט\source\repos\Installizer\Installizer\obj\Release\net5.0\Installizer.dll +C:\Users\סארט\source\repos\Installizer\Installizer\obj\Release\net5.0\ref\Installizer.dll +C:\Users\סארט\source\repos\Installizer\Installizer\obj\Release\net5.0\Installizer.pdb +C:\Users\סארט\source\repos\Installizer\Installizer\obj\Release\net5.0\Installizer.genruntimeconfig.cache diff --git a/Installizer/Installizer/obj/Release/net5.0/Installizer.dll b/Installizer/Installizer/obj/Release/net5.0/Installizer.dll new file mode 100644 index 0000000..90f9f34 Binary files /dev/null and b/Installizer/Installizer/obj/Release/net5.0/Installizer.dll differ diff --git a/Installizer/Installizer/obj/Release/net5.0/Installizer.genruntimeconfig.cache b/Installizer/Installizer/obj/Release/net5.0/Installizer.genruntimeconfig.cache new file mode 100644 index 0000000..62e02cb --- /dev/null +++ b/Installizer/Installizer/obj/Release/net5.0/Installizer.genruntimeconfig.cache @@ -0,0 +1 @@ +da6076c324754d39eaebaf41754c536ba4658a8b diff --git a/Installizer/Installizer/obj/Release/net5.0/Installizer.pdb b/Installizer/Installizer/obj/Release/net5.0/Installizer.pdb new file mode 100644 index 0000000..cffc5dc Binary files /dev/null and b/Installizer/Installizer/obj/Release/net5.0/Installizer.pdb differ diff --git a/Installizer/Installizer/obj/Release/net5.0/apphost.exe b/Installizer/Installizer/obj/Release/net5.0/apphost.exe new file mode 100644 index 0000000..5df2697 Binary files /dev/null and b/Installizer/Installizer/obj/Release/net5.0/apphost.exe differ diff --git a/Installizer/Installizer/obj/Release/net5.0/desktop.ini b/Installizer/Installizer/obj/Release/net5.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/Installizer/obj/Release/net5.0/desktop.ini differ diff --git a/Installizer/Installizer/obj/Release/net5.0/ref/Installizer.dll b/Installizer/Installizer/obj/Release/net5.0/ref/Installizer.dll new file mode 100644 index 0000000..712a856 Binary files /dev/null and b/Installizer/Installizer/obj/Release/net5.0/ref/Installizer.dll differ diff --git a/Installizer/Installizer/obj/Release/net5.0/ref/desktop.ini b/Installizer/Installizer/obj/Release/net5.0/ref/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/Installizer/obj/Release/net5.0/ref/desktop.ini differ diff --git a/Installizer/Installizer/obj/desktop.ini b/Installizer/Installizer/obj/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/Installizer/obj/desktop.ini differ diff --git a/Installizer/Installizer/obj/project.assets.json b/Installizer/Installizer/obj/project.assets.json new file mode 100644 index 0000000..87a69a9 --- /dev/null +++ b/Installizer/Installizer/obj/project.assets.json @@ -0,0 +1,987 @@ +{ + "version": 3, + "targets": { + "net5.0-windows7.0": { + "ManagedNativeWifi/2.1.0": { + "type": "package", + "compile": { + "lib/net5.0/ManagedNativeWifi.dll": {} + }, + "runtime": { + "lib/net5.0/ManagedNativeWifi.dll": {} + } + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Registry/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "NuGet.Common/5.11.0": { + "type": "package", + "dependencies": { + "NuGet.Frameworks": "5.11.0" + }, + "compile": { + "lib/netstandard2.0/NuGet.Common.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NuGet.Common.dll": {} + } + }, + "NuGet.Configuration/5.11.0": { + "type": "package", + "dependencies": { + "NuGet.Common": "5.11.0", + "System.Security.Cryptography.ProtectedData": "4.4.0" + }, + "compile": { + "lib/netstandard2.0/NuGet.Configuration.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NuGet.Configuration.dll": {} + } + }, + "NuGet.Frameworks/5.11.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/NuGet.Frameworks.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NuGet.Frameworks.dll": {} + } + }, + "NuGet.Packaging/5.11.0": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "9.0.1", + "NuGet.Configuration": "5.11.0", + "NuGet.Versioning": "5.11.0", + "System.Security.Cryptography.Cng": "5.0.0", + "System.Security.Cryptography.Pkcs": "5.0.0" + }, + "compile": { + "lib/net5.0/NuGet.Packaging.dll": {} + }, + "runtime": { + "lib/net5.0/NuGet.Packaging.dll": {} + } + }, + "NuGet.Versioning/5.11.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/NuGet.Versioning.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NuGet.Versioning.dll": {} + } + }, + "System.Diagnostics.EventLog/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.Win32.Registry": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Diagnostics.EventLog.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Formats.Asn1/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Formats.Asn1.dll": {} + } + }, + "System.Security.AccessControl/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/5.0.0": { + "type": "package", + "dependencies": { + "System.Formats.Asn1": "5.0.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Pkcs/5.0.0": { + "type": "package", + "dependencies": { + "System.Formats.Asn1": "5.0.0", + "System.Security.Cryptography.Cng": "5.0.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.ProtectedData/4.4.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "TaskScheduler/2.9.1": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "5.0.0", + "System.Diagnostics.EventLog": "5.0.0", + "System.Security.AccessControl": "5.0.0" + }, + "compile": { + "lib/net5.0-windows7.0/Microsoft.Win32.TaskScheduler.dll": {} + }, + "runtime": { + "lib/net5.0-windows7.0/Microsoft.Win32.TaskScheduler.dll": {} + }, + "resource": { + "lib/net5.0-windows7.0/de/Microsoft.Win32.TaskScheduler.resources.dll": { + "locale": "de" + }, + "lib/net5.0-windows7.0/es/Microsoft.Win32.TaskScheduler.resources.dll": { + "locale": "es" + }, + "lib/net5.0-windows7.0/fr/Microsoft.Win32.TaskScheduler.resources.dll": { + "locale": "fr" + }, + "lib/net5.0-windows7.0/it/Microsoft.Win32.TaskScheduler.resources.dll": { + "locale": "it" + }, + "lib/net5.0-windows7.0/pl/Microsoft.Win32.TaskScheduler.resources.dll": { + "locale": "pl" + }, + "lib/net5.0-windows7.0/ru/Microsoft.Win32.TaskScheduler.resources.dll": { + "locale": "ru" + }, + "lib/net5.0-windows7.0/zh-CN/Microsoft.Win32.TaskScheduler.resources.dll": { + "locale": "zh-CN" + } + } + } + } + }, + "libraries": { + "ManagedNativeWifi/2.1.0": { + "sha512": "JljrCZt9ZzDj4+0INn3ppASTSHJI1NUwZo5P4SkG10hK2CiGc8XassdgJphQ7Izf3aEmxmP9XCjI40LXNE08fw==", + "type": "package", + "path": "managednativewifi/2.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/ManagedNativeWifi.dll", + "lib/net452/ManagedNativeWifi.xml", + "lib/net5.0/ManagedNativeWifi.dll", + "lib/net5.0/ManagedNativeWifi.xml", + "lib/netstandard2.0/ManagedNativeWifi.dll", + "lib/netstandard2.0/ManagedNativeWifi.xml", + "managednativewifi.2.1.0.nupkg.sha512", + "managednativewifi.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "type": "package", + "path": "microsoft.netcore.platforms/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.Registry/5.0.0": { + "sha512": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", + "type": "package", + "path": "microsoft.win32.registry/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.5.0.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Newtonsoft.Json/13.0.1": { + "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "type": "package", + "path": "newtonsoft.json/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "NuGet.Common/5.11.0": { + "sha512": "WCHexQBfSqBDRqP3PSDSUw7YM+PwuvMHGAkT/sXI5UHze4T41yLE+VB/km2Fe0z9y3m2mudcr2djFZezivjMJw==", + "type": "package", + "path": "nuget.common/5.11.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net45/NuGet.Common.dll", + "lib/net45/NuGet.Common.xml", + "lib/net472/NuGet.Common.dll", + "lib/net472/NuGet.Common.xml", + "lib/netstandard2.0/NuGet.Common.dll", + "lib/netstandard2.0/NuGet.Common.xml", + "nuget.common.5.11.0.nupkg.sha512", + "nuget.common.nuspec" + ] + }, + "NuGet.Configuration/5.11.0": { + "sha512": "NqsQe198CTHoo7NMrKQL8utd6n9yVb9CPgJmpyF6kpEsLFo/9r0wqGL3ln8Mtcz8yuJpOPWFQEoOlzDzu3LfUg==", + "type": "package", + "path": "nuget.configuration/5.11.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net45/NuGet.Configuration.dll", + "lib/net45/NuGet.Configuration.xml", + "lib/net472/NuGet.Configuration.dll", + "lib/net472/NuGet.Configuration.xml", + "lib/netstandard2.0/NuGet.Configuration.dll", + "lib/netstandard2.0/NuGet.Configuration.xml", + "nuget.configuration.5.11.0.nupkg.sha512", + "nuget.configuration.nuspec" + ] + }, + "NuGet.Frameworks/5.11.0": { + "sha512": "eaiXkUjC4NPcquGWzAGMXjuxvLwc6XGKMptSyOGQeT0X70BUZObuybJFZLA0OfTdueLd3US23NBPTBb6iF3V1Q==", + "type": "package", + "path": "nuget.frameworks/5.11.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net40/NuGet.Frameworks.dll", + "lib/net40/NuGet.Frameworks.xml", + "lib/net472/NuGet.Frameworks.dll", + "lib/net472/NuGet.Frameworks.xml", + "lib/netstandard2.0/NuGet.Frameworks.dll", + "lib/netstandard2.0/NuGet.Frameworks.xml", + "nuget.frameworks.5.11.0.nupkg.sha512", + "nuget.frameworks.nuspec" + ] + }, + "NuGet.Packaging/5.11.0": { + "sha512": "knlpQuqTL8BEXUHTdZ9Wlz3pjck5nv0OYsCpSkaQAukl7fFcX4apAs8cwJgxHiEZjfWNG1npZOzpYdHG59v5xQ==", + "type": "package", + "path": "nuget.packaging/5.11.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net472/NuGet.Packaging.dll", + "lib/net472/NuGet.Packaging.xml", + "lib/net5.0/NuGet.Packaging.dll", + "lib/net5.0/NuGet.Packaging.xml", + "lib/netstandard2.0/NuGet.Packaging.dll", + "lib/netstandard2.0/NuGet.Packaging.xml", + "nuget.packaging.5.11.0.nupkg.sha512", + "nuget.packaging.nuspec" + ] + }, + "NuGet.Versioning/5.11.0": { + "sha512": "mCv/GzvMk5iatWoZY41PoIShEbwVxq9CDCc1fV/uqPFKZ4DD/1JuKZ5AL/FJJRsTanvMR3EOXKYCLdQ7PFYn8Q==", + "type": "package", + "path": "nuget.versioning/5.11.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net45/NuGet.Versioning.dll", + "lib/net45/NuGet.Versioning.xml", + "lib/net472/NuGet.Versioning.dll", + "lib/net472/NuGet.Versioning.xml", + "lib/netstandard2.0/NuGet.Versioning.dll", + "lib/netstandard2.0/NuGet.Versioning.xml", + "nuget.versioning.5.11.0.nupkg.sha512", + "nuget.versioning.nuspec" + ] + }, + "System.Diagnostics.EventLog/5.0.0": { + "sha512": "FHkCwUfsTs+/5tsK+c0egLfacUgbhvcwi3wUFWSEEArSXao343mYqcpOVVFMlcCkdNtjU4YwAWaKYwal6f02og==", + "type": "package", + "path": "system.diagnostics.eventlog/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Diagnostics.EventLog.dll", + "lib/net461/System.Diagnostics.EventLog.xml", + "lib/netstandard2.0/System.Diagnostics.EventLog.dll", + "lib/netstandard2.0/System.Diagnostics.EventLog.xml", + "ref/net461/System.Diagnostics.EventLog.dll", + "ref/net461/System.Diagnostics.EventLog.xml", + "ref/netstandard2.0/System.Diagnostics.EventLog.dll", + "ref/netstandard2.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.xml", + "system.diagnostics.eventlog.5.0.0.nupkg.sha512", + "system.diagnostics.eventlog.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Formats.Asn1/5.0.0": { + "sha512": "MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==", + "type": "package", + "path": "system.formats.asn1/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Formats.Asn1.dll", + "lib/net461/System.Formats.Asn1.xml", + "lib/netstandard2.0/System.Formats.Asn1.dll", + "lib/netstandard2.0/System.Formats.Asn1.xml", + "system.formats.asn1.5.0.0.nupkg.sha512", + "system.formats.asn1.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.AccessControl/5.0.0": { + "sha512": "dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", + "type": "package", + "path": "system.security.accesscontrol/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.xml", + "ref/netstandard1.3/System.Security.AccessControl.dll", + "ref/netstandard1.3/System.Security.AccessControl.xml", + "ref/netstandard1.3/de/System.Security.AccessControl.xml", + "ref/netstandard1.3/es/System.Security.AccessControl.xml", + "ref/netstandard1.3/fr/System.Security.AccessControl.xml", + "ref/netstandard1.3/it/System.Security.AccessControl.xml", + "ref/netstandard1.3/ja/System.Security.AccessControl.xml", + "ref/netstandard1.3/ko/System.Security.AccessControl.xml", + "ref/netstandard1.3/ru/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", + "ref/netstandard2.0/System.Security.AccessControl.dll", + "ref/netstandard2.0/System.Security.AccessControl.xml", + "ref/uap10.0.16299/_._", + "runtimes/win/lib/net46/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.5.0.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Cng/5.0.0": { + "sha512": "jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==", + "type": "package", + "path": "system.security.cryptography.cng/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.xml", + "lib/net462/System.Security.Cryptography.Cng.dll", + "lib/net462/System.Security.Cryptography.Cng.xml", + "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.xml", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml", + "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.xml", + "lib/netstandard2.1/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.1/System.Security.Cryptography.Cng.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.xml", + "ref/net462/System.Security.Cryptography.Cng.dll", + "ref/net462/System.Security.Cryptography.Cng.xml", + "ref/net47/System.Security.Cryptography.Cng.dll", + "ref/net47/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp3.0/System.Security.Cryptography.Cng.xml", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/netstandard2.1/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.1/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.xml", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.xml", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.5.0.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Pkcs/5.0.0": { + "sha512": "9TPLGjBCGKmNvG8pjwPeuYy0SMVmGZRwlTZvyPHDbYv/DRkoeumJdfumaaDNQzVGMEmbWtg07zUpSW9q70IlDQ==", + "type": "package", + "path": "system.security.cryptography.pkcs/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Cryptography.Pkcs.dll", + "lib/net461/System.Security.Cryptography.Pkcs.dll", + "lib/net461/System.Security.Cryptography.Pkcs.xml", + "lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll", + "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll", + "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml", + "lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml", + "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml", + "ref/net46/System.Security.Cryptography.Pkcs.dll", + "ref/net461/System.Security.Cryptography.Pkcs.dll", + "ref/net461/System.Security.Cryptography.Pkcs.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.xml", + "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll", + "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml", + "ref/netstandard1.3/System.Security.Cryptography.Pkcs.dll", + "ref/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "ref/netstandard2.0/System.Security.Cryptography.Pkcs.xml", + "ref/netstandard2.1/System.Security.Cryptography.Pkcs.dll", + "ref/netstandard2.1/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net46/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml", + "system.security.cryptography.pkcs.5.0.0.nupkg.sha512", + "system.security.cryptography.pkcs.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.ProtectedData/4.4.0": { + "sha512": "cJV7ScGW7EhatRsjehfvvYVBvtiSMKgN8bOVI0bQhnF5bU7vnHVIsH49Kva7i7GWaWYvmEzkYVk1TC+gZYBEog==", + "type": "package", + "path": "system.security.cryptography.protecteddata/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.xml", + "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "system.security.cryptography.protecteddata.4.4.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal.Windows/5.0.0": { + "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "type": "package", + "path": "system.security.principal.windows/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.5.0.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "TaskScheduler/2.9.1": { + "sha512": "wtiNKxMnWS4lpVvJooJM7FbATUpENusKsPfyV1gbusJS9WyZ7XfVp+S75XK8tpD4Grm6XQmTOlxwz2K4sCmPOw==", + "type": "package", + "path": "taskscheduler/2.9.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net20/Microsoft.Win32.TaskScheduler.dll", + "lib/net20/Microsoft.Win32.TaskScheduler.xml", + "lib/net20/de/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/net20/es/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/net20/fr/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/net20/it/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/net20/pl/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/net20/ru/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/net20/zh-CN/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/net35/Microsoft.Win32.TaskScheduler.dll", + "lib/net35/Microsoft.Win32.TaskScheduler.xml", + "lib/net35/de/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/net35/es/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/net35/fr/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/net35/it/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/net35/pl/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/net35/ru/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/net35/zh-CN/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/net40/Microsoft.Win32.TaskScheduler.dll", + "lib/net40/Microsoft.Win32.TaskScheduler.xml", + "lib/net40/de/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/net40/es/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/net40/fr/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/net40/it/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/net40/pl/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/net40/ru/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/net40/zh-CN/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/net452/Microsoft.Win32.TaskScheduler.dll", + "lib/net452/Microsoft.Win32.TaskScheduler.xml", + "lib/net452/de/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/net452/es/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/net452/fr/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/net452/it/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/net452/pl/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/net452/ru/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/net452/zh-CN/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/net5.0-windows7.0/Microsoft.Win32.TaskScheduler.dll", + "lib/net5.0-windows7.0/Microsoft.Win32.TaskScheduler.xml", + "lib/net5.0-windows7.0/de/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/net5.0-windows7.0/es/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/net5.0-windows7.0/fr/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/net5.0-windows7.0/it/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/net5.0-windows7.0/pl/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/net5.0-windows7.0/ru/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/net5.0-windows7.0/zh-CN/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netcoreapp2.0/Microsoft.Win32.TaskScheduler.dll", + "lib/netcoreapp2.0/Microsoft.Win32.TaskScheduler.xml", + "lib/netcoreapp2.0/de/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netcoreapp2.0/es/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netcoreapp2.0/fr/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netcoreapp2.0/it/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netcoreapp2.0/pl/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netcoreapp2.0/ru/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netcoreapp2.0/zh-CN/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netcoreapp2.1/Microsoft.Win32.TaskScheduler.dll", + "lib/netcoreapp2.1/Microsoft.Win32.TaskScheduler.xml", + "lib/netcoreapp2.1/de/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netcoreapp2.1/es/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netcoreapp2.1/fr/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netcoreapp2.1/it/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netcoreapp2.1/pl/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netcoreapp2.1/ru/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netcoreapp2.1/zh-CN/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netcoreapp3.0/Microsoft.Win32.TaskScheduler.dll", + "lib/netcoreapp3.0/Microsoft.Win32.TaskScheduler.xml", + "lib/netcoreapp3.0/de/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netcoreapp3.0/es/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netcoreapp3.0/fr/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netcoreapp3.0/it/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netcoreapp3.0/pl/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netcoreapp3.0/ru/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netcoreapp3.0/zh-CN/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netcoreapp3.1/Microsoft.Win32.TaskScheduler.dll", + "lib/netcoreapp3.1/Microsoft.Win32.TaskScheduler.xml", + "lib/netcoreapp3.1/de/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netcoreapp3.1/zh-CN/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netstandard2.0/Microsoft.Win32.TaskScheduler.dll", + "lib/netstandard2.0/Microsoft.Win32.TaskScheduler.xml", + "lib/netstandard2.0/de/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netstandard2.0/es/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netstandard2.0/fr/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netstandard2.0/it/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netstandard2.0/pl/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netstandard2.0/ru/Microsoft.Win32.TaskScheduler.resources.dll", + "lib/netstandard2.0/zh-CN/Microsoft.Win32.TaskScheduler.resources.dll", + "taskscheduler.2.9.1.nupkg.sha512", + "taskscheduler.nuspec", + "tsnew48.png" + ] + } + }, + "projectFileDependencyGroups": { + "net5.0-windows7.0": [ + "ManagedNativeWifi >= 2.1.0", + "Microsoft.Win32.Registry >= 5.0.0", + "Newtonsoft.Json >= 13.0.1", + "NuGet.Packaging >= 5.11.0", + "TaskScheduler >= 2.9.1" + ] + }, + "packageFolders": { + "C:\\Users\\סארט\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\Installizer\\Installizer\\Installizer.csproj", + "projectName": "Installizer", + "projectPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\Installizer\\Installizer\\Installizer.csproj", + "packagesPath": "C:\\Users\\סארט\\.nuget\\packages\\", + "outputPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\Installizer\\Installizer\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\סארט\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0-windows7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0-windows7.0": { + "targetAlias": "net5.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0-windows7.0": { + "targetAlias": "net5.0-windows", + "dependencies": { + "ManagedNativeWifi": { + "target": "Package", + "version": "[2.1.0, )" + }, + "Microsoft.Win32.Registry": { + "target": "Package", + "version": "[5.0.0, )" + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.1, )" + }, + "NuGet.Packaging": { + "target": "Package", + "version": "[5.11.0, )" + }, + "TaskScheduler": { + "target": "Package", + "version": "[2.9.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.NETCore.App.Host.win-x64", + "version": "[5.0.8, 5.0.8]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100-preview.7.21379.14\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/Installizer/Installizer/obj/project.nuget.cache b/Installizer/Installizer/obj/project.nuget.cache new file mode 100644 index 0000000..6bed1c2 --- /dev/null +++ b/Installizer/Installizer/obj/project.nuget.cache @@ -0,0 +1,27 @@ +{ + "version": 2, + "dgSpecHash": "x4MCPDlpakgQ6RCiFQHC2labwmmfgTbpqDNXS914RgL8X1q0LZdeb9+x11xeVA7uIyBOAOM49dlvjK7Vqhxq1A==", + "success": true, + "projectFilePath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\Installizer\\Installizer\\Installizer.csproj", + "expectedPackageFiles": [ + "C:\\Users\\סארט\\.nuget\\packages\\managednativewifi\\2.1.0\\managednativewifi.2.1.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.win32.registry\\5.0.0\\microsoft.win32.registry.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\nuget.common\\5.11.0\\nuget.common.5.11.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\nuget.configuration\\5.11.0\\nuget.configuration.5.11.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\nuget.frameworks\\5.11.0\\nuget.frameworks.5.11.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\nuget.packaging\\5.11.0\\nuget.packaging.5.11.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\nuget.versioning\\5.11.0\\nuget.versioning.5.11.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.diagnostics.eventlog\\5.0.0\\system.diagnostics.eventlog.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.formats.asn1\\5.0.0\\system.formats.asn1.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.cryptography.pkcs\\5.0.0\\system.security.cryptography.pkcs.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.4.0\\system.security.cryptography.protecteddata.4.4.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\\taskscheduler\\2.9.1\\taskscheduler.2.9.1.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.netcore.app.host.win-x64\\5.0.8\\microsoft.netcore.app.host.win-x64.5.0.8.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/Installizer/desktop.ini b/Installizer/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Installizer/desktop.ini differ diff --git a/NetWork/.vs/NetWork/DesignTimeBuild/.dtbcache.v2 b/NetWork/.vs/NetWork/DesignTimeBuild/.dtbcache.v2 index dad27d3..986e56f 100644 Binary files a/NetWork/.vs/NetWork/DesignTimeBuild/.dtbcache.v2 and b/NetWork/.vs/NetWork/DesignTimeBuild/.dtbcache.v2 differ diff --git a/NetWork/.vs/NetWork/v16/.suo b/NetWork/.vs/NetWork/v16/.suo index 8873d7f..5f0316a 100644 Binary files a/NetWork/.vs/NetWork/v16/.suo and b/NetWork/.vs/NetWork/v16/.suo differ diff --git a/NetWork/.vs/NetWork/v17/.futdcache.v1 b/NetWork/.vs/NetWork/v17/.futdcache.v1 new file mode 100644 index 0000000..8d99e66 Binary files /dev/null and b/NetWork/.vs/NetWork/v17/.futdcache.v1 differ diff --git a/NetWork/.vs/NetWork/v17/.suo b/NetWork/.vs/NetWork/v17/.suo new file mode 100644 index 0000000..f3c3b1d Binary files /dev/null and b/NetWork/.vs/NetWork/v17/.suo differ diff --git a/NetWork/.vs/VSWorkspaceState.json b/NetWork/.vs/VSWorkspaceState.json index 22718c2..73a5caa 100644 --- a/NetWork/.vs/VSWorkspaceState.json +++ b/NetWork/.vs/VSWorkspaceState.json @@ -1,7 +1,12 @@ { "ExpandedNodes": [ - "" + "", + "\\Windows.Common", + "\\Windows.Common\\obj", + "\\Windows.Common\\obj\\Release", + "\\Windows.Common\\Properties", + "\\Windows.Common\\Wifi" ], - "SelectedNode": "\\NetWork.sln", + "SelectedNode": "\\Windows.Common\\Wifi\\Interop.cs", "PreviewInSolutionExplorer": false } \ No newline at end of file diff --git a/NetWork/.vs/slnx.sqlite b/NetWork/.vs/slnx.sqlite index 36a86d8..fa0d077 100644 Binary files a/NetWork/.vs/slnx.sqlite and b/NetWork/.vs/slnx.sqlite differ diff --git a/NetWork/Backup/NetWork.sln b/NetWork/Backup/NetWork.sln new file mode 100644 index 0000000..ab70df9 --- /dev/null +++ b/NetWork/Backup/NetWork.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31402.337 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NetWork", "NetWork\NetWork.csproj", "{A1D13A5A-C5C4-4559-BD8D-FB293DAA9034}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A1D13A5A-C5C4-4559-BD8D-FB293DAA9034}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A1D13A5A-C5C4-4559-BD8D-FB293DAA9034}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A1D13A5A-C5C4-4559-BD8D-FB293DAA9034}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A1D13A5A-C5C4-4559-BD8D-FB293DAA9034}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {BCD0CEDC-F7E6-4311-A924-55D96D536E8D} + EndGlobalSection +EndGlobal diff --git a/NetWork/NetWork.sln b/NetWork/NetWork.sln index ab70df9..acb59d8 100644 --- a/NetWork/NetWork.sln +++ b/NetWork/NetWork.sln @@ -1,7 +1,7 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 16.0.31402.337 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31612.314 MinimumVisualStudioVersion = 10.0.40219.1 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NetWork", "NetWork\NetWork.csproj", "{A1D13A5A-C5C4-4559-BD8D-FB293DAA9034}" EndProject diff --git a/NetWork/NetWork/DialUp.cs b/NetWork/NetWork/DialUp.cs new file mode 100644 index 0000000..276175d --- /dev/null +++ b/NetWork/NetWork/DialUp.cs @@ -0,0 +1,8 @@ + +namespace NetWork +{ + class DialUp + { + + } +} diff --git a/NetWork/NetWork/IgnoreFile.cs b/NetWork/NetWork/IgnoreFile.cs new file mode 100644 index 0000000..6a1a603 --- /dev/null +++ b/NetWork/NetWork/IgnoreFile.cs @@ -0,0 +1,15 @@ +namespace NetWork +{ + class IgnoreFile + { + public static void M() + { + var ahkk = AutoHotkey.Interop.AutoHotkeyEngine.Instance; + ahkk.GetVar("shut"); + } + static void Main(string[] args) + { + M(); + } + } +} diff --git a/NetWork/NetWork/Ip.cs b/NetWork/NetWork/Ip.cs new file mode 100644 index 0000000..9e5ddf2 --- /dev/null +++ b/NetWork/NetWork/Ip.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Runtime.InteropServices; + +namespace NetWork +{ + interface Ip + { + [DllImport("IPHLPAPI.DLL")] + public static extern int ipconfig(); + public static void Ma() + { + + } + } +} diff --git a/NetWork/NetWork/NetWork.csproj b/NetWork/NetWork/NetWork.csproj index 7b2dc92..ec290a4 100644 --- a/NetWork/NetWork/NetWork.csproj +++ b/NetWork/NetWork/NetWork.csproj @@ -6,6 +6,7 @@ NetWork.Program true + enable @@ -13,17 +14,63 @@ true x64 - + + embedded + true + x64 + D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\NetWork.xml + D:\Neutral Folder\NetWorkAutomation\ + - + + + + + + + + + + + True + True + Resources.resx + + + + + + ResXFileCodeGenerator + Resources.Designer.cs + + + + + + + + + + + + + + + + + + + + + diff --git a/NetWork/NetWork/NetWork.xml b/NetWork/NetWork/NetWork.xml new file mode 100644 index 0000000..89032d5 --- /dev/null +++ b/NetWork/NetWork/NetWork.xml @@ -0,0 +1,54 @@ + + + + NetWork + + + + + String of paths + + + + + This Function Stops the RDP connection to the office computer. it takes 'stop' parameter. if it is true, it stops the rdp. otherwise, it starts it. + + A bool parameter. it swiches between stopping (default) and starting rdp session. + + + + + + + + + + + GetProgram switches between the name and the path of the file. if the name is given, it returns the path. if the path is given, it returns the name. + + file or path of the program + path if name has given, name if path has given. empty string if found nothing. + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + + Returns the cached ResourceManager instance used by this class. + + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + + Looks up a localized resource of type System.Byte[]. + + + + diff --git a/NetWork/NetWork/Other/Data.ini b/NetWork/NetWork/Other/Data.ini new file mode 100644 index 0000000..5797f66 --- /dev/null +++ b/NetWork/NetWork/Other/Data.ini @@ -0,0 +1 @@ +RunNetwork \ No newline at end of file diff --git a/NetWork/NetWork/Other/ek.pbk b/NetWork/NetWork/Other/ek.pbk new file mode 100644 index 0000000..7d61c0c --- /dev/null +++ b/NetWork/NetWork/Other/ek.pbk @@ -0,0 +1,290 @@ +[ek] +Encoding=1 +PBVersion=8 +Type=5 +AutoLogon=0 +UseRasCredentials=0 +LowDateTime=1563825568 +HighDateTime=30902417 +DialParamsUID=549312 +Guid=8E5B41957D8C954CBC98BCA8DD84D124 +VpnStrategy=0 +ExcludedProtocols=0 +LcpExtensions=1 +DataEncryption=8 +SwCompression=0 +NegotiateMultilinkAlways=0 +SkipDoubleDialDialog=0 +DialMode=0 +OverridePref=15 +RedialAttempts=3 +RedialSeconds=60 +IdleDisconnectSeconds=0 +RedialOnLinkFailure=1 +CallbackMode=0 +CustomDialDll= +CustomDialFunc= +CustomRasDialDll= +ForceSecureCompartment=0 +DisableIKENameEkuCheck=0 +AuthenticateServer=0 +ShareMsFilePrint=0 +BindMsNetClient=0 +SharedPhoneNumbers=0 +GlobalDeviceSettings=0 +PrerequisiteEntry= +PrerequisitePbk= +PreferredPort=PPPoE5-0 +PreferredDevice=WAN Miniport (PPPOE) +PreferredBps=0 +PreferredHwFlow=0 +PreferredProtocol=0 +PreferredCompression=0 +PreferredSpeaker=0 +PreferredMdmProtocol=0 +PreviewUserPw=1 +PreviewDomain=0 +PreviewPhoneNumber=0 +ShowDialingProgress=1 +ShowMonitorIconInTaskBar=1 +CustomAuthKey=0 +AuthRestrictions=552 +IpPrioritizeRemote=1 +IpInterfaceMetric=0 +IpHeaderCompression=0 +IpAddress=0.0.0.0 +IpDnsAddress=0.0.0.0 +IpDns2Address=0.0.0.0 +IpWinsAddress=0.0.0.0 +IpWins2Address=0.0.0.0 +IpAssign=1 +IpNameAssign=1 +IpDnsFlags=0 +IpNBTFlags=0 +TcpWindowSize=0 +UseFlags=3 +IpSecFlags=0 +IpDnsSuffix= +Ipv6Assign=1 +Ipv6Address=:: +Ipv6PrefixLength=0 +Ipv6PrioritizeRemote=1 +Ipv6InterfaceMetric=0 +Ipv6NameAssign=1 +Ipv6DnsAddress=:: +Ipv6Dns2Address=:: +Ipv6Prefix=0000000000000000 +Ipv6InterfaceId=0000000000000000 +DisableClassBasedDefaultRoute=0 +DisableMobility=0 +NetworkOutageTime=0 +IDI= +IDR= +ImsConfig=0 +IdiType=0 +IdrType=0 +ProvisionType=0 +PreSharedKey= +CacheCredentials=1 +NumCustomPolicy=0 +NumEku=0 +UseMachineRootCert=0 +Disable_IKEv2_Fragmentation=0 +PlumbIKEv2TSAsRoutes=0 +NumServers=0 +RouteVersion=1 +NumRoutes=0 +NumNrptRules=0 +AutoTiggerCapable=0 +NumAppIds=0 +NumClassicAppIds=0 +SecurityDescriptor= +ApnInfoProviderId= +ApnInfoUsername= +ApnInfoPassword= +ApnInfoAccessPoint= +ApnInfoAuthentication=1 +ApnInfoCompression=0 +DeviceComplianceEnabled=0 +DeviceComplianceSsoEnabled=0 +DeviceComplianceSsoEku= +DeviceComplianceSsoIssuer= +FlagsSet=0 +Options=0 +DisableDefaultDnsSuffixes=0 +NumTrustedNetworks=0 +NumDnsSearchSuffixes=0 +PowershellCreatedProfile=0 +ProxyFlags=0 +ProxySettingsModified=0 +ProvisioningAuthority= +AuthTypeOTP=0 +GREKeyDefined=0 +NumPerAppTrafficFilters=0 +AlwaysOnCapable=0 +DeviceTunnel=0 +PrivateNetwork=0 +ManagementApp= + +NETCOMPONENTS= +ms_msclient=0 +ms_server=0 + +MEDIA=rastapi +Port=PPPoE5-0 +Device=WAN Miniport (PPPOE) + +DEVICE=PPPoE +LastSelectedPhone=0 +PromoteAlternates=0 +TryNextAlternateOnFail=1 + +[IKEv2-Surfshark Connection] +Encoding=1 +PBVersion=8 +Type=2 +AutoLogon=0 +UseRasCredentials=1 +LowDateTime=740216224 +HighDateTime=30902506 +DialParamsUID=38687218 +Guid=02AE12A41D5B0B428374D51329305900 +VpnStrategy=7 +ExcludedProtocols=8 +LcpExtensions=1 +DataEncryption=512 +SwCompression=0 +NegotiateMultilinkAlways=0 +SkipDoubleDialDialog=0 +DialMode=0 +OverridePref=15 +RedialAttempts=3 +RedialSeconds=5 +IdleDisconnectSeconds=43200 +RedialOnLinkFailure=1 +CallbackMode=0 +CustomDialDll= +CustomDialFunc= +CustomRasDialDll= +ForceSecureCompartment=0 +DisableIKENameEkuCheck=0 +AuthenticateServer=0 +ShareMsFilePrint=1 +BindMsNetClient=1 +SharedPhoneNumbers=0 +GlobalDeviceSettings=0 +PrerequisiteEntry= +PrerequisitePbk= +PreferredPort=VPN2-0 +PreferredDevice=WAN Miniport (IKEv2) +PreferredBps=0 +PreferredHwFlow=0 +PreferredProtocol=0 +PreferredCompression=0 +PreferredSpeaker=0 +PreferredMdmProtocol=0 +PreviewUserPw=1 +PreviewDomain=1 +PreviewPhoneNumber=0 +ShowDialingProgress=1 +ShowMonitorIconInTaskBar=1 +CustomAuthKey=0 +AuthRestrictions=128 +IpPrioritizeRemote=1 +IpInterfaceMetric=0 +IpHeaderCompression=0 +IpAddress=0.0.0.0 +IpDnsAddress=0.0.0.0 +IpDns2Address=0.0.0.0 +IpWinsAddress=0.0.0.0 +IpWins2Address=0.0.0.0 +IpAssign=1 +IpNameAssign=1 +IpDnsFlags=0 +IpNBTFlags=1 +TcpWindowSize=0 +UseFlags=2 +IpSecFlags=0 +IpDnsSuffix= +Ipv6Assign=1 +Ipv6Address=:: +Ipv6PrefixLength=0 +Ipv6PrioritizeRemote=0 +Ipv6InterfaceMetric=0 +Ipv6NameAssign=1 +Ipv6DnsAddress=:: +Ipv6Dns2Address=:: +Ipv6Prefix=0000000000000000 +Ipv6InterfaceId=0000000000000000 +DisableClassBasedDefaultRoute=0 +DisableMobility=0 +NetworkOutageTime=720 +IDI= +IDR= +ImsConfig=0 +IdiType=0 +IdrType=0 +ProvisionType=0 +PreSharedKey= +CacheCredentials=0 +NumCustomPolicy=1 +CustomIPSecPolicies=030000000400000005000000050000000200000000000000 +NumEku=0 +UseMachineRootCert=0 +Disable_IKEv2_Fragmentation=0 +PlumbIKEv2TSAsRoutes=0 +NumServers=0 +RouteVersion=1 +NumRoutes=0 +NumNrptRules=0 +AutoTiggerCapable=0 +NumAppIds=0 +NumClassicAppIds=0 +SecurityDescriptor= +ApnInfoProviderId= +ApnInfoUsername= +ApnInfoPassword= +ApnInfoAccessPoint= +ApnInfoAuthentication=1 +ApnInfoCompression=0 +DeviceComplianceEnabled=0 +DeviceComplianceSsoEnabled=0 +DeviceComplianceSsoEku= +DeviceComplianceSsoIssuer= +FlagsSet=0 +Options=0 +DisableDefaultDnsSuffixes=0 +NumTrustedNetworks=0 +NumDnsSearchSuffixes=0 +PowershellCreatedProfile=0 +ProxyFlags=0 +ProxySettingsModified=0 +ProvisioningAuthority= +AuthTypeOTP=0 +GREKeyDefined=0 +NumPerAppTrafficFilters=0 +AlwaysOnCapable=0 +DeviceTunnel=0 +PrivateNetwork=0 +ManagementApp= + +NETCOMPONENTS= +ms_msclient=1 +ms_server=1 + +MEDIA=rastapi +Port=VPN2-0 +Device=WAN Miniport (IKEv2) + +DEVICE=vpn +PhoneNumber=il-tlv.prod.surfshark.com +AreaCode= +CountryCode=0 +CountryID=0 +UseDialingRules=0 +Comment= +FriendlyName= +LastSelectedPhone=0 +PromoteAlternates=0 +TryNextAlternateOnFail=1 + diff --git a/NetWork/NetWork/Program.cs b/NetWork/NetWork/Program.cs index 14eeca4..1fd7f00 100644 --- a/NetWork/NetWork/Program.cs +++ b/NetWork/NetWork/Program.cs @@ -1,20 +1,32 @@ -using System; -using System.Diagnostics; -using System.Collections.Generic; -using System.Management; -using System.Text.RegularExpressions; -using NAudio.CoreAudioApi; -using SimpleWifi; using DotRas; +using NAudio.CoreAudioApi; +using NLog; +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Linq; +using System.Text.RegularExpressions; namespace NetWork { class Program { - + public static Logger StartLogger() + { + var config = new NLog.Config.LoggingConfiguration(); + var logfile = new NLog.Targets.FileTarget("lgfle") { FileName = "logme.txt" }; + config.AddRule(LogLevel.Debug, LogLevel.Fatal, logfile); + NLog.LogManager.Configuration = config; + NLog.Logger logger = NLog.LogManager.GetCurrentClassLogger(); + return logger; + } + public static Logger logger = StartLogger(); + /// + /// String of paths + /// public static string[] StringsOfPaths = System.IO.Directory.GetFiles(@"C:\Program Files\Google\Drive File Stream\", "GoogleDriveFS.exe", System.IO.SearchOption.AllDirectories); - public static Dictionary progs = new() { { "GoogleDriveFS", StringsOfPaths[^1] }, { "googledrivesync", @"C:\Program Files\Google\Drive\googledrivesync.exe" }, { "qbittorrent", @"C:\Program Files\qBittorrent\qbittorrent.exe" }, { "Surfshark", @"C:\Program Files (x86)\Surfshark\Surfshark.exe" } }; - public static Dictionary paths = new() { { StringsOfPaths[^1], "GoogleDriveFS.exe" }, { @"C:\Program Files\Google\Drive\googledrivesync.exe", "googledrivesync.exe" }, { @"C:\Program Files\qBittorrent\qbittorrent.exe", "qbittorrent.exe" }, { @"C:\Program Files (x86)\Surfshark\Surfshark.exe", "Surfshark" } }; + public static Dictionary progs = new() { { "GoogleDriveFS", StringsOfPaths[^1] }, { "qbittorrent", @"C:\Program Files\qBittorrent\qbittorrent.exe" }, { "Surfshark", @"C:\Program Files (x86)\Surfshark\Surfshark.exe" }, { "cmd", @"C:\Windows\System32\cmd.exe" } }; + public static Dictionary paths = new() { { StringsOfPaths[^1], "GoogleDriveFS.exe" }, { @"C:\Program Files\qBittorrent\qbittorrent.exe", "qbittorrent.exe" }, { @"C:\Program Files (x86)\Surfshark\Surfshark.exe", "Surfshark" }, { @"C:\Windows\System32\cmd.exe", "cmd" } }; //public static string[,] progs = new string[2,5] { { "GoogleDriveFS.exe", "googledrivesync.exe", "qbittorrent.exe", "Surfshark.exe", "mstsc.exe" },{ StringsOfPaths[StringsOfPaths.Length-1], "C:\\Program Files\\Google\\Drive\\googledrivesync.exe", "C:\\Program Files\\qBittorrent\\qbittorrent.exe", "C:\\Program Files (x86)\\Surfshark\\Surfshark.exe" , "mstsc.exe" } }; /// /// This Function Stops the RDP connection to the office computer. it takes 'stop' parameter. if it is true, it stops the rdp. otherwise, it starts it. @@ -22,36 +34,36 @@ namespace NetWork /// A bool parameter. it swiches between stopping (default) and starting rdp session. public static void StopRDP(bool stop = true) { + if (stop) { Process[] ids = Process.GetProcessesByName("mstsc"); foreach (var id in ids) { - - ManagementObjectSearcher search = new($"SELECT CommandLine FROM Win32_Process WHERE ProcessId = {id.Id}"); + logger.Debug(id.MainWindowTitle); Regex rdp = new("(משרדוש.rdp|161.2)"); - foreach (var searchedObject in search.Get()) + if (rdp.IsMatch(id.MainWindowTitle) || id.MainWindowTitle.Equals("חיבור לשולחן עבודה מרוחק")) { - if (rdp.Match(searchedObject["CommandLine"].ToString()).Success) - { - id.Kill(); - } + id.Kill(); } Console.WriteLine(""); } - } else { Process[] ids = Process.GetProcessesByName("mstsc"); - foreach (var id in ids) + if (ids.Length < 1) + { + StartProgram("rdp"); + } + else { bool started = false; - ManagementObjectSearcher search = new($"SELECT CommandLine FROM Win32_Process WHERE ProcessId = {id.Id}"); - Regex rdp = new("(משרדוש.rdp|161.2)"); - foreach (var searchedObject in search.Get()) + foreach (var id in ids) { - if (rdp.Match(searchedObject["CommandLine"].ToString()).Success) + Regex rdp = new("(משרדוש.rdp|161.2)"); + logger.Debug(id.MainWindowTitle); + if (rdp.IsMatch(id.MainWindowTitle) || id.MainWindowTitle.Equals("חיבור לשולחן עבודה מרוחק")) { started = true; } @@ -60,13 +72,14 @@ namespace NetWork { StartProgram("rdp"); } + Console.WriteLine(""); } } } /// - /// + /// /// /// /// @@ -76,14 +89,19 @@ namespace NetWork { RasDialer rasDialer = new(); rasDialer.AllowUseStoredCredentials = true; - rasDialer.PhoneBookPath = @"C:\Users\סארט\AppData\Roaming\Microsoft\Network\Connections\Pbk\ek.pbk"; + rasDialer.PhoneBookPath = @"D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\Other\ek.pbk"; rasDialer.PhoneNumber = "ek"; rasDialer.EntryName = "ek"; rasDialer.DialAsync(); } return false; } - public static string GetProgram(string Name) + /// + /// GetProgram switches between the name and the path of the file. if the name is given, it returns the path. if the path is given, it returns the name. + /// + /// file or path of the program + /// path if name has given, name if path has given. empty string if found nothing. + public static string GetProgram(string NameOrPath) { /* this function decides if the program is a name, or a location. @@ -92,16 +110,25 @@ namespace NetWork otherwise, it returns empty string */ - if (progs.ContainsKey(Name)) + if (progs.ContainsKey(NameOrPath)) { - return progs[Name]; + return progs[NameOrPath]; } - if (paths.ContainsKey(Name)) + if (paths.ContainsKey(NameOrPath)) { - return paths[Name]; + return paths[NameOrPath]; } return ""; + } + public static void StopSurfshark() + { + Process.GetProcesses() + .Where(x => x.ProcessName.StartsWith("surf", StringComparison.OrdinalIgnoreCase)) + .ToList() + .ForEach(x => x.Kill()); + + } public static void StopProgram(string[] Name, bool mute = true) { @@ -109,7 +136,12 @@ namespace NetWork { try { - if (progs.ContainsKey(name)) + System.Text.RegularExpressions.Regex vpnRegEx = new(@"[Ss][Uu][Rr][Ff][Ss][Hh][Aa][Rr][Kk]"); + if (vpnRegEx.IsMatch(name)) + { + StopSurfshark(); + } + else if (progs.ContainsKey(name)) { Process[] p = Process.GetProcessesByName(name); foreach (Process proc in p) @@ -135,12 +167,11 @@ namespace NetWork } public static void StartProgram(string[] Name, bool mute = false) { - foreach (var process_name in Name) { if (process_name.Contains("rdp") || process_name.Contains("mstsc")) { - Process.Start("mstsc.exe", "D:\\Drive\\מסמכים\\vms\\משרדוש.rdp"); + StopRDP(false); continue; } else if (Process.GetProcessesByName(process_name).Length < 1) @@ -166,25 +197,51 @@ namespace NetWork public static string GetWifiNetwork() { SimpleWifi.Win32.WlanClient wlan = new(); - return wlan.Interfaces[0].CurrentConnection.profileName; + string wifiname; + try + { + wifiname = wlan.Interfaces[0].CurrentConnection.profileName; + + } + catch + { + wifiname = ""; + } + return wifiname; + } public static bool? IsItGoodWifi(string currentWifi) { Regex regex = new(currentWifi); bool? goodWifi; - goodWifi = regex.IsMatch("Oliver Oliver5 Oliver x018_497622 TNCAPE5A34D MSBR Azrieli_Modiin_WIFI lu shalmata mickey Mickey Network 192.168.1. Silmarill wintunshark0 saret Saret huji-meonot") ? true : (regex.IsMatch("HUJI-netXeduroam HUJI-guest 132.64") ? false:null); + goodWifi = regex.IsMatch("Oliver Oliver5 Oliver x018_497622 TNCAPE5A34D MSBR Azrieli_Modiin_WIFI lu shalmata mickey Mickey Network 192.168.1. Silmarill wintunshark0 saret Saret huji-meonot") ? true : (regex.IsMatch("HUJI-netX eduroam HUJI-guest 132.64") ? false : null); return goodWifi; } + static bool LanEthernet(System.Net.NetworkInformation.NetworkInterface networkAdapter) + { + if (networkAdapter.Name.Contains("Ethernet") || (networkAdapter.NetworkInterfaceType.ToString().Contains("Ethernet"))) + { + return true; + } + return false; + } + static bool IgnoreLan(System.Net.NetworkInformation.NetworkInterface networkAdapter) + { + if (!(networkAdapter.Name.Contains("Bluetooth")) && (!(networkAdapter.Description.Contains("TAP"))) && (!(networkAdapter.Description.Contains("Hyper-V")))) + { + return true; + } + return false; + } static string GetLan(System.Net.NetworkInformation.NetworkInterface networkAdapter) { - if (networkAdapter.Name.Contains("Ethernet") && !(networkAdapter.Description.Contains("TAP")) && !(networkAdapter.Description.Contains("Hyper-V"))) + if (LanEthernet(networkAdapter) && IgnoreLan(networkAdapter)) { - return networkAdapter.GetPhysicalAddress().ToString(); + return networkAdapter.GetPhysicalAddress().ToString(); } return null; } - static bool GetVpn(System.Net.NetworkInformation.NetworkInterface net) { if (net.Name.Contains("Surfshark") || net.Name.Contains("shark") || net.Description.Contains("TAP")) @@ -193,29 +250,41 @@ namespace NetWork } return false; } - public static Dictionary GetNetwork() { Dictionary net_dict = new() { { "vpn", false }, { "lan", false }, { "good_lan", false }, { "ek", false } }; System.Net.NetworkInformation.NetworkInterface[] nets = System.Net.NetworkInformation.NetworkInterface.GetAllNetworkInterfaces(); string getlan = ""; + string? lannull; bool getgoodland = false; - string getwifi; + string? getwifi; getwifi = GetWifiNetwork(); foreach (var net in nets) { + if (net.Name == "ek") + { + net_dict["ek"] |= true; + } + net_dict["vpn"] |= GetVpn(net); - getlan ??= GetLan(net); + lannull = GetLan(net); + if (lannull is not null) + { + getlan = lannull; + } if (AllowedMac(net.GetPhysicalAddress().ToString())) { - getgoodland |= true ; + getgoodland |= true; } } net_dict.Add("Wi-Fi", IsItGoodWifi(getwifi)); - net_dict["good_lan"]=getgoodland; - net_dict["lan"]= getlan; - + net_dict["good_lan"] = getgoodland; + if (getlan.Length > 0) + { + net_dict["lan"] = true; + } + //net_dict.Add("good_lan", AllowedMac()); return net_dict; } @@ -301,65 +370,133 @@ namespace NetWork MMDeviceEnumerator mMDeviceEnumerator = new(); mMDeviceEnumerator.GetDefaultAudioEndpoint(DataFlow.Render, Role.Multimedia).AudioEndpointVolume.Mute = mute; } - public static void DoTheSchtik() + public static void DoTheSchtik(bool Run) { - var network_connection = GetNetwork(); - string[] programs_to_run; - string[] programs_to_stop; - bool mute; - switch (HirarcyNetworks(network_connection)) + if (Run) { - case "vpn": - programs_to_run = new string[] { "googledrivesync", "GoogleDriveFS", "qbittorrent", "Surfshark" }; - programs_to_stop = new string[] { "rdp" }; - mute = false; - break; - case "ek": - programs_to_run = new string[] { "rdp", "googledrivesync", "GoogleDriveFS" }; - programs_to_stop = new string[] { "qbittorrent", "Surfshark" }; - mute = false; - break; - case "good_lan": - programs_to_run = new string[] { "googledrivesync", "GoogleDriveFS", "qbittorrent", "Surfshark" }; - programs_to_stop = new string[] { "rdp" }; - mute = false; - break; - case "lan": - programs_to_run = new string[] { "rdp", "googledrivesync", "GoogleDriveFS" }; - programs_to_stop = new string[] { "qbittorrent", "Surfshark" }; - mute = false; - Dial(true); - break; - default: - if (network_connection["Wi-Fi"]) - { - programs_to_run = new string[] { "googledrivesync", "GoogleDriveFS", "qbittorrent", "Surfshark" }; + var network_connection = GetNetwork(); + string[] programs_to_run; + string[] programs_to_stop; + bool mute; + switch (HirarcyNetworks(network_connection)) + { + case "vpn": + programs_to_run = new string[] { "GoogleDriveFS", "qbittorrent", "Surfshark" }; programs_to_stop = new string[] { "rdp" }; mute = false; break; - } - else - { - programs_to_run = new string[] { "googledrivesync", "GoogleDriveFS" }; + case "ek": + programs_to_run = new string[] { "rdp", "GoogleDriveFS" }; programs_to_stop = new string[] { "qbittorrent", "Surfshark" }; - mute = true; + mute = false; + break; + case "good_lan": + programs_to_run = new string[] { "GoogleDriveFS", "qbittorrent", "Surfshark" }; + programs_to_stop = new string[] { "rdp" }; + mute = false; + break; + case "lan": + programs_to_run = new string[] { "rdp", "GoogleDriveFS" }; + programs_to_stop = new string[] { "qbittorrent", "Surfshark" }; + mute = false; + Dial(true); + break; + default: + if (network_connection["Wi-Fi"]) + { + programs_to_run = new string[] { "GoogleDriveFS", "qbittorrent", "Surfshark" }; + programs_to_stop = new string[] { "rdp" }; + mute = false; + break; + } + else + { + programs_to_run = new string[] { "GoogleDriveFS" }; + programs_to_stop = new string[] { "qbittorrent", "Surfshark", "rdp" }; + mute = true; + } + break; + } + //try + //{ + // System.Net.NetworkInformation.Ping p = new(); + // System.Net.NetworkInformation.PingReply png = p.Send("google.com", 3000); + // if (png.Status != System.Net.NetworkInformation.IPStatus.Success) + // { + // string[] stp = programs_to_stop; + // programs_to_stop = new string[stp.Length + 1]; + // for (int i = 0; i < stp.Length; i++) + // { + // programs_to_stop[i] = stp[i]; + // } + // programs_to_stop[stp.Length] = "Surfshark"; + // foreach (var serv in System.ServiceProcess.ServiceController.GetServices()) + // { + // if (serv.ServiceName.Contains("Surf")) + // { + // serv.Stop(); + // } + // } + // //programs_to_stop.Append("Surfshark"); + // } + + //} + //catch + //{ + // string[] stp = programs_to_stop; + // programs_to_stop = new string[stp.Length + 1]; + // for (int i = 0; i < stp.Length; i++) + // { + // programs_to_stop[i] = stp[i]; + // } + // foreach (var serv in System.ServiceProcess.ServiceController.GetServices()) + // { + // if (serv.ServiceName.Contains("Surf")) + // { + // try + // { + // serv.Stop(); + + // } + // catch + // { + + // } + // } + // } + // programs_to_stop[stp.Length] = "Surfshark"; + + //} + foreach (var serv in System.ServiceProcess.ServiceController.GetServices()) + { + if (serv.ServiceName.Contains("Surf")) + { + serv.Stop(); } - break; - } - if (programs_to_run is not null) - { - StartProgram(programs_to_run, mute); - } - if (programs_to_stop is not null) - { - StopProgram(programs_to_stop, mute); + } + if (programs_to_run is not null) + { + StartProgram(programs_to_run, mute); + MuteSystem(mute); + } + if (programs_to_stop is not null) + { + StopProgram(programs_to_stop, mute); + MuteSystem(mute); + } } System.Windows.Forms.Application.Exit(); } + public static bool IniData() + { + return System.IO.File.ReadAllText("D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\Other\\Data.ini").Equals("RunNetwork"); + } static void Main(string[] args) { - DoTheSchtik(); - + logger.Debug("me"); + //IgnoreFile.M(); + DoTheSchtik(IniData()); + } } } \ No newline at end of file diff --git a/NetWork/NetWork/Properties/PublishProfiles/FolderProfile.pubxml b/NetWork/NetWork/Properties/PublishProfiles/FolderProfile.pubxml index d5e675c..fe308ff 100644 --- a/NetWork/NetWork/Properties/PublishProfiles/FolderProfile.pubxml +++ b/NetWork/NetWork/Properties/PublishProfiles/FolderProfile.pubxml @@ -13,6 +13,6 @@ https://go.microsoft.com/fwlink/?LinkID=208121. true True True - True + False \ No newline at end of file diff --git a/NetWork/NetWork/Properties/PublishProfiles/FolderProfile.pubxml.user b/NetWork/NetWork/Properties/PublishProfiles/FolderProfile.pubxml.user index e07767e..fd1a575 100644 --- a/NetWork/NetWork/Properties/PublishProfiles/FolderProfile.pubxml.user +++ b/NetWork/NetWork/Properties/PublishProfiles/FolderProfile.pubxml.user @@ -4,6 +4,6 @@ https://go.microsoft.com/fwlink/?LinkID=208121. --> - True|2021-06-26T18:39:14.9764613Z; + True|2021-08-21T12:35:05.8080222Z;False|2021-08-21T15:33:33.8944048+03:00;False|2021-08-21T15:31:04.3461039+03:00;False|2021-08-21T15:29:29.3574574+03:00;False|2021-08-21T15:27:18.4014348+03:00;False|2021-08-21T15:26:37.2854938+03:00;False|2021-08-21T15:25:34.2229695+03:00;False|2021-08-21T15:21:35.5431259+03:00;True|2021-07-05T19:01:01.3302488+03:00;False|2021-07-05T18:53:34.6361454+03:00;False|2021-07-05T18:51:45.7049687+03:00;True|2021-06-26T21:39:14.9764613+03:00; \ No newline at end of file diff --git a/NetWork/NetWork/Properties/Resources.Designer.cs b/NetWork/NetWork/Properties/Resources.Designer.cs new file mode 100644 index 0000000..e05f63a --- /dev/null +++ b/NetWork/NetWork/Properties/Resources.Designer.cs @@ -0,0 +1,73 @@ +//------------------------------------------------------------------------------ +// +// 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. +// +//------------------------------------------------------------------------------ + +namespace NetWork.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("NetWork.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized resource of type System.Byte[]. + /// + internal static byte[] ek { + get { + object obj = ResourceManager.GetObject("ek", resourceCulture); + return ((byte[])(obj)); + } + } + } +} diff --git a/NetWork/NetWork/Properties/Resources.resx b/NetWork/NetWork/Properties/Resources.resx new file mode 100644 index 0000000..4801d1e --- /dev/null +++ b/NetWork/NetWork/Properties/Resources.resx @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + ..\Other\ek.pbk;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/NetWork/NetWork/obj/Debug/NetWork.1.0.0.nuspec b/NetWork/NetWork/obj/Debug/NetWork.1.0.0.nuspec index 85b357f..84c1751 100644 --- a/NetWork/NetWork/obj/Debug/NetWork.1.0.0.nuspec +++ b/NetWork/NetWork/obj/Debug/NetWork.1.0.0.nuspec @@ -8,19 +8,24 @@ - + + + + + + - - + + \ No newline at end of file diff --git a/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.GeneratedMSBuildEditorConfig.editorconfig b/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.GeneratedMSBuildEditorConfig.editorconfig index 04424a3..e20c298 100644 --- a/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.GeneratedMSBuildEditorConfig.editorconfig +++ b/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.GeneratedMSBuildEditorConfig.editorconfig @@ -3,6 +3,8 @@ 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 +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = NetWork +build_property.ProjectDir = D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\ diff --git a/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.Properties.Resources.resources b/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.Properties.Resources.resources new file mode 100644 index 0000000..9e18731 Binary files /dev/null and b/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.Properties.Resources.resources differ diff --git a/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.assets.cache b/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.assets.cache index 9653bb1..c8e8cfa 100644 Binary files a/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.assets.cache and b/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.assets.cache differ diff --git a/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.AssemblyReference.cache b/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.AssemblyReference.cache index 928849e..f6d7575 100644 Binary files a/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.AssemblyReference.cache and b/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.AssemblyReference.cache differ diff --git a/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.CoreCompileInputs.cache b/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.CoreCompileInputs.cache index d4b0283..2b36aec 100644 --- a/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.CoreCompileInputs.cache +++ b/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -b12bbc8565f6610c6edf9c63353648b20956c171 +4007ad40daed4730129636615a3b266d05f5a92a diff --git a/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.FileListAbsolute.txt b/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.FileListAbsolute.txt index c44e1fa..133bd6b 100644 --- a/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.FileListAbsolute.txt +++ b/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.FileListAbsolute.txt @@ -205,3 +205,235 @@ C:\Users\סארט\source\repos\NetWork\NetWork\obj\Debug\net5.0-windows7.0\ref\N C:\Users\סארט\source\repos\NetWork\NetWork\obj\Debug\net5.0-windows7.0\NetWork.genruntimeconfig.cache C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\SimpleWifi.dll C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\DotRas.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Microsoft.Extensions.Configuration.Abstractions.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Microsoft.Extensions.DependencyInjection.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Microsoft.Extensions.Logging.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Microsoft.Extensions.Logging.Abstractions.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Microsoft.Extensions.Options.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Microsoft.Extensions.Primitives.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NLog.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NLog.Extensions.Logging.dll +C:\Users\סארט\source\repos\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Serilog.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Debug\net5.0-windows7.0\NetWork.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Debug\net5.0-windows7.0\ref\NetWork.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\AudioControlNative.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NetWork.exe +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NetWork.deps.json +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NetWork.runtimeconfig.json +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NetWork.runtimeconfig.dev.json +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NetWork.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\ref\NetWork.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\DotRas.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Microsoft.Extensions.Configuration.Abstractions.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Microsoft.Extensions.DependencyInjection.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Microsoft.Extensions.Logging.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Microsoft.Extensions.Logging.Abstractions.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Microsoft.Extensions.Options.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Microsoft.Extensions.Primitives.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NAudio.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NAudio.Asio.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NAudio.Core.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NAudio.Midi.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NAudio.Wasapi.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NAudio.WinForms.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NAudio.WinMM.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NLog.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\NLog.Extensions.Logging.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\Serilog.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\SimpleWifi.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.Management.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\unix\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm\native\mi.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm\native\miutils.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm64\native\mi.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win-arm64\native\miutils.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win10-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win10-x64\native\mi.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win10-x64\native\miutils.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win10-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win10-x86\native\mi.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win10-x86\native\miutils.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\mi.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\miutils.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x86\native\mi.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x86\native\miutils.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\mi.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\miutils.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x86\native\mi.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x86\native\miutils.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x64\native\mi.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x64\native\miutils.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x86\native\mi.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x86\native\miutils.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Base-Util-L1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-2.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-PrivateProfile-L1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-String-L2-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-StringAnsi-L1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-EventLog-Legacy-L1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Eventing-Consumer-L1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Eventing-Controller-L1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Eventing-Legacy-L1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Eventing-Provider-L1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Security-LsaPolicy-L1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-devices-config-L1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-devices-config-L1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-com-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-com-private-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-comm-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-console-l2-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-datetime-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-debug-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-delayload-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-errorhandling-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-fibers-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-fibers-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-file-l1-2-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-file-l2-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-heap-obsolete-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-io-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-io-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-kernel32-legacy-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-kernel32-legacy-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-kernel32-legacy-l1-1-2.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-libraryloader-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-localization-l1-2-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-localization-l2-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-localization-obsolete-l1-2-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-memory-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-memory-l1-1-2.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-memory-l1-1-3.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-namedpipe-l1-2-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-normalization-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-privateprofile-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-processenvironment-l1-2-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-processsecurity-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-processthreads-l1-1-2.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-psapi-ansi-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-psapi-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-psapi-obsolete-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-realtime-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-registry-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-registry-l2-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-shlwapi-legacy-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-shlwapi-obsolete-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-shutdown-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-shutdown-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-string-obsolete-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-string-obsolete-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-stringloader-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-stringloader-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-2.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-3.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-threadpool-l1-2-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-threadpool-legacy-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-threadpool-private-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-url-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-version-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-error-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-error-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-registration-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-robuffer-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-string-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-wow64-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-xstate-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-xstate-l2-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-ro-typeresolution-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-base-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-cpwl-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-cryptoapi-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-lsalookup-l2-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-lsalookup-l2-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-provider-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-sddl-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-core-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-core-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-management-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-management-l2-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-private-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-private-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-winsvc-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win7-x64\native\ext-ms-win-advapi32-encryptedfile-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-2.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\API-MS-Win-devices-config-L1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-file-l1-2-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-file-l2-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-kernel32-legacy-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-kernel32-legacy-l1-1-2.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-localization-l1-2-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-localization-obsolete-l1-2-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-memory-l1-1-2.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-memory-l1-1-3.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-namedpipe-l1-2-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-privateprofile-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-processthreads-l1-1-2.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-shutdown-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-string-obsolete-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-stringloader-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-sysinfo-l1-2-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-sysinfo-l1-2-2.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-sysinfo-l1-2-3.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-winrt-error-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-xstate-l2-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-security-cpwl-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-security-cryptoapi-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-security-lsalookup-l2-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-service-private-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-2.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-kernel32-legacy-l1-1-2.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-memory-l1-1-3.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-namedpipe-l1-2-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-string-obsolete-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-sysinfo-l1-2-2.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-sysinfo-l1-2-3.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-security-cpwl-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\netcoreapp2.0\System.Management.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Debug\net5.0-windows7.0\NetWork.GeneratedMSBuildEditorConfig.editorconfig +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Debug\net5.0-windows7.0\NetWork.AssemblyInfoInputs.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Debug\net5.0-windows7.0\NetWork.AssemblyInfo.cs +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Debug\net5.0-windows7.0\NetWork.csproj.CoreCompileInputs.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Debug\net5.0-windows7.0\NetWork.genruntimeconfig.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\VPNConnector.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Debug\net5.0-windows7.0\NetWork.Properties.Resources.resources +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Debug\net5.0-windows7.0\NetWork.csproj.GenerateResource.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Debug\net5.0-windows7.0\NetWork.csproj.AssemblyReference.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\AutoHotkey.Interop.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\System.ServiceProcess.ServiceController.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Debug\net5.0-windows7.0\runtimes\win\lib\netstandard2.0\System.ServiceProcess.ServiceController.dll diff --git a/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.GenerateResource.cache b/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.GenerateResource.cache new file mode 100644 index 0000000..b9ff7fa Binary files /dev/null and b/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.csproj.GenerateResource.cache differ diff --git a/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.genruntimeconfig.cache b/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.genruntimeconfig.cache index 95c5bc3..9494e0c 100644 --- a/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.genruntimeconfig.cache +++ b/NetWork/NetWork/obj/Debug/net5.0-windows7.0/NetWork.genruntimeconfig.cache @@ -1 +1 @@ -542af5c956e3cb1b862c90ca6d1d2a799cd2003d +f1f7a2b227e661e8bded085edbeae4ef39679215 diff --git a/NetWork/NetWork/obj/Debug/net5.0-windows7.0/apphost.exe b/NetWork/NetWork/obj/Debug/net5.0-windows7.0/apphost.exe index 07756c9..d04c032 100644 Binary files a/NetWork/NetWork/obj/Debug/net5.0-windows7.0/apphost.exe and b/NetWork/NetWork/obj/Debug/net5.0-windows7.0/apphost.exe differ diff --git a/NetWork/NetWork/obj/NetWork.csproj.nuget.dgspec.json b/NetWork/NetWork/obj/NetWork.csproj.nuget.dgspec.json index 58bf49f..fd516f0 100644 --- a/NetWork/NetWork/obj/NetWork.csproj.nuget.dgspec.json +++ b/NetWork/NetWork/obj/NetWork.csproj.nuget.dgspec.json @@ -1,17 +1,17 @@ { "format": 1, "restore": { - "C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\NetWork.csproj": {} + "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\NetWork.csproj": {} }, "projects": { - "C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\NetWork.csproj": { + "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\NetWork.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\NetWork.csproj", + "projectUniqueName": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\NetWork.csproj", "projectName": "NetWork", - "projectPath": "C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\NetWork.csproj", + "projectPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\NetWork.csproj", "packagesPath": "C:\\Users\\סארט\\.nuget\\packages\\", - "outputPath": "C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\obj\\", + "outputPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" @@ -26,7 +26,6 @@ ], "sources": { "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Users\\סארט\\source\\repos\\NetWork": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -49,9 +48,9 @@ "target": "Package", "version": "[1.0.1, )" }, - "DotRas.for.Win8": { + "AutoHotkey.Interop": { "target": "Package", - "version": "[1.3.0, )" + "version": "[1.0.0.1, )" }, "Microsoft.Management.Infrastructure": { "target": "Package", @@ -73,6 +72,18 @@ "target": "Package", "version": "[2.0.3, )" }, + "NLog": { + "target": "Package", + "version": "[4.7.10, )" + }, + "NLog.Extensions.Logging": { + "target": "Package", + "version": "[1.7.3, )" + }, + "Serilog": { + "target": "Package", + "version": "[2.10.0, )" + }, "SimpleWifi.netstandard": { "target": "Package", "version": "[2.0.0, )" @@ -80,6 +91,14 @@ "System.Management": { "target": "Package", "version": "[5.0.0, )" + }, + "System.ServiceProcess.ServiceController": { + "target": "Package", + "version": "[5.0.0, )" + }, + "VPNConnector": { + "target": "Package", + "version": "[1.0.0, )" } }, "imports": [ @@ -92,12 +111,18 @@ ], "assetTargetFallback": true, "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.NETCore.App.Host.win-x64", + "version": "[5.0.8, 5.0.8]" + } + ], "frameworkReferences": { "Microsoft.NETCore.App": { "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100-preview.7.21379.14\\RuntimeIdentifierGraph.json" } } } diff --git a/NetWork/NetWork/obj/NetWork.csproj.nuget.g.props b/NetWork/NetWork/obj/NetWork.csproj.nuget.g.props index 1fef40e..4d0913f 100644 --- a/NetWork/NetWork/obj/NetWork.csproj.nuget.g.props +++ b/NetWork/NetWork/obj/NetWork.csproj.nuget.g.props @@ -7,7 +7,7 @@ $(UserProfile)\.nuget\packages\ C:\Users\סארט\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages PackageReference - 5.10.0 + 6.0.0 diff --git a/NetWork/NetWork/obj/Release/NetWork.1.0.0.nuspec b/NetWork/NetWork/obj/Release/NetWork.1.0.0.nuspec index 878ce60..a641651 100644 --- a/NetWork/NetWork/obj/Release/NetWork.1.0.0.nuspec +++ b/NetWork/NetWork/obj/Release/NetWork.1.0.0.nuspec @@ -8,19 +8,23 @@ - + + + + - - + + + \ No newline at end of file diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.GeneratedMSBuildEditorConfig.editorconfig b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.GeneratedMSBuildEditorConfig.editorconfig index 04424a3..e20c298 100644 --- a/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.GeneratedMSBuildEditorConfig.editorconfig +++ b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.GeneratedMSBuildEditorConfig.editorconfig @@ -3,6 +3,8 @@ 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 +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = NetWork +build_property.ProjectDir = D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\ diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.Properties.Resources.resources b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.Properties.Resources.resources new file mode 100644 index 0000000..9e18731 Binary files /dev/null and b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.Properties.Resources.resources differ diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.assets.cache b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.assets.cache index 03102e3..f150832 100644 Binary files a/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.assets.cache and b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.assets.cache differ diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.AssemblyReference.cache b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.AssemblyReference.cache index f5e894a..204fdef 100644 Binary files a/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.AssemblyReference.cache and b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.AssemblyReference.cache differ diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.CoreCompileInputs.cache b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.CoreCompileInputs.cache index 3010f7a..e4e36f2 100644 --- a/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.CoreCompileInputs.cache +++ b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -5c8e073db52f158c560f0463e2afca6eaa9ef604 +ed9f68123c2538539c82c92ec55bdea9c7b17e8b diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.FileListAbsolute.txt b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.FileListAbsolute.txt index 2c4a747..ec6309f 100644 --- a/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.FileListAbsolute.txt +++ b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.FileListAbsolute.txt @@ -207,3 +207,230 @@ C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\Net C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\ref\NetWork.dll C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.pdb C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.genruntimeconfig.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\AudioControlNative.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\NetWork.exe +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\NetWork.deps.json +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\NetWork.runtimeconfig.json +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\NetWork.runtimeconfig.dev.json +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\NetWork.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\ref\NetWork.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\DotRas.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\Microsoft.Extensions.Configuration.Abstractions.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\Microsoft.Extensions.DependencyInjection.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\Microsoft.Extensions.Logging.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\Microsoft.Extensions.Logging.Abstractions.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\Microsoft.Extensions.Options.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\Microsoft.Extensions.Primitives.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\NAudio.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\NAudio.Asio.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\NAudio.Core.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\NAudio.Midi.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\NAudio.Wasapi.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\NAudio.WinForms.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\NAudio.WinMM.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\NLog.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\NLog.Extensions.Logging.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\Serilog.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\SimpleWifi.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\System.Management.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\VPNConnector.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\unix\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm\native\mi.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm\native\miutils.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm64\native\mi.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win-arm64\native\miutils.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x64\native\mi.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x64\native\miutils.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x86\native\mi.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win10-x86\native\miutils.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\mi.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\miutils.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x86\native\mi.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x86\native\miutils.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\mi.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\miutils.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x86\native\mi.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x86\native\miutils.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\mi.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\miutils.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x86\native\mi.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x86\native\miutils.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Base-Util-L1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-2.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-PrivateProfile-L1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-String-L2-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Core-StringAnsi-L1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-EventLog-Legacy-L1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Eventing-Consumer-L1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Eventing-Controller-L1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Eventing-Legacy-L1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Eventing-Provider-L1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-Security-LsaPolicy-L1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-devices-config-L1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\API-MS-Win-devices-config-L1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-com-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-com-private-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-comm-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-console-l2-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-datetime-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-debug-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-delayload-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-errorhandling-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-fibers-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-fibers-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-file-l1-2-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-file-l2-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-heap-obsolete-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-io-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-io-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-kernel32-legacy-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-kernel32-legacy-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-kernel32-legacy-l1-1-2.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-libraryloader-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-localization-l1-2-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-localization-l2-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-localization-obsolete-l1-2-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-memory-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-memory-l1-1-2.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-memory-l1-1-3.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-namedpipe-l1-2-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-normalization-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-privateprofile-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-processenvironment-l1-2-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-processsecurity-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-processthreads-l1-1-2.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-psapi-ansi-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-psapi-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-psapi-obsolete-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-realtime-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-registry-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-registry-l2-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-shlwapi-legacy-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-shlwapi-obsolete-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-shutdown-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-shutdown-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-string-obsolete-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-string-obsolete-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-stringloader-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-stringloader-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-2.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-sysinfo-l1-2-3.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-threadpool-l1-2-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-threadpool-legacy-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-threadpool-private-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-url-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-version-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-error-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-error-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-registration-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-robuffer-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-winrt-string-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-wow64-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-xstate-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-core-xstate-l2-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-ro-typeresolution-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-base-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-cpwl-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-cryptoapi-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-lsalookup-l2-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-lsalookup-l2-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-provider-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-security-sddl-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-core-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-core-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-management-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-management-l2-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-private-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-private-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\api-ms-win-service-winsvc-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win7-x64\native\ext-ms-win-advapi32-encryptedfile-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-2.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\API-MS-Win-devices-config-L1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-file-l1-2-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-file-l2-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-kernel32-legacy-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-kernel32-legacy-l1-1-2.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-localization-l1-2-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-localization-obsolete-l1-2-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-memory-l1-1-2.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-memory-l1-1-3.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-namedpipe-l1-2-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-privateprofile-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-processthreads-l1-1-2.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-shutdown-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-string-obsolete-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-stringloader-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-sysinfo-l1-2-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-sysinfo-l1-2-2.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-sysinfo-l1-2-3.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-winrt-error-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-core-xstate-l2-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-security-cpwl-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-security-cryptoapi-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-security-lsalookup-l2-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win8-x64\native\api-ms-win-service-private-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\API-MS-Win-Core-Kernel32-Private-L1-1-2.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-kernel32-legacy-l1-1-2.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-memory-l1-1-3.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-namedpipe-l1-2-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-string-obsolete-l1-1-1.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-sysinfo-l1-2-2.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-core-sysinfo-l1-2-3.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win81-x64\native\api-ms-win-security-cpwl-l1-1-0.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\bin\Release\net5.0-windows7.0\runtimes\win\lib\netcoreapp2.0\System.Management.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.Properties.Resources.resources +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.csproj.GenerateResource.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.GeneratedMSBuildEditorConfig.editorconfig +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.AssemblyInfoInputs.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.AssemblyInfo.cs +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.csproj.CoreCompileInputs.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\ref\NetWork.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.genruntimeconfig.cache +D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\AudioControlNative.dll +D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\NetWork.exe +D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\NetWork.deps.json +D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\NetWork.runtimeconfig.json +D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\NetWork.runtimeconfig.dev.json +D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\NetWork.dll +D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\ref\NetWork.dll +D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\NetWork.xml +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\NetWork.csproj.AssemblyReference.cache diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.GenerateResource.cache b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.GenerateResource.cache new file mode 100644 index 0000000..b9ff7fa Binary files /dev/null and b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.csproj.GenerateResource.cache differ diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.genruntimeconfig.cache b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.genruntimeconfig.cache index 95c5bc3..b0a2003 100644 --- a/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.genruntimeconfig.cache +++ b/NetWork/NetWork/obj/Release/net5.0-windows7.0/NetWork.genruntimeconfig.cache @@ -1 +1 @@ -542af5c956e3cb1b862c90ca6d1d2a799cd2003d +a4e49e640d8d9c4d337fba5225544a723df7e711 diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/apphost.exe b/NetWork/NetWork/obj/Release/net5.0-windows7.0/apphost.exe index 07756c9..d04c032 100644 Binary files a/NetWork/NetWork/obj/Release/net5.0-windows7.0/apphost.exe and b/NetWork/NetWork/obj/Release/net5.0-windows7.0/apphost.exe differ diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.Properties.Resources.resources b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.Properties.Resources.resources new file mode 100644 index 0000000..9e18731 Binary files /dev/null and b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.Properties.Resources.resources differ diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.assets.cache b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.assets.cache index 48545e7..788c6da 100644 Binary files a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.assets.cache and b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.assets.cache differ diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.csproj.CoreCompileInputs.cache b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.csproj.CoreCompileInputs.cache index 5d28068..cc6cb8b 100644 --- a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.csproj.CoreCompileInputs.cache +++ b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -c915500b58dc9b718e3615d82fa51dc73689172b +363145e996162af7b3762734ad5c82c53d042074 diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.csproj.FileListAbsolute.txt b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.csproj.FileListAbsolute.txt index ee879e2..c554acd 100644 --- a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.csproj.FileListAbsolute.txt +++ b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.csproj.FileListAbsolute.txt @@ -521,3 +521,21 @@ C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\win C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\ref\NetWork.dll C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.pdb C:\Users\סארט\source\repos\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.genruntimeconfig.cache +D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\win-x64\AudioControlNative.dll +D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\win-x64\NetWork.exe +D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\win-x64\NetWork.deps.json +D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\win-x64\NetWork.runtimeconfig.json +D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\win-x64\NetWork.runtimeconfig.dev.json +D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\win-x64\NetWork.dll +D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\win-x64\ref\NetWork.dll +D:\Neutral Folder\NetWorkAutomation\net5.0-windows7.0\win-x64\NetWork.xml +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.Properties.Resources.resources +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.csproj.GenerateResource.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.GeneratedMSBuildEditorConfig.editorconfig +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.AssemblyInfoInputs.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.AssemblyInfo.cs +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.csproj.CoreCompileInputs.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.csproj.CopyComplete +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\ref\NetWork.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\NetWork\NetWork\obj\Release\net5.0-windows7.0\win-x64\NetWork.genruntimeconfig.cache diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.csproj.GenerateResource.cache b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.csproj.GenerateResource.cache new file mode 100644 index 0000000..f5d8e5d Binary files /dev/null and b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.csproj.GenerateResource.cache differ diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.deps.json b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.deps.json index 318bb55..1b23041 100644 --- a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.deps.json +++ b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.deps.json @@ -10,314 +10,669 @@ "NetWork/1.0.0": { "dependencies": { "AudioControl.x64": "1.0.1", - "DotRas.for.Win8": "1.3.0", "Microsoft.Management.Infrastructure": "2.0.0", "Microsoft.NETCore.Windows.ApiSets": "1.0.1", "Microsoft.NETCore.Windows.ApiSets-x64": "1.0.0", "NAudio": "2.0.1", "NETStandard.Library": "2.0.3", + "NLog": "4.7.10", + "NLog.Extensions.Logging": "1.7.3", + "Serilog": "2.10.0", "SimpleWifi.netstandard": "2.0.0", "System.Management": "5.0.0", - "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "5.0.7", - "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64": "5.0.7" + "VPNConnector": "1.0.0", + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "5.0.8", + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64": "5.0.8" }, "runtime": { "NetWork.dll": {} } }, - "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/5.0.7": { + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/5.0.8": { "runtime": { "Microsoft.CSharp.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "Microsoft.VisualBasic.Core.dll": { "assemblyVersion": "10.0.6.0", - "fileVersion": "11.0.721.25508" + "fileVersion": "11.0.821.31504" }, "Microsoft.Win32.Primitives.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "Microsoft.Win32.Registry.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" + }, + "System.AppContext.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Buffers.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" }, "System.Collections.Concurrent.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.Collections.Immutable.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.Collections.NonGeneric.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.Collections.Specialized.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.Collections.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" + }, + "System.ComponentModel.Annotations.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.ComponentModel.DataAnnotations.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.821.31504" }, "System.ComponentModel.EventBasedAsync.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.ComponentModel.Primitives.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.ComponentModel.TypeConverter.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.ComponentModel.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" + }, + "System.Configuration.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.821.31504" }, "System.Console.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" + }, + "System.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.821.31504" }, "System.Data.Common.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" + }, + "System.Data.DataSetExtensions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Data.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Diagnostics.Contracts.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Diagnostics.Debug.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" }, "System.Diagnostics.DiagnosticSource.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.Diagnostics.FileVersionInfo.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.Diagnostics.Process.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.Diagnostics.StackTrace.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" + }, + "System.Diagnostics.TextWriterTraceListener.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Diagnostics.Tools.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" }, "System.Diagnostics.TraceSource.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" + }, + "System.Diagnostics.Tracing.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" }, "System.Drawing.Primitives.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" + }, + "System.Dynamic.Runtime.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" }, "System.Formats.Asn1.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" + }, + "System.Globalization.Calendars.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Globalization.Extensions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Globalization.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" }, "System.IO.Compression.Brotli.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" + }, + "System.IO.Compression.FileSystem.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.IO.Compression.ZipFile.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" }, "System.IO.Compression.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.IO.FileSystem.AccessControl.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.IO.FileSystem.DriveInfo.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" + }, + "System.IO.FileSystem.Primitives.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" }, "System.IO.FileSystem.Watcher.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.IO.FileSystem.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.IO.IsolatedStorage.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.IO.MemoryMappedFiles.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" + }, + "System.IO.Pipes.AccessControl.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" }, "System.IO.Pipes.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" + }, + "System.IO.UnmanagedMemoryStream.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.IO.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" }, "System.Linq.Expressions.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" + }, + "System.Linq.Parallel.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Linq.Queryable.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" }, "System.Linq.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.Memory.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" + }, + "System.Net.Http.Json.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" }, "System.Net.Http.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" + }, + "System.Net.HttpListener.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Net.Mail.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" }, "System.Net.NameResolution.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.Net.NetworkInformation.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.Net.Ping.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.Net.Primitives.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.Net.Requests.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.Net.Security.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.Net.ServicePoint.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.Net.Sockets.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.Net.WebClient.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.Net.WebHeaderCollection.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" + }, + "System.Net.WebProxy.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Net.WebSockets.Client.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Net.WebSockets.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Net.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Numerics.Vectors.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Numerics.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.821.31504" }, "System.ObjectModel.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.Private.DataContractSerialization.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.Private.Uri.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.Private.Xml.Linq.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.Private.Xml.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" + }, + "System.Reflection.DispatchProxy.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Reflection.Emit.ILGeneration.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Reflection.Emit.Lightweight.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Reflection.Emit.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Reflection.Extensions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" }, "System.Reflection.Metadata.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" + }, + "System.Reflection.Primitives.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Reflection.TypeExtensions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Reflection.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Resources.Reader.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Resources.ResourceManager.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" }, "System.Resources.Writer.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.Runtime.CompilerServices.Unsafe.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.Runtime.CompilerServices.VisualC.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" + }, + "System.Runtime.Extensions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Runtime.Handles.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" }, "System.Runtime.InteropServices.RuntimeInformation.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.Runtime.InteropServices.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" + }, + "System.Runtime.Intrinsics.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Runtime.Loader.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" }, "System.Runtime.Numerics.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.Runtime.Serialization.Formatters.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" + }, + "System.Runtime.Serialization.Json.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" }, "System.Runtime.Serialization.Primitives.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" + }, + "System.Runtime.Serialization.Xml.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Runtime.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Runtime.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" }, "System.Security.AccessControl.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.Security.Claims.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.Security.Cryptography.Algorithms.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.Security.Cryptography.Cng.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.Security.Cryptography.Csp.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.Security.Cryptography.Encoding.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" + }, + "System.Security.Cryptography.OpenSsl.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" }, "System.Security.Cryptography.Primitives.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.Security.Cryptography.X509Certificates.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.Security.Principal.Windows.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" + }, + "System.Security.Principal.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Security.SecureString.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Security.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.ServiceModel.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.ServiceProcess.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.821.31504" }, "System.Text.Encoding.CodePages.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" + }, + "System.Text.Encoding.Extensions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Text.Encoding.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Text.Encodings.Web.dll": { + "assemblyVersion": "5.0.0.1", + "fileVersion": "5.0.821.31504" + }, + "System.Text.Json.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" }, "System.Text.RegularExpressions.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "System.Threading.Channels.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" + }, + "System.Threading.Overlapped.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Threading.Tasks.Dataflow.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Threading.Tasks.Extensions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Threading.Tasks.Parallel.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Threading.Tasks.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Threading.Thread.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Threading.ThreadPool.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Threading.Timer.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" }, "System.Threading.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" + }, + "System.Transactions.Local.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Transactions.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.ValueTuple.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Web.HttpUtility.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Web.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Windows.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Xml.Linq.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Xml.ReaderWriter.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Xml.Serialization.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Xml.XDocument.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Xml.XPath.XDocument.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Xml.XPath.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Xml.XmlDocument.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Xml.XmlSerializer.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.Xml.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "System.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "mscorlib.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.821.31504" + }, + "netstandard.dll": { + "assemblyVersion": "2.1.0.0", + "fileVersion": "5.0.821.31504" }, "System.Private.CoreLib.dll": { "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" } }, "native": { @@ -325,33 +680,33 @@ "fileVersion": "42.42.42.42424" }, "clrjit.dll": { - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "coreclr.dll": { - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" }, "mscordaccore.dll": { - "fileVersion": "5.0.721.25508" + "fileVersion": "5.0.821.31504" } } }, - "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64/5.0.7": { + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64/5.0.8": { "runtime": { "Accessibility.dll": { "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.721.26307" + "fileVersion": "5.0.821.31504" }, "DirectWriteForwarder.dll": { - "assemblyVersion": "5.0.6.0", - "fileVersion": "5.0.621.26303" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31506" }, "Microsoft.VisualBasic.Forms.dll": { - "assemblyVersion": "5.0.7.0", - "fileVersion": "5.0.721.26307" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31504" }, "Microsoft.VisualBasic.dll": { "assemblyVersion": "10.1.0.0", - "fileVersion": "5.0.721.26307" + "fileVersion": "5.0.821.31504" }, "Microsoft.Win32.Registry.AccessControl.dll": { "assemblyVersion": "5.0.0.0", @@ -362,64 +717,64 @@ "fileVersion": "5.0.20.51904" }, "PresentationCore.dll": { - "assemblyVersion": "5.0.6.0", - "fileVersion": "5.0.621.26303" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31506" }, "PresentationFramework-SystemCore.dll": { - "assemblyVersion": "5.0.6.0", - "fileVersion": "5.0.621.26303" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31506" }, "PresentationFramework-SystemData.dll": { - "assemblyVersion": "5.0.6.0", - "fileVersion": "5.0.621.26303" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31506" }, "PresentationFramework-SystemDrawing.dll": { - "assemblyVersion": "5.0.6.0", - "fileVersion": "5.0.621.26303" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31506" }, "PresentationFramework-SystemXml.dll": { - "assemblyVersion": "5.0.6.0", - "fileVersion": "5.0.621.26303" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31506" }, "PresentationFramework-SystemXmlLinq.dll": { - "assemblyVersion": "5.0.6.0", - "fileVersion": "5.0.621.26303" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31506" }, "PresentationFramework.Aero.dll": { - "assemblyVersion": "5.0.6.0", - "fileVersion": "5.0.621.26303" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31506" }, "PresentationFramework.Aero2.dll": { - "assemblyVersion": "5.0.6.0", - "fileVersion": "5.0.621.26303" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31506" }, "PresentationFramework.AeroLite.dll": { - "assemblyVersion": "5.0.6.0", - "fileVersion": "5.0.621.26303" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31506" }, "PresentationFramework.Classic.dll": { - "assemblyVersion": "5.0.6.0", - "fileVersion": "5.0.621.26303" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31506" }, "PresentationFramework.Luna.dll": { - "assemblyVersion": "5.0.6.0", - "fileVersion": "5.0.621.26303" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31506" }, "PresentationFramework.Royale.dll": { - "assemblyVersion": "5.0.6.0", - "fileVersion": "5.0.621.26303" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31506" }, "PresentationFramework.dll": { - "assemblyVersion": "5.0.6.0", - "fileVersion": "5.0.621.26303" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31506" }, "PresentationUI.dll": { - "assemblyVersion": "5.0.6.0", - "fileVersion": "5.0.621.26303" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31506" }, "ReachFramework.dll": { - "assemblyVersion": "5.0.6.0", - "fileVersion": "5.0.621.26303" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31506" }, "System.CodeDom.dll": { "assemblyVersion": "5.0.0.0", @@ -430,8 +785,8 @@ "fileVersion": "5.0.20.51904" }, "System.Design.dll": { - "assemblyVersion": "5.0.7.0", - "fileVersion": "5.0.721.26307" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31504" }, "System.Diagnostics.EventLog.Messages.dll": { "assemblyVersion": "5.0.0.1", @@ -454,20 +809,20 @@ "fileVersion": "5.0.421.11614" }, "System.Drawing.Design.dll": { - "assemblyVersion": "5.0.7.0", - "fileVersion": "5.0.721.26307" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31504" }, "System.Drawing.dll": { - "assemblyVersion": "5.0.7.0", - "fileVersion": "5.0.721.26307" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31504" }, "System.IO.Packaging.dll": { "assemblyVersion": "5.0.0.0", "fileVersion": "5.0.20.51904" }, "System.Printing.dll": { - "assemblyVersion": "5.0.6.0", - "fileVersion": "5.0.621.26303" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31506" }, "System.Resources.Extensions.dll": { "assemblyVersion": "5.0.0.0", @@ -494,64 +849,64 @@ "fileVersion": "5.0.20.51904" }, "System.Windows.Controls.Ribbon.dll": { - "assemblyVersion": "5.0.6.0", - "fileVersion": "5.0.621.26303" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31506" }, "System.Windows.Extensions.dll": { "assemblyVersion": "5.0.0.0", "fileVersion": "5.0.20.51904" }, "System.Windows.Forms.Design.Editors.dll": { - "assemblyVersion": "5.0.7.0", - "fileVersion": "5.0.721.26307" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31504" }, "System.Windows.Forms.Design.dll": { - "assemblyVersion": "5.0.7.0", - "fileVersion": "5.0.721.26307" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31504" }, "System.Windows.Forms.Primitives.dll": { - "assemblyVersion": "5.0.7.0", - "fileVersion": "5.0.721.26307" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31504" }, "System.Windows.Forms.dll": { - "assemblyVersion": "5.0.7.0", - "fileVersion": "5.0.721.26307" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31504" }, "System.Windows.Input.Manipulations.dll": { - "assemblyVersion": "5.0.6.0", - "fileVersion": "5.0.621.26303" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31506" }, "System.Windows.Presentation.dll": { - "assemblyVersion": "5.0.6.0", - "fileVersion": "5.0.621.26303" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31506" }, "System.Xaml.dll": { - "assemblyVersion": "5.0.6.0", - "fileVersion": "5.0.621.26303" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31506" }, "UIAutomationClient.dll": { - "assemblyVersion": "5.0.6.0", - "fileVersion": "5.0.621.26303" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31506" }, "UIAutomationClientSideProviders.dll": { - "assemblyVersion": "5.0.6.0", - "fileVersion": "5.0.621.26303" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31506" }, "UIAutomationProvider.dll": { - "assemblyVersion": "5.0.6.0", - "fileVersion": "5.0.621.26303" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31506" }, "UIAutomationTypes.dll": { - "assemblyVersion": "5.0.6.0", - "fileVersion": "5.0.621.26303" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31506" }, "WindowsBase.dll": { - "assemblyVersion": "5.0.6.0", - "fileVersion": "5.0.621.26303" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31506" }, "WindowsFormsIntegration.dll": { - "assemblyVersion": "5.0.6.0", - "fileVersion": "5.0.621.26303" + "assemblyVersion": "5.0.8.0", + "fileVersion": "5.0.821.31506" } }, "native": { @@ -559,16 +914,16 @@ "fileVersion": "10.0.19041.685" }, "PenImc_cor3.dll": { - "fileVersion": "5.0.621.26303" + "fileVersion": "5.0.821.31506" }, "PresentationNative_cor3.dll": { - "fileVersion": "5.0.621.26005" + "fileVersion": "5.0.821.31102" }, "vcruntime140_cor3.dll": { - "fileVersion": "14.29.30031.0" + "fileVersion": "14.29.30035.0" }, "wpfgfx_cor3.dll": { - "fileVersion": "5.0.621.26303" + "fileVersion": "5.0.821.31506" } } }, @@ -581,6 +936,78 @@ } } }, + "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "Microsoft.Extensions.DependencyInjection/5.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0" + }, + "runtime": { + "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "Microsoft.Extensions.Logging/5.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "5.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Logging.Abstractions": "5.0.0", + "Microsoft.Extensions.Options": "5.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/5.0.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "Microsoft.Extensions.Options/5.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Primitives": "5.0.0" + }, + "runtime": { + "lib/net5.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "Microsoft.Extensions.Primitives/5.0.0": { + "runtime": { + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, "Microsoft.Management.Infrastructure/2.0.0": { "dependencies": { "Microsoft.Management.Infrastructure.Runtime.Unix": "2.0.0", @@ -684,6 +1111,35 @@ "Microsoft.NETCore.Platforms": "5.0.0" } }, + "NLog/4.7.10": { + "runtime": { + "lib/netstandard2.0/NLog.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.7.10.13013" + } + } + }, + "NLog.Extensions.Logging/1.7.3": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "5.0.0", + "Microsoft.Extensions.Logging": "5.0.0", + "NLog": "4.7.10" + }, + "runtime": { + "lib/net5.0/NLog.Extensions.Logging.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.7.3.1580" + } + } + }, + "Serilog/2.10.0": { + "runtime": { + "lib/netstandard2.1/Serilog.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.10.0.0" + } + } + }, "SimpleWifi.netstandard/2.0.0": { "runtime": { "lib/netstandard2.0/SimpleWifi.dll": { @@ -712,7 +1168,18 @@ "System.Security.Principal.Windows": "5.0.0" } }, - "System.Security.Principal.Windows/5.0.0": {} + "System.Security.Principal.Windows/5.0.0": {}, + "VPNConnector/1.0.0": { + "dependencies": { + "DotRas.for.Win8": "1.3.0" + }, + "runtime": { + "lib/net452/VPNConnector.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } } }, "libraries": { @@ -721,12 +1188,12 @@ "serviceable": false, "sha512": "" }, - "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/5.0.7": { + "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/5.0.8": { "type": "runtimepack", "serviceable": false, "sha512": "" }, - "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64/5.0.7": { + "runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x64/5.0.8": { "type": "runtimepack", "serviceable": false, "sha512": "" @@ -745,6 +1212,55 @@ "path": "dotras.for.win8/1.3.0", "hashPath": "dotras.for.win8.1.3.0.nupkg.sha512" }, + "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==", + "path": "microsoft.extensions.configuration.abstractions/5.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==", + "path": "microsoft.extensions.dependencyinjection/5.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==", + "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==", + "path": "microsoft.extensions.logging/5.0.0", + "hashPath": "microsoft.extensions.logging.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==", + "path": "microsoft.extensions.logging.abstractions/5.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==", + "path": "microsoft.extensions.options/5.0.0", + "hashPath": "microsoft.extensions.options.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==", + "path": "microsoft.extensions.primitives/5.0.0", + "hashPath": "microsoft.extensions.primitives.5.0.0.nupkg.sha512" + }, "Microsoft.Management.Infrastructure/2.0.0": { "type": "package", "serviceable": true, @@ -850,6 +1366,27 @@ "path": "netstandard.library/2.0.3", "hashPath": "netstandard.library.2.0.3.nupkg.sha512" }, + "NLog/4.7.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rcegW7kYOCjl7wX0SzsqpPBqnJ51JKi1WkYb6QBVX0Wc5IgH19Pv4t/co+T0s06OS0Ne44xgkY/mHg0PdrmJow==", + "path": "nlog/4.7.10", + "hashPath": "nlog.4.7.10.nupkg.sha512" + }, + "NLog.Extensions.Logging/1.7.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7RvUvGd9Ad37pNedjPHbCUroscLGuChLBo0OBveGp92vIpEHLZm/in+Ydd+c9qpv1XMQQIx7yZv1F5qyy/AxHQ==", + "path": "nlog.extensions.logging/1.7.3", + "hashPath": "nlog.extensions.logging.1.7.3.nupkg.sha512" + }, + "Serilog/2.10.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA==", + "path": "serilog/2.10.0", + "hashPath": "serilog.2.10.0.nupkg.sha512" + }, "SimpleWifi.netstandard/2.0.0": { "type": "package", "serviceable": true, @@ -884,6 +1421,13 @@ "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", "path": "system.security.principal.windows/5.0.0", "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" + }, + "VPNConnector/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JI8OnCYcrkZ4tB9YTfTBDizCky40A+Xoti+/t/IDuYG9wXyI1/TfkEDA7v17ptybsNKSvtLyyT+HTWW/Bco80Q==", + "path": "vpnconnector/1.0.0", + "hashPath": "vpnconnector.1.0.0.nupkg.sha512" } }, "runtimes": { diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.genruntimeconfig.cache b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.genruntimeconfig.cache index 618056c..416bd2d 100644 --- a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.genruntimeconfig.cache +++ b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/NetWork.genruntimeconfig.cache @@ -1 +1 @@ -5f68dd900527e551047945ae92c4afc1894d9d4f +8cbba98b5dd499cff41205bc84d4f2f9b4b8a28b diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/PublishOutputs.14905e3326.txt b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/PublishOutputs.14905e3326.txt index 19c5221..8ca40c6 100644 --- a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/PublishOutputs.14905e3326.txt +++ b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/PublishOutputs.14905e3326.txt @@ -1,4 +1,3 @@ -D:\Neutral Folder\NetWorkAutomation\NetWork.pdb D:\Neutral Folder\NetWorkAutomation\AudioControlNative.dll D:\Neutral Folder\NetWorkAutomation\clrcompression.dll D:\Neutral Folder\NetWorkAutomation\clrjit.dll @@ -9,4 +8,5 @@ D:\Neutral Folder\NetWorkAutomation\PenImc_cor3.dll D:\Neutral Folder\NetWorkAutomation\PresentationNative_cor3.dll D:\Neutral Folder\NetWorkAutomation\vcruntime140_cor3.dll D:\Neutral Folder\NetWorkAutomation\wpfgfx_cor3.dll +D:\Neutral Folder\NetWorkAutomation\NetWork.xml D:\Neutral Folder\NetWorkAutomation\NetWork.exe diff --git a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/singlefilehost.exe b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/singlefilehost.exe index 513f607..d982382 100644 Binary files a/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/singlefilehost.exe and b/NetWork/NetWork/obj/Release/net5.0-windows7.0/win-x64/singlefilehost.exe differ diff --git a/NetWork/NetWork/obj/project.assets.json b/NetWork/NetWork/obj/project.assets.json index 556269e..9ddb898 100644 --- a/NetWork/NetWork/obj/project.assets.json +++ b/NetWork/NetWork/obj/project.assets.json @@ -8,6 +8,15 @@ "build/AudioControl.x64.targets": {} } }, + "AutoHotkey.Interop/1.0.0.1": { + "type": "package", + "compile": { + "lib/net45/AutoHotkey.Interop.dll": {} + }, + "runtime": { + "lib/net45/AutoHotkey.Interop.dll": {} + } + }, "DotRas.for.Win8/1.3.0": { "type": "package", "compile": { @@ -17,6 +26,85 @@ "lib/net40/DotRas.dll": {} } }, + "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0" + }, + "compile": { + "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "5.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Logging.Abstractions": "5.0.0", + "Microsoft.Extensions.Options": "5.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Options/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Primitives": "5.0.0" + }, + "compile": { + "lib/net5.0/Microsoft.Extensions.Options.dll": {} + }, + "runtime": { + "lib/net5.0/Microsoft.Extensions.Options.dll": {} + } + }, + "Microsoft.Extensions.Primitives/5.0.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {} + } + }, "Microsoft.Management.Infrastructure/2.0.0": { "type": "package", "dependencies": { @@ -1007,6 +1095,38 @@ "build/netstandard2.0/NETStandard.Library.targets": {} } }, + "NLog/4.7.10": { + "type": "package", + "compile": { + "lib/netstandard2.0/NLog.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NLog.dll": {} + } + }, + "NLog.Extensions.Logging/1.7.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "5.0.0", + "Microsoft.Extensions.Logging": "5.0.0", + "NLog": "4.7.10" + }, + "compile": { + "lib/net5.0/NLog.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/net5.0/NLog.Extensions.Logging.dll": {} + } + }, + "Serilog/2.10.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/Serilog.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Serilog.dll": {} + } + }, "SimpleWifi.netstandard/2.0.0": { "type": "package", "compile": { @@ -1025,6 +1145,26 @@ "lib/netstandard2.0/System.CodeDom.dll": {} } }, + "System.Diagnostics.EventLog/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.Win32.Registry": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Diagnostics.EventLog.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, "System.Management/5.0.0": { "type": "package", "dependencies": { @@ -1082,6 +1222,36 @@ "rid": "win" } } + }, + "System.ServiceProcess.ServiceController/5.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.EventLog": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.ServiceProcess.ServiceController.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "VPNConnector/1.0.0": { + "type": "package", + "dependencies": { + "DotRas.for.Win8": "1.3.0" + }, + "compile": { + "lib/net452/VPNConnector.dll": {} + }, + "runtime": { + "lib/net452/VPNConnector.dll": {} + } } } }, @@ -1100,6 +1270,20 @@ "lib/net46/AudioControl.dll" ] }, + "AutoHotkey.Interop/1.0.0.1": { + "sha512": "ZeJLYFmNDthkw/xj0kKDiQYaBWNHb5q54CqGd71vZ/jggi0xGKoMUA5pVQmT5k/+ssy3WFDw5NcBlAqSr2gy2g==", + "type": "package", + "path": "autohotkey.interop/1.0.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "autohotkey.interop.1.0.0.1.nupkg.sha512", + "autohotkey.interop.nuspec", + "docs/README.md", + "images/icon.png", + "lib/net45/AutoHotkey.Interop.dll" + ] + }, "DotRas.for.Win8/1.3.0": { "sha512": "vetxGKzzinebFwexUOamgwA9fws5X86CM0Ta/jcTeWuOEBPNMjXsWDoE6e0EImLgnz3EAvUhM594duzxrkgBeg==", "type": "package", @@ -1116,6 +1300,156 @@ "lib/net40/DotRas.xml" ] }, + "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { + "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/5.0.0": { + "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.DependencyInjection.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.xml", + "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { + "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Logging/5.0.0": { + "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==", + "type": "package", + "path": "microsoft.extensions.logging/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.dll", + "lib/net461/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.5.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/5.0.0": { + "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Options/5.0.0": { + "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==", + "type": "package", + "path": "microsoft.extensions.options/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Options.dll", + "lib/net461/Microsoft.Extensions.Options.xml", + "lib/net5.0/Microsoft.Extensions.Options.dll", + "lib/net5.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.5.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Primitives/5.0.0": { + "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==", + "type": "package", + "path": "microsoft.extensions.primitives/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Primitives.dll", + "lib/net461/Microsoft.Extensions.Primitives.xml", + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll", + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.5.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, "Microsoft.Management.Infrastructure/2.0.0": { "sha512": "IaKZRNBBv3sdrmBWd+aqwHq8cVHk/3WgWFAN/dt40MRY9rbtHiDfTTmaEN0tGTmQqGCGDo/ncntA8MvFMvcsRw==", "type": "package", @@ -1691,6 +2025,89 @@ "netstandard.library.nuspec" ] }, + "NLog/4.7.10": { + "sha512": "rcegW7kYOCjl7wX0SzsqpPBqnJ51JKi1WkYb6QBVX0Wc5IgH19Pv4t/co+T0s06OS0Ne44xgkY/mHg0PdrmJow==", + "type": "package", + "path": "nlog/4.7.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/monoandroid44/NLog.dll", + "lib/monoandroid44/NLog.xml", + "lib/net35/NLog.dll", + "lib/net35/NLog.xml", + "lib/net40-client/NLog.dll", + "lib/net40-client/NLog.xml", + "lib/net45/NLog.dll", + "lib/net45/NLog.xml", + "lib/netstandard1.3/NLog.dll", + "lib/netstandard1.3/NLog.xml", + "lib/netstandard1.5/NLog.dll", + "lib/netstandard1.5/NLog.xml", + "lib/netstandard2.0/NLog.dll", + "lib/netstandard2.0/NLog.xml", + "lib/sl4/NLog.dll", + "lib/sl4/NLog.xml", + "lib/sl5/NLog.dll", + "lib/sl5/NLog.xml", + "lib/wp8/NLog.dll", + "lib/wp8/NLog.xml", + "lib/xamarinios10/NLog.dll", + "lib/xamarinios10/NLog.xml", + "nlog.4.7.10.nupkg.sha512", + "nlog.nuspec" + ] + }, + "NLog.Extensions.Logging/1.7.3": { + "sha512": "7RvUvGd9Ad37pNedjPHbCUroscLGuChLBo0OBveGp92vIpEHLZm/in+Ydd+c9qpv1XMQQIx7yZv1F5qyy/AxHQ==", + "type": "package", + "path": "nlog.extensions.logging/1.7.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "N.png", + "lib/net451/NLog.Extensions.Logging.dll", + "lib/net451/NLog.Extensions.Logging.xml", + "lib/net461/NLog.Extensions.Logging.dll", + "lib/net461/NLog.Extensions.Logging.xml", + "lib/net5.0/NLog.Extensions.Logging.dll", + "lib/net5.0/NLog.Extensions.Logging.xml", + "lib/netcoreapp3.0/NLog.Extensions.Logging.dll", + "lib/netcoreapp3.0/NLog.Extensions.Logging.xml", + "lib/netstandard1.3/NLog.Extensions.Logging.dll", + "lib/netstandard1.3/NLog.Extensions.Logging.xml", + "lib/netstandard1.5/NLog.Extensions.Logging.dll", + "lib/netstandard1.5/NLog.Extensions.Logging.xml", + "lib/netstandard2.0/NLog.Extensions.Logging.dll", + "lib/netstandard2.0/NLog.Extensions.Logging.xml", + "nlog.extensions.logging.1.7.3.nupkg.sha512", + "nlog.extensions.logging.nuspec" + ] + }, + "Serilog/2.10.0": { + "sha512": "+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA==", + "type": "package", + "path": "serilog/2.10.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net45/Serilog.dll", + "lib/net45/Serilog.xml", + "lib/net46/Serilog.dll", + "lib/net46/Serilog.xml", + "lib/netstandard1.0/Serilog.dll", + "lib/netstandard1.0/Serilog.xml", + "lib/netstandard1.3/Serilog.dll", + "lib/netstandard1.3/Serilog.xml", + "lib/netstandard2.0/Serilog.dll", + "lib/netstandard2.0/Serilog.xml", + "lib/netstandard2.1/Serilog.dll", + "lib/netstandard2.1/Serilog.xml", + "serilog.2.10.0.nupkg.sha512", + "serilog.nuspec" + ] + }, "SimpleWifi.netstandard/2.0.0": { "sha512": "lJuk2zjX4snKbrxfDnDEwYb8dTFR/UbyMb9umljexOP1nuXjdYXNX3T2+zrdxZue359ZqvHC8aAAGkgWS6PFFw==", "type": "package", @@ -1729,6 +2146,32 @@ "version.txt" ] }, + "System.Diagnostics.EventLog/5.0.0": { + "sha512": "FHkCwUfsTs+/5tsK+c0egLfacUgbhvcwi3wUFWSEEArSXao343mYqcpOVVFMlcCkdNtjU4YwAWaKYwal6f02og==", + "type": "package", + "path": "system.diagnostics.eventlog/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Diagnostics.EventLog.dll", + "lib/net461/System.Diagnostics.EventLog.xml", + "lib/netstandard2.0/System.Diagnostics.EventLog.dll", + "lib/netstandard2.0/System.Diagnostics.EventLog.xml", + "ref/net461/System.Diagnostics.EventLog.dll", + "ref/net461/System.Diagnostics.EventLog.xml", + "ref/netstandard2.0/System.Diagnostics.EventLog.dll", + "ref/netstandard2.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.xml", + "system.diagnostics.eventlog.5.0.0.nupkg.sha512", + "system.diagnostics.eventlog.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, "System.Management/5.0.0": { "sha512": "MF1CHaRcC+MLFdnDthv4/bKWBZnlnSpkGqa87pKukQefgEdwtb9zFW6zs0GjPp73qtpYYg4q6PEKbzJbxCpKfw==", "type": "package", @@ -1855,19 +2298,77 @@ "useSharedDesignerContext.txt", "version.txt" ] + }, + "System.ServiceProcess.ServiceController/5.0.0": { + "sha512": "p2yX167GW1pr2DCR6cW+cBKrvhli4thckXk108faFaTPHnoudb0AYPcIPq3nmrwn7IQj9FEmjpyJlXzcOmIjjw==", + "type": "package", + "path": "system.serviceprocess.servicecontroller/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.ServiceProcess.ServiceController.dll", + "lib/net461/System.ServiceProcess.ServiceController.xml", + "lib/netstandard1.4/System.ServiceProcess.ServiceController.dll", + "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll", + "lib/netstandard2.0/System.ServiceProcess.ServiceController.xml", + "ref/net461/System.ServiceProcess.ServiceController.dll", + "ref/net461/System.ServiceProcess.ServiceController.xml", + "ref/netstandard1.4/System.ServiceProcess.ServiceController.dll", + "ref/netstandard1.4/System.ServiceProcess.ServiceController.xml", + "ref/netstandard1.4/de/System.ServiceProcess.ServiceController.xml", + "ref/netstandard1.4/es/System.ServiceProcess.ServiceController.xml", + "ref/netstandard1.4/fr/System.ServiceProcess.ServiceController.xml", + "ref/netstandard1.4/it/System.ServiceProcess.ServiceController.xml", + "ref/netstandard1.4/ja/System.ServiceProcess.ServiceController.xml", + "ref/netstandard1.4/ko/System.ServiceProcess.ServiceController.xml", + "ref/netstandard1.4/ru/System.ServiceProcess.ServiceController.xml", + "ref/netstandard1.4/zh-hans/System.ServiceProcess.ServiceController.xml", + "ref/netstandard1.4/zh-hant/System.ServiceProcess.ServiceController.xml", + "ref/netstandard2.0/System.ServiceProcess.ServiceController.dll", + "ref/netstandard2.0/System.ServiceProcess.ServiceController.xml", + "runtimes/win/lib/net461/System.ServiceProcess.ServiceController.dll", + "runtimes/win/lib/net461/System.ServiceProcess.ServiceController.xml", + "runtimes/win/lib/netstandard1.5/System.ServiceProcess.ServiceController.dll", + "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.dll", + "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.xml", + "system.serviceprocess.servicecontroller.5.0.0.nupkg.sha512", + "system.serviceprocess.servicecontroller.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "VPNConnector/1.0.0": { + "sha512": "JI8OnCYcrkZ4tB9YTfTBDizCky40A+Xoti+/t/IDuYG9wXyI1/TfkEDA7v17ptybsNKSvtLyyT+HTWW/Bco80Q==", + "type": "package", + "path": "vpnconnector/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/VPNConnector.dll", + "vpnconnector.1.0.0.nupkg.sha512", + "vpnconnector.nuspec" + ] } }, "projectFileDependencyGroups": { "net5.0-windows7.0": [ "AudioControl.x64 >= 1.0.1", - "DotRas.for.Win8 >= 1.3.0", + "AutoHotkey.Interop >= 1.0.0.1", "Microsoft.Management.Infrastructure >= 2.0.0", "Microsoft.NETCore.Windows.ApiSets >= 1.0.1", "Microsoft.NETCore.Windows.ApiSets-x64 >= 1.0.0", "NAudio >= 2.0.1", "NETStandard.Library >= 2.0.3", + "NLog >= 4.7.10", + "NLog.Extensions.Logging >= 1.7.3", + "Serilog >= 2.10.0", "SimpleWifi.netstandard >= 2.0.0", - "System.Management >= 5.0.0" + "System.Management >= 5.0.0", + "System.ServiceProcess.ServiceController >= 5.0.0", + "VPNConnector >= 1.0.0" ] }, "packageFolders": { @@ -1877,11 +2378,11 @@ "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\NetWork.csproj", + "projectUniqueName": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\NetWork.csproj", "projectName": "NetWork", - "projectPath": "C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\NetWork.csproj", + "projectPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\NetWork.csproj", "packagesPath": "C:\\Users\\סארט\\.nuget\\packages\\", - "outputPath": "C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\obj\\", + "outputPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" @@ -1896,7 +2397,6 @@ ], "sources": { "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Users\\סארט\\source\\repos\\NetWork": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -1919,9 +2419,9 @@ "target": "Package", "version": "[1.0.1, )" }, - "DotRas.for.Win8": { + "AutoHotkey.Interop": { "target": "Package", - "version": "[1.3.0, )" + "version": "[1.0.0.1, )" }, "Microsoft.Management.Infrastructure": { "target": "Package", @@ -1943,6 +2443,18 @@ "target": "Package", "version": "[2.0.3, )" }, + "NLog": { + "target": "Package", + "version": "[4.7.10, )" + }, + "NLog.Extensions.Logging": { + "target": "Package", + "version": "[1.7.3, )" + }, + "Serilog": { + "target": "Package", + "version": "[2.10.0, )" + }, "SimpleWifi.netstandard": { "target": "Package", "version": "[2.0.0, )" @@ -1950,6 +2462,14 @@ "System.Management": { "target": "Package", "version": "[5.0.0, )" + }, + "System.ServiceProcess.ServiceController": { + "target": "Package", + "version": "[5.0.0, )" + }, + "VPNConnector": { + "target": "Package", + "version": "[1.0.0, )" } }, "imports": [ @@ -1962,16 +2482,32 @@ ], "assetTargetFallback": true, "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.NETCore.App.Host.win-x64", + "version": "[5.0.8, 5.0.8]" + } + ], "frameworkReferences": { "Microsoft.NETCore.App": { "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100-preview.7.21379.14\\RuntimeIdentifierGraph.json" } } }, "logs": [ + { + "code": "NU1701", + "level": "Warning", + "warningLevel": 1, + "message": "Package 'AutoHotkey.Interop 1.0.0.1' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8' instead of the project target framework 'net5.0-windows7.0'. This package may not be fully compatible with your project.", + "libraryId": "AutoHotkey.Interop", + "targetGraphs": [ + "net5.0-windows7.0" + ] + }, { "code": "NU1701", "level": "Warning", @@ -1981,6 +2517,16 @@ "targetGraphs": [ "net5.0-windows7.0" ] + }, + { + "code": "NU1701", + "level": "Warning", + "warningLevel": 1, + "message": "Package 'VPNConnector 1.0.0' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8' instead of the project target framework 'net5.0-windows7.0'. This package may not be fully compatible with your project.", + "libraryId": "VPNConnector", + "targetGraphs": [ + "net5.0-windows7.0" + ] } ] } \ No newline at end of file diff --git a/NetWork/NetWork/obj/project.nuget.cache b/NetWork/NetWork/obj/project.nuget.cache index 7355b67..efb51a6 100644 --- a/NetWork/NetWork/obj/project.nuget.cache +++ b/NetWork/NetWork/obj/project.nuget.cache @@ -1,11 +1,19 @@ { "version": 2, - "dgSpecHash": "eKrNSb5czMQrjXGP2pUE43ZmZzGO2c2J1hQ6OR0QcHyrRZp5+qziN7735xc7iLHR98jr2eXTcf/C4o0hrMzwDw==", + "dgSpecHash": "skcxFjD2eHk0qQQqgE5QH/IOZNA+5BU5TIGcoX2lHDNCFmfxwQooUwg3WWRTK9jEyDwGMZj9uS4KuLwExgdqTA==", "success": true, - "projectFilePath": "C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\NetWork.csproj", + "projectFilePath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\NetWork.csproj", "expectedPackageFiles": [ "C:\\Users\\סארט\\.nuget\\packages\\audiocontrol.x64\\1.0.1\\audiocontrol.x64.1.0.1.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\autohotkey.interop\\1.0.0.1\\autohotkey.interop.1.0.0.1.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\dotras.for.win8\\1.3.0\\dotras.for.win8.1.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\5.0.0\\microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.0\\microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\5.0.0\\microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.extensions.options\\5.0.0\\microsoft.extensions.options.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.extensions.primitives\\5.0.0\\microsoft.extensions.primitives.5.0.0.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\microsoft.management.infrastructure\\2.0.0\\microsoft.management.infrastructure.2.0.0.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\microsoft.management.infrastructure.runtime.unix\\2.0.0\\microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\microsoft.management.infrastructure.runtime.win\\2.0.0\\microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512", @@ -21,13 +29,30 @@ "C:\\Users\\סארט\\.nuget\\packages\\naudio.winforms\\2.0.1\\naudio.winforms.2.0.1.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\naudio.winmm\\2.0.1\\naudio.winmm.2.0.1.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\netstandard.library\\2.0.3\\netstandard.library.2.0.3.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\nlog\\4.7.10\\nlog.4.7.10.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\nlog.extensions.logging\\1.7.3\\nlog.extensions.logging.1.7.3.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\serilog\\2.10.0\\serilog.2.10.0.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\simplewifi.netstandard\\2.0.0\\simplewifi.netstandard.2.0.0.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\system.codedom\\5.0.0\\system.codedom.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.diagnostics.eventlog\\5.0.0\\system.diagnostics.eventlog.5.0.0.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\system.management\\5.0.0\\system.management.5.0.0.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\system.security.accesscontrol\\5.0.0\\system.security.accesscontrol.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512" + "C:\\Users\\סארט\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.serviceprocess.servicecontroller\\5.0.0\\system.serviceprocess.servicecontroller.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\vpnconnector\\1.0.0\\vpnconnector.1.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.netcore.app.host.win-x64\\5.0.8\\microsoft.netcore.app.host.win-x64.5.0.8.nupkg.sha512" ], "logs": [ + { + "code": "NU1701", + "level": "Warning", + "warningLevel": 1, + "message": "Package 'AutoHotkey.Interop 1.0.0.1' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8' instead of the project target framework 'net5.0-windows7.0'. This package may not be fully compatible with your project.", + "libraryId": "AutoHotkey.Interop", + "targetGraphs": [ + "net5.0-windows7.0" + ] + }, { "code": "NU1701", "level": "Warning", @@ -37,6 +62,16 @@ "targetGraphs": [ "net5.0-windows7.0" ] + }, + { + "code": "NU1701", + "level": "Warning", + "warningLevel": 1, + "message": "Package 'VPNConnector 1.0.0' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8' instead of the project target framework 'net5.0-windows7.0'. This package may not be fully compatible with your project.", + "libraryId": "VPNConnector", + "targetGraphs": [ + "net5.0-windows7.0" + ] } ] } \ No newline at end of file diff --git a/NetWork/NetWork/obj/publish/win-x64/NetWork.csproj.nuget.dgspec.json b/NetWork/NetWork/obj/publish/win-x64/NetWork.csproj.nuget.dgspec.json index ba84677..7c658c1 100644 --- a/NetWork/NetWork/obj/publish/win-x64/NetWork.csproj.nuget.dgspec.json +++ b/NetWork/NetWork/obj/publish/win-x64/NetWork.csproj.nuget.dgspec.json @@ -1,17 +1,17 @@ { "format": 1, "restore": { - "C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\NetWork.csproj": {} + "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\NetWork.csproj": {} }, "projects": { - "C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\NetWork.csproj": { + "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\NetWork.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\NetWork.csproj", + "projectUniqueName": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\NetWork.csproj", "projectName": "NetWork", - "projectPath": "C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\NetWork.csproj", + "projectPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\NetWork.csproj", "packagesPath": "C:\\Users\\סארט\\.nuget\\packages\\", - "outputPath": "C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\obj\\publish\\win-x64\\", + "outputPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\obj\\publish\\win-x64\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" @@ -26,7 +26,6 @@ ], "sources": { "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Users\\סארט\\source\\repos\\NetWork": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -49,10 +48,6 @@ "target": "Package", "version": "[1.0.1, )" }, - "DotRas.for.Win8": { - "target": "Package", - "version": "[1.3.0, )" - }, "Microsoft.Management.Infrastructure": { "target": "Package", "version": "[2.0.0, )" @@ -73,6 +68,18 @@ "target": "Package", "version": "[2.0.3, )" }, + "NLog": { + "target": "Package", + "version": "[4.7.10, )" + }, + "NLog.Extensions.Logging": { + "target": "Package", + "version": "[1.7.3, )" + }, + "Serilog": { + "target": "Package", + "version": "[2.10.0, )" + }, "SimpleWifi.netstandard": { "target": "Package", "version": "[2.0.0, )" @@ -80,6 +87,10 @@ "System.Management": { "target": "Package", "version": "[5.0.0, )" + }, + "VPNConnector": { + "target": "Package", + "version": "[1.0.0, )" } }, "imports": [ @@ -95,15 +106,15 @@ "downloadDependencies": [ { "name": "Microsoft.AspNetCore.App.Runtime.win-x64", - "version": "[5.0.7, 5.0.7]" + "version": "[5.0.8, 5.0.8]" }, { "name": "Microsoft.NETCore.App.Runtime.win-x64", - "version": "[5.0.7, 5.0.7]" + "version": "[5.0.8, 5.0.8]" }, { "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64", - "version": "[5.0.7, 5.0.7]" + "version": "[5.0.8, 5.0.8]" } ], "frameworkReferences": { @@ -111,7 +122,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.302\\RuntimeIdentifierGraph.json" } }, "runtimes": { diff --git a/NetWork/NetWork/obj/publish/win-x64/project.assets.json b/NetWork/NetWork/obj/publish/win-x64/project.assets.json index 3752995..b9e6599 100644 --- a/NetWork/NetWork/obj/publish/win-x64/project.assets.json +++ b/NetWork/NetWork/obj/publish/win-x64/project.assets.json @@ -17,6 +17,85 @@ "lib/net40/DotRas.dll": {} } }, + "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0" + }, + "compile": { + "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "5.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Logging.Abstractions": "5.0.0", + "Microsoft.Extensions.Options": "5.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Options/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Primitives": "5.0.0" + }, + "compile": { + "lib/net5.0/Microsoft.Extensions.Options.dll": {} + }, + "runtime": { + "lib/net5.0/Microsoft.Extensions.Options.dll": {} + } + }, + "Microsoft.Extensions.Primitives/5.0.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {} + } + }, "Microsoft.Management.Infrastructure/2.0.0": { "type": "package", "dependencies": { @@ -1007,6 +1086,38 @@ "build/netstandard2.0/NETStandard.Library.targets": {} } }, + "NLog/4.7.10": { + "type": "package", + "compile": { + "lib/netstandard2.0/NLog.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NLog.dll": {} + } + }, + "NLog.Extensions.Logging/1.7.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "5.0.0", + "Microsoft.Extensions.Logging": "5.0.0", + "NLog": "4.7.10" + }, + "compile": { + "lib/net5.0/NLog.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/net5.0/NLog.Extensions.Logging.dll": {} + } + }, + "Serilog/2.10.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/Serilog.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Serilog.dll": {} + } + }, "SimpleWifi.netstandard/2.0.0": { "type": "package", "compile": { @@ -1082,6 +1193,18 @@ "rid": "win" } } + }, + "VPNConnector/1.0.0": { + "type": "package", + "dependencies": { + "DotRas.for.Win8": "1.3.0" + }, + "compile": { + "lib/net452/VPNConnector.dll": {} + }, + "runtime": { + "lib/net452/VPNConnector.dll": {} + } } }, "net5.0-windows7.0/win-x64": { @@ -1100,6 +1223,85 @@ "lib/net40/DotRas.dll": {} } }, + "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0" + }, + "compile": { + "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "5.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Logging.Abstractions": "5.0.0", + "Microsoft.Extensions.Options": "5.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Options/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Primitives": "5.0.0" + }, + "compile": { + "lib/net5.0/Microsoft.Extensions.Options.dll": {} + }, + "runtime": { + "lib/net5.0/Microsoft.Extensions.Options.dll": {} + } + }, + "Microsoft.Extensions.Primitives/5.0.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {} + } + }, "Microsoft.Management.Infrastructure/2.0.0": { "type": "package", "dependencies": { @@ -1254,6 +1456,38 @@ "build/netstandard2.0/NETStandard.Library.targets": {} } }, + "NLog/4.7.10": { + "type": "package", + "compile": { + "lib/netstandard2.0/NLog.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NLog.dll": {} + } + }, + "NLog.Extensions.Logging/1.7.3": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "5.0.0", + "Microsoft.Extensions.Logging": "5.0.0", + "NLog": "4.7.10" + }, + "compile": { + "lib/net5.0/NLog.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/net5.0/NLog.Extensions.Logging.dll": {} + } + }, + "Serilog/2.10.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/Serilog.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Serilog.dll": {} + } + }, "SimpleWifi.netstandard/2.0.0": { "type": "package", "compile": { @@ -1307,6 +1541,18 @@ "runtime": { "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {} } + }, + "VPNConnector/1.0.0": { + "type": "package", + "dependencies": { + "DotRas.for.Win8": "1.3.0" + }, + "compile": { + "lib/net452/VPNConnector.dll": {} + }, + "runtime": { + "lib/net452/VPNConnector.dll": {} + } } } }, @@ -1341,6 +1587,156 @@ "lib/net40/DotRas.xml" ] }, + "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { + "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/5.0.0": { + "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.DependencyInjection.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.xml", + "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { + "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Logging/5.0.0": { + "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==", + "type": "package", + "path": "microsoft.extensions.logging/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.dll", + "lib/net461/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.5.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/5.0.0": { + "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Options/5.0.0": { + "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==", + "type": "package", + "path": "microsoft.extensions.options/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Options.dll", + "lib/net461/Microsoft.Extensions.Options.xml", + "lib/net5.0/Microsoft.Extensions.Options.dll", + "lib/net5.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.5.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Extensions.Primitives/5.0.0": { + "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==", + "type": "package", + "path": "microsoft.extensions.primitives/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Primitives.dll", + "lib/net461/Microsoft.Extensions.Primitives.xml", + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll", + "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.5.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, "Microsoft.Management.Infrastructure/2.0.0": { "sha512": "IaKZRNBBv3sdrmBWd+aqwHq8cVHk/3WgWFAN/dt40MRY9rbtHiDfTTmaEN0tGTmQqGCGDo/ncntA8MvFMvcsRw==", "type": "package", @@ -1916,6 +2312,89 @@ "netstandard.library.nuspec" ] }, + "NLog/4.7.10": { + "sha512": "rcegW7kYOCjl7wX0SzsqpPBqnJ51JKi1WkYb6QBVX0Wc5IgH19Pv4t/co+T0s06OS0Ne44xgkY/mHg0PdrmJow==", + "type": "package", + "path": "nlog/4.7.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/monoandroid44/NLog.dll", + "lib/monoandroid44/NLog.xml", + "lib/net35/NLog.dll", + "lib/net35/NLog.xml", + "lib/net40-client/NLog.dll", + "lib/net40-client/NLog.xml", + "lib/net45/NLog.dll", + "lib/net45/NLog.xml", + "lib/netstandard1.3/NLog.dll", + "lib/netstandard1.3/NLog.xml", + "lib/netstandard1.5/NLog.dll", + "lib/netstandard1.5/NLog.xml", + "lib/netstandard2.0/NLog.dll", + "lib/netstandard2.0/NLog.xml", + "lib/sl4/NLog.dll", + "lib/sl4/NLog.xml", + "lib/sl5/NLog.dll", + "lib/sl5/NLog.xml", + "lib/wp8/NLog.dll", + "lib/wp8/NLog.xml", + "lib/xamarinios10/NLog.dll", + "lib/xamarinios10/NLog.xml", + "nlog.4.7.10.nupkg.sha512", + "nlog.nuspec" + ] + }, + "NLog.Extensions.Logging/1.7.3": { + "sha512": "7RvUvGd9Ad37pNedjPHbCUroscLGuChLBo0OBveGp92vIpEHLZm/in+Ydd+c9qpv1XMQQIx7yZv1F5qyy/AxHQ==", + "type": "package", + "path": "nlog.extensions.logging/1.7.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "N.png", + "lib/net451/NLog.Extensions.Logging.dll", + "lib/net451/NLog.Extensions.Logging.xml", + "lib/net461/NLog.Extensions.Logging.dll", + "lib/net461/NLog.Extensions.Logging.xml", + "lib/net5.0/NLog.Extensions.Logging.dll", + "lib/net5.0/NLog.Extensions.Logging.xml", + "lib/netcoreapp3.0/NLog.Extensions.Logging.dll", + "lib/netcoreapp3.0/NLog.Extensions.Logging.xml", + "lib/netstandard1.3/NLog.Extensions.Logging.dll", + "lib/netstandard1.3/NLog.Extensions.Logging.xml", + "lib/netstandard1.5/NLog.Extensions.Logging.dll", + "lib/netstandard1.5/NLog.Extensions.Logging.xml", + "lib/netstandard2.0/NLog.Extensions.Logging.dll", + "lib/netstandard2.0/NLog.Extensions.Logging.xml", + "nlog.extensions.logging.1.7.3.nupkg.sha512", + "nlog.extensions.logging.nuspec" + ] + }, + "Serilog/2.10.0": { + "sha512": "+QX0hmf37a0/OZLxM3wL7V6/ADvC1XihXN4Kq/p6d8lCPfgkRdiuhbWlMaFjR9Av0dy5F0+MBeDmDdRZN/YwQA==", + "type": "package", + "path": "serilog/2.10.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net45/Serilog.dll", + "lib/net45/Serilog.xml", + "lib/net46/Serilog.dll", + "lib/net46/Serilog.xml", + "lib/netstandard1.0/Serilog.dll", + "lib/netstandard1.0/Serilog.xml", + "lib/netstandard1.3/Serilog.dll", + "lib/netstandard1.3/Serilog.xml", + "lib/netstandard2.0/Serilog.dll", + "lib/netstandard2.0/Serilog.xml", + "lib/netstandard2.1/Serilog.dll", + "lib/netstandard2.1/Serilog.xml", + "serilog.2.10.0.nupkg.sha512", + "serilog.nuspec" + ] + }, "SimpleWifi.netstandard/2.0.0": { "sha512": "lJuk2zjX4snKbrxfDnDEwYb8dTFR/UbyMb9umljexOP1nuXjdYXNX3T2+zrdxZue359ZqvHC8aAAGkgWS6PFFw==", "type": "package", @@ -2080,19 +2559,34 @@ "useSharedDesignerContext.txt", "version.txt" ] + }, + "VPNConnector/1.0.0": { + "sha512": "JI8OnCYcrkZ4tB9YTfTBDizCky40A+Xoti+/t/IDuYG9wXyI1/TfkEDA7v17ptybsNKSvtLyyT+HTWW/Bco80Q==", + "type": "package", + "path": "vpnconnector/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/VPNConnector.dll", + "vpnconnector.1.0.0.nupkg.sha512", + "vpnconnector.nuspec" + ] } }, "projectFileDependencyGroups": { "net5.0-windows7.0": [ "AudioControl.x64 >= 1.0.1", - "DotRas.for.Win8 >= 1.3.0", "Microsoft.Management.Infrastructure >= 2.0.0", "Microsoft.NETCore.Windows.ApiSets >= 1.0.1", "Microsoft.NETCore.Windows.ApiSets-x64 >= 1.0.0", "NAudio >= 2.0.1", "NETStandard.Library >= 2.0.3", + "NLog >= 4.7.10", + "NLog.Extensions.Logging >= 1.7.3", + "Serilog >= 2.10.0", "SimpleWifi.netstandard >= 2.0.0", - "System.Management >= 5.0.0" + "System.Management >= 5.0.0", + "VPNConnector >= 1.0.0" ] }, "packageFolders": { @@ -2102,11 +2596,11 @@ "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\NetWork.csproj", + "projectUniqueName": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\NetWork.csproj", "projectName": "NetWork", - "projectPath": "C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\NetWork.csproj", + "projectPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\NetWork.csproj", "packagesPath": "C:\\Users\\סארט\\.nuget\\packages\\", - "outputPath": "C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\obj\\publish\\win-x64\\", + "outputPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\obj\\publish\\win-x64\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" @@ -2121,7 +2615,6 @@ ], "sources": { "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Users\\סארט\\source\\repos\\NetWork": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -2144,10 +2637,6 @@ "target": "Package", "version": "[1.0.1, )" }, - "DotRas.for.Win8": { - "target": "Package", - "version": "[1.3.0, )" - }, "Microsoft.Management.Infrastructure": { "target": "Package", "version": "[2.0.0, )" @@ -2168,6 +2657,18 @@ "target": "Package", "version": "[2.0.3, )" }, + "NLog": { + "target": "Package", + "version": "[4.7.10, )" + }, + "NLog.Extensions.Logging": { + "target": "Package", + "version": "[1.7.3, )" + }, + "Serilog": { + "target": "Package", + "version": "[2.10.0, )" + }, "SimpleWifi.netstandard": { "target": "Package", "version": "[2.0.0, )" @@ -2175,6 +2676,10 @@ "System.Management": { "target": "Package", "version": "[5.0.0, )" + }, + "VPNConnector": { + "target": "Package", + "version": "[1.0.0, )" } }, "imports": [ @@ -2190,15 +2695,15 @@ "downloadDependencies": [ { "name": "Microsoft.AspNetCore.App.Runtime.win-x64", - "version": "[5.0.7, 5.0.7]" + "version": "[5.0.8, 5.0.8]" }, { "name": "Microsoft.NETCore.App.Runtime.win-x64", - "version": "[5.0.7, 5.0.7]" + "version": "[5.0.8, 5.0.8]" }, { "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64", - "version": "[5.0.7, 5.0.7]" + "version": "[5.0.8, 5.0.8]" } ], "frameworkReferences": { @@ -2206,7 +2711,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.302\\RuntimeIdentifierGraph.json" } }, "runtimes": { @@ -2225,6 +2730,16 @@ "targetGraphs": [ "net5.0-windows7.0" ] + }, + { + "code": "NU1701", + "level": "Warning", + "warningLevel": 1, + "message": "Package 'VPNConnector 1.0.0' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8' instead of the project target framework 'net5.0-windows7.0'. This package may not be fully compatible with your project.", + "libraryId": "VPNConnector", + "targetGraphs": [ + "net5.0-windows7.0" + ] } ] } \ No newline at end of file diff --git a/NetWork/NetWork/obj/publish/win-x64/project.nuget.cache b/NetWork/NetWork/obj/publish/win-x64/project.nuget.cache index 0c9754d..798732a 100644 --- a/NetWork/NetWork/obj/publish/win-x64/project.nuget.cache +++ b/NetWork/NetWork/obj/publish/win-x64/project.nuget.cache @@ -1,11 +1,18 @@ { "version": 2, - "dgSpecHash": "9mCmI8FOaH0pdcjAAWd0+EWaSYvweY1t5bscDJCjfYRkqJAwV5WX1fbwcWrIk0QF0klioHiGmrbvej0lS1NFNw==", + "dgSpecHash": "kpzjsCozReCOD+ZITrOvC6GvutUpujiGjqYov+WgbvL5uCqlnnt51gbxNhJKVI4zMQjcOZenB5CVDPxpa14oIA==", "success": true, - "projectFilePath": "C:\\Users\\סארט\\source\\repos\\NetWork\\NetWork\\NetWork.csproj", + "projectFilePath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\NetWork\\NetWork\\NetWork.csproj", "expectedPackageFiles": [ "C:\\Users\\סארט\\.nuget\\packages\\audiocontrol.x64\\1.0.1\\audiocontrol.x64.1.0.1.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\dotras.for.win8\\1.3.0\\dotras.for.win8.1.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\5.0.0\\microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.0\\microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\5.0.0\\microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.extensions.options\\5.0.0\\microsoft.extensions.options.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.extensions.primitives\\5.0.0\\microsoft.extensions.primitives.5.0.0.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\microsoft.management.infrastructure\\2.0.0\\microsoft.management.infrastructure.2.0.0.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\microsoft.management.infrastructure.runtime.unix\\2.0.0\\microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\microsoft.management.infrastructure.runtime.win\\2.0.0\\microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512", @@ -21,14 +28,18 @@ "C:\\Users\\סארט\\.nuget\\packages\\naudio.winforms\\2.0.1\\naudio.winforms.2.0.1.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\naudio.winmm\\2.0.1\\naudio.winmm.2.0.1.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\netstandard.library\\2.0.3\\netstandard.library.2.0.3.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\nlog\\4.7.10\\nlog.4.7.10.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\nlog.extensions.logging\\1.7.3\\nlog.extensions.logging.1.7.3.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\serilog\\2.10.0\\serilog.2.10.0.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\simplewifi.netstandard\\2.0.0\\simplewifi.netstandard.2.0.0.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\system.codedom\\5.0.0\\system.codedom.5.0.0.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\system.management\\5.0.0\\system.management.5.0.0.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\system.security.accesscontrol\\5.0.0\\system.security.accesscontrol.5.0.0.nupkg.sha512", "C:\\Users\\סארט\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\microsoft.netcore.app.runtime.win-x64\\5.0.7\\microsoft.netcore.app.runtime.win-x64.5.0.7.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\microsoft.windowsdesktop.app.runtime.win-x64\\5.0.7\\microsoft.windowsdesktop.app.runtime.win-x64.5.0.7.nupkg.sha512", - "C:\\Users\\סארט\\.nuget\\packages\\microsoft.aspnetcore.app.runtime.win-x64\\5.0.7\\microsoft.aspnetcore.app.runtime.win-x64.5.0.7.nupkg.sha512" + "C:\\Users\\סארט\\.nuget\\packages\\vpnconnector\\1.0.0\\vpnconnector.1.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.netcore.app.runtime.win-x64\\5.0.8\\microsoft.netcore.app.runtime.win-x64.5.0.8.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.windowsdesktop.app.runtime.win-x64\\5.0.8\\microsoft.windowsdesktop.app.runtime.win-x64.5.0.8.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.aspnetcore.app.runtime.win-x64\\5.0.8\\microsoft.aspnetcore.app.runtime.win-x64.5.0.8.nupkg.sha512" ], "logs": [ { @@ -40,6 +51,16 @@ "targetGraphs": [ "net5.0-windows7.0" ] + }, + { + "code": "NU1701", + "level": "Warning", + "warningLevel": 1, + "message": "Package 'VPNConnector 1.0.0' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8' instead of the project target framework 'net5.0-windows7.0'. This package may not be fully compatible with your project.", + "libraryId": "VPNConnector", + "targetGraphs": [ + "net5.0-windows7.0" + ] } ] } \ No newline at end of file diff --git a/NetWork/UpgradeLog.htm b/NetWork/UpgradeLog.htm new file mode 100644 index 0000000..455e6fc Binary files /dev/null and b/NetWork/UpgradeLog.htm differ diff --git a/NetWork/Windows.Common/obj/Debug/Windows.Common.csproj.AssemblyReference.cache b/NetWork/Windows.Common/obj/Debug/Windows.Common.csproj.AssemblyReference.cache index f5e894a..59a348f 100644 Binary files a/NetWork/Windows.Common/obj/Debug/Windows.Common.csproj.AssemblyReference.cache and b/NetWork/Windows.Common/obj/Debug/Windows.Common.csproj.AssemblyReference.cache differ diff --git a/NetWork/Windows.Common/obj/Release/Windows.Common.csproj.AssemblyReference.cache b/NetWork/Windows.Common/obj/Release/Windows.Common.csproj.AssemblyReference.cache new file mode 100644 index 0000000..f5e894a Binary files /dev/null and b/NetWork/Windows.Common/obj/Release/Windows.Common.csproj.AssemblyReference.cache differ diff --git a/Neutral Folder/.vs/Neutral Folder/DesignTimeBuild/.dtbcache.v2 b/Neutral Folder/.vs/Neutral Folder/DesignTimeBuild/.dtbcache.v2 new file mode 100644 index 0000000..807cdd3 Binary files /dev/null and b/Neutral Folder/.vs/Neutral Folder/DesignTimeBuild/.dtbcache.v2 differ diff --git a/Neutral Folder/.vs/Neutral Folder/DesignTimeBuild/desktop.ini b/Neutral Folder/.vs/Neutral Folder/DesignTimeBuild/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/.vs/Neutral Folder/DesignTimeBuild/desktop.ini differ diff --git a/Neutral Folder/.vs/Neutral Folder/desktop.ini b/Neutral Folder/.vs/Neutral Folder/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/.vs/Neutral Folder/desktop.ini differ diff --git a/Neutral Folder/.vs/Neutral Folder/v16/.suo b/Neutral Folder/.vs/Neutral Folder/v16/.suo new file mode 100644 index 0000000..2219080 Binary files /dev/null and b/Neutral Folder/.vs/Neutral Folder/v16/.suo differ diff --git a/Neutral Folder/.vs/Neutral Folder/v16/desktop.ini b/Neutral Folder/.vs/Neutral Folder/v16/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/.vs/Neutral Folder/v16/desktop.ini differ diff --git a/Neutral Folder/.vs/Neutral Folder/v17/.futdcache.v1 b/Neutral Folder/.vs/Neutral Folder/v17/.futdcache.v1 new file mode 100644 index 0000000..6cbe9bd Binary files /dev/null and b/Neutral Folder/.vs/Neutral Folder/v17/.futdcache.v1 differ diff --git a/Neutral Folder/.vs/Neutral Folder/v17/.suo b/Neutral Folder/.vs/Neutral Folder/v17/.suo new file mode 100644 index 0000000..2964af3 Binary files /dev/null and b/Neutral Folder/.vs/Neutral Folder/v17/.suo differ diff --git a/Neutral Folder/.vs/Neutral Folder/v17/desktop.ini b/Neutral Folder/.vs/Neutral Folder/v17/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/.vs/Neutral Folder/v17/desktop.ini differ diff --git a/Neutral Folder/.vs/desktop.ini b/Neutral Folder/.vs/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/.vs/desktop.ini differ diff --git a/Neutral Folder/Neutral Folder.sln b/Neutral Folder/Neutral Folder.sln new file mode 100644 index 0000000..e92f720 --- /dev/null +++ b/Neutral Folder/Neutral Folder.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31424.327 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Neutral Folder", "Neutral Folder\Neutral Folder.csproj", "{5939CD9E-1488-4EA7-BB66-8B505F97C889}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {5939CD9E-1488-4EA7-BB66-8B505F97C889}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5939CD9E-1488-4EA7-BB66-8B505F97C889}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5939CD9E-1488-4EA7-BB66-8B505F97C889}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5939CD9E-1488-4EA7-BB66-8B505F97C889}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {3453FBC1-9C39-4C8E-81A6-B9D3C9AA3621} + EndGlobalSection +EndGlobal diff --git a/Neutral Folder/Neutral Folder/Neutral Folder.csproj b/Neutral Folder/Neutral Folder/Neutral Folder.csproj new file mode 100644 index 0000000..6f94367 --- /dev/null +++ b/Neutral Folder/Neutral Folder/Neutral Folder.csproj @@ -0,0 +1,45 @@ + + + + WinExe + net5.0-windows + Neutral_Folder + + + app.manifest + + + + + tlbimp + 0 + 1 + e34cb9f1-c7f7-424c-be29-027dcc09363a + 0 + false + true + + + + + + + + + + + + True + True + Resources.resx + + + + + + ResXFileCodeGenerator + Resources.Designer.cs + + + + diff --git a/Neutral Folder/Neutral Folder/Neutral Folders.json b/Neutral Folder/Neutral Folder/Neutral Folders.json new file mode 100644 index 0000000..66b8b14 --- /dev/null +++ b/Neutral Folder/Neutral Folder/Neutral Folders.json @@ -0,0 +1,28 @@ +{ + "nf": { + "path": "D:\\nf", + "days": "1357", + "datafile": "[.ShellClassInfo]`r`nInfoTip=זוהי תיקייה ניטרלית אשר הולכת להיעלם ולהיווצר ארבע פעמים בשבוע`r`nIconFile=C:\\Windows\\Icon\\Icons.dll`r`nIconIndex=16`r`n ", + "dontdelete": "dontdelete" + + }, + "Neutral Folder": { + "path": "D:\\Neutral Folder", + "days": "1357", + "datafile": "[.ShellClassInfo]`r`nInfoTip=זוהי תיקייה ניטרלית אשר הולכת להיעלם ולהיווצר ארבע פעמים בשבוע`r`nIconFile=C:\\Windows\\Icon\\Icons.dll`r`nIconIndex=16`r`n ", + "dontdelete": "dontdelete" + + }, + "Slow Neutral Folder": { + "path": "D:\\WaitForIt", + "days": "5", + "datafile": "[.ShellClassInfo]`r`nIconFile=C:\\Windows\\Icon\\Icons.dll`r`nIconIndex=34", + "dontdelete": "dontdelete" + }, + "Force Neutral Folder": { + "path": "D:\\DeleteWhenNeeded", + "datafile": "[.ShellClassInfo]`r`nInfoTip=זוהי תיקייה ניטרלית אשר הולכת להיעלם ולהיווצר רק שיתבקש`r`nIconFile=C:\\Windows\\Icon\\Icons.dll`r`nIconIndex=38`r`n ", + "delete": "deleteme" + + } +} \ No newline at end of file diff --git a/Neutral Folder/Neutral Folder/Program.cs b/Neutral Folder/Neutral Folder/Program.cs new file mode 100644 index 0000000..7437a04 --- /dev/null +++ b/Neutral Folder/Neutral Folder/Program.cs @@ -0,0 +1,131 @@ +using System; +namespace Neutral_Folder +{ + class Program + { + + //public static string J = System.IO.File.ReadAllText("Neutral Folder.json"); + public static dynamic json = Newtonsoft.Json.JsonConvert.DeserializeObject(Neutral_Folder.Properties.Resources.NeutralFolders); + + + static void DeleteFolder(string name) + { + string path = json[name]["path"]; + System.IO.DirectoryInfo directory = new(path); + try + { + System.IO.FileStream fileStream = null; + directory.Delete(true); + } + catch + { + RemoveIni(path); + } + directory.Create(); + directory.Attributes = System.IO.FileAttributes.ReadOnly; + SetFolderData(name); + } + static void RemoveIni(string path) + { + try + { + + foreach (var file in System.IO.Directory.GetFiles(path)) + { + System.IO.File.SetAttributes(file, System.IO.FileAttributes.Normal); + System.IO.File.Delete(file); + } + foreach (var folder in System.IO.Directory.GetDirectories(path)) + { + System.Security.AccessControl.DirectorySecurity directorySecurity = new(folder, System.Security.AccessControl.AccessControlSections.All); + System.Security.Principal.NTAccount nTAccount = new("Administrators"); + System.Security.AccessControl.FileSystemAccessRule fileSystemAccessRule = new(nTAccount, System.Security.AccessControl.FileSystemRights.FullControl, System.Security.AccessControl.AccessControlType.Allow); + directorySecurity.SetAccessRule(fileSystemAccessRule); + + System.IO.Directory.Delete(folder, true); + } + } + catch + { + + } + } + static void SetFolderData(string name) + { + string path = json[name]["path"]; + string desktopini = $"{path}\\desktop.ini"; + string[] dataToWrite = json[name]["datafile"].Value.Split(@"`r`n"); + try + { + System.IO.File.WriteAllLines(desktopini, dataToWrite); + System.IO.File.SetAttributes(desktopini, System.IO.FileAttributes.ReadOnly | System.IO.FileAttributes.Hidden); + + } + catch + { + System.IO.File.SetAttributes(desktopini, System.IO.FileAttributes.Normal); + System.IO.File.Delete(desktopini); + System.IO.File.WriteAllLines(desktopini, dataToWrite); + System.IO.File.SetAttributes(desktopini, System.IO.FileAttributes.ReadOnly | System.IO.FileAttributes.Hidden); + } + } + static bool DeleteToday(string name) + { + string filedelete = $"{json[name]["path"]}\\{json[name]["dontdelete"]}"; + string deleteday = (1 + ((int)DateTime.Today.DayOfWeek)).ToString(); + System.Text.RegularExpressions.Regex isDayIn = new(deleteday); + return (!(System.IO.File.Exists(filedelete)) && (isDayIn.IsMatch(json[name]["days"].Value))); + } + static bool DeleteToday(string name, int day) + { + foreach (var i in json[name]["days"]) + { + if (day == i) + { + return true; + } + } + return false; + } + static void DeleteThisFolder(string name) + { + if (name.Equals("Force Neutral Folder")) + { + if (System.IO.File.Exists(json[name]["delete"].Value)) + { + DeleteFolder(name); + } + else if (!(System.IO.File.Exists(json[name].Value))) + { + DeleteFolder(name); + } + else if ((System.IO.File.Exists(json[name].Value))) + { + System.IO.File.Delete(json[name].Value); + } + + } + else if (DeleteToday(name)) + { + DeleteFolder(name); + } + } + public static void GetScheduledTask(string name) + { + System.Type.GetTypeFromCLSID(Guid.Parse("e34cb9f1-c7f7-424c-be29-027dcc09363a")); + } + static void Main(string[] args) + { + foreach (var k in json) + { + string key = ((Newtonsoft.Json.Linq.JProperty)k).Name; + System.Threading.Thread t = new(new System.Threading.ThreadStart(() => DeleteThisFolder(key))); + t.Start(); + + } + //ConsoleGetScheduledTask(""); + + + } + } +} diff --git a/Neutral Folder/Neutral Folder/Properties/Resources.Designer.cs b/Neutral Folder/Neutral Folder/Properties/Resources.Designer.cs new file mode 100644 index 0000000..2171b35 --- /dev/null +++ b/Neutral Folder/Neutral Folder/Properties/Resources.Designer.cs @@ -0,0 +1,83 @@ +//------------------------------------------------------------------------------ +// +// 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. +// +//------------------------------------------------------------------------------ + +namespace Neutral_Folder.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Neutral_Folder.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to { + /// "nf": { + /// "path": "D:\\nf", + /// "days": "1357", + /// "datafile": "[.ShellClassInfo]`r`nInfoTip=זוהי תיקייה ניטרלית אשר הולכת להיעלם ולהיווצר ארבע פעמים בשבוע`r`nIconFile=C:\\Windows\\Icon\\Icons.dll`r`nIconIndex=16`r`n ", + /// "dontdelete": "dontdelete" + /// + /// }, + /// "Neutral Folder": { + /// "path": "D:\\Neutral Folder", + /// "days": "1357", + /// "datafile": "[.ShellClassInfo]`r`nInfoTip=זוהי תיקייה ניטרלית אשר הולכת להיעלם ולהיווצר ארבע פעמים בשבוע`r`nIconFile=C:\ [rest of string was truncated]";. + /// + internal static string NeutralFolders { + get { + return ResourceManager.GetString("NeutralFolders", resourceCulture); + } + } + } +} diff --git a/Neutral Folder/Neutral Folder/Properties/Resources.resx b/Neutral Folder/Neutral Folder/Properties/Resources.resx new file mode 100644 index 0000000..a153a2a --- /dev/null +++ b/Neutral Folder/Neutral Folder/Properties/Resources.resx @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + ..\resources\neutralfolders.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 + + \ No newline at end of file diff --git a/Neutral Folder/Neutral Folder/Properties/desktop.ini b/Neutral Folder/Neutral Folder/Properties/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/Neutral Folder/Properties/desktop.ini differ diff --git a/Neutral Folder/Neutral Folder/Resources/NeutralFolders.json b/Neutral Folder/Neutral Folder/Resources/NeutralFolders.json new file mode 100644 index 0000000..66b8b14 --- /dev/null +++ b/Neutral Folder/Neutral Folder/Resources/NeutralFolders.json @@ -0,0 +1,28 @@ +{ + "nf": { + "path": "D:\\nf", + "days": "1357", + "datafile": "[.ShellClassInfo]`r`nInfoTip=זוהי תיקייה ניטרלית אשר הולכת להיעלם ולהיווצר ארבע פעמים בשבוע`r`nIconFile=C:\\Windows\\Icon\\Icons.dll`r`nIconIndex=16`r`n ", + "dontdelete": "dontdelete" + + }, + "Neutral Folder": { + "path": "D:\\Neutral Folder", + "days": "1357", + "datafile": "[.ShellClassInfo]`r`nInfoTip=זוהי תיקייה ניטרלית אשר הולכת להיעלם ולהיווצר ארבע פעמים בשבוע`r`nIconFile=C:\\Windows\\Icon\\Icons.dll`r`nIconIndex=16`r`n ", + "dontdelete": "dontdelete" + + }, + "Slow Neutral Folder": { + "path": "D:\\WaitForIt", + "days": "5", + "datafile": "[.ShellClassInfo]`r`nIconFile=C:\\Windows\\Icon\\Icons.dll`r`nIconIndex=34", + "dontdelete": "dontdelete" + }, + "Force Neutral Folder": { + "path": "D:\\DeleteWhenNeeded", + "datafile": "[.ShellClassInfo]`r`nInfoTip=זוהי תיקייה ניטרלית אשר הולכת להיעלם ולהיווצר רק שיתבקש`r`nIconFile=C:\\Windows\\Icon\\Icons.dll`r`nIconIndex=38`r`n ", + "delete": "deleteme" + + } +} \ No newline at end of file diff --git a/Neutral Folder/Neutral Folder/Resources/TextFile1.txt b/Neutral Folder/Neutral Folder/Resources/TextFile1.txt new file mode 100644 index 0000000..e69de29 diff --git a/Neutral Folder/Neutral Folder/Resources/desktop.ini b/Neutral Folder/Neutral Folder/Resources/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/Neutral Folder/Resources/desktop.ini differ diff --git a/Neutral Folder/Neutral Folder/app.manifest b/Neutral Folder/Neutral Folder/app.manifest new file mode 100644 index 0000000..438ee0d --- /dev/null +++ b/Neutral Folder/Neutral Folder/app.manifest @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Neutral Folder/Neutral Folder/bin/Debug/desktop.ini b/Neutral Folder/Neutral Folder/bin/Debug/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/desktop.ini differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0-windows/Neutral Folder.deps.json b/Neutral Folder/Neutral Folder/bin/Debug/net5.0-windows/Neutral Folder.deps.json new file mode 100644 index 0000000..5ac76c5 --- /dev/null +++ b/Neutral Folder/Neutral Folder/bin/Debug/net5.0-windows/Neutral Folder.deps.json @@ -0,0 +1,85 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v5.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v5.0": { + "Neutral Folder/1.0.0": { + "dependencies": { + "Newtonsoft.Json": "13.0.1", + "System.IO.FileSystem.AccessControl": "5.0.0", + "System.Security.AccessControl": "5.0.0" + }, + "runtime": { + "Neutral Folder.dll": {} + } + }, + "Microsoft.NETCore.Platforms/5.0.0": {}, + "Newtonsoft.Json/13.0.1": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" + } + } + }, + "System.IO.FileSystem.AccessControl/5.0.0": { + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "System.Security.AccessControl/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "System.Security.Principal.Windows/5.0.0": {} + } + }, + "libraries": { + "Neutral Folder/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "path": "microsoft.netcore.platforms/5.0.0", + "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + }, + "System.IO.FileSystem.AccessControl/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SxHB3nuNrpptVk+vZ/F+7OHEpoHUIKKMl02bUmYHQr1r+glbZQxs7pRtsf4ENO29TVm2TH3AEeep2fJcy92oYw==", + "path": "system.io.filesystem.accesscontrol/5.0.0", + "hashPath": "system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512" + }, + "System.Security.AccessControl/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", + "path": "system.security.accesscontrol/5.0.0", + "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "path": "system.security.principal.windows/5.0.0", + "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0-windows/Neutral Folder.dll b/Neutral Folder/Neutral Folder/bin/Debug/net5.0-windows/Neutral Folder.dll new file mode 100644 index 0000000..24bfcde Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0-windows/Neutral Folder.dll differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0-windows/Neutral Folder.exe b/Neutral Folder/Neutral Folder/bin/Debug/net5.0-windows/Neutral Folder.exe new file mode 100644 index 0000000..65abdf3 Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0-windows/Neutral Folder.exe differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0-windows/Neutral Folder.pdb b/Neutral Folder/Neutral Folder/bin/Debug/net5.0-windows/Neutral Folder.pdb new file mode 100644 index 0000000..14fe22a Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0-windows/Neutral Folder.pdb differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0-windows/Neutral Folder.runtimeconfig.dev.json b/Neutral Folder/Neutral Folder/bin/Debug/net5.0-windows/Neutral Folder.runtimeconfig.dev.json new file mode 100644 index 0000000..c1d81ac --- /dev/null +++ b/Neutral Folder/Neutral Folder/bin/Debug/net5.0-windows/Neutral Folder.runtimeconfig.dev.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "C:\\Users\\סארט\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\סארט\\.nuget\\packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ] + } +} \ No newline at end of file diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0-windows/Neutral Folder.runtimeconfig.json b/Neutral Folder/Neutral Folder/bin/Debug/net5.0-windows/Neutral Folder.runtimeconfig.json new file mode 100644 index 0000000..a8e7e82 --- /dev/null +++ b/Neutral Folder/Neutral Folder/bin/Debug/net5.0-windows/Neutral Folder.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net5.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "5.0.0" + } + } +} \ No newline at end of file diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0-windows/Newtonsoft.Json.dll b/Neutral Folder/Neutral Folder/bin/Debug/net5.0-windows/Newtonsoft.Json.dll new file mode 100644 index 0000000..1ffeabe Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0-windows/Newtonsoft.Json.dll differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0-windows/desktop.ini b/Neutral Folder/Neutral Folder/bin/Debug/net5.0-windows/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0-windows/desktop.ini differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0-windows/ref/Neutral Folder.dll b/Neutral Folder/Neutral Folder/bin/Debug/net5.0-windows/ref/Neutral Folder.dll new file mode 100644 index 0000000..d9ec330 Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0-windows/ref/Neutral Folder.dll differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0-windows/ref/desktop.ini b/Neutral Folder/Neutral Folder/bin/Debug/net5.0-windows/ref/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0-windows/ref/desktop.ini differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0/Microsoft.Win32.TaskScheduler.dll b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/Microsoft.Win32.TaskScheduler.dll new file mode 100644 index 0000000..3544a5d Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/Microsoft.Win32.TaskScheduler.dll differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0/Neutral Folder.deps.json b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/Neutral Folder.deps.json new file mode 100644 index 0000000..5ac76c5 --- /dev/null +++ b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/Neutral Folder.deps.json @@ -0,0 +1,85 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v5.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v5.0": { + "Neutral Folder/1.0.0": { + "dependencies": { + "Newtonsoft.Json": "13.0.1", + "System.IO.FileSystem.AccessControl": "5.0.0", + "System.Security.AccessControl": "5.0.0" + }, + "runtime": { + "Neutral Folder.dll": {} + } + }, + "Microsoft.NETCore.Platforms/5.0.0": {}, + "Newtonsoft.Json/13.0.1": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" + } + } + }, + "System.IO.FileSystem.AccessControl/5.0.0": { + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "System.Security.AccessControl/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "System.Security.Principal.Windows/5.0.0": {} + } + }, + "libraries": { + "Neutral Folder/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "path": "microsoft.netcore.platforms/5.0.0", + "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + }, + "System.IO.FileSystem.AccessControl/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SxHB3nuNrpptVk+vZ/F+7OHEpoHUIKKMl02bUmYHQr1r+glbZQxs7pRtsf4ENO29TVm2TH3AEeep2fJcy92oYw==", + "path": "system.io.filesystem.accesscontrol/5.0.0", + "hashPath": "system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512" + }, + "System.Security.AccessControl/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", + "path": "system.security.accesscontrol/5.0.0", + "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "path": "system.security.principal.windows/5.0.0", + "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0/Neutral Folder.dll b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/Neutral Folder.dll new file mode 100644 index 0000000..a41329d Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/Neutral Folder.dll differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0/Neutral Folder.exe b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/Neutral Folder.exe new file mode 100644 index 0000000..65abdf3 Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/Neutral Folder.exe differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0/Neutral Folder.pdb b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/Neutral Folder.pdb new file mode 100644 index 0000000..ee43c5d Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/Neutral Folder.pdb differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0/Neutral Folder.runtimeconfig.dev.json b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/Neutral Folder.runtimeconfig.dev.json new file mode 100644 index 0000000..c1d81ac --- /dev/null +++ b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/Neutral Folder.runtimeconfig.dev.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "C:\\Users\\סארט\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\סארט\\.nuget\\packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ] + } +} \ No newline at end of file diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0/Neutral Folder.runtimeconfig.json b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/Neutral Folder.runtimeconfig.json new file mode 100644 index 0000000..a8e7e82 --- /dev/null +++ b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/Neutral Folder.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net5.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "5.0.0" + } + } +} \ No newline at end of file diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0/Newtonsoft.Json.dll b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/Newtonsoft.Json.dll new file mode 100644 index 0000000..1ffeabe Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/Newtonsoft.Json.dll differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0/System.Diagnostics.EventLog.dll b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/System.Diagnostics.EventLog.dll new file mode 100644 index 0000000..988d1b5 Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/System.Diagnostics.EventLog.dll differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0/de/Microsoft.Win32.TaskScheduler.resources.dll b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/de/Microsoft.Win32.TaskScheduler.resources.dll new file mode 100644 index 0000000..20e6b3e Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/de/Microsoft.Win32.TaskScheduler.resources.dll differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0/de/desktop.ini b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/de/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/de/desktop.ini differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0/desktop.ini b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/desktop.ini differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0/es/Microsoft.Win32.TaskScheduler.resources.dll b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/es/Microsoft.Win32.TaskScheduler.resources.dll new file mode 100644 index 0000000..ca9edfe Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/es/Microsoft.Win32.TaskScheduler.resources.dll differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0/es/desktop.ini b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/es/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/es/desktop.ini differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0/fr/Microsoft.Win32.TaskScheduler.resources.dll b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/fr/Microsoft.Win32.TaskScheduler.resources.dll new file mode 100644 index 0000000..9d52daa Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/fr/Microsoft.Win32.TaskScheduler.resources.dll differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0/fr/desktop.ini b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/fr/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/fr/desktop.ini differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0/it/Microsoft.Win32.TaskScheduler.resources.dll b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/it/Microsoft.Win32.TaskScheduler.resources.dll new file mode 100644 index 0000000..cddcf50 Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/it/Microsoft.Win32.TaskScheduler.resources.dll differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0/it/desktop.ini b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/it/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/it/desktop.ini differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0/pl/Microsoft.Win32.TaskScheduler.resources.dll b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/pl/Microsoft.Win32.TaskScheduler.resources.dll new file mode 100644 index 0000000..1ad3521 Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/pl/Microsoft.Win32.TaskScheduler.resources.dll differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0/pl/desktop.ini b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/pl/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/pl/desktop.ini differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0/ref/Neutral Folder.dll b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/ref/Neutral Folder.dll new file mode 100644 index 0000000..b3d8eb5 Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/ref/Neutral Folder.dll differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0/ref/desktop.ini b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/ref/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/ref/desktop.ini differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0/ru/Microsoft.Win32.TaskScheduler.resources.dll b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/ru/Microsoft.Win32.TaskScheduler.resources.dll new file mode 100644 index 0000000..3a0b43f Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/ru/Microsoft.Win32.TaskScheduler.resources.dll differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0/ru/desktop.ini b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/ru/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/ru/desktop.ini differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0/runtimes/desktop.ini b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/runtimes/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/runtimes/desktop.ini differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0/runtimes/win/desktop.ini b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/runtimes/win/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/runtimes/win/desktop.ini differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0/runtimes/win/lib/desktop.ini b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/runtimes/win/lib/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/runtimes/win/lib/desktop.ini differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll new file mode 100644 index 0000000..bb76446 Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/desktop.ini b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/desktop.ini differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0/zh-CN/Microsoft.Win32.TaskScheduler.resources.dll b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/zh-CN/Microsoft.Win32.TaskScheduler.resources.dll new file mode 100644 index 0000000..0ea6a6f Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/zh-CN/Microsoft.Win32.TaskScheduler.resources.dll differ diff --git a/Neutral Folder/Neutral Folder/bin/Debug/net5.0/zh-CN/desktop.ini b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/zh-CN/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Debug/net5.0/zh-CN/desktop.ini differ diff --git a/Neutral Folder/Neutral Folder/bin/Release/desktop.ini b/Neutral Folder/Neutral Folder/bin/Release/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Release/desktop.ini differ diff --git a/Neutral Folder/Neutral Folder/bin/Release/net5.0/desktop.ini b/Neutral Folder/Neutral Folder/bin/Release/net5.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Release/net5.0/desktop.ini differ diff --git a/Neutral Folder/Neutral Folder/bin/Release/net5.0/ref/desktop.ini b/Neutral Folder/Neutral Folder/bin/Release/net5.0/ref/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/Release/net5.0/ref/desktop.ini differ diff --git a/Neutral Folder/Neutral Folder/bin/desktop.ini b/Neutral Folder/Neutral Folder/bin/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/Neutral Folder/bin/desktop.ini differ diff --git a/Neutral Folder/Neutral Folder/desktop.ini b/Neutral Folder/Neutral Folder/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/Neutral Folder/desktop.ini differ diff --git a/Neutral Folder/Neutral Folder/obj/Debug/desktop.ini b/Neutral Folder/Neutral Folder/obj/Debug/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/Neutral Folder/obj/Debug/desktop.ini differ diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2f7e5ec --- /dev/null +++ b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Interop.TaskScheduler.dll b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Interop.TaskScheduler.dll new file mode 100644 index 0000000..6e52dac Binary files /dev/null and b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Interop.TaskScheduler.dll differ diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.AssemblyInfo.cs b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.AssemblyInfo.cs new file mode 100644 index 0000000..dc77330 --- /dev/null +++ b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Neutral Folder")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Neutral Folder")] +[assembly: System.Reflection.AssemblyTitleAttribute("Neutral Folder")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.AssemblyInfoInputs.cache b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.AssemblyInfoInputs.cache new file mode 100644 index 0000000..5556ca7 --- /dev/null +++ b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +7b34a12d31f614215c6226438db74b09b5e9a405 diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.GeneratedMSBuildEditorConfig.editorconfig b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..69301af --- /dev/null +++ b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Neutral_Folder +build_property.ProjectDir = D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\ diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.assets.cache b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.assets.cache new file mode 100644 index 0000000..7b7dba1 Binary files /dev/null and b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.assets.cache differ diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.csproj.AssemblyReference.cache b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.csproj.AssemblyReference.cache new file mode 100644 index 0000000..204fdef Binary files /dev/null and b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.csproj.AssemblyReference.cache differ diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.csproj.CopyComplete b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.csproj.CoreCompileInputs.cache b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..69f4531 --- /dev/null +++ b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +2b0585c2bff005ce22425c52744b6904acdf52fe diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.csproj.FileListAbsolute.txt b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..da10521 --- /dev/null +++ b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.csproj.FileListAbsolute.txt @@ -0,0 +1,22 @@ +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\bin\Debug\net5.0-windows\Neutral Folder.exe +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\bin\Debug\net5.0-windows\Neutral Folder.deps.json +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\bin\Debug\net5.0-windows\Neutral Folder.runtimeconfig.json +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\bin\Debug\net5.0-windows\Neutral Folder.runtimeconfig.dev.json +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\bin\Debug\net5.0-windows\Neutral Folder.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\bin\Debug\net5.0-windows\ref\Neutral Folder.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\bin\Debug\net5.0-windows\Neutral Folder.pdb +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\bin\Debug\net5.0-windows\Newtonsoft.Json.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0-windows\Neutral Folder.csproj.AssemblyReference.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0-windows\Interop.TaskScheduler.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0-windows\Neutral Folder.csproj.ResolveComReference.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0-windows\Neutral_Folder.Properties.Resources.resources +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0-windows\Neutral Folder.csproj.GenerateResource.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0-windows\Neutral Folder.GeneratedMSBuildEditorConfig.editorconfig +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0-windows\Neutral Folder.AssemblyInfoInputs.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0-windows\Neutral Folder.AssemblyInfo.cs +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0-windows\Neutral Folder.csproj.CoreCompileInputs.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0-windows\Neutral Folder.csproj.CopyComplete +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0-windows\Neutral Folder.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0-windows\ref\Neutral Folder.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0-windows\Neutral Folder.pdb +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0-windows\Neutral Folder.genruntimeconfig.cache diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.csproj.GenerateResource.cache b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.csproj.GenerateResource.cache new file mode 100644 index 0000000..b7b5020 Binary files /dev/null and b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.csproj.GenerateResource.cache differ diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.csproj.ResolveComReference.cache b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.csproj.ResolveComReference.cache new file mode 100644 index 0000000..d5b54c1 Binary files /dev/null and b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.csproj.ResolveComReference.cache differ diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.dll b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.dll new file mode 100644 index 0000000..24bfcde Binary files /dev/null and b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.dll differ diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.genruntimeconfig.cache b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.genruntimeconfig.cache new file mode 100644 index 0000000..1e810bf --- /dev/null +++ b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.genruntimeconfig.cache @@ -0,0 +1 @@ +cc0d55f98955bebd8e84f8cee09f05297e6a2b70 diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.pdb b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.pdb new file mode 100644 index 0000000..14fe22a Binary files /dev/null and b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral Folder.pdb differ diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral_Folder.Properties.Resources.resources b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral_Folder.Properties.Resources.resources new file mode 100644 index 0000000..d4ca263 Binary files /dev/null and b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/Neutral_Folder.Properties.Resources.resources differ diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/apphost.exe b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/apphost.exe new file mode 100644 index 0000000..65abdf3 Binary files /dev/null and b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/apphost.exe differ diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/desktop.ini b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/desktop.ini differ diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/ref/Neutral Folder.dll b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/ref/Neutral Folder.dll new file mode 100644 index 0000000..d9ec330 Binary files /dev/null and b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/ref/Neutral Folder.dll differ diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/ref/desktop.ini b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/ref/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/Neutral Folder/obj/Debug/net5.0-windows/ref/desktop.ini differ diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2f7e5ec --- /dev/null +++ b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Interop.TaskScheduler.dll b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Interop.TaskScheduler.dll new file mode 100644 index 0000000..f1b3ff3 Binary files /dev/null and b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Interop.TaskScheduler.dll differ diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.AssemblyInfo.cs b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.AssemblyInfo.cs new file mode 100644 index 0000000..626f152 --- /dev/null +++ b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Neutral Folder")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Neutral Folder")] +[assembly: System.Reflection.AssemblyTitleAttribute("Neutral Folder")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.AssemblyInfoInputs.cache b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.AssemblyInfoInputs.cache new file mode 100644 index 0000000..4d89bbb --- /dev/null +++ b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +71f58ab0a7f1fb43d7587528ecb0f4afc2545ace diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.GeneratedMSBuildEditorConfig.editorconfig b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d27baa8 --- /dev/null +++ b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Neutral_Folder +build_property.ProjectDir = D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\ diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.assets.cache b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.assets.cache new file mode 100644 index 0000000..d90e7e1 Binary files /dev/null and b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.assets.cache differ diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.csproj.AssemblyReference.cache b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.csproj.AssemblyReference.cache new file mode 100644 index 0000000..204fdef Binary files /dev/null and b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.csproj.AssemblyReference.cache differ diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.csproj.CopyComplete b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.csproj.CoreCompileInputs.cache b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..702784a --- /dev/null +++ b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +22cfe07f6a6e134ddde594b6dfb8b78273883db2 diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.csproj.FileListAbsolute.txt b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..274c07d --- /dev/null +++ b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.csproj.FileListAbsolute.txt @@ -0,0 +1,53 @@ +C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\Neutral Folder.exe +C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\Neutral Folder.deps.json +C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\Neutral Folder.runtimeconfig.json +C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\Neutral Folder.runtimeconfig.dev.json +C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\Neutral Folder.dll +C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\ref\Neutral Folder.dll +C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\Neutral Folder.pdb +C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\Newtonsoft.Json.dll +C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.csproj.AssemblyReference.cache +C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.AssemblyInfoInputs.cache +C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.AssemblyInfo.cs +C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.csproj.CoreCompileInputs.cache +C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.csproj.CopyComplete +C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.dll +C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\obj\Debug\net5.0\ref\Neutral Folder.dll +C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.pdb +C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.genruntimeconfig.cache +C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\System.Diagnostics.EventLog.dll +C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\Microsoft.Win32.TaskScheduler.dll +C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\de\Microsoft.Win32.TaskScheduler.resources.dll +C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\es\Microsoft.Win32.TaskScheduler.resources.dll +C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\fr\Microsoft.Win32.TaskScheduler.resources.dll +C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\it\Microsoft.Win32.TaskScheduler.resources.dll +C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\pl\Microsoft.Win32.TaskScheduler.resources.dll +C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\ru\Microsoft.Win32.TaskScheduler.resources.dll +C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\zh-CN\Microsoft.Win32.TaskScheduler.resources.dll +C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\bin\Debug\net5.0\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.EventLog.dll +C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Interop.TaskScheduler.dll +C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.csproj.ResolveComReference.cache +C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral_Folder.Properties.Resources.resources +C:\Users\סארט\source\repos\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.csproj.GenerateResource.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0\ref\Neutral Folder.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.pdb +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\bin\Debug\net5.0\Neutral Folder.exe +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\bin\Debug\net5.0\Neutral Folder.deps.json +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\bin\Debug\net5.0\Neutral Folder.runtimeconfig.json +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\bin\Debug\net5.0\Neutral Folder.runtimeconfig.dev.json +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\bin\Debug\net5.0\Neutral Folder.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\bin\Debug\net5.0\ref\Neutral Folder.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\bin\Debug\net5.0\Neutral Folder.pdb +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\bin\Debug\net5.0\Newtonsoft.Json.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Interop.TaskScheduler.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.csproj.ResolveComReference.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral_Folder.Properties.Resources.resources +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.csproj.GenerateResource.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.GeneratedMSBuildEditorConfig.editorconfig +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.AssemblyInfoInputs.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.AssemblyInfo.cs +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.csproj.CoreCompileInputs.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.genruntimeconfig.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Neutral Folder\Neutral Folder\obj\Debug\net5.0\Neutral Folder.csproj.AssemblyReference.cache diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.csproj.GenerateResource.cache b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.csproj.GenerateResource.cache new file mode 100644 index 0000000..b7b5020 Binary files /dev/null and b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.csproj.GenerateResource.cache differ diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.csproj.ResolveComReference.cache b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.csproj.ResolveComReference.cache new file mode 100644 index 0000000..d5b54c1 Binary files /dev/null and b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.csproj.ResolveComReference.cache differ diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.dll b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.dll new file mode 100644 index 0000000..a41329d Binary files /dev/null and b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.dll differ diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.genruntimeconfig.cache b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.genruntimeconfig.cache new file mode 100644 index 0000000..157edb8 --- /dev/null +++ b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.genruntimeconfig.cache @@ -0,0 +1 @@ +5a6c019af2cc170af20e870e5e4c2f190cbdc466 diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.pdb b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.pdb new file mode 100644 index 0000000..ee43c5d Binary files /dev/null and b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral Folder.pdb differ diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral_Folder.Properties.Resources.resources b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral_Folder.Properties.Resources.resources new file mode 100644 index 0000000..d4ca263 Binary files /dev/null and b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/Neutral_Folder.Properties.Resources.resources differ diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0/TempPE/Properties.Resources.Designer.cs.dll b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/TempPE/Properties.Resources.Designer.cs.dll new file mode 100644 index 0000000..a311100 Binary files /dev/null and b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/TempPE/Properties.Resources.Designer.cs.dll differ diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0/TempPE/desktop.ini b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/TempPE/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/TempPE/desktop.ini differ diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0/apphost.exe b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/apphost.exe new file mode 100644 index 0000000..65abdf3 Binary files /dev/null and b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/apphost.exe differ diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0/desktop.ini b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/desktop.ini differ diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0/ref/Neutral Folder.dll b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/ref/Neutral Folder.dll new file mode 100644 index 0000000..b3d8eb5 Binary files /dev/null and b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/ref/Neutral Folder.dll differ diff --git a/Neutral Folder/Neutral Folder/obj/Debug/net5.0/ref/desktop.ini b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/ref/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/Neutral Folder/obj/Debug/net5.0/ref/desktop.ini differ diff --git a/Neutral Folder/Neutral Folder/obj/Neutral Folder.csproj.nuget.dgspec.json b/Neutral Folder/Neutral Folder/obj/Neutral Folder.csproj.nuget.dgspec.json new file mode 100644 index 0000000..63ea02a --- /dev/null +++ b/Neutral Folder/Neutral Folder/obj/Neutral Folder.csproj.nuget.dgspec.json @@ -0,0 +1,86 @@ +{ + "format": 1, + "restore": { + "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\Neutral Folder\\Neutral Folder\\Neutral Folder.csproj": {} + }, + "projects": { + "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\Neutral Folder\\Neutral Folder\\Neutral Folder.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\Neutral Folder\\Neutral Folder\\Neutral Folder.csproj", + "projectName": "Neutral Folder", + "projectPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\Neutral Folder\\Neutral Folder\\Neutral Folder.csproj", + "packagesPath": "C:\\Users\\סארט\\.nuget\\packages\\", + "outputPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\Neutral Folder\\Neutral Folder\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\סארט\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0-windows7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0-windows7.0": { + "targetAlias": "net5.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0-windows7.0": { + "targetAlias": "net5.0-windows", + "dependencies": { + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.1, )" + }, + "System.IO.FileSystem.AccessControl": { + "target": "Package", + "version": "[5.0.0, )" + }, + "System.Security.AccessControl": { + "target": "Package", + "version": "[5.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.NETCore.App.Host.win-x64", + "version": "[5.0.8, 5.0.8]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100-preview.7.21379.14\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/Neutral Folder/Neutral Folder/obj/Neutral Folder.csproj.nuget.g.props b/Neutral Folder/Neutral Folder/obj/Neutral Folder.csproj.nuget.g.props new file mode 100644 index 0000000..4d0913f --- /dev/null +++ b/Neutral Folder/Neutral Folder/obj/Neutral Folder.csproj.nuget.g.props @@ -0,0 +1,19 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\סארט\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.0.0 + + + + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/Neutral Folder/Neutral Folder/obj/Neutral Folder.csproj.nuget.g.targets b/Neutral Folder/Neutral Folder/obj/Neutral Folder.csproj.nuget.g.targets new file mode 100644 index 0000000..53cfaa1 --- /dev/null +++ b/Neutral Folder/Neutral Folder/obj/Neutral Folder.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/Neutral Folder/Neutral Folder/obj/Release/desktop.ini b/Neutral Folder/Neutral Folder/obj/Release/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/Neutral Folder/obj/Release/desktop.ini differ diff --git a/Neutral Folder/Neutral Folder/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/Neutral Folder/Neutral Folder/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2f7e5ec --- /dev/null +++ b/Neutral Folder/Neutral Folder/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/Neutral Folder/Neutral Folder/obj/Release/net5.0/Interop.TaskScheduler.dll b/Neutral Folder/Neutral Folder/obj/Release/net5.0/Interop.TaskScheduler.dll new file mode 100644 index 0000000..b8f62f7 Binary files /dev/null and b/Neutral Folder/Neutral Folder/obj/Release/net5.0/Interop.TaskScheduler.dll differ diff --git a/Neutral Folder/Neutral Folder/obj/Release/net5.0/Neutral Folder.AssemblyInfo.cs b/Neutral Folder/Neutral Folder/obj/Release/net5.0/Neutral Folder.AssemblyInfo.cs new file mode 100644 index 0000000..d27a86b --- /dev/null +++ b/Neutral Folder/Neutral Folder/obj/Release/net5.0/Neutral Folder.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Neutral Folder")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Neutral Folder")] +[assembly: System.Reflection.AssemblyTitleAttribute("Neutral Folder")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Neutral Folder/Neutral Folder/obj/Release/net5.0/Neutral Folder.AssemblyInfoInputs.cache b/Neutral Folder/Neutral Folder/obj/Release/net5.0/Neutral Folder.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6c4e50a --- /dev/null +++ b/Neutral Folder/Neutral Folder/obj/Release/net5.0/Neutral Folder.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +7af089049a395219dda7610e1959b46549c39887 diff --git a/Neutral Folder/Neutral Folder/obj/Release/net5.0/Neutral Folder.GeneratedMSBuildEditorConfig.editorconfig b/Neutral Folder/Neutral Folder/obj/Release/net5.0/Neutral Folder.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d7e2983 --- /dev/null +++ b/Neutral Folder/Neutral Folder/obj/Release/net5.0/Neutral Folder.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,8 @@ +is_global = true +build_property.TargetFramework = net5.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.PublishSingleFile = +build_property.IncludeAllContentForSelfExtract = +build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows diff --git a/Neutral Folder/Neutral Folder/obj/Release/net5.0/Neutral Folder.assets.cache b/Neutral Folder/Neutral Folder/obj/Release/net5.0/Neutral Folder.assets.cache new file mode 100644 index 0000000..0d47243 Binary files /dev/null and b/Neutral Folder/Neutral Folder/obj/Release/net5.0/Neutral Folder.assets.cache differ diff --git a/Neutral Folder/Neutral Folder/obj/Release/net5.0/Neutral Folder.csproj.ResolveComReference.cache b/Neutral Folder/Neutral Folder/obj/Release/net5.0/Neutral Folder.csproj.ResolveComReference.cache new file mode 100644 index 0000000..be1c968 Binary files /dev/null and b/Neutral Folder/Neutral Folder/obj/Release/net5.0/Neutral Folder.csproj.ResolveComReference.cache differ diff --git a/Neutral Folder/Neutral Folder/obj/Release/net5.0/desktop.ini b/Neutral Folder/Neutral Folder/obj/Release/net5.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/Neutral Folder/obj/Release/net5.0/desktop.ini differ diff --git a/Neutral Folder/Neutral Folder/obj/Release/net5.0/ref/desktop.ini b/Neutral Folder/Neutral Folder/obj/Release/net5.0/ref/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/Neutral Folder/obj/Release/net5.0/ref/desktop.ini differ diff --git a/Neutral Folder/Neutral Folder/obj/desktop.ini b/Neutral Folder/Neutral Folder/obj/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/Neutral Folder/obj/desktop.ini differ diff --git a/Neutral Folder/Neutral Folder/obj/project.assets.json b/Neutral Folder/Neutral Folder/obj/project.assets.json new file mode 100644 index 0000000..31ddd12 --- /dev/null +++ b/Neutral Folder/Neutral Folder/obj/project.assets.json @@ -0,0 +1,364 @@ +{ + "version": 3, + "targets": { + "net5.0-windows7.0": { + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "System.IO.FileSystem.AccessControl/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.AccessControl/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + } + } + }, + "libraries": { + "Microsoft.NETCore.Platforms/5.0.0": { + "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "type": "package", + "path": "microsoft.netcore.platforms/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Newtonsoft.Json/13.0.1": { + "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "type": "package", + "path": "newtonsoft.json/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "System.IO.FileSystem.AccessControl/5.0.0": { + "sha512": "SxHB3nuNrpptVk+vZ/F+7OHEpoHUIKKMl02bUmYHQr1r+glbZQxs7pRtsf4ENO29TVm2TH3AEeep2fJcy92oYw==", + "type": "package", + "path": "system.io.filesystem.accesscontrol/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.IO.FileSystem.AccessControl.dll", + "lib/net461/System.IO.FileSystem.AccessControl.dll", + "lib/net461/System.IO.FileSystem.AccessControl.xml", + "lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "ref/net46/System.IO.FileSystem.AccessControl.dll", + "ref/net461/System.IO.FileSystem.AccessControl.dll", + "ref/net461/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "ref/netstandard1.3/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "runtimes/win/lib/net46/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512", + "system.io.filesystem.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.AccessControl/5.0.0": { + "sha512": "dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", + "type": "package", + "path": "system.security.accesscontrol/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.xml", + "ref/netstandard1.3/System.Security.AccessControl.dll", + "ref/netstandard1.3/System.Security.AccessControl.xml", + "ref/netstandard1.3/de/System.Security.AccessControl.xml", + "ref/netstandard1.3/es/System.Security.AccessControl.xml", + "ref/netstandard1.3/fr/System.Security.AccessControl.xml", + "ref/netstandard1.3/it/System.Security.AccessControl.xml", + "ref/netstandard1.3/ja/System.Security.AccessControl.xml", + "ref/netstandard1.3/ko/System.Security.AccessControl.xml", + "ref/netstandard1.3/ru/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", + "ref/netstandard2.0/System.Security.AccessControl.dll", + "ref/netstandard2.0/System.Security.AccessControl.xml", + "ref/uap10.0.16299/_._", + "runtimes/win/lib/net46/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.5.0.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal.Windows/5.0.0": { + "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "type": "package", + "path": "system.security.principal.windows/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.5.0.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + } + }, + "projectFileDependencyGroups": { + "net5.0-windows7.0": [ + "Newtonsoft.Json >= 13.0.1", + "System.IO.FileSystem.AccessControl >= 5.0.0", + "System.Security.AccessControl >= 5.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\סארט\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\Neutral Folder\\Neutral Folder\\Neutral Folder.csproj", + "projectName": "Neutral Folder", + "projectPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\Neutral Folder\\Neutral Folder\\Neutral Folder.csproj", + "packagesPath": "C:\\Users\\סארט\\.nuget\\packages\\", + "outputPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\Neutral Folder\\Neutral Folder\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\סארט\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0-windows7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0-windows7.0": { + "targetAlias": "net5.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0-windows7.0": { + "targetAlias": "net5.0-windows", + "dependencies": { + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.1, )" + }, + "System.IO.FileSystem.AccessControl": { + "target": "Package", + "version": "[5.0.0, )" + }, + "System.Security.AccessControl": { + "target": "Package", + "version": "[5.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.NETCore.App.Host.win-x64", + "version": "[5.0.8, 5.0.8]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100-preview.7.21379.14\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/Neutral Folder/Neutral Folder/obj/project.nuget.cache b/Neutral Folder/Neutral Folder/obj/project.nuget.cache new file mode 100644 index 0000000..78ae8e1 --- /dev/null +++ b/Neutral Folder/Neutral Folder/obj/project.nuget.cache @@ -0,0 +1,15 @@ +{ + "version": 2, + "dgSpecHash": "92wDYO+3qi9B4YaUMHMKZa3Pk4r2JmSk/bOPex1Lz1Ywc5NtcwHodLEVHmrbEqydPmwU8i+kgxkQAY0K47nsFA==", + "success": true, + "projectFilePath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\Neutral Folder\\Neutral Folder\\Neutral Folder.csproj", + "expectedPackageFiles": [ + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.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.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.host.win-x64\\5.0.8\\microsoft.netcore.app.host.win-x64.5.0.8.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/Neutral Folder/desktop.ini b/Neutral Folder/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Neutral Folder/desktop.ini differ diff --git a/PowershellScriptHider/.vs/PowershellScriptHider/DesignTimeBuild/.dtbcache.v2 b/PowershellScriptHider/.vs/PowershellScriptHider/DesignTimeBuild/.dtbcache.v2 new file mode 100644 index 0000000..23fff41 Binary files /dev/null and b/PowershellScriptHider/.vs/PowershellScriptHider/DesignTimeBuild/.dtbcache.v2 differ diff --git a/PowershellScriptHider/.vs/PowershellScriptHider/DesignTimeBuild/desktop.ini b/PowershellScriptHider/.vs/PowershellScriptHider/DesignTimeBuild/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/.vs/PowershellScriptHider/DesignTimeBuild/desktop.ini differ diff --git a/PowershellScriptHider/.vs/PowershellScriptHider/desktop.ini b/PowershellScriptHider/.vs/PowershellScriptHider/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/.vs/PowershellScriptHider/desktop.ini differ diff --git a/PowershellScriptHider/.vs/PowershellScriptHider/v16/.suo b/PowershellScriptHider/.vs/PowershellScriptHider/v16/.suo new file mode 100644 index 0000000..0338384 Binary files /dev/null and b/PowershellScriptHider/.vs/PowershellScriptHider/v16/.suo differ diff --git a/PowershellScriptHider/.vs/PowershellScriptHider/v16/desktop.ini b/PowershellScriptHider/.vs/PowershellScriptHider/v16/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/.vs/PowershellScriptHider/v16/desktop.ini differ diff --git a/PowershellScriptHider/.vs/desktop.ini b/PowershellScriptHider/.vs/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/.vs/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider.sln b/PowershellScriptHider/PowershellScriptHider.sln new file mode 100644 index 0000000..585ddeb --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31402.337 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PowershellScriptHider", "PowershellScriptHider\PowershellScriptHider.csproj", "{6460C143-3C00-4D76-B45A-C09C4ABB71DB}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {6460C143-3C00-4D76-B45A-C09C4ABB71DB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6460C143-3C00-4D76-B45A-C09C4ABB71DB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6460C143-3C00-4D76-B45A-C09C4ABB71DB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6460C143-3C00-4D76-B45A-C09C4ABB71DB}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {C4163471-428C-461F-8685-91A833B0CBFC} + EndGlobalSection +EndGlobal diff --git a/PowershellScriptHider/PowershellScriptHider/PowershellScriptHider.csproj b/PowershellScriptHider/PowershellScriptHider/PowershellScriptHider.csproj new file mode 100644 index 0000000..f8c4ce4 --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/PowershellScriptHider.csproj @@ -0,0 +1,15 @@ + + + + Exe + net5.0 + + + + + + + + + + diff --git a/PowershellScriptHider/PowershellScriptHider/Program.cs b/PowershellScriptHider/PowershellScriptHider/Program.cs new file mode 100644 index 0000000..995cb64 --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/Program.cs @@ -0,0 +1,21 @@ +using System; +using Microsoft.Management; +using Microsoft; + +namespace PowershellScriptHider +{ + class Program + { + static void Main(string[] args) + { + //args = new string[](){ @"D:\Drive\טוויקים למחשב\סקריפטוש\Powershell\abbyy shortcuts.ps1", ""}; + System.Management.Automation.PowerShell powerShell = System.Management.Automation.PowerShell.Create(); + //foreach (var arg in args) + //{ + // powerShell.AddCommand(System.IO.File.ReadAllText(arg)); + //} + string s = System.IO.File.ReadAllText(@"D:\Drive\טוויקים למחשב\סקריפטוש\Powershell\abbyy shortcuts.ps1",System.Text.Encoding.UTF8); + powerShell.AddScript(s); + } + } +} diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/Markdig.Signed.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/Markdig.Signed.dll new file mode 100644 index 0000000..2a70d37 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/Markdig.Signed.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/Microsoft.ApplicationInsights.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/Microsoft.ApplicationInsights.dll new file mode 100644 index 0000000..f1d2166 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/Microsoft.ApplicationInsights.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.dll new file mode 100644 index 0000000..8b6f598 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/Microsoft.CodeAnalysis.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/Microsoft.CodeAnalysis.dll new file mode 100644 index 0000000..bfdf0b0 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/Microsoft.CodeAnalysis.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/Microsoft.Win32.Registry.AccessControl.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/Microsoft.Win32.Registry.AccessControl.dll new file mode 100644 index 0000000..dc334e6 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/Microsoft.Win32.Registry.AccessControl.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/Microsoft.Win32.SystemEvents.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..d62f333 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/NJsonSchema.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/NJsonSchema.dll new file mode 100644 index 0000000..36ecf91 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/NJsonSchema.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/Namotion.Reflection.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/Namotion.Reflection.dll new file mode 100644 index 0000000..8cbfb13 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/Namotion.Reflection.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/Newtonsoft.Json.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/Newtonsoft.Json.dll new file mode 100644 index 0000000..b501fb6 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/Newtonsoft.Json.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/PowershellScriptHider.deps.json b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/PowershellScriptHider.deps.json new file mode 100644 index 0000000..2cedd20 --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/PowershellScriptHider.deps.json @@ -0,0 +1,2590 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v5.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v5.0": { + "PowershellScriptHider/1.0.0": { + "dependencies": { + "Microsoft.PowerShell.SDK": "7.1.3", + "System.Management.Automation": "7.1.3" + }, + "runtime": { + "PowershellScriptHider.dll": {} + } + }, + "Markdig.Signed/0.21.1": { + "runtime": { + "lib/netcoreapp3.1/Markdig.Signed.dll": { + "assemblyVersion": "0.21.1.0", + "fileVersion": "0.21.1.0" + } + } + }, + "Microsoft.ApplicationInsights/2.15.0": { + "dependencies": { + "System.Diagnostics.DiagnosticSource": "4.6.0", + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": { + "assemblyVersion": "2.15.0.44797", + "fileVersion": "2.15.0.44797" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.0.0": {}, + "Microsoft.CodeAnalysis.Common/3.7.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.0.0", + "System.Collections.Immutable": "1.5.0", + "System.Memory": "4.5.4", + "System.Reflection.Metadata": "1.6.0", + "System.Runtime.CompilerServices.Unsafe": "5.0.0", + "System.Text.Encoding.CodePages": "5.0.0", + "System.Threading.Tasks.Extensions": "4.5.3" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "3.7.0.0", + "fileVersion": "3.700.20.37502" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/3.7.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "3.7.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "3.7.0.0", + "fileVersion": "3.700.20.37502" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CSharp/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "Microsoft.Management.Infrastructure/2.0.0": { + "dependencies": { + "Microsoft.Management.Infrastructure.Runtime.Unix": "2.0.0", + "Microsoft.Management.Infrastructure.Runtime.Win": "2.0.0" + } + }, + "Microsoft.Management.Infrastructure.CimCmdlets/7.1.3": { + "dependencies": { + "System.Management.Automation": "7.1.3" + }, + "runtimeTargets": { + "runtimes/win/lib/net5.0/Microsoft.Management.Infrastructure.CimCmdlets.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.1.3.0", + "fileVersion": "7.1.3.0" + } + } + }, + "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { + "runtimeTargets": { + "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win-arm", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win-arm", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win-arm64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win-arm64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win10-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win10-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win10-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win10-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win7-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win7-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win7-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win7-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win8-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win8-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win8-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win8-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win81-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win81-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win81-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win81-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm/native/mi.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm/native/miutils.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm64/native/mi.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm64/native/miutils.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win10-x64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x64/native/mi.dll": { + "rid": "win10-x64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x64/native/miutils.dll": { + "rid": "win10-x64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win10-x86", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x86/native/mi.dll": { + "rid": "win10-x86", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x86/native/miutils.dll": { + "rid": "win10-x86", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win7-x64", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win7-x64/native/mi.dll": { + "rid": "win7-x64", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win7-x64/native/miutils.dll": { + "rid": "win7-x64", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win7-x86", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win7-x86/native/mi.dll": { + "rid": "win7-x86", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win7-x86/native/miutils.dll": { + "rid": "win7-x86", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win8-x64/native/mi.dll": { + "rid": "win8-x64", + "assetType": "native", + "fileVersion": "6.2.9200.22812" + }, + "runtimes/win8-x64/native/miutils.dll": { + "rid": "win8-x64", + "assetType": "native", + "fileVersion": "6.2.9200.22812" + }, + "runtimes/win8-x86/native/mi.dll": { + "rid": "win8-x86", + "assetType": "native", + "fileVersion": "6.2.9200.22812" + }, + "runtimes/win8-x86/native/miutils.dll": { + "rid": "win8-x86", + "assetType": "native", + "fileVersion": "6.2.9200.22812" + }, + "runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win81-x64", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + }, + "runtimes/win81-x64/native/mi.dll": { + "rid": "win81-x64", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + }, + "runtimes/win81-x64/native/miutils.dll": { + "rid": "win81-x64", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + }, + "runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win81-x86", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + }, + "runtimes/win81-x86/native/mi.dll": { + "rid": "win81-x86", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + }, + "runtimes/win81-x86/native/miutils.dll": { + "rid": "win81-x86", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + } + } + }, + "Microsoft.NETCore.Platforms/5.0.1": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": {}, + "Microsoft.PowerShell.Commands.Diagnostics/7.1.3": { + "dependencies": { + "System.Management.Automation": "7.1.3" + }, + "runtimeTargets": { + "runtimes/win/lib/net5.0/Microsoft.PowerShell.Commands.Diagnostics.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.1.3.0", + "fileVersion": "7.1.3.0" + } + } + }, + "Microsoft.PowerShell.Commands.Management/7.1.3": { + "dependencies": { + "Microsoft.PowerShell.Security": "7.1.3", + "System.ServiceProcess.ServiceController": "5.0.0" + }, + "runtimeTargets": { + "runtimes/unix/lib/net5.0/Microsoft.PowerShell.Commands.Management.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.1.3.0", + "fileVersion": "7.1.3.0" + }, + "runtimes/win/lib/net5.0/Microsoft.PowerShell.Commands.Management.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.1.3.0", + "fileVersion": "7.1.3.0" + } + } + }, + "Microsoft.PowerShell.Commands.Utility/7.1.3": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "3.7.0", + "Microsoft.PowerShell.MarkdownRender": "7.1.3", + "NJsonSchema": "10.2.2", + "System.Drawing.Common": "5.0.2", + "System.Management.Automation": "7.1.3", + "System.Threading.AccessControl": "5.0.0" + }, + "runtimeTargets": { + "runtimes/unix/lib/net5.0/Microsoft.PowerShell.Commands.Utility.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.1.3.0", + "fileVersion": "7.1.3.0" + }, + "runtimes/win/lib/net5.0/Microsoft.PowerShell.Commands.Utility.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.1.3.0", + "fileVersion": "7.1.3.0" + } + } + }, + "Microsoft.PowerShell.ConsoleHost/7.1.3": { + "dependencies": { + "System.Management.Automation": "7.1.3" + }, + "runtimeTargets": { + "runtimes/unix/lib/net5.0/Microsoft.PowerShell.ConsoleHost.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.1.3.0", + "fileVersion": "7.1.3.0" + }, + "runtimes/win/lib/net5.0/Microsoft.PowerShell.ConsoleHost.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.1.3.0", + "fileVersion": "7.1.3.0" + } + } + }, + "Microsoft.PowerShell.CoreCLR.Eventing/7.1.3": { + "dependencies": { + "System.Diagnostics.EventLog": "5.0.1" + }, + "runtimeTargets": { + "runtimes/win/lib/net5.0/Microsoft.PowerShell.CoreCLR.Eventing.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.1.3.0", + "fileVersion": "7.1.3.0" + } + } + }, + "Microsoft.PowerShell.MarkdownRender/7.1.3": { + "dependencies": { + "Markdig.Signed": "0.21.1", + "System.Management.Automation": "7.1.3" + }, + "runtimeTargets": { + "runtimes/unix/lib/net5.0/Microsoft.PowerShell.MarkdownRender.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.1.3.0", + "fileVersion": "7.1.3.0" + }, + "runtimes/win/lib/net5.0/Microsoft.PowerShell.MarkdownRender.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.1.3.0", + "fileVersion": "7.1.3.0" + } + } + }, + "Microsoft.PowerShell.Native/7.1.0": { + "runtimeTargets": { + "runtimes/linux-arm/native/libpsl-native.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libpsl-native.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libpsl-native.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libmi.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libpsl-native.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libpsrpclient.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx/native/libmi.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx/native/libpsl-native.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx/native/libpsrpclient.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-arm/native/pwrshplugin.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-arm64/native/pwrshplugin.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-x64/native/pwrshplugin.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-x86/native/pwrshplugin.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + } + } + }, + "Microsoft.PowerShell.SDK/7.1.3": { + "dependencies": { + "Microsoft.Management.Infrastructure.CimCmdlets": "7.1.3", + "Microsoft.NETCore.Windows.ApiSets": "1.0.1", + "Microsoft.PowerShell.Commands.Diagnostics": "7.1.3", + "Microsoft.PowerShell.Commands.Management": "7.1.3", + "Microsoft.PowerShell.Commands.Utility": "7.1.3", + "Microsoft.PowerShell.ConsoleHost": "7.1.3", + "Microsoft.PowerShell.Security": "7.1.3", + "Microsoft.WSMan.Management": "7.1.3", + "Microsoft.Windows.Compatibility": "5.0.0", + "System.Data.SqlClient": "4.8.2", + "System.IO.Packaging": "5.0.0", + "System.Management.Automation": "7.1.3", + "System.Net.Http.WinHttpHandler": "5.0.0", + "System.Private.ServiceModel": "4.7.0", + "System.ServiceModel.Duplex": "4.7.0", + "System.ServiceModel.Http": "4.7.0", + "System.ServiceModel.NetTcp": "4.7.0", + "System.ServiceModel.Primitives": "4.7.0", + "System.ServiceModel.Security": "4.7.0", + "System.Text.Encodings.Web": "5.0.1" + }, + "runtimeTargets": { + "runtimes/unix/lib/net5.0/Microsoft.PowerShell.SDK.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.1.3.0", + "fileVersion": "7.1.3.0" + }, + "runtimes/win/lib/net5.0/Microsoft.PowerShell.SDK.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.1.3.0", + "fileVersion": "7.1.3.0" + } + } + }, + "Microsoft.PowerShell.Security/7.1.3": { + "dependencies": { + "System.Management.Automation": "7.1.3" + }, + "runtimeTargets": { + "runtimes/unix/lib/net5.0/Microsoft.PowerShell.Security.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.1.3.0", + "fileVersion": "7.1.3.0" + }, + "runtimes/win/lib/net5.0/Microsoft.PowerShell.Security.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.1.3.0", + "fileVersion": "7.1.3.0" + } + } + }, + "Microsoft.Win32.Registry/5.0.0": { + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "Microsoft.Win32.Registry.AccessControl/5.0.0": { + "dependencies": { + "Microsoft.Win32.Registry": "5.0.0", + "System.Security.AccessControl": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.1" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "Microsoft.Windows.Compatibility/5.0.0": { + "dependencies": { + "Microsoft.Win32.Registry": "5.0.0", + "Microsoft.Win32.Registry.AccessControl": "5.0.0", + "Microsoft.Win32.SystemEvents": "5.0.0", + "System.CodeDom": "5.0.0", + "System.ComponentModel.Composition": "5.0.0", + "System.ComponentModel.Composition.Registration": "5.0.0", + "System.Configuration.ConfigurationManager": "5.0.0", + "System.Data.DataSetExtensions": "4.5.0", + "System.Data.Odbc": "5.0.0", + "System.Data.OleDb": "5.0.0", + "System.Data.SqlClient": "4.8.2", + "System.Diagnostics.EventLog": "5.0.1", + "System.Diagnostics.PerformanceCounter": "5.0.0", + "System.DirectoryServices": "5.0.0", + "System.DirectoryServices.AccountManagement": "5.0.0", + "System.DirectoryServices.Protocols": "5.0.0", + "System.Drawing.Common": "5.0.2", + "System.IO.FileSystem.AccessControl": "5.0.0", + "System.IO.Packaging": "5.0.0", + "System.IO.Pipes.AccessControl": "5.0.0", + "System.IO.Ports": "5.0.0", + "System.Management": "5.0.0", + "System.Reflection.Context": "5.0.0", + "System.Reflection.Emit": "4.7.0", + "System.Reflection.Emit.ILGeneration": "4.7.0", + "System.Reflection.Emit.Lightweight": "4.7.0", + "System.Runtime.Caching": "5.0.0", + "System.Security.AccessControl": "5.0.0", + "System.Security.Cryptography.Cng": "5.0.0", + "System.Security.Cryptography.Pkcs": "5.0.1", + "System.Security.Cryptography.ProtectedData": "5.0.0", + "System.Security.Cryptography.Xml": "5.0.0", + "System.Security.Permissions": "5.0.0", + "System.Security.Principal.Windows": "5.0.0", + "System.ServiceModel.Duplex": "4.7.0", + "System.ServiceModel.Http": "4.7.0", + "System.ServiceModel.NetTcp": "4.7.0", + "System.ServiceModel.Primitives": "4.7.0", + "System.ServiceModel.Security": "4.7.0", + "System.ServiceModel.Syndication": "5.0.0", + "System.ServiceProcess.ServiceController": "5.0.0", + "System.Text.Encoding.CodePages": "5.0.0", + "System.Threading.AccessControl": "5.0.0" + } + }, + "Microsoft.WSMan.Management/7.1.3": { + "dependencies": { + "Microsoft.WSMan.Runtime": "7.1.3", + "System.Management.Automation": "7.1.3", + "System.ServiceProcess.ServiceController": "5.0.0" + }, + "runtimeTargets": { + "runtimes/win/lib/net5.0/Microsoft.WSMan.Management.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.1.3.0", + "fileVersion": "7.1.3.0" + } + } + }, + "Microsoft.WSMan.Runtime/7.1.3": { + "runtimeTargets": { + "runtimes/win/lib/net5.0/Microsoft.WSMan.Runtime.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.1.3.0", + "fileVersion": "7.1.3.0" + } + } + }, + "Namotion.Reflection/1.0.14": { + "dependencies": { + "Microsoft.CSharp": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/Namotion.Reflection.dll": { + "assemblyVersion": "1.0.14.0", + "fileVersion": "1.0.14.0" + } + } + }, + "Newtonsoft.Json/12.0.3": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "12.0.0.0", + "fileVersion": "12.0.3.23909" + } + } + }, + "NJsonSchema/10.2.2": { + "dependencies": { + "Namotion.Reflection": "1.0.14", + "Newtonsoft.Json": "12.0.3" + }, + "runtime": { + "lib/netstandard2.0/NJsonSchema.dll": { + "assemblyVersion": "10.2.2.0", + "fileVersion": "10.2.2.0" + } + } + }, + "runtime.linux-arm.runtime.native.System.IO.Ports/5.0.0-rtm.20519.4": { + "runtimeTargets": { + "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.linux-arm64.runtime.native.System.IO.Ports/5.0.0-rtm.20519.4": { + "runtimeTargets": { + "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.linux-x64.runtime.native.System.IO.Ports/5.0.0-rtm.20519.4": { + "runtimeTargets": { + "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.native.System.IO.Ports/5.0.0": { + "dependencies": { + "runtime.linux-arm.runtime.native.System.IO.Ports": "5.0.0-rtm.20519.4", + "runtime.linux-arm64.runtime.native.System.IO.Ports": "5.0.0-rtm.20519.4", + "runtime.linux-x64.runtime.native.System.IO.Ports": "5.0.0-rtm.20519.4", + "runtime.osx-x64.runtime.native.System.IO.Ports": "5.0.0-rtm.20519.4" + } + }, + "runtime.osx-x64.runtime.native.System.IO.Ports/5.0.0-rtm.20519.4": { + "runtimeTargets": { + "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "System.CodeDom/5.0.0": { + "runtime": { + "lib/netstandard2.0/System.CodeDom.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Immutable/1.5.0": {}, + "System.ComponentModel.Composition/5.0.0": { + "runtime": { + "lib/netcoreapp2.0/System.ComponentModel.Composition.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.ComponentModel.Composition.Registration/5.0.0": { + "dependencies": { + "System.ComponentModel.Composition": "5.0.0", + "System.Reflection.Context": "5.0.0" + }, + "runtime": { + "lib/netstandard2.1/System.ComponentModel.Composition.Registration.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Configuration.ConfigurationManager/5.0.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "5.0.0", + "System.Security.Permissions": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Data.DataSetExtensions/4.5.0": {}, + "System.Data.Odbc/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.1" + }, + "runtime": { + "lib/netstandard2.0/System.Data.Odbc.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/freebsd/lib/netcoreapp2.0/System.Data.Odbc.dll": { + "rid": "freebsd", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + }, + "runtimes/linux/lib/netcoreapp2.0/System.Data.Odbc.dll": { + "rid": "linux", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + }, + "runtimes/osx/lib/netcoreapp2.0/System.Data.Odbc.dll": { + "rid": "osx", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + }, + "runtimes/win/lib/netcoreapp2.0/System.Data.Odbc.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Data.OleDb/5.0.0": { + "dependencies": { + "Microsoft.Win32.Registry": "5.0.0", + "System.Configuration.ConfigurationManager": "5.0.0", + "System.Diagnostics.PerformanceCounter": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Data.OleDb.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Data.OleDb.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Data.SqlClient/4.8.2": { + "dependencies": { + "Microsoft.Win32.Registry": "5.0.0", + "System.Security.Principal.Windows": "5.0.0", + "runtime.native.System.Data.SqlClient.sni": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assemblyVersion": "4.6.1.2", + "fileVersion": "4.700.20.37001" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.6.1.2", + "fileVersion": "4.700.20.37001" + }, + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.6.1.2", + "fileVersion": "4.700.20.37001" + } + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/4.6.0": {}, + "System.Diagnostics.EventLog/5.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.1", + "Microsoft.Win32.Registry": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.EventLog.dll": { + "assemblyVersion": "5.0.0.1", + "fileVersion": "5.0.321.7212" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.Messages.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.1", + "fileVersion": "0.0.0.0" + }, + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.1", + "fileVersion": "5.0.321.7212" + } + } + }, + "System.Diagnostics.PerformanceCounter/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.1", + "Microsoft.Win32.Registry": "5.0.0", + "System.Configuration.ConfigurationManager": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.DirectoryServices/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.1", + "System.IO.FileSystem.AccessControl": "5.0.0", + "System.Security.AccessControl": "5.0.0", + "System.Security.Permissions": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.DirectoryServices.AccountManagement/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.1", + "System.Configuration.ConfigurationManager": "5.0.0", + "System.DirectoryServices": "5.0.0", + "System.DirectoryServices.Protocols": "5.0.0", + "System.IO.FileSystem.AccessControl": "5.0.0", + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.AccountManagement.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.AccountManagement.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.DirectoryServices.Protocols/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.1", + "System.Security.Principal.Windows": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/linux/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { + "rid": "linux", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.20.51904" + }, + "runtimes/osx/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { + "rid": "osx", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.20.51904" + }, + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Drawing.Common/5.0.2": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "5.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assemblyVersion": "5.0.0.2", + "fileVersion": "5.0.421.11614" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "5.0.0.2", + "fileVersion": "5.0.421.11614" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.2", + "fileVersion": "5.0.421.11614" + } + } + }, + "System.Dynamic.Runtime/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.7.0", + "System.Reflection.Emit.ILGeneration": "4.7.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Formats.Asn1/5.0.0": {}, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.AccessControl/5.0.0": { + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "System.IO.Packaging/5.0.0": { + "runtime": { + "lib/netstandard2.0/System.IO.Packaging.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.IO.Pipes.AccessControl/5.0.0": { + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "System.IO.Ports/5.0.0": { + "dependencies": { + "Microsoft.Win32.Registry": "5.0.0", + "runtime.native.System.IO.Ports": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.IO.Ports.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/linux/lib/netstandard2.0/System.IO.Ports.dll": { + "rid": "linux", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + }, + "runtimes/osx/lib/netstandard2.0/System.IO.Ports.dll": { + "rid": "osx", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + }, + "runtimes/win/lib/netstandard2.0/System.IO.Ports.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Expressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.7.0", + "System.Reflection.Emit.ILGeneration": "4.7.0", + "System.Reflection.Emit.Lightweight": "4.7.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Management/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.1", + "Microsoft.Win32.Registry": "5.0.0", + "System.CodeDom": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Management.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Management.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Management.Automation/7.1.3": { + "dependencies": { + "Microsoft.ApplicationInsights": "2.15.0", + "Microsoft.Management.Infrastructure": "2.0.0", + "Microsoft.PowerShell.CoreCLR.Eventing": "7.1.3", + "Microsoft.PowerShell.Native": "7.1.0", + "Microsoft.Win32.Registry.AccessControl": "5.0.0", + "Newtonsoft.Json": "12.0.3", + "System.Configuration.ConfigurationManager": "5.0.0", + "System.DirectoryServices": "5.0.0", + "System.IO.FileSystem.AccessControl": "5.0.0", + "System.Management": "5.0.0", + "System.Runtime.CompilerServices.Unsafe": "5.0.0", + "System.Security.AccessControl": "5.0.0", + "System.Security.Cryptography.Pkcs": "5.0.1", + "System.Security.Permissions": "5.0.0", + "System.Text.Encoding.CodePages": "5.0.0" + }, + "runtimeTargets": { + "runtimes/unix/lib/net5.0/System.Management.Automation.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.1.3.0", + "fileVersion": "7.1.3.0" + }, + "runtimes/win/lib/net5.0/System.Management.Automation.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.1.3.0", + "fileVersion": "7.1.3.0" + } + } + }, + "System.Memory/4.5.4": {}, + "System.Net.Http.WinHttpHandler/5.0.0": { + "runtime": { + "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.ObjectModel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Private.ServiceModel/4.7.0": { + "dependencies": { + "System.Reflection.DispatchProxy": "4.5.0", + "System.Security.Cryptography.Xml": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Private.ServiceModel.dll": { + "assemblyVersion": "4.7.0.0", + "fileVersion": "4.700.19.56502" + } + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Context/5.0.0": { + "runtime": { + "lib/netstandard2.1/System.Reflection.Context.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Reflection.DispatchProxy/4.5.0": {}, + "System.Reflection.Emit/4.7.0": {}, + "System.Reflection.Emit.ILGeneration/4.7.0": {}, + "System.Reflection.Emit.Lightweight/4.7.0": {}, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Metadata/1.6.0": {}, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.1", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Caching/5.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/5.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Security.AccessControl/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.1", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "System.Security.Cryptography.Cng/5.0.0": { + "dependencies": { + "System.Formats.Asn1": "5.0.0" + } + }, + "System.Security.Cryptography.Pkcs/5.0.1": { + "dependencies": { + "System.Formats.Asn1": "5.0.0", + "System.Security.Cryptography.Cng": "5.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": { + "assemblyVersion": "5.0.0.1", + "fileVersion": "5.0.120.57516" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.1", + "fileVersion": "5.0.120.57516" + } + } + }, + "System.Security.Cryptography.ProtectedData/5.0.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Security.Cryptography.Xml/5.0.0": { + "dependencies": { + "System.Security.Cryptography.Pkcs": "5.0.1", + "System.Security.Permissions": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.Xml.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Security.Permissions/5.0.0": { + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Windows.Extensions": "5.0.0" + }, + "runtime": { + "lib/net5.0/System.Security.Permissions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Security.Principal.Windows/5.0.0": {}, + "System.ServiceModel.Duplex/4.7.0": { + "dependencies": { + "System.Private.ServiceModel": "4.7.0", + "System.ServiceModel.Primitives": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.ServiceModel.Duplex.dll": { + "assemblyVersion": "4.7.0.0", + "fileVersion": "4.700.19.56502" + } + } + }, + "System.ServiceModel.Http/4.7.0": { + "dependencies": { + "System.Private.ServiceModel": "4.7.0", + "System.ServiceModel.Primitives": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.ServiceModel.Http.dll": { + "assemblyVersion": "4.7.0.0", + "fileVersion": "4.700.19.56502" + } + } + }, + "System.ServiceModel.NetTcp/4.7.0": { + "dependencies": { + "System.Private.ServiceModel": "4.7.0", + "System.ServiceModel.Primitives": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.ServiceModel.NetTcp.dll": { + "assemblyVersion": "4.7.0.0", + "fileVersion": "4.700.19.56502" + } + } + }, + "System.ServiceModel.Primitives/4.7.0": { + "dependencies": { + "System.Private.ServiceModel": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/System.ServiceModel.Primitives.dll": { + "assemblyVersion": "4.7.0.0", + "fileVersion": "4.700.19.56502" + }, + "lib/netcoreapp2.1/System.ServiceModel.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.700.19.56502" + } + } + }, + "System.ServiceModel.Security/4.7.0": { + "dependencies": { + "System.Private.ServiceModel": "4.7.0", + "System.ServiceModel.Primitives": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.ServiceModel.Security.dll": { + "assemblyVersion": "4.7.0.0", + "fileVersion": "4.700.19.56502" + } + } + }, + "System.ServiceModel.Syndication/5.0.0": { + "runtime": { + "lib/netstandard2.0/System.ServiceModel.Syndication.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.ServiceProcess.ServiceController/5.0.0": { + "dependencies": { + "System.Diagnostics.EventLog": "5.0.1" + }, + "runtime": { + "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.1" + } + }, + "System.Text.Encodings.Web/5.0.1": { + "runtime": { + "lib/netcoreapp3.0/System.Text.Encodings.Web.dll": { + "assemblyVersion": "5.0.0.1", + "fileVersion": "5.0.421.11614" + } + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.AccessControl/5.0.0": { + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Threading.AccessControl.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Threading.AccessControl.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.1", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.5.3": {}, + "System.Windows.Extensions/5.0.0": { + "dependencies": { + "System.Drawing.Common": "5.0.2" + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + } + } + }, + "libraries": { + "PowershellScriptHider/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Markdig.Signed/0.21.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Lg0FPQdKUXai4/XZpQGlQ/HldpHsGnsU6Jd+udJgHj/R7i3ngM2TtR+SZqdHRtgItIHe3dFh2DS/M5qXGSPRiQ==", + "path": "markdig.signed/0.21.1", + "hashPath": "markdig.signed.0.21.1.nupkg.sha512" + }, + "Microsoft.ApplicationInsights/2.15.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tG9WZoFc0BTbkj+UjH4IUp8qkT9NA5st8zvPzlHbU8rJDgPFqZDJ3SSAQajl42jet1ghhJ5ZixsjjqVvwi4kaQ==", + "path": "microsoft.applicationinsights/2.15.0", + "hashPath": "microsoft.applicationinsights.2.15.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Analyzers/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojG5pGAhTPmjxRGTNvuszO3H8XPZqksDwr9xLd4Ae/JBjZZdl6GuoLk7uLMf+o7yl5wO0TAqoWcEKkEWqrZE5g==", + "path": "microsoft.codeanalysis.analyzers/3.0.0", + "hashPath": "microsoft.codeanalysis.analyzers.3.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/3.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SFEdnbw8204hTlde3JePYSIpNX58h/MMXa7LctUsUDigWMR8Ar9gE8LnsLqAIFM0O33JEuQbJ0G4Sat+cPGldw==", + "path": "microsoft.codeanalysis.common/3.7.0", + "hashPath": "microsoft.codeanalysis.common.3.7.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/3.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sKi5PIVy9nVDerkbplY6OQhJBNzEO4XJsMGrnmb6KFEa6K1ulGCHIv6NtDjdUQ/dGrouU3OExc3yzww0COD76w==", + "path": "microsoft.codeanalysis.csharp/3.7.0", + "hashPath": "microsoft.codeanalysis.csharp.3.7.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==", + "path": "microsoft.csharp/4.3.0", + "hashPath": "microsoft.csharp.4.3.0.nupkg.sha512" + }, + "Microsoft.Management.Infrastructure/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IaKZRNBBv3sdrmBWd+aqwHq8cVHk/3WgWFAN/dt40MRY9rbtHiDfTTmaEN0tGTmQqGCGDo/ncntA8MvFMvcsRw==", + "path": "microsoft.management.infrastructure/2.0.0", + "hashPath": "microsoft.management.infrastructure.2.0.0.nupkg.sha512" + }, + "Microsoft.Management.Infrastructure.CimCmdlets/7.1.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IgXC2hL2nerZdLlmV8isXXXUVwC326k/Bodpzm+pxXmOU+D4XPY4789CZLPJFlOVMHR6ARmHE/M+iQpY3jeeGA==", + "path": "microsoft.management.infrastructure.cimcmdlets/7.1.3", + "hashPath": "microsoft.management.infrastructure.cimcmdlets.7.1.3.nupkg.sha512" + }, + "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-p0lslMX5bdWLxO2P7ao+rjAMOB0LEwPYpzvdCQ2OEYgX2NxFpQ8ILvqPGnYlTAb53rT8gu5DyIol1HboHFYfxQ==", + "path": "microsoft.management.infrastructure.runtime.unix/2.0.0", + "hashPath": "microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512" + }, + "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vjBWQeDOjgernkrOdbEgn7M70SF7hof7ORdKPSlL06Uc15+oYdth5dZju9KsgUoti/cwnkZTiwtDx/lRtay0sA==", + "path": "microsoft.management.infrastructure.runtime.win/2.0.0", + "hashPath": "microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/5.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z3YFkbnl1RMj6lb+Bm/2tsZ0cJCULlB4uPOFqlj6dNSm/8feJl4UrXmG6TcZh8ipJQwkAS5I6UCs1FnGog4QZg==", + "path": "microsoft.netcore.platforms/5.0.1", + "hashPath": "microsoft.netcore.platforms.5.0.1.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==", + "path": "microsoft.netcore.windows.apisets/1.0.1", + "hashPath": "microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512" + }, + "Microsoft.PowerShell.Commands.Diagnostics/7.1.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LjYU4Fn/CrA/8hBpadisKjnycJgGkS7GlP3PgnFCgVhMq5rsTABgm0akA9rucH8NQnFN9LjSk9dPrkL0wpP6Eg==", + "path": "microsoft.powershell.commands.diagnostics/7.1.3", + "hashPath": "microsoft.powershell.commands.diagnostics.7.1.3.nupkg.sha512" + }, + "Microsoft.PowerShell.Commands.Management/7.1.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0z2I3xpfLTFb5lygdytPido1TEhpvurDFQSDRnYl0v1zIEbStFIPeJajT0WhqPhSIzXmI4uj/+MeToD/79qaHQ==", + "path": "microsoft.powershell.commands.management/7.1.3", + "hashPath": "microsoft.powershell.commands.management.7.1.3.nupkg.sha512" + }, + "Microsoft.PowerShell.Commands.Utility/7.1.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AsQTmJdC13QN0JyqH0cy2vqi2VM9kGKWkfzGpyktYaY4lnWJbnzCg/0dOD1SJlmB+41DSyjTg03RBgTPOsoOXA==", + "path": "microsoft.powershell.commands.utility/7.1.3", + "hashPath": "microsoft.powershell.commands.utility.7.1.3.nupkg.sha512" + }, + "Microsoft.PowerShell.ConsoleHost/7.1.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-u/iNvSQ/cGYzxj1TJQCtcSM78H8pbpPiYs30I1HrJxvtj0tqKtBagzWvMoeCFYlA6p4ZgztPHSKr4xiHh/Wrxw==", + "path": "microsoft.powershell.consolehost/7.1.3", + "hashPath": "microsoft.powershell.consolehost.7.1.3.nupkg.sha512" + }, + "Microsoft.PowerShell.CoreCLR.Eventing/7.1.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gsshJYIbjJjlTDGlDntENxMkRd+KWZo0CXF1jLJrpqtF51nmP5AHMKysFXRTPBWTNFmFTZ0tqgazkzF5S92/VA==", + "path": "microsoft.powershell.coreclr.eventing/7.1.3", + "hashPath": "microsoft.powershell.coreclr.eventing.7.1.3.nupkg.sha512" + }, + "Microsoft.PowerShell.MarkdownRender/7.1.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-86h8paEYo7BQ017G47cKL1twAxdhOD9sJRu6NSEuwbDgjVd3t5fahgLz7YDxwugcxDiA1TLCgH1cwUjChvoOrw==", + "path": "microsoft.powershell.markdownrender/7.1.3", + "hashPath": "microsoft.powershell.markdownrender.7.1.3.nupkg.sha512" + }, + "Microsoft.PowerShell.Native/7.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PJ/ei1HnYC+CMVDdUMT96PgWFONwVv/ZaJ5j//qLdk073alzdzOPWZiGsxYimJaRLP0TW4uomgIsR9q6jrf48A==", + "path": "microsoft.powershell.native/7.1.0", + "hashPath": "microsoft.powershell.native.7.1.0.nupkg.sha512" + }, + "Microsoft.PowerShell.SDK/7.1.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MwD8qwp+7LjtO5YVD5vSNtb3VlsMJGEg5PL5R3IgtFXfN3MDzvOF0BUEw60FC+Sf80RvYl3si1HacXr5DXxM5Q==", + "path": "microsoft.powershell.sdk/7.1.3", + "hashPath": "microsoft.powershell.sdk.7.1.3.nupkg.sha512" + }, + "Microsoft.PowerShell.Security/7.1.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hmXwtDMiF13vUTF1wk/FArwy/nOM5YNtNoOEY5Vrtf0TOiYyjx/PCsObMEPCb5jLgpUO2AC4b5gtVNmyEw/5LQ==", + "path": "microsoft.powershell.security/7.1.3", + "hashPath": "microsoft.powershell.security.7.1.3.nupkg.sha512" + }, + "Microsoft.Win32.Registry/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", + "path": "microsoft.win32.registry/5.0.0", + "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry.AccessControl/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rwF501ZS/xKGWz5H3RLBvwta6E5kcMLB0UYGTgrZ8nL5bvrbGmtEcEObgMC/qRFhA3og/0Zh+eacrcA+0FBXJA==", + "path": "microsoft.win32.registry.accesscontrol/5.0.0", + "hashPath": "microsoft.win32.registry.accesscontrol.5.0.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==", + "path": "microsoft.win32.systemevents/5.0.0", + "hashPath": "microsoft.win32.systemevents.5.0.0.nupkg.sha512" + }, + "Microsoft.Windows.Compatibility/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HujVMtkV1WTVlzbPWNZjHVG8ro6mIS15ul0XRLwmCq8NnbuI3C8bAUP3KdPTypK2D/Zr+u0q3m3qk7iM7b3JPg==", + "path": "microsoft.windows.compatibility/5.0.0", + "hashPath": "microsoft.windows.compatibility.5.0.0.nupkg.sha512" + }, + "Microsoft.WSMan.Management/7.1.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pSo+31uFqBNS2hXzb5X8MUXOy5BgzMdW0sadBeHA0kaGqSItVFniO/YI5nSboPzyFUPeJhENXnch/uQ3kBKsdg==", + "path": "microsoft.wsman.management/7.1.3", + "hashPath": "microsoft.wsman.management.7.1.3.nupkg.sha512" + }, + "Microsoft.WSMan.Runtime/7.1.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-whAtJ6Gl/KoclB3NALkk1MptpP6vaVlA8zSuQo4AXBrMuSLUZZV9cbsc3f8Xb2c/5W/C+Of5fSusBGsaGt6wgQ==", + "path": "microsoft.wsman.runtime/7.1.3", + "hashPath": "microsoft.wsman.runtime.7.1.3.nupkg.sha512" + }, + "Namotion.Reflection/1.0.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wuJGiFvGfehH2w7jAhMbCJt0/rvUuHyqSZn0sMhNTviDfBZRyX8LFlR/ndQcofkGWulPDfH5nKYTeGXE8xBHPA==", + "path": "namotion.reflection/1.0.14", + "hashPath": "namotion.reflection.1.0.14.nupkg.sha512" + }, + "Newtonsoft.Json/12.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==", + "path": "newtonsoft.json/12.0.3", + "hashPath": "newtonsoft.json.12.0.3.nupkg.sha512" + }, + "NJsonSchema/10.2.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-s6oNUrjw5Ix5WVkYdU0vgyzoutZdi7p+uQqTGYa3QbLtjDYrkD4ahfGnfyCpHNoJUXun9pHKGy6AD0LJNcSgjQ==", + "path": "njsonschema/10.2.2", + "hashPath": "njsonschema.10.2.2.nupkg.sha512" + }, + "runtime.linux-arm.runtime.native.System.IO.Ports/5.0.0-rtm.20519.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Np6w3r1dSFB930GGZHIKCc5ZClRXZIqOrCAT0pzcd/zXnsZPvGqLZB1MnxAbVhvriJl71B0N0tJaaT1ICWXsyg==", + "path": "runtime.linux-arm.runtime.native.system.io.ports/5.0.0-rtm.20519.4", + "hashPath": "runtime.linux-arm.runtime.native.system.io.ports.5.0.0-rtm.20519.4.nupkg.sha512" + }, + "runtime.linux-arm64.runtime.native.System.IO.Ports/5.0.0-rtm.20519.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VnGZmQ7pzMNkcTVdmGtXUQIbytK4Xk8F4/mxm0I+n7zbrsW/WNgLrWMTv9pb2Uyq09azXazNDQhZao4R4ebWcw==", + "path": "runtime.linux-arm64.runtime.native.system.io.ports/5.0.0-rtm.20519.4", + "hashPath": "runtime.linux-arm64.runtime.native.system.io.ports.5.0.0-rtm.20519.4.nupkg.sha512" + }, + "runtime.linux-x64.runtime.native.System.IO.Ports/5.0.0-rtm.20519.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kvMZgZjtcC6cA8Y8imKpjCpiOJKDtwlNekS86GzUol4Jmzh0FWiRwAj4E9ZKO8R7rTBGIA4rkmra9Ko8j7l6AA==", + "path": "runtime.linux-x64.runtime.native.system.io.ports/5.0.0-rtm.20519.4", + "hashPath": "runtime.linux-x64.runtime.native.system.io.ports.5.0.0-rtm.20519.4.nupkg.sha512" + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0", + "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512" + }, + "runtime.native.System.IO.Ports/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ME+/evR+UxVlWyGHUlLBoNTnsTdaylMbnvVwOp0Nl6XIZGGyXdqJqjlEew7e6TcKkJAA0lljhjKi3Kie+vzQ7g==", + "path": "runtime.native.system.io.ports/5.0.0", + "hashPath": "runtime.native.system.io.ports.5.0.0.nupkg.sha512" + }, + "runtime.osx-x64.runtime.native.System.IO.Ports/5.0.0-rtm.20519.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N+dbbqhT7JBnPVHa7n2+Z5fHYO4a4UUhm7cQkbuQQoNkjbxLpxYnQ4lpRjr1RuQptqYkPmunKvN5etdFOObaiw==", + "path": "runtime.osx-x64.runtime.native.system.io.ports/5.0.0-rtm.20519.4", + "hashPath": "runtime.osx-x64.runtime.native.system.io.ports.5.0.0-rtm.20519.4.nupkg.sha512" + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "System.CodeDom/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JPJArwA1kdj8qDAkY2XGjSWoYnqiM7q/3yRNkt6n28Mnn95MuEGkZXUbPBf7qc3IjwrGY5ttQon7yqHZyQJmOQ==", + "path": "system.codedom/5.0.0", + "hashPath": "system.codedom.5.0.0.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Immutable/1.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EXKiDFsChZW0RjrZ4FYHu9aW6+P4MCgEDCklsVseRfhoO0F+dXeMSsMRAlVXIo06kGJ/zv+2w1a2uc2+kxxSaQ==", + "path": "system.collections.immutable/1.5.0", + "hashPath": "system.collections.immutable.1.5.0.nupkg.sha512" + }, + "System.ComponentModel.Composition/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YL8iA3VOFxhyomn7FxtBgh3F+8XG5jOfT5UcqYLtkafSa6g6alQfKZuRwlEIWe+tzH6OVnj0Ekg5tn/DmV7SkQ==", + "path": "system.componentmodel.composition/5.0.0", + "hashPath": "system.componentmodel.composition.5.0.0.nupkg.sha512" + }, + "System.ComponentModel.Composition.Registration/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CTTPajoCKcXQ1NVTlazz6ned37MHVFf1qKfzsBIdHkaFJBnRVVh4hYsVkPP7z+RrMQU5iXdiTcsfxDb5DWOKOA==", + "path": "system.componentmodel.composition.registration/5.0.0", + "hashPath": "system.componentmodel.composition.registration.5.0.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aM7cbfEfVNlEEOj3DsZP+2g9NRwbkyiAv2isQEzw7pnkDg9ekCU2m1cdJLM02Uq691OaCS91tooaxcEn8d0q5w==", + "path": "system.configuration.configurationmanager/5.0.0", + "hashPath": "system.configuration.configurationmanager.5.0.0.nupkg.sha512" + }, + "System.Data.DataSetExtensions/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-221clPs1445HkTBZPL+K9sDBdJRB8UN8rgjO3ztB0CQ26z//fmJXtlsr6whGatscsKGBrhJl5bwJuKSA8mwFOw==", + "path": "system.data.datasetextensions/4.5.0", + "hashPath": "system.data.datasetextensions.4.5.0.nupkg.sha512" + }, + "System.Data.Odbc/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j4WsYGmcD7m1D0Tc3N7HqWqcdUHNn9+kdXh9ODTWEsOGrAvALf+BgRStd7L0/O/zDS0R4Uu9vNM8UY6EnK+WYw==", + "path": "system.data.odbc/5.0.0", + "hashPath": "system.data.odbc.5.0.0.nupkg.sha512" + }, + "System.Data.OleDb/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DHCZucsidgFtUr1w5OggQNjb7M6N722QpNbkG6TV+3hCvPSLXdrm1NjJqVZB5/OW067gzuZVj9W147hrkTF/Ig==", + "path": "system.data.oledb/5.0.0", + "hashPath": "system.data.oledb.5.0.0.nupkg.sha512" + }, + "System.Data.SqlClient/4.8.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-80vGtW6uLB4AkyrdVuKTXYUyuXDPAsSKbTVfvjndZaRAYxzFzWhJbvUfeAKrN+128ycWZjLIAl61dFUwWHOOTw==", + "path": "system.data.sqlclient/4.8.2", + "hashPath": "system.data.sqlclient.4.8.2.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/4.6.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mbBgoR0rRfl2uimsZ2avZY8g7Xnh1Mza0rJZLPcxqiMWlkGukjmRkuMJ/er+AhQuiRIh80CR/Hpeztr80seV5g==", + "path": "system.diagnostics.diagnosticsource/4.6.0", + "hashPath": "system.diagnostics.diagnosticsource.4.6.0.nupkg.sha512" + }, + "System.Diagnostics.EventLog/5.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k4O5RrjnhJZrP4EgOklUVkcmVdAxs9+PoXCGmlNS3NPIwaSyMMLy7pUaamMHCFkduiOO/ZUzIRjyoCnvXLJpfw==", + "path": "system.diagnostics.eventlog/5.0.1", + "hashPath": "system.diagnostics.eventlog.5.0.1.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kcQWWtGVC3MWMNXdMDWfrmIlFZZ2OdoeT6pSNVRtk9+Sa7jwdPiMlNwb0ZQcS7NRlT92pCfmjRtkSWUW3RAKwg==", + "path": "system.diagnostics.performancecounter/5.0.0", + "hashPath": "system.diagnostics.performancecounter.5.0.0.nupkg.sha512" + }, + "System.DirectoryServices/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lAS54Y3KO1XV68akGa0/GJeddkkuuiv2CtcSkMiTmLHQ6o6kFbKpw4DmJZADF7a6KjPwYxmZnH4D3eGicrJdcg==", + "path": "system.directoryservices/5.0.0", + "hashPath": "system.directoryservices.5.0.0.nupkg.sha512" + }, + "System.DirectoryServices.AccountManagement/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1WevH/8ULy0iixbsZW4k8ftV9fDqkeUJfeVMsJ7SySrHsnBISkRx1JuDRRV7QXfNTCQKrHeecfqcY5pevlDwog==", + "path": "system.directoryservices.accountmanagement/5.0.0", + "hashPath": "system.directoryservices.accountmanagement.5.0.0.nupkg.sha512" + }, + "System.DirectoryServices.Protocols/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uQvO3kpXBDCoRQecbY8yXiQTVBT5t6ZMCZwBsyGFeCL0KUTlNJDsaIx+hsqCKF+bLglaYyz5nWLVRaxPKVeBBw==", + "path": "system.directoryservices.protocols/5.0.0", + "hashPath": "system.directoryservices.protocols.5.0.0.nupkg.sha512" + }, + "System.Drawing.Common/5.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rvr/M1WPf24ljpvvrVd74+NdjRUJu1bBkspkZcnzSZnmAUQWSvanlQ0k/hVHk+cHufZbZfu7vOh/vYc0q5Uu/A==", + "path": "system.drawing.common/5.0.2", + "hashPath": "system.drawing.common.5.0.2.nupkg.sha512" + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", + "path": "system.dynamic.runtime/4.3.0", + "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" + }, + "System.Formats.Asn1/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==", + "path": "system.formats.asn1/5.0.0", + "hashPath": "system.formats.asn1.5.0.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.AccessControl/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SxHB3nuNrpptVk+vZ/F+7OHEpoHUIKKMl02bUmYHQr1r+glbZQxs7pRtsf4ENO29TVm2TH3AEeep2fJcy92oYw==", + "path": "system.io.filesystem.accesscontrol/5.0.0", + "hashPath": "system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512" + }, + "System.IO.Packaging/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ebfUwKsgZF4HTwaRUj67SrJdsM4O62Fxsd6u1bSk3MNgvU8yjyfEK0xQmUFUqOYJi1IcL4HENoccl4SKVPndYw==", + "path": "system.io.packaging/5.0.0", + "hashPath": "system.io.packaging.5.0.0.nupkg.sha512" + }, + "System.IO.Pipes.AccessControl/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P0FIsXSFNL1AXlHO9zpJ9atRUzVyoPZCkcbkYGZfXXMx9xlGA2H3HOGBwIhpKhB+h0eL3hry/z0UcfJZ+yb2kQ==", + "path": "system.io.pipes.accesscontrol/5.0.0", + "hashPath": "system.io.pipes.accesscontrol.5.0.0.nupkg.sha512" + }, + "System.IO.Ports/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MZY/0cgRg5bcuvHR4LKHqWnlxWV7GkoTgBaOdwIoWGZKsfSBC1twDz+BzG0o1Rk46WdRhhV30E2qzsBABHwGUA==", + "path": "system.io.ports/5.0.0", + "hashPath": "system.io.ports.5.0.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Management/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MF1CHaRcC+MLFdnDthv4/bKWBZnlnSpkGqa87pKukQefgEdwtb9zFW6zs0GjPp73qtpYYg4q6PEKbzJbxCpKfw==", + "path": "system.management/5.0.0", + "hashPath": "system.management.5.0.0.nupkg.sha512" + }, + "System.Management.Automation/7.1.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rXPo+ujbsrraKk7F0VYQLM5oTXUo8bOmd+lnALCNPXaeZZ7pcGLqAfayuGX/Y6sXd4zoOE0jDtF572u4vCR5fg==", + "path": "system.management.automation/7.1.3", + "hashPath": "system.management.automation.7.1.3.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Net.Http.WinHttpHandler/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Mq6dPidztlkEwzjmzK4gtla8N8MTfjCyd0yub/8DY5UbkbV82wU+kiMoBHHjQ2fY70RrdraEoeZFgH915lHJhg==", + "path": "system.net.http.winhttphandler/5.0.0", + "hashPath": "system.net.http.winhttphandler.5.0.0.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Private.ServiceModel/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BItrYCkoTV3VzVPsrew+uc34fmLb+3ncgspa7vbO3vkfY9JQCea4u34pHE+Bcv1Iy16MgRs3n2jKVRCDg0rPfg==", + "path": "system.private.servicemodel/4.7.0", + "hashPath": "system.private.servicemodel.4.7.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Context/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gG1wxxJLcjQaUkd07K2l2MKVoW+e0w8jS8Jye7QLPXrXT7XXMmOcFV/Ek6XyTOy5Z4GVN0WY95BQNp/iHEs5mw==", + "path": "system.reflection.context/5.0.0", + "hashPath": "system.reflection.context.5.0.0.nupkg.sha512" + }, + "System.Reflection.DispatchProxy/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+UW1hq11TNSeb+16rIk8hRQ02o339NFyzMc4ma/FqmxBzM30l1c2IherBB4ld1MNcenS48fz8tbt50OW4rVULA==", + "path": "system.reflection.dispatchproxy/4.5.0", + "hashPath": "system.reflection.dispatchproxy.4.5.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==", + "path": "system.reflection.emit/4.7.0", + "hashPath": "system.reflection.emit.4.7.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AucBYo3DSI0IDxdUjKksBcQJXPHyoPyrCXYURW1WDsLI4M65Ar/goSHjdnHOAY9MiYDNKqDlIgaYm+zL2hA1KA==", + "path": "system.reflection.emit.ilgeneration/4.7.0", + "hashPath": "system.reflection.emit.ilgeneration.4.7.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-a4OLB4IITxAXJeV74MDx49Oq2+PsF6Sml54XAFv+2RyWwtDBcabzoxiiJRhdhx+gaohLh4hEGCLQyBozXoQPqA==", + "path": "system.reflection.emit.lightweight/4.7.0", + "hashPath": "system.reflection.emit.lightweight.4.7.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Metadata/1.6.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==", + "path": "system.reflection.metadata/1.6.0", + "hashPath": "system.reflection.metadata.1.6.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Caching/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-30D6MkO8WF9jVGWZIP0hmCN8l9BTY4LCsAzLIe4xFSXzs+AjDotR7DpSmj27pFskDURzUvqYYY0ikModgBTxWw==", + "path": "system.runtime.caching/5.0.0", + "hashPath": "system.runtime.caching.5.0.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==", + "path": "system.runtime.compilerservices.unsafe/5.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", + "path": "system.security.accesscontrol/5.0.0", + "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==", + "path": "system.security.cryptography.cng/5.0.0", + "hashPath": "system.security.cryptography.cng.5.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Pkcs/5.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ualfJXOMrjW/E4z73cGHVcAvFMCCnMZQE+8xME9eX70bTZ0UAJCstG0khsMvL8B+9c9qw+ktowt1fN0BffMnQ==", + "path": "system.security.cryptography.pkcs/5.0.1", + "hashPath": "system.security.cryptography.pkcs.5.0.1.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HGxMSAFAPLNoxBvSfW08vHde0F9uh7BjASwu6JF9JnXuEPhCY3YUqURn0+bQV/4UWeaqymmrHWV+Aw9riQCtCA==", + "path": "system.security.cryptography.protecteddata/5.0.0", + "hashPath": "system.security.cryptography.protecteddata.5.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Xml/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MYmkHtCW+paFmPGFDktnLdOeH3zUrNchbZNki87E1ejNSMm9enSRbJokmvFrsWUrDE4bRE1lVeAle01+t6SGhA==", + "path": "system.security.cryptography.xml/5.0.0", + "hashPath": "system.security.cryptography.xml.5.0.0.nupkg.sha512" + }, + "System.Security.Permissions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uE8juAhEkp7KDBCdjDIE3H9R1HJuEHqeqX8nLX9gmYKWwsqk3T5qZlPx8qle5DPKimC/Fy3AFTdV7HamgCh9qQ==", + "path": "system.security.permissions/5.0.0", + "hashPath": "system.security.permissions.5.0.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "path": "system.security.principal.windows/5.0.0", + "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" + }, + "System.ServiceModel.Duplex/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7GBKQc2QWRxnEVQ49zMKq3z3RFKaHhhWjfMWhp+DP+dgfp0X4Szln/eL+UQumOKvv+sTU5bhOXjnJg5045liCA==", + "path": "system.servicemodel.duplex/4.7.0", + "hashPath": "system.servicemodel.duplex.4.7.0.nupkg.sha512" + }, + "System.ServiceModel.Http/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+BB61ycl1cSlRbJDpABoqMa7bRE4boJfK1CfWfbNzTGeADFVmDkhylpfmC1bKloxtf95p2owj8/n7kilgRBAow==", + "path": "system.servicemodel.http/4.7.0", + "hashPath": "system.servicemodel.http.4.7.0.nupkg.sha512" + }, + "System.ServiceModel.NetTcp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-snQgAc7kn4721eaus8nZ52eRu1QrdEnWGbru6I263hPWcISStntwHwSrT57Iwp1Z58b3Lz0J/hbjJhGP0yExOA==", + "path": "system.servicemodel.nettcp/4.7.0", + "hashPath": "system.servicemodel.nettcp.4.7.0.nupkg.sha512" + }, + "System.ServiceModel.Primitives/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YUXIMO4kL1v6dUVptJGixAx/8Ai5trQzVn3gbk0mpwxh77kGAs+MyBRoHN/5ZoxtwNn4E1dq3N4rJCAgAUaiJA==", + "path": "system.servicemodel.primitives/4.7.0", + "hashPath": "system.servicemodel.primitives.4.7.0.nupkg.sha512" + }, + "System.ServiceModel.Security/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LjYrQRrP1rw+s/wieB+QIv3p6/oG2ucTfVpg5iWmX8/7+nfUxcqmy9l8rsbtYE8X8BEQnSq42OhWap/Dlhlh9Q==", + "path": "system.servicemodel.security/4.7.0", + "hashPath": "system.servicemodel.security.4.7.0.nupkg.sha512" + }, + "System.ServiceModel.Syndication/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xjwRFydlevI/DMLlBcDRbOmofJTZNoJ0FCkEPdMw9i+85lDbl8Pw001LJKQbRSeHSVJCEuPfAvEuC1TAumxcmw==", + "path": "system.servicemodel.syndication/5.0.0", + "hashPath": "system.servicemodel.syndication.5.0.0.nupkg.sha512" + }, + "System.ServiceProcess.ServiceController/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-p2yX167GW1pr2DCR6cW+cBKrvhli4thckXk108faFaTPHnoudb0AYPcIPq3nmrwn7IQj9FEmjpyJlXzcOmIjjw==", + "path": "system.serviceprocess.servicecontroller/5.0.0", + "hashPath": "system.serviceprocess.servicecontroller.5.0.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==", + "path": "system.text.encoding.codepages/5.0.0", + "hashPath": "system.text.encoding.codepages.5.0.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/5.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KmJ+CJXizDofbq6mpqDoRRLcxgOd2z9X3XoFNULSbvbqVRZkFX3istvr+MUjL6Zw1RT+RNdoI4GYidIINtgvqQ==", + "path": "system.text.encodings.web/5.0.1", + "hashPath": "system.text.encodings.web.5.0.1.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.AccessControl/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WJ9w9m4iHJVq0VoH7hZvYAccbRq95itYRhAAXd6M4kVCzLmT6NqTwmSXKwp3oQilWHhYTXgqaIXxBfg8YaqtmA==", + "path": "system.threading.accesscontrol/5.0.0", + "hashPath": "system.threading.accesscontrol.5.0.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.5.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+MvhNtcvIbqmhANyKu91jQnvIRVSTiaOiFNfKWwXGHG48YAb4I/TyH8spsySiPYla7gKal5ZnF3teJqZAximyQ==", + "path": "system.threading.tasks.extensions/4.5.3", + "hashPath": "system.threading.tasks.extensions.4.5.3.nupkg.sha512" + }, + "System.Windows.Extensions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c1ho9WU9ZxMZawML+ssPKZfdnrg/OjR3pe0m9v8230z3acqphwvPJqzAkH54xRYm5ntZHGG1EPP3sux9H3qSPg==", + "path": "system.windows.extensions/5.0.0", + "hashPath": "system.windows.extensions.5.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/PowershellScriptHider.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/PowershellScriptHider.dll new file mode 100644 index 0000000..3921cff Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/PowershellScriptHider.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/PowershellScriptHider.exe b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/PowershellScriptHider.exe new file mode 100644 index 0000000..2533027 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/PowershellScriptHider.exe differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/PowershellScriptHider.pdb b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/PowershellScriptHider.pdb new file mode 100644 index 0000000..b41c3c9 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/PowershellScriptHider.pdb differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/PowershellScriptHider.runtimeconfig.dev.json b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/PowershellScriptHider.runtimeconfig.dev.json new file mode 100644 index 0000000..c1d81ac --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/PowershellScriptHider.runtimeconfig.dev.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "C:\\Users\\סארט\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\סארט\\.nuget\\packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ] + } +} \ No newline at end of file diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/PowershellScriptHider.runtimeconfig.json b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/PowershellScriptHider.runtimeconfig.json new file mode 100644 index 0000000..a8e7e82 --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/PowershellScriptHider.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net5.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "5.0.0" + } + } +} \ No newline at end of file diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.CodeDom.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.CodeDom.dll new file mode 100644 index 0000000..873495d Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.CodeDom.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.ComponentModel.Composition.Registration.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.ComponentModel.Composition.Registration.dll new file mode 100644 index 0000000..49cc0c2 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.ComponentModel.Composition.Registration.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.ComponentModel.Composition.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.ComponentModel.Composition.dll new file mode 100644 index 0000000..2f780b6 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.ComponentModel.Composition.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll new file mode 100644 index 0000000..1644e5d Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Data.Odbc.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Data.Odbc.dll new file mode 100644 index 0000000..f20116d Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Data.Odbc.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Data.OleDb.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Data.OleDb.dll new file mode 100644 index 0000000..8c09734 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Data.OleDb.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Data.SqlClient.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Data.SqlClient.dll new file mode 100644 index 0000000..fc62a8c Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Data.SqlClient.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Diagnostics.EventLog.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Diagnostics.EventLog.dll new file mode 100644 index 0000000..1f5f64b Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Diagnostics.EventLog.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Diagnostics.PerformanceCounter.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Diagnostics.PerformanceCounter.dll new file mode 100644 index 0000000..a79b87b Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Diagnostics.PerformanceCounter.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.DirectoryServices.AccountManagement.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.DirectoryServices.AccountManagement.dll new file mode 100644 index 0000000..260dc5b Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.DirectoryServices.AccountManagement.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.DirectoryServices.Protocols.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..f934c36 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.DirectoryServices.Protocols.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.DirectoryServices.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.DirectoryServices.dll new file mode 100644 index 0000000..65d58a1 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.DirectoryServices.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Drawing.Common.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Drawing.Common.dll new file mode 100644 index 0000000..6ab3e30 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Drawing.Common.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.IO.Packaging.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.IO.Packaging.dll new file mode 100644 index 0000000..99e2265 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.IO.Packaging.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.IO.Ports.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.IO.Ports.dll new file mode 100644 index 0000000..76ef790 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.IO.Ports.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Management.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Management.dll new file mode 100644 index 0000000..c3a0320 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Management.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Net.Http.WinHttpHandler.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Net.Http.WinHttpHandler.dll new file mode 100644 index 0000000..4f4f134 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Net.Http.WinHttpHandler.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Private.ServiceModel.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Private.ServiceModel.dll new file mode 100644 index 0000000..3f9f84e Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Private.ServiceModel.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Reflection.Context.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Reflection.Context.dll new file mode 100644 index 0000000..5cbcc73 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Reflection.Context.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Runtime.Caching.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Runtime.Caching.dll new file mode 100644 index 0000000..6a6eb85 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Runtime.Caching.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Security.Cryptography.Pkcs.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Security.Cryptography.Pkcs.dll new file mode 100644 index 0000000..76de8a3 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Security.Cryptography.Pkcs.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..ffe1c6f Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Security.Cryptography.Xml.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Security.Cryptography.Xml.dll new file mode 100644 index 0000000..a78daa4 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Security.Cryptography.Xml.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Security.Permissions.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Security.Permissions.dll new file mode 100644 index 0000000..b380d08 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Security.Permissions.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.ServiceModel.Duplex.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.ServiceModel.Duplex.dll new file mode 100644 index 0000000..e410b14 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.ServiceModel.Duplex.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.ServiceModel.Http.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.ServiceModel.Http.dll new file mode 100644 index 0000000..34f6704 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.ServiceModel.Http.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.ServiceModel.NetTcp.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.ServiceModel.NetTcp.dll new file mode 100644 index 0000000..9a4ebbe Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.ServiceModel.NetTcp.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.ServiceModel.Primitives.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.ServiceModel.Primitives.dll new file mode 100644 index 0000000..b3ab384 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.ServiceModel.Primitives.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.ServiceModel.Security.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.ServiceModel.Security.dll new file mode 100644 index 0000000..d800426 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.ServiceModel.Security.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.ServiceModel.Syndication.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.ServiceModel.Syndication.dll new file mode 100644 index 0000000..f6bcaa2 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.ServiceModel.Syndication.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.ServiceModel.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.ServiceModel.dll new file mode 100644 index 0000000..58f664e Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.ServiceModel.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.ServiceProcess.ServiceController.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.ServiceProcess.ServiceController.dll new file mode 100644 index 0000000..27da48e Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.ServiceProcess.ServiceController.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Text.Encodings.Web.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..f4e063b Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Text.Encodings.Web.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Threading.AccessControl.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Threading.AccessControl.dll new file mode 100644 index 0000000..f676977 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Threading.AccessControl.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Windows.Extensions.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Windows.Extensions.dll new file mode 100644 index 0000000..316eb46 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/System.Windows.Extensions.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..4b72058 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.resources.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..43acdf3 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.resources.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/cs/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/cs/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/cs/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..55d6b39 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.resources.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..698f08e Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.resources.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/de/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/de/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/de/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..e770ccc Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.resources.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..62e2e9a Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.resources.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/es/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/es/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/es/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..f605e75 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.resources.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..a5aec6a Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/fr/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/fr/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/fr/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..5aedc4b Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.resources.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..0ecca4c Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.resources.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/it/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/it/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/it/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..2437ed9 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.resources.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..0b985d8 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.resources.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ja/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ja/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ja/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..c908377 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.resources.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..bdb9eb5 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.resources.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ko/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ko/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ko/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..8f2b775 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.resources.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..b287bd9 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.resources.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/pl/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/pl/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/pl/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..4c64afc Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..10a885e Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.resources.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/pt-BR/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/pt-BR/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/pt-BR/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/Microsoft.CSharp.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/Microsoft.CSharp.dll new file mode 100644 index 0000000..b71b66d Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/Microsoft.CSharp.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/Microsoft.VisualBasic.Core.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/Microsoft.VisualBasic.Core.dll new file mode 100644 index 0000000..89126d8 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/Microsoft.VisualBasic.Core.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/Microsoft.VisualBasic.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/Microsoft.VisualBasic.dll new file mode 100644 index 0000000..2b539bb Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/Microsoft.VisualBasic.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/Microsoft.Win32.Primitives.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/Microsoft.Win32.Primitives.dll new file mode 100644 index 0000000..91a93be Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/Microsoft.Win32.Primitives.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/PowershellScriptHider.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/PowershellScriptHider.dll new file mode 100644 index 0000000..c34918c Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/PowershellScriptHider.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.AppContext.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.AppContext.dll new file mode 100644 index 0000000..0ff701d Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.AppContext.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Buffers.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Buffers.dll new file mode 100644 index 0000000..2a2f741 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Buffers.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Collections.Concurrent.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Collections.Concurrent.dll new file mode 100644 index 0000000..3cd6d7b Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Collections.Concurrent.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Collections.Immutable.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Collections.Immutable.dll new file mode 100644 index 0000000..d351b75 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Collections.Immutable.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Collections.NonGeneric.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Collections.NonGeneric.dll new file mode 100644 index 0000000..ae6963a Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Collections.NonGeneric.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Collections.Specialized.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Collections.Specialized.dll new file mode 100644 index 0000000..2373a6a Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Collections.Specialized.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Collections.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Collections.dll new file mode 100644 index 0000000..1366723 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Collections.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.ComponentModel.Annotations.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.ComponentModel.Annotations.dll new file mode 100644 index 0000000..ffe2f35 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.ComponentModel.Annotations.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.ComponentModel.DataAnnotations.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.ComponentModel.DataAnnotations.dll new file mode 100644 index 0000000..082b5a4 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.ComponentModel.DataAnnotations.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.ComponentModel.EventBasedAsync.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.ComponentModel.EventBasedAsync.dll new file mode 100644 index 0000000..e0b1150 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.ComponentModel.EventBasedAsync.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.ComponentModel.Primitives.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.ComponentModel.Primitives.dll new file mode 100644 index 0000000..dc9ceb1 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.ComponentModel.Primitives.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.ComponentModel.TypeConverter.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.ComponentModel.TypeConverter.dll new file mode 100644 index 0000000..d902fbd Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.ComponentModel.TypeConverter.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.ComponentModel.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.ComponentModel.dll new file mode 100644 index 0000000..6b26a9d Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.ComponentModel.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Configuration.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Configuration.dll new file mode 100644 index 0000000..93817ca Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Configuration.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Console.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Console.dll new file mode 100644 index 0000000..f28af00 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Console.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Core.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Core.dll new file mode 100644 index 0000000..3f30e2d Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Core.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Data.Common.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Data.Common.dll new file mode 100644 index 0000000..5a306a2 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Data.Common.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Data.DataSetExtensions.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Data.DataSetExtensions.dll new file mode 100644 index 0000000..4fa5082 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Data.DataSetExtensions.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Data.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Data.dll new file mode 100644 index 0000000..537e682 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Data.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Diagnostics.Contracts.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Diagnostics.Contracts.dll new file mode 100644 index 0000000..0a951c6 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Diagnostics.Contracts.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Diagnostics.Debug.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Diagnostics.Debug.dll new file mode 100644 index 0000000..ea9ecbb Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Diagnostics.Debug.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Diagnostics.DiagnosticSource.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..0325795 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Diagnostics.DiagnosticSource.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Diagnostics.FileVersionInfo.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Diagnostics.FileVersionInfo.dll new file mode 100644 index 0000000..3a6c63e Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Diagnostics.FileVersionInfo.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Diagnostics.Process.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Diagnostics.Process.dll new file mode 100644 index 0000000..4807c00 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Diagnostics.Process.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Diagnostics.StackTrace.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Diagnostics.StackTrace.dll new file mode 100644 index 0000000..567281f Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Diagnostics.StackTrace.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Diagnostics.TextWriterTraceListener.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 0000000..6043b47 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Diagnostics.Tools.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Diagnostics.Tools.dll new file mode 100644 index 0000000..58b5a62 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Diagnostics.Tools.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Diagnostics.TraceSource.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Diagnostics.TraceSource.dll new file mode 100644 index 0000000..fc8449f Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Diagnostics.TraceSource.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Diagnostics.Tracing.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Diagnostics.Tracing.dll new file mode 100644 index 0000000..6798ed2 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Diagnostics.Tracing.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Drawing.Primitives.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Drawing.Primitives.dll new file mode 100644 index 0000000..f0b76d9 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Drawing.Primitives.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Drawing.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Drawing.dll new file mode 100644 index 0000000..a23835e Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Drawing.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Dynamic.Runtime.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Dynamic.Runtime.dll new file mode 100644 index 0000000..b598706 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Dynamic.Runtime.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Formats.Asn1.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Formats.Asn1.dll new file mode 100644 index 0000000..ef4d71a Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Formats.Asn1.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Globalization.Calendars.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Globalization.Calendars.dll new file mode 100644 index 0000000..3236b6d Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Globalization.Calendars.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Globalization.Extensions.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Globalization.Extensions.dll new file mode 100644 index 0000000..4610ac3 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Globalization.Extensions.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Globalization.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Globalization.dll new file mode 100644 index 0000000..b28203f Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Globalization.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.Compression.Brotli.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.Compression.Brotli.dll new file mode 100644 index 0000000..10d82e5 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.Compression.Brotli.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.Compression.FileSystem.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.Compression.FileSystem.dll new file mode 100644 index 0000000..a60be9e Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.Compression.FileSystem.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.Compression.ZipFile.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.Compression.ZipFile.dll new file mode 100644 index 0000000..0075b2c Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.Compression.ZipFile.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.Compression.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.Compression.dll new file mode 100644 index 0000000..9bbe990 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.Compression.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.FileSystem.DriveInfo.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.FileSystem.DriveInfo.dll new file mode 100644 index 0000000..550f8d8 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.FileSystem.DriveInfo.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.FileSystem.Primitives.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.FileSystem.Primitives.dll new file mode 100644 index 0000000..0dcf007 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.FileSystem.Primitives.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.FileSystem.Watcher.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.FileSystem.Watcher.dll new file mode 100644 index 0000000..e79e7e0 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.FileSystem.Watcher.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.FileSystem.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.FileSystem.dll new file mode 100644 index 0000000..38a0c95 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.FileSystem.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.IsolatedStorage.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.IsolatedStorage.dll new file mode 100644 index 0000000..dfbba8a Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.IsolatedStorage.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.MemoryMappedFiles.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.MemoryMappedFiles.dll new file mode 100644 index 0000000..2a9841e Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.MemoryMappedFiles.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.Pipes.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.Pipes.dll new file mode 100644 index 0000000..522a45d Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.Pipes.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.UnmanagedMemoryStream.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.UnmanagedMemoryStream.dll new file mode 100644 index 0000000..3df0c43 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.UnmanagedMemoryStream.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.dll new file mode 100644 index 0000000..daaf604 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.IO.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Linq.Expressions.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Linq.Expressions.dll new file mode 100644 index 0000000..72149ce Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Linq.Expressions.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Linq.Parallel.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Linq.Parallel.dll new file mode 100644 index 0000000..d240100 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Linq.Parallel.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Linq.Queryable.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Linq.Queryable.dll new file mode 100644 index 0000000..8f54661 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Linq.Queryable.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Linq.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Linq.dll new file mode 100644 index 0000000..0bd7c20 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Linq.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Memory.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Memory.dll new file mode 100644 index 0000000..3c944b6 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Memory.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.Http.Json.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.Http.Json.dll new file mode 100644 index 0000000..d6f0df2 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.Http.Json.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.Http.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.Http.dll new file mode 100644 index 0000000..8b0c562 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.Http.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.HttpListener.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.HttpListener.dll new file mode 100644 index 0000000..d2b7411 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.HttpListener.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.Mail.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.Mail.dll new file mode 100644 index 0000000..3222b2b Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.Mail.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.NameResolution.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.NameResolution.dll new file mode 100644 index 0000000..92a4ca0 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.NameResolution.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.NetworkInformation.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.NetworkInformation.dll new file mode 100644 index 0000000..2b38cdc Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.NetworkInformation.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.Ping.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.Ping.dll new file mode 100644 index 0000000..5b8b6a6 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.Ping.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.Primitives.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.Primitives.dll new file mode 100644 index 0000000..c2f68a4 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.Primitives.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.Requests.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.Requests.dll new file mode 100644 index 0000000..b508225 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.Requests.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.Security.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.Security.dll new file mode 100644 index 0000000..12d6bc7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.Security.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.ServicePoint.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.ServicePoint.dll new file mode 100644 index 0000000..5613a4f Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.ServicePoint.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.Sockets.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.Sockets.dll new file mode 100644 index 0000000..6eddb68 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.Sockets.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.WebClient.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.WebClient.dll new file mode 100644 index 0000000..3712260 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.WebClient.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.WebHeaderCollection.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.WebHeaderCollection.dll new file mode 100644 index 0000000..bca8ad1 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.WebHeaderCollection.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.WebProxy.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.WebProxy.dll new file mode 100644 index 0000000..fad685c Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.WebProxy.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.WebSockets.Client.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.WebSockets.Client.dll new file mode 100644 index 0000000..936a69d Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.WebSockets.Client.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.WebSockets.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.WebSockets.dll new file mode 100644 index 0000000..d60d973 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.WebSockets.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.dll new file mode 100644 index 0000000..9bd6043 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Net.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Numerics.Vectors.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Numerics.Vectors.dll new file mode 100644 index 0000000..04b98ba Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Numerics.Vectors.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Numerics.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Numerics.dll new file mode 100644 index 0000000..5332b09 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Numerics.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.ObjectModel.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.ObjectModel.dll new file mode 100644 index 0000000..2a7f09d Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.ObjectModel.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Reflection.DispatchProxy.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Reflection.DispatchProxy.dll new file mode 100644 index 0000000..e801e8e Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Reflection.DispatchProxy.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Reflection.Emit.ILGeneration.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Reflection.Emit.ILGeneration.dll new file mode 100644 index 0000000..fd13a91 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Reflection.Emit.ILGeneration.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Reflection.Emit.Lightweight.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Reflection.Emit.Lightweight.dll new file mode 100644 index 0000000..b83541c Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Reflection.Emit.Lightweight.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Reflection.Emit.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Reflection.Emit.dll new file mode 100644 index 0000000..c55f6cd Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Reflection.Emit.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Reflection.Extensions.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Reflection.Extensions.dll new file mode 100644 index 0000000..12d6e5f Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Reflection.Extensions.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Reflection.Metadata.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Reflection.Metadata.dll new file mode 100644 index 0000000..fb935ea Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Reflection.Metadata.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Reflection.Primitives.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Reflection.Primitives.dll new file mode 100644 index 0000000..4f2f210 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Reflection.Primitives.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Reflection.TypeExtensions.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Reflection.TypeExtensions.dll new file mode 100644 index 0000000..170c631 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Reflection.TypeExtensions.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Reflection.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Reflection.dll new file mode 100644 index 0000000..4c80b94 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Reflection.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Resources.Reader.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Resources.Reader.dll new file mode 100644 index 0000000..973fe4a Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Resources.Reader.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Resources.ResourceManager.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Resources.ResourceManager.dll new file mode 100644 index 0000000..0d58cd5 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Resources.ResourceManager.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Resources.Writer.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Resources.Writer.dll new file mode 100644 index 0000000..ccd1ef9 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Resources.Writer.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.CompilerServices.Unsafe.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 0000000..ae79e0e Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.CompilerServices.VisualC.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.CompilerServices.VisualC.dll new file mode 100644 index 0000000..9dca549 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.Extensions.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.Extensions.dll new file mode 100644 index 0000000..865e23b Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.Extensions.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.Handles.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.Handles.dll new file mode 100644 index 0000000..0c5e212 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.Handles.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 0000000..f8ce2f7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.InteropServices.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.InteropServices.dll new file mode 100644 index 0000000..ee70c76 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.InteropServices.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.Intrinsics.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.Intrinsics.dll new file mode 100644 index 0000000..f9a1529 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.Intrinsics.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.Loader.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.Loader.dll new file mode 100644 index 0000000..3a5036e Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.Loader.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.Numerics.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.Numerics.dll new file mode 100644 index 0000000..d635386 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.Numerics.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.Serialization.Formatters.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 0000000..2f5ddfd Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.Serialization.Formatters.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.Serialization.Json.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.Serialization.Json.dll new file mode 100644 index 0000000..5c6f637 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.Serialization.Json.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.Serialization.Primitives.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 0000000..3417962 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.Serialization.Primitives.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.Serialization.Xml.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.Serialization.Xml.dll new file mode 100644 index 0000000..55c4a11 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.Serialization.Xml.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.Serialization.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.Serialization.dll new file mode 100644 index 0000000..f970743 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.Serialization.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.dll new file mode 100644 index 0000000..6ba6d8f Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Runtime.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Security.Claims.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Security.Claims.dll new file mode 100644 index 0000000..a438ae9 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Security.Claims.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Security.Cryptography.Algorithms.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 0000000..735a5ee Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Security.Cryptography.Algorithms.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Security.Cryptography.Csp.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Security.Cryptography.Csp.dll new file mode 100644 index 0000000..70ce267 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Security.Cryptography.Csp.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Security.Cryptography.Encoding.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Security.Cryptography.Encoding.dll new file mode 100644 index 0000000..444664d Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Security.Cryptography.Encoding.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Security.Cryptography.Primitives.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Security.Cryptography.Primitives.dll new file mode 100644 index 0000000..38e3f4c Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Security.Cryptography.Primitives.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Security.Cryptography.X509Certificates.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 0000000..23916ad Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Security.Cryptography.X509Certificates.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Security.Principal.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Security.Principal.dll new file mode 100644 index 0000000..e10cc15 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Security.Principal.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Security.SecureString.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Security.SecureString.dll new file mode 100644 index 0000000..0899def Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Security.SecureString.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Security.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Security.dll new file mode 100644 index 0000000..d552c70 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Security.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.ServiceModel.Web.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.ServiceModel.Web.dll new file mode 100644 index 0000000..ca5db97 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.ServiceModel.Web.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.ServiceProcess.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.ServiceProcess.dll new file mode 100644 index 0000000..b94432a Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.ServiceProcess.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Text.Encoding.CodePages.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Text.Encoding.CodePages.dll new file mode 100644 index 0000000..8b6c437 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Text.Encoding.CodePages.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Text.Encoding.Extensions.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Text.Encoding.Extensions.dll new file mode 100644 index 0000000..78edffa Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Text.Encoding.Extensions.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Text.Encoding.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Text.Encoding.dll new file mode 100644 index 0000000..68e1e83 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Text.Encoding.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Text.Json.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Text.Json.dll new file mode 100644 index 0000000..df21c4c Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Text.Json.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Text.RegularExpressions.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..a77679c Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Text.RegularExpressions.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Threading.Channels.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Threading.Channels.dll new file mode 100644 index 0000000..845db95 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Threading.Channels.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Threading.Overlapped.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Threading.Overlapped.dll new file mode 100644 index 0000000..9316a87 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Threading.Overlapped.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Threading.Tasks.Dataflow.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Threading.Tasks.Dataflow.dll new file mode 100644 index 0000000..ea1180b Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Threading.Tasks.Dataflow.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Threading.Tasks.Extensions.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Threading.Tasks.Extensions.dll new file mode 100644 index 0000000..bfa597a Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Threading.Tasks.Extensions.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Threading.Tasks.Parallel.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Threading.Tasks.Parallel.dll new file mode 100644 index 0000000..90616cf Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Threading.Tasks.Parallel.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Threading.Tasks.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Threading.Tasks.dll new file mode 100644 index 0000000..90e4744 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Threading.Tasks.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Threading.Thread.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Threading.Thread.dll new file mode 100644 index 0000000..29f2199 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Threading.Thread.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Threading.ThreadPool.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Threading.ThreadPool.dll new file mode 100644 index 0000000..e99893a Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Threading.ThreadPool.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Threading.Timer.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Threading.Timer.dll new file mode 100644 index 0000000..872644c Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Threading.Timer.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Threading.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Threading.dll new file mode 100644 index 0000000..481043d Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Threading.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Transactions.Local.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Transactions.Local.dll new file mode 100644 index 0000000..9ba6253 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Transactions.Local.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Transactions.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Transactions.dll new file mode 100644 index 0000000..d0830df Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Transactions.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.ValueTuple.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.ValueTuple.dll new file mode 100644 index 0000000..94d7d63 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.ValueTuple.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Web.HttpUtility.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Web.HttpUtility.dll new file mode 100644 index 0000000..bcf8ef6 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Web.HttpUtility.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Web.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Web.dll new file mode 100644 index 0000000..17ac8d3 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Web.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Windows.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Windows.dll new file mode 100644 index 0000000..263f2b1 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Windows.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Xml.Linq.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Xml.Linq.dll new file mode 100644 index 0000000..38c2bdc Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Xml.Linq.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Xml.ReaderWriter.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..4d669de Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Xml.ReaderWriter.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Xml.Serialization.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Xml.Serialization.dll new file mode 100644 index 0000000..a2751e6 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Xml.Serialization.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Xml.XDocument.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Xml.XDocument.dll new file mode 100644 index 0000000..2c75f6d Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Xml.XDocument.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Xml.XPath.XDocument.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Xml.XPath.XDocument.dll new file mode 100644 index 0000000..9ee7160 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Xml.XPath.XDocument.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Xml.XPath.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Xml.XPath.dll new file mode 100644 index 0000000..052935d Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Xml.XPath.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Xml.XmlDocument.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Xml.XmlDocument.dll new file mode 100644 index 0000000..545519b Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Xml.XmlDocument.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Xml.XmlSerializer.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Xml.XmlSerializer.dll new file mode 100644 index 0000000..07a9a30 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Xml.XmlSerializer.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Xml.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Xml.dll new file mode 100644 index 0000000..52da496 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.Xml.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.dll new file mode 100644 index 0000000..4cb4502 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/System.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/WindowsBase.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/WindowsBase.dll new file mode 100644 index 0000000..84a162e Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/WindowsBase.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/mscorlib.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/mscorlib.dll new file mode 100644 index 0000000..a09063c Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/mscorlib.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/netstandard.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/netstandard.dll new file mode 100644 index 0000000..6c975f3 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ref/netstandard.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..2b8db7b Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.resources.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..cb414f7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.resources.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ru/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ru/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/ru/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/freebsd/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/freebsd/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/freebsd/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/freebsd/lib/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/freebsd/lib/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/freebsd/lib/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/freebsd/lib/netcoreapp2.0/System.Data.Odbc.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/freebsd/lib/netcoreapp2.0/System.Data.Odbc.dll new file mode 100644 index 0000000..8c18be6 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/freebsd/lib/netcoreapp2.0/System.Data.Odbc.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/freebsd/lib/netcoreapp2.0/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/freebsd/lib/netcoreapp2.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/freebsd/lib/netcoreapp2.0/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-arm/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-arm/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-arm/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-arm/native/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-arm/native/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-arm/native/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-arm/native/libSystem.IO.Ports.Native.so b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-arm/native/libSystem.IO.Ports.Native.so new file mode 100644 index 0000000..314ac24 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-arm/native/libSystem.IO.Ports.Native.so differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-arm/native/libpsl-native.so b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-arm/native/libpsl-native.so new file mode 100644 index 0000000..5d96868 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-arm/native/libpsl-native.so differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-arm64/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-arm64/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-arm64/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-arm64/native/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-arm64/native/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-arm64/native/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so new file mode 100644 index 0000000..3868b87 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-arm64/native/libpsl-native.so b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-arm64/native/libpsl-native.so new file mode 100644 index 0000000..6659d24 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-arm64/native/libpsl-native.so differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-musl-x64/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-musl-x64/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-musl-x64/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-musl-x64/native/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-musl-x64/native/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-musl-x64/native/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-musl-x64/native/libpsl-native.so b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-musl-x64/native/libpsl-native.so new file mode 100644 index 0000000..2e44417 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-musl-x64/native/libpsl-native.so differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-x64/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-x64/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-x64/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-x64/native/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-x64/native/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-x64/native/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-x64/native/libSystem.IO.Ports.Native.so b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-x64/native/libSystem.IO.Ports.Native.so new file mode 100644 index 0000000..300b287 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-x64/native/libSystem.IO.Ports.Native.so differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-x64/native/libmi.so b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-x64/native/libmi.so new file mode 100644 index 0000000..e87da8d Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-x64/native/libmi.so differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-x64/native/libpsl-native.so b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-x64/native/libpsl-native.so new file mode 100644 index 0000000..d4a3097 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-x64/native/libpsl-native.so differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-x64/native/libpsrpclient.so b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-x64/native/libpsrpclient.so new file mode 100644 index 0000000..029ac86 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux-x64/native/libpsrpclient.so differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux/lib/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux/lib/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux/lib/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux/lib/netcoreapp2.0/System.Data.Odbc.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux/lib/netcoreapp2.0/System.Data.Odbc.dll new file mode 100644 index 0000000..db0cde8 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux/lib/netcoreapp2.0/System.Data.Odbc.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..956c136 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux/lib/netcoreapp2.0/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux/lib/netcoreapp2.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux/lib/netcoreapp2.0/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux/lib/netstandard2.0/System.IO.Ports.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux/lib/netstandard2.0/System.IO.Ports.dll new file mode 100644 index 0000000..e0fea89 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux/lib/netstandard2.0/System.IO.Ports.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux/lib/netstandard2.0/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux/lib/netstandard2.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/linux/lib/netstandard2.0/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx-x64/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx-x64/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx-x64/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx-x64/native/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx-x64/native/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx-x64/native/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib new file mode 100644 index 0000000..c8bc45e Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx/lib/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx/lib/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx/lib/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx/lib/netcoreapp2.0/System.Data.Odbc.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx/lib/netcoreapp2.0/System.Data.Odbc.dll new file mode 100644 index 0000000..632017d Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx/lib/netcoreapp2.0/System.Data.Odbc.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..90df0a4 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx/lib/netcoreapp2.0/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx/lib/netcoreapp2.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx/lib/netcoreapp2.0/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx/lib/netstandard2.0/System.IO.Ports.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx/lib/netstandard2.0/System.IO.Ports.dll new file mode 100644 index 0000000..d4f48a2 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx/lib/netstandard2.0/System.IO.Ports.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx/lib/netstandard2.0/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx/lib/netstandard2.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx/lib/netstandard2.0/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx/native/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx/native/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx/native/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx/native/libmi.dylib b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx/native/libmi.dylib new file mode 100644 index 0000000..71880e4 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx/native/libmi.dylib differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx/native/libpsl-native.dylib b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx/native/libpsl-native.dylib new file mode 100644 index 0000000..b032b06 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx/native/libpsl-native.dylib differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx/native/libpsrpclient.dylib b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx/native/libpsrpclient.dylib new file mode 100644 index 0000000..13680bf Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/osx/native/libpsrpclient.dylib differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Microsoft.PowerShell.Commands.Management.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Microsoft.PowerShell.Commands.Management.dll new file mode 100644 index 0000000..15f2516 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Microsoft.PowerShell.Commands.Management.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Microsoft.PowerShell.Commands.Utility.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Microsoft.PowerShell.Commands.Utility.dll new file mode 100644 index 0000000..b822a34 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Microsoft.PowerShell.Commands.Utility.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Microsoft.PowerShell.ConsoleHost.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Microsoft.PowerShell.ConsoleHost.dll new file mode 100644 index 0000000..b36291e Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Microsoft.PowerShell.ConsoleHost.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Microsoft.PowerShell.MarkdownRender.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Microsoft.PowerShell.MarkdownRender.dll new file mode 100644 index 0000000..1d5c0d8 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Microsoft.PowerShell.MarkdownRender.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Microsoft.PowerShell.SDK.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Microsoft.PowerShell.SDK.dll new file mode 100644 index 0000000..8e4292b Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Microsoft.PowerShell.SDK.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Microsoft.PowerShell.Security.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Microsoft.PowerShell.Security.dll new file mode 100644 index 0000000..d3b266e Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Microsoft.PowerShell.Security.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 new file mode 100644 index 0000000..0270cef --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 @@ -0,0 +1,14 @@ +@{ +GUID="56D66100-99A0-4FFC-A12D-EEE9A6718AEF" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +FunctionsToExport = @() +CmdletsToExport="Start-Transcript", "Stop-Transcript" +AliasesToExport = @() +NestedModules="Microsoft.PowerShell.ConsoleHost.dll" +HelpInfoURI = 'https://aka.ms/powershell71-help' +} diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Host/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Host/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Host/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 new file mode 100644 index 0000000..da8f870 --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 @@ -0,0 +1,60 @@ +@{ +GUID="EEFCB906-B326-4E99-9F54-8B4BB6EF3C6D" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +NestedModules="Microsoft.PowerShell.Commands.Management.dll" +HelpInfoURI = 'https://aka.ms/powershell71-help' +FunctionsToExport = @() +AliasesToExport = @("gcb", "gtz", "scb") +CmdletsToExport=@("Add-Content", + "Clear-Content", + "Clear-ItemProperty", + "Join-Path", + "Convert-Path", + "Copy-ItemProperty", + "Get-ChildItem", + "Get-Clipboard", + "Set-Clipboard", + "Get-Content", + "Get-ItemProperty", + "Get-ItemPropertyValue", + "Move-ItemProperty", + "Get-Location", + "Set-Location", + "Push-Location", + "Pop-Location", + "New-PSDrive", + "Remove-PSDrive", + "Get-PSDrive", + "Get-Item", + "New-Item", + "Set-Item", + "Remove-Item", + "Move-Item", + "Rename-Item", + "Copy-Item", + "Clear-Item", + "Invoke-Item", + "Get-PSProvider", + "New-ItemProperty", + "Split-Path", + "Test-Path", + "Get-Process", + "Stop-Process", + "Wait-Process", + "Debug-Process", + "Start-Process", + "Test-Connection", + "Remove-ItemProperty", + "Rename-ItemProperty", + "Resolve-Path", + "Set-Content", + "Set-ItemProperty", + "Get-TimeZone", + "Stop-Computer", + "Restart-Computer") +} diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Management/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Management/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Management/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 new file mode 100644 index 0000000..1f4cc15 --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 @@ -0,0 +1,14 @@ +@{ +GUID="A94C8C7E-9810-47C0-B8AF-65089C13A35A" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +FunctionsToExport = @() +CmdletsToExport="Get-Credential", "Get-ExecutionPolicy", "Set-ExecutionPolicy", "ConvertFrom-SecureString", "ConvertTo-SecureString", "Get-PfxCertificate" , "Protect-CmsMessage", "Unprotect-CmsMessage", "Get-CmsMessage" +AliasesToExport = @() +NestedModules="Microsoft.PowerShell.Security.dll" +HelpInfoURI = 'https://aka.ms/powershell71-help' +} diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Security/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Security/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Security/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 new file mode 100644 index 0000000..1ef5f33 --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 @@ -0,0 +1,44 @@ +@{ +GUID = "1DA87E53-152B-403E-98DC-74D7B4D63D59" +Author = "PowerShell" +CompanyName = "Microsoft Corporation" +Copyright = "Copyright (c) Microsoft Corporation." +ModuleVersion = "7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion = "3.0" +CmdletsToExport = @( + 'Export-Alias', 'Get-Alias', 'Import-Alias', 'New-Alias', 'Remove-Alias', 'Set-Alias', 'Export-Clixml', + 'Import-Clixml', 'Measure-Command', 'Trace-Command', 'ConvertFrom-Csv', 'ConvertTo-Csv', 'Export-Csv', + 'Import-Csv', 'Get-Culture', 'Format-Custom', 'Get-Date', 'Set-Date', 'Write-Debug', 'Wait-Debugger', + 'Register-EngineEvent', 'Write-Error', 'Get-Event', 'New-Event', 'Remove-Event', 'Unregister-Event', + 'Wait-Event', 'Get-EventSubscriber', 'Invoke-Expression', 'Out-File', 'Get-FileHash', 'Export-FormatData', + 'Get-FormatData', 'Update-FormatData', 'New-Guid', 'Format-Hex', 'Get-Host', 'Read-Host', 'Write-Host', + 'ConvertTo-Html', 'Write-Information', 'ConvertFrom-Json', 'ConvertTo-Json', 'Test-Json', 'Format-List', + 'Import-LocalizedData', 'Send-MailMessage', 'ConvertFrom-Markdown', 'Show-Markdown', 'Get-MarkdownOption', + 'Set-MarkdownOption', 'Add-Member', 'Get-Member', 'Compare-Object', 'Group-Object', 'Measure-Object', + 'New-Object', 'Select-Object', 'Sort-Object', 'Tee-Object', 'Register-ObjectEvent', 'Write-Output', + 'Import-PowerShellDataFile', 'Write-Progress', 'Disable-PSBreakpoint', 'Enable-PSBreakpoint', + 'Get-PSBreakpoint', 'Remove-PSBreakpoint', 'Set-PSBreakpoint', 'Get-PSCallStack', 'Export-PSSession', + 'Import-PSSession', 'Get-Random', 'Invoke-RestMethod', 'Debug-Runspace', 'Get-Runspace', + 'Disable-RunspaceDebug', 'Enable-RunspaceDebug', 'Get-RunspaceDebug', 'Start-Sleep', 'Join-String', + 'Out-String', 'Select-String', 'ConvertFrom-StringData', 'Format-Table', 'New-TemporaryFile', 'New-TimeSpan', + 'Get-TraceSource', 'Set-TraceSource', 'Add-Type', 'Get-TypeData', 'Remove-TypeData', 'Update-TypeData', + 'Get-UICulture', 'Get-Unique', 'Get-Uptime', 'Clear-Variable', 'Get-Variable', 'New-Variable', + 'Remove-Variable', 'Set-Variable', 'Get-Verb', 'Write-Verbose', 'Write-Warning', 'Invoke-WebRequest', + 'Format-Wide', 'ConvertTo-Xml', 'Select-Xml', 'Get-Error', 'Update-List', 'Unblock-File' +) +FunctionsToExport = @() +AliasesToExport = @('fhx') +NestedModules = @("Microsoft.PowerShell.Commands.Utility.dll") +HelpInfoURI = 'https://aka.ms/powershell71-help' +PrivateData = @{ + PSData = @{ + ExperimentalFeatures = @( + @{ + Name = 'Microsoft.PowerShell.Utility.PSManageBreakpointsInRunspace' + Description = 'Enables -BreakAll parameter on Debug-Runspace and Debug-Job cmdlets to allow users to decide if they want PowerShell to break immediately in the current location when they attach a debugger. Enables -Runspace parameter on *-PSBreakpoint cmdlets to support management of breakpoints in another runspace.' + } + ) + } +} +} diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Utility/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Utility/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Utility/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Modules/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Modules/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/Modules/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/System.Management.Automation.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/System.Management.Automation.dll new file mode 100644 index 0000000..68d7ab7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/System.Management.Automation.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/net5.0/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll new file mode 100644 index 0000000..8f73295 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp2.1/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp2.1/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp2.1/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll new file mode 100644 index 0000000..8b95164 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp3.0/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp3.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp3.0/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..78105ed Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/netstandard1.6/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/netstandard1.6/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/unix/lib/netstandard1.6/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm/lib/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm/lib/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm/lib/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..2e7bf94 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..ac47598 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm/lib/netstandard1.6/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm/lib/netstandard1.6/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm/lib/netstandard1.6/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll new file mode 100644 index 0000000..56a149b Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll new file mode 100644 index 0000000..e21e9ca Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm/native/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm/native/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm/native/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm/native/mi.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm/native/mi.dll new file mode 100644 index 0000000..7228cd0 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm/native/mi.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm/native/miutils.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm/native/miutils.dll new file mode 100644 index 0000000..ab98cbf Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm/native/miutils.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm/native/pwrshplugin.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm/native/pwrshplugin.dll new file mode 100644 index 0000000..ef3c83f Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm/native/pwrshplugin.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/lib/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/lib/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/lib/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..50860ab Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..9dbe56e Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/lib/netstandard1.6/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/lib/netstandard1.6/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/lib/netstandard1.6/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll new file mode 100644 index 0000000..a78573d Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll new file mode 100644 index 0000000..fc3bfdf Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/native/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/native/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/native/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/native/mi.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/native/mi.dll new file mode 100644 index 0000000..eb971a1 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/native/mi.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/native/miutils.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/native/miutils.dll new file mode 100644 index 0000000..0d3985d Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/native/miutils.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/native/pwrshplugin.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/native/pwrshplugin.dll new file mode 100644 index 0000000..a76e3f6 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/native/pwrshplugin.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/native/sni.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/native/sni.dll new file mode 100644 index 0000000..7b8f9d8 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-arm64/native/sni.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-x64/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-x64/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-x64/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll new file mode 100644 index 0000000..6193934 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-x64/native/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-x64/native/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-x64/native/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-x64/native/pwrshplugin.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-x64/native/pwrshplugin.dll new file mode 100644 index 0000000..f7368e4 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-x64/native/pwrshplugin.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-x64/native/sni.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-x64/native/sni.dll new file mode 100644 index 0000000..c1a05a5 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-x64/native/sni.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-x86/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-x86/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-x86/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll new file mode 100644 index 0000000..f592b9a Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-x86/native/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-x86/native/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-x86/native/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-x86/native/pwrshplugin.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-x86/native/pwrshplugin.dll new file mode 100644 index 0000000..93ef54c Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-x86/native/pwrshplugin.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-x86/native/sni.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-x86/native/sni.dll new file mode 100644 index 0000000..5fc21ac Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win-x86/native/sni.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Microsoft.Management.Infrastructure.CimCmdlets.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Microsoft.Management.Infrastructure.CimCmdlets.dll new file mode 100644 index 0000000..61e60dc Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Microsoft.Management.Infrastructure.CimCmdlets.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Microsoft.PowerShell.Commands.Diagnostics.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Microsoft.PowerShell.Commands.Diagnostics.dll new file mode 100644 index 0000000..7a6f670 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Microsoft.PowerShell.Commands.Diagnostics.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Microsoft.PowerShell.Commands.Management.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Microsoft.PowerShell.Commands.Management.dll new file mode 100644 index 0000000..0311e38 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Microsoft.PowerShell.Commands.Management.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Microsoft.PowerShell.Commands.Utility.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Microsoft.PowerShell.Commands.Utility.dll new file mode 100644 index 0000000..3084090 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Microsoft.PowerShell.Commands.Utility.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Microsoft.PowerShell.ConsoleHost.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Microsoft.PowerShell.ConsoleHost.dll new file mode 100644 index 0000000..df08fad Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Microsoft.PowerShell.ConsoleHost.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Microsoft.PowerShell.CoreCLR.Eventing.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Microsoft.PowerShell.CoreCLR.Eventing.dll new file mode 100644 index 0000000..c3d1468 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Microsoft.PowerShell.CoreCLR.Eventing.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Microsoft.PowerShell.MarkdownRender.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Microsoft.PowerShell.MarkdownRender.dll new file mode 100644 index 0000000..404cb95 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Microsoft.PowerShell.MarkdownRender.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Microsoft.PowerShell.SDK.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Microsoft.PowerShell.SDK.dll new file mode 100644 index 0000000..9b096da Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Microsoft.PowerShell.SDK.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Microsoft.PowerShell.Security.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Microsoft.PowerShell.Security.dll new file mode 100644 index 0000000..420fb2a Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Microsoft.PowerShell.Security.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Microsoft.WSMan.Management.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Microsoft.WSMan.Management.dll new file mode 100644 index 0000000..9bea3d5 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Microsoft.WSMan.Management.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Microsoft.WSMan.Runtime.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Microsoft.WSMan.Runtime.dll new file mode 100644 index 0000000..20ac15f Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Microsoft.WSMan.Runtime.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/CimCmdlets/CimCmdlets.psd1 b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/CimCmdlets/CimCmdlets.psd1 new file mode 100644 index 0000000..c202a4c --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/CimCmdlets/CimCmdlets.psd1 @@ -0,0 +1,211 @@ +@{ +GUID="{Fb6cc51d-c096-4b38-b78d-0fed6277096a}" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +RootModule="Microsoft.Management.Infrastructure.CimCmdlets" +RequiredAssemblies="Microsoft.Management.Infrastructure.CimCmdlets.dll","Microsoft.Management.Infrastructure.Dll" +FunctionsToExport = @() +CmdletsToExport= "Get-CimAssociatedInstance", "Get-CimClass", "Get-CimInstance", "Get-CimSession", "Invoke-CimMethod", + "New-CimInstance","New-CimSession","New-CimSessionOption","Register-CimIndicationEvent","Remove-CimInstance", + "Remove-CimSession","Set-CimInstance", + "Export-BinaryMiLog","Import-BinaryMiLog" +AliasesToExport = "gcim","scim","ncim", "rcim","icim","gcai","rcie","ncms","rcms","gcms","ncso","gcls" +HelpInfoUri="https://aka.ms/powershell71-help" +} + +# SIG # Begin signature block +# MIIjgwYJKoZIhvcNAQcCoIIjdDCCI3ACAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCDwi+m5K87gKg1x +# EQOL/8bBcMozXKIiZN1V7U2W25/W66CCDYEwggX/MIID56ADAgECAhMzAAAB32vw +# LpKnSrTQAAAAAAHfMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjAxMjE1MjEzMTQ1WhcNMjExMjAyMjEzMTQ1WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQC2uxlZEACjqfHkuFyoCwfL25ofI9DZWKt4wEj3JBQ48GPt1UsDv834CcoUUPMn +# s/6CtPoaQ4Thy/kbOOg/zJAnrJeiMQqRe2Lsdb/NSI2gXXX9lad1/yPUDOXo4GNw +# PjXq1JZi+HZV91bUr6ZjzePj1g+bepsqd/HC1XScj0fT3aAxLRykJSzExEBmU9eS +# yuOwUuq+CriudQtWGMdJU650v/KmzfM46Y6lo/MCnnpvz3zEL7PMdUdwqj/nYhGG +# 3UVILxX7tAdMbz7LN+6WOIpT1A41rwaoOVnv+8Ua94HwhjZmu1S73yeV7RZZNxoh +# EegJi9YYssXa7UZUUkCCA+KnAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUOPbML8IdkNGtCfMmVPtvI6VZ8+Mw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDYzMDA5MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAnnqH +# tDyYUFaVAkvAK0eqq6nhoL95SZQu3RnpZ7tdQ89QR3++7A+4hrr7V4xxmkB5BObS +# 0YK+MALE02atjwWgPdpYQ68WdLGroJZHkbZdgERG+7tETFl3aKF4KpoSaGOskZXp +# TPnCaMo2PXoAMVMGpsQEQswimZq3IQ3nRQfBlJ0PoMMcN/+Pks8ZTL1BoPYsJpok +# t6cql59q6CypZYIwgyJ892HpttybHKg1ZtQLUlSXccRMlugPgEcNZJagPEgPYni4 +# b11snjRAgf0dyQ0zI9aLXqTxWUU5pCIFiPT0b2wsxzRqCtyGqpkGM8P9GazO8eao +# mVItCYBcJSByBx/pS0cSYwBBHAZxJODUqxSXoSGDvmTfqUJXntnWkL4okok1FiCD +# Z4jpyXOQunb6egIXvkgQ7jb2uO26Ow0m8RwleDvhOMrnHsupiOPbozKroSa6paFt +# VSh89abUSooR8QdZciemmoFhcWkEwFg4spzvYNP4nIs193261WyTaRMZoceGun7G +# CT2Rl653uUj+F+g94c63AhzSq4khdL4HlFIP2ePv29smfUnHtGq6yYFDLnT0q/Y+ +# Di3jwloF8EWkkHRtSuXlFUbTmwr/lDDgbpZiKhLS7CBTDj32I0L5i532+uHczw82 +# oZDmYmYmIUSMbZOgS65h797rj5JJ6OkeEUJoAVwwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIVWDCCFVQCAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAd9r8C6Sp0q00AAAAAAB3zAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgR+i24OC3 +# aqMknXF9XoOxxc6cZr/8NgIrYAz6LWkT318wQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQB7SsfGmXu30tL2qCFXBiwPZ0NGZrQAgpIcOcc1LUeL +# pIDD9diAcuPcjdFiE2Q2+T1uAmNRtspsYYEYM/jLIY3FvPxZOPL/HrqoDIg2/M9v +# zKe6QtKvZh/gGUPMYzASNxYzvvYxE5wy+WONzIsoqmoRbcSR3AcdLTnL474ibvXe +# Z8CIbgm1lToqPImuMil5LlOx/fbI2aYAMdTiM1tubxd6C5Mgyfx4tKoVkQyIyZof +# 97RseiMy6ZDgcfpHwTDcCE6QfhXcNuOhNZ1B6Fw5NZ3u/eEIxTGxWoLIeWoLTnJW +# SFIuqRXvSw69KC9sKGeH/zrU/vGzjQW8brWflE+9or2AoYIS4jCCEt4GCisGAQQB +# gjcDAwExghLOMIISygYJKoZIhvcNAQcCoIISuzCCErcCAQMxDzANBglghkgBZQME +# AgEFADCCAVEGCyqGSIb3DQEJEAEEoIIBQASCATwwggE4AgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEINdNAAQF/WVVtRzwMAg5NEFbunnDkK5yzQlqZ5r3 +# W4LeAgZgPPZd+JoYEzIwMjEwMzEwMDExODM3LjY3M1owBIACAfSggdCkgc0wgcox +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJTAjBgNVBAsTHE1p +# Y3Jvc29mdCBBbWVyaWNhIE9wZXJhdGlvbnMxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg +# RVNOOjNFN0EtRTM1OS1BMjVEMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt +# cCBTZXJ2aWNloIIOOTCCBPEwggPZoAMCAQICEzMAAAFSMEtdiazmcEcAAAAAAVIw +# DQYJKoZIhvcNAQELBQAwfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0 +# b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3Jh +# dGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwHhcN +# MjAxMTEyMTgyNjA1WhcNMjIwMjExMTgyNjA1WjCByjELMAkGA1UEBhMCVVMxEzAR +# BgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1p +# Y3Jvc29mdCBDb3Jwb3JhdGlvbjElMCMGA1UECxMcTWljcm9zb2Z0IEFtZXJpY2Eg +# T3BlcmF0aW9uczEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0U3QS1FMzU5LUEy +# NUQxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2UwggEiMA0G +# CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCuzG6EiZh0taCSbswMiupMTYnbboFz +# jj1DuDbbvT0RXKBCVl/umA+Uy214DmHiFhkeuRdlLB0ya5S9um5aKr7lBBqZzvtK +# gGNgCRbDTG9Yu6kzDzPTzQRulVIvoWVy0gITnEyoJ1O3m5IPpsLBNQCdXsh+3TZF +# 73JAcub21bnxm/4sxe4zTdbdttBrqX8/JJF2VEnAP+MBvF2UQSo6XUAaTKC/HPDP +# Cce/IsNoAxxLDI1wHhIlqjRBnt4HM5HcKHrZrvH+vHnihikdlEzh3fjQFowk1fG7 +# PVhmO60O5vVdqA+H9314hHENQI0cbo+SkSi8SSJSLNixgj0eWePTh7pbAgMBAAGj +# ggEbMIIBFzAdBgNVHQ4EFgQUhN2u2qwj1l2c2h/kULDuBRJsexQwHwYDVR0jBBgw +# FoAU1WM6XIoxkPNDe3xGG8UzaFqFbVUwVgYDVR0fBE8wTTBLoEmgR4ZFaHR0cDov +# L2NybC5taWNyb3NvZnQuY29tL3BraS9jcmwvcHJvZHVjdHMvTWljVGltU3RhUENB +# XzIwMTAtMDctMDEuY3JsMFoGCCsGAQUFBwEBBE4wTDBKBggrBgEFBQcwAoY+aHR0 +# cDovL3d3dy5taWNyb3NvZnQuY29tL3BraS9jZXJ0cy9NaWNUaW1TdGFQQ0FfMjAx +# MC0wNy0wMS5jcnQwDAYDVR0TAQH/BAIwADATBgNVHSUEDDAKBggrBgEFBQcDCDAN +# BgkqhkiG9w0BAQsFAAOCAQEAVcUncfFqSazQbDEXf3d10/upiWQU5HdTbwG9v9be +# VIDaG4oELyIcNE6e6CbOBMlPU+smpYYcnK3jucNqChwquLmxdi2iPy4iQ6vjAdBp +# 9+VFWlrBqUsNXZzjCpgMCZj6bu8Xq0Nndl4WyBbI0Jku68vUNG4wsMdKP3dz+1Mz +# k9SUma3j7HyNA559do9nhKmoZMn5dtf03QvxlaEwMAaPk9xuUv9BN8cNvFnpWk4m +# LERQW6tA3rXK0soEISKTYG7Ose7oMXZDYPWxf9oFhYKzZw/SwnhdBoj2S5eyYE3A +# uF/ZXzR3hdp3/XGzZeOdERfFy1rC7ZBwhDIajeFMi53GnzCCBnEwggRZoAMCAQIC +# CmEJgSoAAAAAAAIwDQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRp +# ZmljYXRlIEF1dGhvcml0eSAyMDEwMB4XDTEwMDcwMTIxMzY1NVoXDTI1MDcwMTIx +# NDY1NVowfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNV +# BAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQG +# A1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggEiMA0GCSqGSIb3 +# DQEBAQUAA4IBDwAwggEKAoIBAQCpHQ28dxGKOiDs/BOX9fp/aZRrdFQQ1aUKAIKF +# ++18aEssX8XD5WHCdrc+Zitb8BVTJwQxH0EbGpUdzgkTjnxhMFmxMEQP8WCIhFRD +# DNdNuDgIs0Ldk6zWczBXJoKjRQ3Q6vVHgc2/JGAyWGBG8lhHhjKEHnRhZ5FfgVSx +# z5NMksHEpl3RYRNuKMYa+YaAu99h/EbBJx0kZxJyGiGKr0tkiVBisV39dx898Fd1 +# rL2KQk1AUdEPnAY+Z3/1ZsADlkR+79BL/W7lmsqxqPJ6Kgox8NpOBpG2iAg16Hgc +# sOmZzTznL0S6p/TcZL2kAcEgCZN4zfy8wMlEXV4WnAEFTyJNAgMBAAGjggHmMIIB +# 4jAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU1WM6XIoxkPNDe3xGG8UzaFqF +# bVUwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMA8GA1Ud +# EwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU1fZWy4/oolxiaNE9lJBb186aGMQwVgYD +# VR0fBE8wTTBLoEmgR4ZFaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraS9jcmwv +# cHJvZHVjdHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYtMjMuY3JsMFoGCCsGAQUFBwEB +# BE4wTDBKBggrBgEFBQcwAoY+aHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraS9j +# ZXJ0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5jcnQwgaAGA1UdIAEB/wSBlTCB +# kjCBjwYJKwYBBAGCNy4DMIGBMD0GCCsGAQUFBwIBFjFodHRwOi8vd3d3Lm1pY3Jv +# c29mdC5jb20vUEtJL2RvY3MvQ1BTL2RlZmF1bHQuaHRtMEAGCCsGAQUFBwICMDQe +# MiAdAEwAZQBnAGEAbABfAFAAbwBsAGkAYwB5AF8AUwB0AGEAdABlAG0AZQBuAHQA +# LiAdMA0GCSqGSIb3DQEBCwUAA4ICAQAH5ohRDeLG4Jg/gXEDPZ2joSFvs+umzPUx +# vs8F4qn++ldtGTCzwsVmyWrf9efweL3HqJ4l4/m87WtUVwgrUYJEEvu5U4zM9GAS +# inbMQEBBm9xcF/9c+V4XNZgkVkt070IQyK+/f8Z/8jd9Wj8c8pl5SpFSAK84Dxf1 +# L3mBZdmptWvkx872ynoAb0swRCQiPM/tA6WWj1kpvLb9BOFwnzJKJ/1Vry/+tuWO +# M7tiX5rbV0Dp8c6ZZpCM/2pif93FSguRJuI57BlKcWOdeyFtw5yjojz6f32WapB4 +# pm3S4Zz5Hfw42JT0xqUKloakvZ4argRCg7i1gJsiOCC1JeVk7Pf0v35jWSUPei45 +# V3aicaoGig+JFrphpxHLmtgOR5qAxdDNp9DvfYPw4TtxCd9ddJgiCGHasFAeb73x +# 4QDf5zEHpJM692VHeOj4qEir995yfmFrb3epgcunCaw5u+zGy9iCtHLNHfS4hQEe +# gPsbiSpUObJb2sgNVZl6h3M7COaYLeqN4DMuEin1wC9UJyH3yKxO2ii4sanblrKn +# QqLJzxlBTeCG+SqaoxFmMNO7dDJL32N79ZmKLxvHIa9Zta7cRDyXUHHXodLFVeNp +# 3lfB0d4wwP3M5k37Db9dT+mdHhk4L7zPWAUu7w2gUDXa7wknHNWzfjUeCLraNtvT +# X4/edIhJEqGCAsswggI0AgEBMIH4oYHQpIHNMIHKMQswCQYDVQQGEwJVUzETMBEG +# A1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWlj +# cm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxNaWNyb3NvZnQgQW1lcmljYSBP +# cGVyYXRpb25zMSYwJAYDVQQLEx1UaGFsZXMgVFNTIEVTTjozRTdBLUUzNTktQTI1 +# RDElMCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAgU2VydmljZaIjCgEBMAcG +# BSsOAwIaAxUAv26eVJaumcmTchd6hqayQMNDXluggYMwgYCkfjB8MQswCQYDVQQG +# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG +# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQg +# VGltZS1TdGFtcCBQQ0EgMjAxMDANBgkqhkiG9w0BAQUFAAIFAOPyAMgwIhgPMjAy +# MTAzMDkyMjEyMjRaGA8yMDIxMDMxMDIyMTIyNFowdDA6BgorBgEEAYRZCgQBMSww +# KjAKAgUA4/IAyAIBADAHAgEAAgIcnDAHAgEAAgIRmDAKAgUA4/NSSAIBADA2Bgor +# BgEEAYRZCgQCMSgwJjAMBgorBgEEAYRZCgMCoAowCAIBAAIDB6EgoQowCAIBAAID +# AYagMA0GCSqGSIb3DQEBBQUAA4GBAJDVZ5yfSdZ+LlfL0XxjSSnMt5tYALyLo3NS +# BXE2ExNw4snoVNrJkdx8tsknLloTQJ6wxDB4DpRWcQ5zKxaYIissJa1WzeHxT3Jf +# 6f5VDVygQVLpNHpDG5Q29ogYHu3m2EBzWcKU++6gyTX80s0X2H11Go548MYFkgWQ +# 1OkbO5PyMYIDDTCCAwkCAQEwgZMwfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldh +# c2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBD +# b3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIw +# MTACEzMAAAFSMEtdiazmcEcAAAAAAVIwDQYJYIZIAWUDBAIBBQCgggFKMBoGCSqG +# SIb3DQEJAzENBgsqhkiG9w0BCRABBDAvBgkqhkiG9w0BCQQxIgQg+Kd15engdN1/ +# RKh2HH3dlQz9xTzXNBmttvlcgLwSv/cwgfoGCyqGSIb3DQEJEAIvMYHqMIHnMIHk +# MIG9BCCT7lzHo4slUIxfEGp8LXQNik/ecK6vuuGWIcmBrrsnpjCBmDCBgKR+MHwx +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1p +# Y3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwAhMzAAABUjBLXYms5nBHAAAAAAFS +# MCIEICh4fdAMXOBt8Q/HY8UtgOHUMPI+5kZLGfKmPZWqtZ/wMA0GCSqGSIb3DQEB +# CwUABIIBABkTDPqpBTfZMpyaKEvqJHYHbYlsKIGp0CC43ZP/dz2/PX5NSZbksICN +# nEVwPElHObnoFC6SUPT6o4Ij65PQeDiPGenC1Fy+xJGv1K2XjI8vtVmEpKXLn1mp +# 1CEpt9Ocn7RP1CUlrEeKogfVPFH6oYvVm0rIDavbp/1LFf4Xw3hOK1YRBIhkWuy7 +# x1D+vr6VZZt1UuKAVve6HegGQiCO8Z2HuDYGd3MwHe7uRrzU8FR7ZU5tMySI+kIP +# kXX57vdCvpxzjx/Q+IMHWlp7MnIWj7TK4+MDEqZmlqwXlpB3o8/pTeagQMcp/LvC +# Vs3DciGZLtlbG9aV8gNgU7PuLRlkG6E= +# SIG # End signature block diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/CimCmdlets/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/CimCmdlets/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/CimCmdlets/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml new file mode 100644 index 0000000..8de26b4 --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml @@ -0,0 +1,272 @@ + + + + + + + + Counter + + Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSampleSet + + + + + + 25 + left + + + + left + 100 + + + + + + + + Timestamp + + + Readings + + + + + + + + Counter + + Microsoft.PowerShell.Commands.GetCounter.CounterFileInfo + + + + + 30 + left + + + 30 + left + + + 30 + left + + + + + + + + OldestRecord + + + NewestRecord + + + SampleCount + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml new file mode 100644 index 0000000..2df47f1 --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml @@ -0,0 +1,315 @@ + + + + + Default + + System.Diagnostics.Eventing.Reader.EventLogRecord + + + ProviderName + + + + + + 25 + + + 8 + right + + + 16 + + + + + + + + + TimeCreated + + + Id + + + LevelDisplayName + + + Message + + + + + + + + + Default + + System.Diagnostics.Eventing.Reader.EventLogConfiguration + + + + + + + 9 + + + + 18 + right + + + + 11 + right + + + + + + + + LogMode + + + MaximumSizeInBytes + + + RecordCount + + + LogName + + + + + + + + Default + + System.Diagnostics.Eventing.Reader.ProviderMetadata + + + + + + + Name + + + LogLinks + + + Opcodes + + + Tasks + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml new file mode 100644 index 0000000..5c1e7f5 --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml @@ -0,0 +1,332 @@ + + + + + + System.Diagnostics.Eventing.Reader.EventLogConfiguration + + + PSStandardMembers + + + DefaultDisplayPropertySet + + LogName + MaximumSizeInBytes + RecordCount + LogMode + + + + + + + + System.Diagnostics.Eventing.Reader.EventLogRecord + + + PSStandardMembers + + + DefaultDisplayPropertySet + + TimeCreated + ProviderName + Id + Message + + + + + + + + System.Diagnostics.Eventing.Reader.ProviderMetadata + + + ProviderName + Name + + + PSStandardMembers + + + DefaultDisplayPropertySet + + Name + LogLinks + + + + + + + + Microsoft.PowerShell.Commands.GetCounter.CounterSet + + + Counter + Paths + + + + + Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSample + + + PSStandardMembers + + + DefaultDisplayPropertySet + + Path + InstanceName + CookedValue + + + + + + + + Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSampleSet + + + PSStandardMembers + + + DefaultDisplayPropertySet + + Timestamp + Readings + + + + + + + + Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSampleSet + + + Readings + + $strPaths = "" + foreach ($ctr in $this.CounterSamples) + { + $strPaths += ($ctr.Path + " :" + "`n") + $strPaths += ($ctr.CookedValue.ToString() + "`n`n") + } + return $strPaths + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1 b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1 new file mode 100644 index 0000000..efe16d9 --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1 @@ -0,0 +1,209 @@ +@{ +GUID="CA046F10-CA64-4740-8FF9-2565DBA61A4F" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +FunctionsToExport = @() +CmdletsToExport="Get-WinEvent", "New-WinEvent", "Get-Counter" +AliasesToExport = @() +NestedModules="Microsoft.PowerShell.Commands.Diagnostics.dll" +TypesToProcess="GetEvent.types.ps1xml" +FormatsToProcess="Event.format.ps1xml", "Diagnostics.format.ps1xml" +HelpInfoURI = 'https://aka.ms/powershell71-help' +} + +# SIG # Begin signature block +# MIIjkgYJKoZIhvcNAQcCoIIjgzCCI38CAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCA0T0jg+4+/0Mn/ +# vAQEIOVHurhYuW1nFOiXyZgFqpv28aCCDYEwggX/MIID56ADAgECAhMzAAAB32vw +# LpKnSrTQAAAAAAHfMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjAxMjE1MjEzMTQ1WhcNMjExMjAyMjEzMTQ1WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQC2uxlZEACjqfHkuFyoCwfL25ofI9DZWKt4wEj3JBQ48GPt1UsDv834CcoUUPMn +# s/6CtPoaQ4Thy/kbOOg/zJAnrJeiMQqRe2Lsdb/NSI2gXXX9lad1/yPUDOXo4GNw +# PjXq1JZi+HZV91bUr6ZjzePj1g+bepsqd/HC1XScj0fT3aAxLRykJSzExEBmU9eS +# yuOwUuq+CriudQtWGMdJU650v/KmzfM46Y6lo/MCnnpvz3zEL7PMdUdwqj/nYhGG +# 3UVILxX7tAdMbz7LN+6WOIpT1A41rwaoOVnv+8Ua94HwhjZmu1S73yeV7RZZNxoh +# EegJi9YYssXa7UZUUkCCA+KnAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUOPbML8IdkNGtCfMmVPtvI6VZ8+Mw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDYzMDA5MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAnnqH +# tDyYUFaVAkvAK0eqq6nhoL95SZQu3RnpZ7tdQ89QR3++7A+4hrr7V4xxmkB5BObS +# 0YK+MALE02atjwWgPdpYQ68WdLGroJZHkbZdgERG+7tETFl3aKF4KpoSaGOskZXp +# TPnCaMo2PXoAMVMGpsQEQswimZq3IQ3nRQfBlJ0PoMMcN/+Pks8ZTL1BoPYsJpok +# t6cql59q6CypZYIwgyJ892HpttybHKg1ZtQLUlSXccRMlugPgEcNZJagPEgPYni4 +# b11snjRAgf0dyQ0zI9aLXqTxWUU5pCIFiPT0b2wsxzRqCtyGqpkGM8P9GazO8eao +# mVItCYBcJSByBx/pS0cSYwBBHAZxJODUqxSXoSGDvmTfqUJXntnWkL4okok1FiCD +# Z4jpyXOQunb6egIXvkgQ7jb2uO26Ow0m8RwleDvhOMrnHsupiOPbozKroSa6paFt +# VSh89abUSooR8QdZciemmoFhcWkEwFg4spzvYNP4nIs193261WyTaRMZoceGun7G +# CT2Rl653uUj+F+g94c63AhzSq4khdL4HlFIP2ePv29smfUnHtGq6yYFDLnT0q/Y+ +# Di3jwloF8EWkkHRtSuXlFUbTmwr/lDDgbpZiKhLS7CBTDj32I0L5i532+uHczw82 +# oZDmYmYmIUSMbZOgS65h797rj5JJ6OkeEUJoAVwwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIVZzCCFWMCAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAd9r8C6Sp0q00AAAAAAB3zAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgKDCy+uhb +# SxHEnuBFv/0aaLU8piSJ6BZP/DbiZkym248wQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQAZtAhskRcGvXkQ2EQzITP8V/2N04iMLIvmfObBytHB +# e8H0s5NoeztOCl3AeGy4cyPre7H/X80hvQnqDiYiGDHAqNnkRDjxZ9BbIsQg2TV0 +# me5HDR0eeC+2G42Z+8oIupH17Av3U3uGB2OpoCTrgWxVO0e4G2F6XlCxfvN+ow5i +# uRanEacKarPGuPKXLJsbeo1IZJvakrg5ssIVpTSiJkTycFc2WYjiBr34q2jPPS7C +# SNNsIkTsBnY/uqj/9pmWSm8L0raNNK1fMhdWXw/nTfa7WKozSphnBzVkVG3Ex9CH +# 6dPMpLD27Qk6QgUVumvxBIxZ2G0o1sksFQ81PdzYzq88oYIS8TCCEu0GCisGAQQB +# gjcDAwExghLdMIIS2QYJKoZIhvcNAQcCoIISyjCCEsYCAQMxDzANBglghkgBZQME +# AgEFADCCAVUGCyqGSIb3DQEJEAEEoIIBRASCAUAwggE8AgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIC5U1Q5+gjvaUyHJBNRgHLvtu5L4ZgwCmfb3Gl+X +# ld3jAgZgPPT0x6oYEzIwMjEwMzEwMDExODM4LjA3N1owBIACAfSggdSkgdEwgc4x +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKTAnBgNVBAsTIE1p +# Y3Jvc29mdCBPcGVyYXRpb25zIFB1ZXJ0byBSaWNvMSYwJAYDVQQLEx1UaGFsZXMg +# VFNTIEVTTjpGODdBLUUzNzQtRDdCOTElMCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUt +# U3RhbXAgU2VydmljZaCCDkQwggT1MIID3aADAgECAhMzAAABY4tkxsmFlmV2AAAA +# AAFjMA0GCSqGSIb3DQEBCwUAMHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNo +# aW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29y +# cG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEw +# MB4XDTIxMDExNDE5MDIyM1oXDTIyMDQxMTE5MDIyM1owgc4xCzAJBgNVBAYTAlVT +# MRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQK +# ExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVy +# YXRpb25zIFB1ZXJ0byBSaWNvMSYwJAYDVQQLEx1UaGFsZXMgVFNTIEVTTjpGODdB +# LUUzNzQtRDdCOTElMCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAgU2Vydmlj +# ZTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK1xF/YSncl0YpL/qN2F +# nfwjf0i8a+C4ELz5UZy3JOU54XH+rHv1y3LgKYGu3wrtNSEY4Hz5z6PRlEJvv7aK +# 2tm7WvFSes7iLFhQ08DV4hVx5zF6ll5uN2ti2fJNZ6JDjMSVYuY/waYdNFo7N4l8 +# x87/1STIob3PDiaqAoEZ1hEbmuRr44EKP/3RDgo/AY0o01zAF4k5Hvyrfz03GaJI +# Z6EIIgbYbE6E2LX2cJZ963aNYPZLYVbNnTviO7p2eGHtaAkn08QrzW9pz1aGCTUl +# DLRULnMiQVLNigaU1v8OTzv7alAInTlRfFLvPIV0JJ2SPq+wVLxPGhiVswErX98/ +# szUCAwEAAaOCARswggEXMB0GA1UdDgQWBBQJNcrxdnJn7j8xWp9Gx5A+1989KTAf +# BgNVHSMEGDAWgBTVYzpcijGQ80N7fEYbxTNoWoVtVTBWBgNVHR8ETzBNMEugSaBH +# hkVodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNU +# aW1TdGFQQ0FfMjAxMC0wNy0wMS5jcmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUF +# BzAChj5odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1RpbVN0 +# YVBDQV8yMDEwLTA3LTAxLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoGCCsG +# AQUFBwMIMA0GCSqGSIb3DQEBCwUAA4IBAQACiEGCB9eO4lPOjjICYfsTqam9IqdR +# tMj20UBBVLhufvP9xvloI8LZ9wOPq4sCoJSdhMLawUWZd67vFlM/iBP+7Xkq109T +# aeQSE4Nc9ueM15flEvao4ZtzGoWTcxpC+alYY0kVGIj6SxBSxnCkoZesT44WVITB +# QL/43PmHxVAFD0C1cDzza5nv1CSiDvnZ4qNxpP6af9IYfKbJB4bJxBq52FZVQqR4 +# dA6Na7H4sThh1AY/qYc6kzmSphUvEzCq5xPZ8+TlsoNNZYz6TAR6qnefT2D/3Dsn +# 7XmO+wNjIi6AEWQJHaqwB7R5OWO7QJ7p07Rl/4TvkNMzvZl8BBSfX7YjMIIGcTCC +# BFmgAwIBAgIKYQmBKgAAAAAAAjANBgkqhkiG9w0BAQsFADCBiDELMAkGA1UEBhMC +# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV +# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEyMDAGA1UEAxMpTWljcm9zb2Z0IFJv +# b3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTAwHhcNMTAwNzAxMjEzNjU1WhcN +# MjUwNzAxMjE0NjU1WjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3Rv +# bjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0 +# aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMDCCASIw +# DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKkdDbx3EYo6IOz8E5f1+n9plGt0 +# VBDVpQoAgoX77XxoSyxfxcPlYcJ2tz5mK1vwFVMnBDEfQRsalR3OCROOfGEwWbEw +# RA/xYIiEVEMM1024OAizQt2TrNZzMFcmgqNFDdDq9UeBzb8kYDJYYEbyWEeGMoQe +# dGFnkV+BVLHPk0ySwcSmXdFhE24oxhr5hoC732H8RsEnHSRnEnIaIYqvS2SJUGKx +# Xf13Hz3wV3WsvYpCTUBR0Q+cBj5nf/VmwAOWRH7v0Ev9buWayrGo8noqCjHw2k4G +# kbaICDXoeByw6ZnNPOcvRLqn9NxkvaQBwSAJk3jN/LzAyURdXhacAQVPIk0CAwEA +# AaOCAeYwggHiMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBTVYzpcijGQ80N7 +# fEYbxTNoWoVtVTAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNVHQ8EBAMC +# AYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo0T2UkFvX +# zpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20v +# cGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5jcmwwWgYI +# KwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j +# b20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDCBoAYDVR0g +# AQH/BIGVMIGSMIGPBgkrBgEEAYI3LgMwgYEwPQYIKwYBBQUHAgEWMWh0dHA6Ly93 +# d3cubWljcm9zb2Z0LmNvbS9QS0kvZG9jcy9DUFMvZGVmYXVsdC5odG0wQAYIKwYB +# BQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AUABvAGwAaQBjAHkAXwBTAHQAYQB0AGUA +# bQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAAfmiFEN4sbgmD+BcQM9naOh +# IW+z66bM9TG+zwXiqf76V20ZMLPCxWbJat/15/B4vceoniXj+bzta1RXCCtRgkQS +# +7lTjMz0YBKKdsxAQEGb3FwX/1z5Xhc1mCRWS3TvQhDIr79/xn/yN31aPxzymXlK +# kVIArzgPF/UveYFl2am1a+THzvbKegBvSzBEJCI8z+0DpZaPWSm8tv0E4XCfMkon +# /VWvL/625Y4zu2JfmttXQOnxzplmkIz/amJ/3cVKC5Em4jnsGUpxY517IW3DnKOi +# PPp/fZZqkHimbdLhnPkd/DjYlPTGpQqWhqS9nhquBEKDuLWAmyI4ILUl5WTs9/S/ +# fmNZJQ96LjlXdqJxqgaKD4kWumGnEcua2A5HmoDF0M2n0O99g/DhO3EJ3110mCII +# YdqwUB5vvfHhAN/nMQekkzr3ZUd46PioSKv33nJ+YWtvd6mBy6cJrDm77MbL2IK0 +# cs0d9LiFAR6A+xuJKlQ5slvayA1VmXqHczsI5pgt6o3gMy4SKfXAL1QnIffIrE7a +# KLixqduWsqdCosnPGUFN4Ib5KpqjEWYw07t0MkvfY3v1mYovG8chr1m1rtxEPJdQ +# cdeh0sVV42neV8HR3jDA/czmTfsNv11P6Z0eGTgvvM9YBS7vDaBQNdrvCScc1bN+ +# NR4Iuto229Nfj950iEkSoYIC0jCCAjsCAQEwgfyhgdSkgdEwgc4xCzAJBgNVBAYT +# AlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYD +# VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKTAnBgNVBAsTIE1pY3Jvc29mdCBP +# cGVyYXRpb25zIFB1ZXJ0byBSaWNvMSYwJAYDVQQLEx1UaGFsZXMgVFNTIEVTTjpG +# ODdBLUUzNzQtRDdCOTElMCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAgU2Vy +# dmljZaIjCgEBMAcGBSsOAwIaAxUA7SxgHt1J3SqTTSqzLcrMGZQBYe+ggYMwgYCk +# fjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMH +# UmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQD +# Ex1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMDANBgkqhkiG9w0BAQUFAAIF +# AOPx/3MwIhgPMjAyMTAzMDkxODA2NDNaGA8yMDIxMDMxMDE4MDY0M1owdzA9Bgor +# BgEEAYRZCgQBMS8wLTAKAgUA4/H/cwIBADAKAgEAAgIQJAIB/zAHAgEAAgIRODAK +# AgUA4/NQ8wIBADA2BgorBgEEAYRZCgQCMSgwJjAMBgorBgEEAYRZCgMCoAowCAIB +# AAIDB6EgoQowCAIBAAIDAYagMA0GCSqGSIb3DQEBBQUAA4GBADgCtzeIJiKJglZ2 +# psAUMODAvomrSA6AdtlhzMaVXaN/M99TAliCW5N8sDTAk0zv6Da4qirKTttqA8vo +# 9sR4FUpdQ9SHC1OymvHJP3gjTLaONKQqEDy3er1lXkKq/muQjMepYJMoE3Tl37Ns +# c/VpIVLM3G2cd2GwY/as/3WCB2NYMYIDDTCCAwkCAQEwgZMwfDELMAkGA1UEBhMC +# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV +# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRp +# bWUtU3RhbXAgUENBIDIwMTACEzMAAAFji2TGyYWWZXYAAAAAAWMwDQYJYIZIAWUD +# BAIBBQCgggFKMBoGCSqGSIb3DQEJAzENBgsqhkiG9w0BCRABBDAvBgkqhkiG9w0B +# CQQxIgQg5oysNMdTDBmrFjOAVwV2CBSMgZm3fZW9xYkUS2mNuC0wgfoGCyqGSIb3 +# DQEJEAIvMYHqMIHnMIHkMIG9BCCcWd2XHaFjoSikKbi4y9AYBIpLBy9Rb16ns1Gr +# EfQjajCBmDCBgKR+MHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9u +# MRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRp +# b24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwAhMzAAAB +# Y4tkxsmFlmV2AAAAAAFjMCIEIEtr+UpJREr35Cg7rv4YpfJjqJ9k1JQCDJmBZc3S +# 6Y/XMA0GCSqGSIb3DQEBCwUABIIBAKiNjsLcdCUZRp+QdFkw0TB7gvlj9BrvApHt +# 36t+7A3ij96uHNvG0bUaKb7hkID7/btJSvQuLMFqXmJWHnThuuhxpFbTp8hLTC7q +# 7UXbusLSl3kpIKrJf6SML72HLtJlFC7FFWcIrCvKM5A0ETqc1Ixijudg7d+I3FOk +# 9mwcAVlUTIuCZvPrVdtF+VIuPtykubPac2Eh9VRsC9wW5VYFtEAw+5EdurarMwd7 +# tIic52l9wQJLyibHl4j7f5Wv7l9KG0ZyuQSq1ex6GC4utA0cVYzDEfbUtAd1ENN4 +# 8AQ2d6jGjWHpE5NGZi+P/h3E8L8spViTk7ixXAVQRmrTfiWRugk= +# SIG # End signature block diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 new file mode 100644 index 0000000..8c4c47b --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 @@ -0,0 +1,207 @@ +@{ +GUID="56D66100-99A0-4FFC-A12D-EEE9A6718AEF" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +FunctionsToExport = @() +CmdletsToExport="Start-Transcript", "Stop-Transcript" +AliasesToExport = @() +NestedModules="Microsoft.PowerShell.ConsoleHost.dll" +HelpInfoURI = 'https://aka.ms/powershell71-help' +} + +# SIG # Begin signature block +# MIIjnAYJKoZIhvcNAQcCoIIjjTCCI4kCAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCDxljVirCh+V3zY +# CLLbYxsuxjyG4LtZ515NNr0EQv8+OaCCDYEwggX/MIID56ADAgECAhMzAAAB32vw +# LpKnSrTQAAAAAAHfMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjAxMjE1MjEzMTQ1WhcNMjExMjAyMjEzMTQ1WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQC2uxlZEACjqfHkuFyoCwfL25ofI9DZWKt4wEj3JBQ48GPt1UsDv834CcoUUPMn +# s/6CtPoaQ4Thy/kbOOg/zJAnrJeiMQqRe2Lsdb/NSI2gXXX9lad1/yPUDOXo4GNw +# PjXq1JZi+HZV91bUr6ZjzePj1g+bepsqd/HC1XScj0fT3aAxLRykJSzExEBmU9eS +# yuOwUuq+CriudQtWGMdJU650v/KmzfM46Y6lo/MCnnpvz3zEL7PMdUdwqj/nYhGG +# 3UVILxX7tAdMbz7LN+6WOIpT1A41rwaoOVnv+8Ua94HwhjZmu1S73yeV7RZZNxoh +# EegJi9YYssXa7UZUUkCCA+KnAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUOPbML8IdkNGtCfMmVPtvI6VZ8+Mw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDYzMDA5MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAnnqH +# tDyYUFaVAkvAK0eqq6nhoL95SZQu3RnpZ7tdQ89QR3++7A+4hrr7V4xxmkB5BObS +# 0YK+MALE02atjwWgPdpYQ68WdLGroJZHkbZdgERG+7tETFl3aKF4KpoSaGOskZXp +# TPnCaMo2PXoAMVMGpsQEQswimZq3IQ3nRQfBlJ0PoMMcN/+Pks8ZTL1BoPYsJpok +# t6cql59q6CypZYIwgyJ892HpttybHKg1ZtQLUlSXccRMlugPgEcNZJagPEgPYni4 +# b11snjRAgf0dyQ0zI9aLXqTxWUU5pCIFiPT0b2wsxzRqCtyGqpkGM8P9GazO8eao +# mVItCYBcJSByBx/pS0cSYwBBHAZxJODUqxSXoSGDvmTfqUJXntnWkL4okok1FiCD +# Z4jpyXOQunb6egIXvkgQ7jb2uO26Ow0m8RwleDvhOMrnHsupiOPbozKroSa6paFt +# VSh89abUSooR8QdZciemmoFhcWkEwFg4spzvYNP4nIs193261WyTaRMZoceGun7G +# CT2Rl653uUj+F+g94c63AhzSq4khdL4HlFIP2ePv29smfUnHtGq6yYFDLnT0q/Y+ +# Di3jwloF8EWkkHRtSuXlFUbTmwr/lDDgbpZiKhLS7CBTDj32I0L5i532+uHczw82 +# oZDmYmYmIUSMbZOgS65h797rj5JJ6OkeEUJoAVwwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIVcTCCFW0CAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAd9r8C6Sp0q00AAAAAAB3zAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgcJ+gC+00 +# 2JpI1Y8wDgsZJ7TWjf4SXVQ/S0u/GIZBfjgwQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQCKkZhIAyTNoFFpjr7vCIwqc05hCDKONexqfIP8v3bZ +# DyZeoopYDRHlAHyqdavyiCOciiQNHLkPTkwC/PDwe5xU1TuGmbu3sh4595O2w9jb +# CjFbmFnfqI5O1IXZHxFH2aLIJTQarJfavgsibGbYtONJy1Cx057v4eiUaQDdRD8l +# 0MdteutAjagikqoODIJKUBySw02ZoAwBmrovOaYzgfUseWHg9X/BHV1xmuvYjh+f +# pPWKVn0BkJnkZfe/l58QaNrDOX1vNY47au4sJJRrQhTAQ2e8QhJ3jqMB2acZdKuQ +# 0P3NbSkE3WwP/kQgxHzuoJDeXaiSmCb3HYyX9pUGh2itoYIS+zCCEvcGCisGAQQB +# gjcDAwExghLnMIIS4wYJKoZIhvcNAQcCoIIS1DCCEtACAQMxDzANBglghkgBZQME +# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIBtP+r0sXGITvcRPkd6nJ2nA9uW9Mb45IVRg7ozc +# Z2dyAgZgPQaUuLcYEzIwMjEwMzEwMDExODM4LjA2NlowBIACAfSggdikgdUwgdIx +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p +# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh +# bGVzIFRTUyBFU046ODZERi00QkJDLTkzMzUxJTAjBgNVBAMTHE1pY3Jvc29mdCBU +# aW1lLVN0YW1wIFNlcnZpY2Wggg5KMIIE+TCCA+GgAwIBAgITMwAAAT7OyndSxfc0 +# KwAAAAABPjANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg +# MjAxMDAeFw0yMDEwMTUxNzI4MjVaFw0yMjAxMTIxNzI4MjVaMIHSMQswCQYDVQQG +# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG +# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg +# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg +# RVNOOjg2REYtNEJCQy05MzM1MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt +# cCBTZXJ2aWNlMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvFTEyDzZ +# fpws404gSC0kt4VSyX/vaxwOfri89gQdxvfQNvvQARebKR3plqHz0ZHZW+bmFxyG +# tTh9zw20LSdpMcWYDFc1rzPuJvTNAnDkKyQP+TqrW7j/lDlCLbqi8ubo4EqSpkHr +# a0Zt15j2r/IJGZbu3QaRY6qYMZxxkkw4Y5ubAwV3E1p+TNzFg8nzgJ9kwEM4xvZA +# f9NhHhM2K/jx092xmKxyFfp0X0tboY9d1OyhdCXl8spOigE32g8zH12Y2NXTfI41 +# 41LQU+9dKOKQ7YFF1kwofuGGwxMU0CsDimODWgr6VFVcNDd2tQbGubgdfLBGEBfj +# e0PyoOOXEO1m4QIDAQABo4IBGzCCARcwHQYDVR0OBBYEFJNa8534u9BiLWvwtbZU +# DraGiP17MB8GA1UdIwQYMBaAFNVjOlyKMZDzQ3t8RhvFM2hahW1VMFYGA1UdHwRP +# ME0wS6BJoEeGRWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2kvY3JsL3Byb2R1 +# Y3RzL01pY1RpbVN0YVBDQV8yMDEwLTA3LTAxLmNybDBaBggrBgEFBQcBAQROMEww +# SgYIKwYBBQUHMAKGPmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMv +# TWljVGltU3RhUENBXzIwMTAtMDctMDEuY3J0MAwGA1UdEwEB/wQCMAAwEwYDVR0l +# BAwwCgYIKwYBBQUHAwgwDQYJKoZIhvcNAQELBQADggEBAKaz+RF9Wp+GkrkVj6cY +# 5djCdVepJFyufABJ1qKlCWXhOoYAcB7w7ZxzRC4Z2iY4bc9QU93sa2YDwhQwFPeq +# fKZfWSkmrcus49QB9EGPc9FwIgfBQK2AJthaYEysTawS40f6yc6w/ybotAclqFAr +# +BPDt0zGZoExvGc8ZpVAZpvSyXbzGLuKtm8K+R73VC4DUp4sRFck1Cx8ILvYdYSN +# YqORyh0Gwi3v4HWmw6HutafFOdFjaKQEcSsn0SNLfY25qOqnu6DL+NAo7z3qD0eB +# DISilWob5dllDcONfsu99UEtOnrbdl292yGNIyxilpI8XGNgGcZxKN6VqLBxAuKl +# WOYwggZxMIIEWaADAgECAgphCYEqAAAAAAACMA0GCSqGSIb3DQEBCwUAMIGIMQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNy +# b3NvZnQgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgMjAxMDAeFw0xMDA3MDEy +# MTM2NTVaFw0yNTA3MDEyMTQ2NTVaMHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX +# YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg +# Q29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAy +# MDEwMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqR0NvHcRijog7PwT +# l/X6f2mUa3RUENWlCgCChfvtfGhLLF/Fw+Vhwna3PmYrW/AVUycEMR9BGxqVHc4J +# E458YTBZsTBED/FgiIRUQwzXTbg4CLNC3ZOs1nMwVyaCo0UN0Or1R4HNvyRgMlhg +# RvJYR4YyhB50YWeRX4FUsc+TTJLBxKZd0WETbijGGvmGgLvfYfxGwScdJGcSchoh +# iq9LZIlQYrFd/XcfPfBXday9ikJNQFHRD5wGPmd/9WbAA5ZEfu/QS/1u5ZrKsajy +# eioKMfDaTgaRtogINeh4HLDpmc085y9Euqf03GS9pAHBIAmTeM38vMDJRF1eFpwB +# BU8iTQIDAQABo4IB5jCCAeIwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFNVj +# OlyKMZDzQ3t8RhvFM2hahW1VMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsG +# A1UdDwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFNX2VsuP6KJc +# YmjRPZSQW9fOmhjEMFYGA1UdHwRPME0wS6BJoEeGRWh0dHA6Ly9jcmwubWljcm9z +# b2Z0LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIz +# LmNybDBaBggrBgEFBQcBAQROMEwwSgYIKwYBBQUHMAKGPmh0dHA6Ly93d3cubWlj +# cm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYtMjMuY3J0 +# MIGgBgNVHSABAf8EgZUwgZIwgY8GCSsGAQQBgjcuAzCBgTA9BggrBgEFBQcCARYx +# aHR0cDovL3d3dy5taWNyb3NvZnQuY29tL1BLSS9kb2NzL0NQUy9kZWZhdWx0Lmh0 +# bTBABggrBgEFBQcCAjA0HjIgHQBMAGUAZwBhAGwAXwBQAG8AbABpAGMAeQBfAFMA +# dABhAHQAZQBtAGUAbgB0AC4gHTANBgkqhkiG9w0BAQsFAAOCAgEAB+aIUQ3ixuCY +# P4FxAz2do6Ehb7Prpsz1Mb7PBeKp/vpXbRkws8LFZslq3/Xn8Hi9x6ieJeP5vO1r +# VFcIK1GCRBL7uVOMzPRgEop2zEBAQZvcXBf/XPleFzWYJFZLdO9CEMivv3/Gf/I3 +# fVo/HPKZeUqRUgCvOA8X9S95gWXZqbVr5MfO9sp6AG9LMEQkIjzP7QOllo9ZKby2 +# /QThcJ8ySif9Va8v/rbljjO7Yl+a21dA6fHOmWaQjP9qYn/dxUoLkSbiOewZSnFj +# nXshbcOco6I8+n99lmqQeKZt0uGc+R38ONiU9MalCpaGpL2eGq4EQoO4tYCbIjgg +# tSXlZOz39L9+Y1klD3ouOVd2onGqBooPiRa6YacRy5rYDkeagMXQzafQ732D8OE7 +# cQnfXXSYIghh2rBQHm+98eEA3+cxB6STOvdlR3jo+KhIq/fecn5ha293qYHLpwms +# ObvsxsvYgrRyzR30uIUBHoD7G4kqVDmyW9rIDVWZeodzOwjmmC3qjeAzLhIp9cAv +# VCch98isTtoouLGp25ayp0Kiyc8ZQU3ghvkqmqMRZjDTu3QyS99je/WZii8bxyGv +# WbWu3EQ8l1Bx16HSxVXjad5XwdHeMMD9zOZN+w2/XU/pnR4ZOC+8z1gFLu8NoFA1 +# 2u8JJxzVs341Hgi62jbb01+P3nSISRKhggLUMIICPQIBATCCAQChgdikgdUwgdIx +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p +# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh +# bGVzIFRTUyBFU046ODZERi00QkJDLTkzMzUxJTAjBgNVBAMTHE1pY3Jvc29mdCBU +# aW1lLVN0YW1wIFNlcnZpY2WiIwoBATAHBgUrDgMCGgMVAKBMFej0xjCTjCk1sTdT +# Ka+TzJDUoIGDMIGApH4wfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0 +# b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3Jh +# dGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJ +# KoZIhvcNAQEFBQACBQDj8hBuMCIYDzIwMjEwMzA5MjMxOTEwWhgPMjAyMTAzMTAy +# MzE5MTBaMHQwOgYKKwYBBAGEWQoEATEsMCowCgIFAOPyEG4CAQAwBwIBAAICCLQw +# BwIBAAICEk4wCgIFAOPzYe4CAQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGE +# WQoDAqAKMAgCAQACAwehIKEKMAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQBP +# dEkJYh7wlhKJsvr5ps9Fx3/OYLSdgB9nDQKXYZwdN/lyrSqBleOcORRBNxRGHbWw +# VRvFQmvjSKpc7vxTUMyH/e0s7tQZ7wvwPCTr2r+MOEj0rKHe61GWUzfToAHaa3w2 +# 9eWxPiI/iRJ7k/5tpf37EsfVzN4Lo5xJxelacaxwsjGCAw0wggMJAgEBMIGTMHwx +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1p +# Y3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwAhMzAAABPs7Kd1LF9zQrAAAAAAE+ +# MA0GCWCGSAFlAwQCAQUAoIIBSjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQw +# LwYJKoZIhvcNAQkEMSIEIN4Zsj1URpgClj3Hy3agxYy2aMD3392PAA2Zy+8m/+Jw +# MIH6BgsqhkiG9w0BCRACLzGB6jCB5zCB5DCBvQQgi+vOjaqNTvKOZGut49HXrqtw +# Uj2ZCnVOurBwfgQxmxMwgZgwgYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg +# MjAxMAITMwAAAT7OyndSxfc0KwAAAAABPjAiBCAy0Aj0R/f+jjXkCWyDanF/IaD6 +# qkaB3zZ1uezwRomA9jANBgkqhkiG9w0BAQsFAASCAQBY4EeKOYDl/bfvYKnacCla +# 1Xh3YQ+XcNUBoxzBPe6axUZuFJ7lIOMNJ3RL7fNK8fayPLNSBDJ8KVLzvapxeMNt +# qL6EOT4oXn9GRtDmquQ02wPK9s0+16lfsEVFFLXbJCIdzKR1HziHm0NBFYJVMKmC +# L7egM1IpS2rGw0V7vsP+WZJuiB87MX/ZFu/kSYWQo3oFDJBD+mCiTZn3e38otYDd +# XKvDJh1z8t9763zlv0WGZFLhSKub5gqfKfVOXlACH//FE143fDHA2OWOSwhE7+yh +# YQ5wOS5Jhl/JJoZ6JPl5gXYGftqOZgyK5YBwCmBc7KB3eHMSlEB0fHeDscZltp57 +# SIG # End signature block diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Host/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Host/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Host/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 new file mode 100644 index 0000000..1c376e1 --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 @@ -0,0 +1,268 @@ +@{ +GUID="EEFCB906-B326-4E99-9F54-8B4BB6EF3C6D" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +NestedModules="Microsoft.PowerShell.Commands.Management.dll" +HelpInfoURI = 'https://aka.ms/powershell71-help' +FunctionsToExport = @() +AliasesToExport = @("gcb", "gin", "gtz", "scb", "stz") +CmdletsToExport=@("Add-Content", + "Clear-Content", + "Get-Clipboard", + "Set-Clipboard", + "Clear-ItemProperty", + "Join-Path", + "Convert-Path", + "Copy-ItemProperty", + "Get-ChildItem", + "Get-Content", + "Get-ItemProperty", + "Get-ItemPropertyValue", + "Move-ItemProperty", + "Get-Location", + "Set-Location", + "Push-Location", + "Pop-Location", + "New-PSDrive", + "Remove-PSDrive", + "Get-PSDrive", + "Get-Item", + "New-Item", + "Set-Item", + "Remove-Item", + "Move-Item", + "Rename-Item", + "Copy-Item", + "Clear-Item", + "Invoke-Item", + "Get-PSProvider", + "New-ItemProperty", + "Split-Path", + "Test-Path", + "Test-Connection", + "Get-Process", + "Stop-Process", + "Wait-Process", + "Debug-Process", + "Start-Process", + "Remove-ItemProperty", + "Rename-ItemProperty", + "Resolve-Path", + "Get-Service", + "Stop-Service", + "Start-Service", + "Suspend-Service", + "Resume-Service", + "Restart-Service", + "Set-Service", + "New-Service", + "Remove-Service", + "Set-Content", + "Set-ItemProperty", + "Restart-Computer", + "Stop-Computer", + "Rename-Computer", + "Get-ComputerInfo", + "Get-TimeZone", + "Set-TimeZone", + "Get-HotFix", + "Clear-RecycleBin") +} + +# SIG # Begin signature block +# MIIjnwYJKoZIhvcNAQcCoIIjkDCCI4wCAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCBZMhoYDeBVMqqC +# BHzJU/WN5MnsKDwRvCNmexXh+6DSV6CCDYEwggX/MIID56ADAgECAhMzAAAB32vw +# LpKnSrTQAAAAAAHfMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjAxMjE1MjEzMTQ1WhcNMjExMjAyMjEzMTQ1WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQC2uxlZEACjqfHkuFyoCwfL25ofI9DZWKt4wEj3JBQ48GPt1UsDv834CcoUUPMn +# s/6CtPoaQ4Thy/kbOOg/zJAnrJeiMQqRe2Lsdb/NSI2gXXX9lad1/yPUDOXo4GNw +# PjXq1JZi+HZV91bUr6ZjzePj1g+bepsqd/HC1XScj0fT3aAxLRykJSzExEBmU9eS +# yuOwUuq+CriudQtWGMdJU650v/KmzfM46Y6lo/MCnnpvz3zEL7PMdUdwqj/nYhGG +# 3UVILxX7tAdMbz7LN+6WOIpT1A41rwaoOVnv+8Ua94HwhjZmu1S73yeV7RZZNxoh +# EegJi9YYssXa7UZUUkCCA+KnAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUOPbML8IdkNGtCfMmVPtvI6VZ8+Mw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDYzMDA5MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAnnqH +# tDyYUFaVAkvAK0eqq6nhoL95SZQu3RnpZ7tdQ89QR3++7A+4hrr7V4xxmkB5BObS +# 0YK+MALE02atjwWgPdpYQ68WdLGroJZHkbZdgERG+7tETFl3aKF4KpoSaGOskZXp +# TPnCaMo2PXoAMVMGpsQEQswimZq3IQ3nRQfBlJ0PoMMcN/+Pks8ZTL1BoPYsJpok +# t6cql59q6CypZYIwgyJ892HpttybHKg1ZtQLUlSXccRMlugPgEcNZJagPEgPYni4 +# b11snjRAgf0dyQ0zI9aLXqTxWUU5pCIFiPT0b2wsxzRqCtyGqpkGM8P9GazO8eao +# mVItCYBcJSByBx/pS0cSYwBBHAZxJODUqxSXoSGDvmTfqUJXntnWkL4okok1FiCD +# Z4jpyXOQunb6egIXvkgQ7jb2uO26Ow0m8RwleDvhOMrnHsupiOPbozKroSa6paFt +# VSh89abUSooR8QdZciemmoFhcWkEwFg4spzvYNP4nIs193261WyTaRMZoceGun7G +# CT2Rl653uUj+F+g94c63AhzSq4khdL4HlFIP2ePv29smfUnHtGq6yYFDLnT0q/Y+ +# Di3jwloF8EWkkHRtSuXlFUbTmwr/lDDgbpZiKhLS7CBTDj32I0L5i532+uHczw82 +# oZDmYmYmIUSMbZOgS65h797rj5JJ6OkeEUJoAVwwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIVdDCCFXACAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAd9r8C6Sp0q00AAAAAAB3zAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQghLLjNot7 +# MOzkxbUCmWo9k1ykhltDSWPsP1MMEuurTvQwQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQA4CuFEs4WZy+kL95xd48PnwL5B5J23ZeiREL7hL/Hp +# Wi1r2hdNZ1+LBKkAackoNdrKmMn06JOyzsUvaaJfsmMX7FdC6GgvB74IXLFRknFd +# RocXCPJLRzLvxTkQEsUd3gwMTiBYL7nKXvr2lLzS6qiC32TjMZ1+BGf5VaNlx3Vh +# s8XNV6hK6YIAxDAo9FTp9BuRooM1ZIgxqBaiuQeVDdl56cRFqk/omXg5zRiNEC6Q +# DKBSb8yOq9aYHQ4IF87bbQ1MNV1PEGHdBlNg6cVGrUUTGDpWfWEIuxNzBvNyACV+ +# VczL+TO1r+D3pNQ3qPMsxl2ONHX0GYRMDCs89lpR0XIooYIS/jCCEvoGCisGAQQB +# gjcDAwExghLqMIIS5gYJKoZIhvcNAQcCoIIS1zCCEtMCAQMxDzANBglghkgBZQME +# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIHcpQ/nRIxFe9LiCIX2zKpNWn5/+IPfr9/j2T0K+ +# hafHAgZgPOAKuD4YEzIwMjEwMzEwMDExODM3Ljc3OFowBIACAfSggdikgdUwgdIx +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p +# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh +# bGVzIFRTUyBFU046RTA0MS00QkVFLUZBN0UxJTAjBgNVBAMTHE1pY3Jvc29mdCBU +# aW1lLVN0YW1wIFNlcnZpY2Wggg5NMIIE+TCCA+GgAwIBAgITMwAAATdBj0PnWltv +# pwAAAAABNzANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg +# MjAxMDAeFw0yMDEwMTUxNzI4MTRaFw0yMjAxMTIxNzI4MTRaMIHSMQswCQYDVQQG +# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG +# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg +# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg +# RVNOOkUwNDEtNEJFRS1GQTdFMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt +# cCBTZXJ2aWNlMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxBHuadEl +# m3G5tikhTzjSDB0+9sXmUhUyDVRj0Y4vz9rZ9sykNobL5/6At5zOkeB2bl9IXvVd +# yS/ZJNZT373knzrQ347z30Mmw7++VU/CE+4x4w9kb5bqQHfSzbJQt6KmWsuMmJLz +# g4R5MeJs5MY5YdPLxoMoDRcTi//KoMFR0KzS1/324D2/4KkHD1Xt+s0xY0DICUOK +# 1RbmJCKEgBP1/GDZjuZQBS9Di89yTnvLJV+Lr1QtriH4EqmRoAdmV3zJ0GJsr5vh +# GPmKfOPCRSk7Q8igX7goFnCLzpYcfHGCqoR/mw95gfQpwymVwxZB0PkGMrQw+LKV +# Pa/FHP4C4KO+QQIDAQABo4IBGzCCARcwHQYDVR0OBBYEFA1gsHMM+udgY7rEne66 +# OyzxlE9lMB8GA1UdIwQYMBaAFNVjOlyKMZDzQ3t8RhvFM2hahW1VMFYGA1UdHwRP +# ME0wS6BJoEeGRWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2kvY3JsL3Byb2R1 +# Y3RzL01pY1RpbVN0YVBDQV8yMDEwLTA3LTAxLmNybDBaBggrBgEFBQcBAQROMEww +# SgYIKwYBBQUHMAKGPmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMv +# TWljVGltU3RhUENBXzIwMTAtMDctMDEuY3J0MAwGA1UdEwEB/wQCMAAwEwYDVR0l +# BAwwCgYIKwYBBQUHAwgwDQYJKoZIhvcNAQELBQADggEBAJ32U9d90RVuAUb9NsnX +# BG1K42qjhU+jHvwBdbipIcX4Wg7dH5ZduQZj3gWgKADZ5z+TehX7GnBbi265VI7x +# DRsFe2CjkTm4JIoisdKwYBDruS+YRRBG4B1ERuWi54XGwx+lSA+iQNrIi6Jm0CL/ +# MfQLvwsqPJSGP69OEHCyaExos486+X3JTuGV11CBl/BO7r8UHbx/rE6fZrlZZYab +# IF6aeahvTL14LvZLV/bMzYSODsbjHHsTm9QaGm1ijhagCdbkAqr8+7HAgYEar8XP +# lzxUhVI4ShVB5ZGd9gZ2yBkwxdA0oFc745TdOPrbP79vd0ePqgvJDH5tkOhTRNI5 +# 5XQwggZxMIIEWaADAgECAgphCYEqAAAAAAACMA0GCSqGSIb3DQEBCwUAMIGIMQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNy +# b3NvZnQgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgMjAxMDAeFw0xMDA3MDEy +# MTM2NTVaFw0yNTA3MDEyMTQ2NTVaMHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX +# YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg +# Q29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAy +# MDEwMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqR0NvHcRijog7PwT +# l/X6f2mUa3RUENWlCgCChfvtfGhLLF/Fw+Vhwna3PmYrW/AVUycEMR9BGxqVHc4J +# E458YTBZsTBED/FgiIRUQwzXTbg4CLNC3ZOs1nMwVyaCo0UN0Or1R4HNvyRgMlhg +# RvJYR4YyhB50YWeRX4FUsc+TTJLBxKZd0WETbijGGvmGgLvfYfxGwScdJGcSchoh +# iq9LZIlQYrFd/XcfPfBXday9ikJNQFHRD5wGPmd/9WbAA5ZEfu/QS/1u5ZrKsajy +# eioKMfDaTgaRtogINeh4HLDpmc085y9Euqf03GS9pAHBIAmTeM38vMDJRF1eFpwB +# BU8iTQIDAQABo4IB5jCCAeIwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFNVj +# OlyKMZDzQ3t8RhvFM2hahW1VMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsG +# A1UdDwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFNX2VsuP6KJc +# YmjRPZSQW9fOmhjEMFYGA1UdHwRPME0wS6BJoEeGRWh0dHA6Ly9jcmwubWljcm9z +# b2Z0LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIz +# LmNybDBaBggrBgEFBQcBAQROMEwwSgYIKwYBBQUHMAKGPmh0dHA6Ly93d3cubWlj +# cm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYtMjMuY3J0 +# MIGgBgNVHSABAf8EgZUwgZIwgY8GCSsGAQQBgjcuAzCBgTA9BggrBgEFBQcCARYx +# aHR0cDovL3d3dy5taWNyb3NvZnQuY29tL1BLSS9kb2NzL0NQUy9kZWZhdWx0Lmh0 +# bTBABggrBgEFBQcCAjA0HjIgHQBMAGUAZwBhAGwAXwBQAG8AbABpAGMAeQBfAFMA +# dABhAHQAZQBtAGUAbgB0AC4gHTANBgkqhkiG9w0BAQsFAAOCAgEAB+aIUQ3ixuCY +# P4FxAz2do6Ehb7Prpsz1Mb7PBeKp/vpXbRkws8LFZslq3/Xn8Hi9x6ieJeP5vO1r +# VFcIK1GCRBL7uVOMzPRgEop2zEBAQZvcXBf/XPleFzWYJFZLdO9CEMivv3/Gf/I3 +# fVo/HPKZeUqRUgCvOA8X9S95gWXZqbVr5MfO9sp6AG9LMEQkIjzP7QOllo9ZKby2 +# /QThcJ8ySif9Va8v/rbljjO7Yl+a21dA6fHOmWaQjP9qYn/dxUoLkSbiOewZSnFj +# nXshbcOco6I8+n99lmqQeKZt0uGc+R38ONiU9MalCpaGpL2eGq4EQoO4tYCbIjgg +# tSXlZOz39L9+Y1klD3ouOVd2onGqBooPiRa6YacRy5rYDkeagMXQzafQ732D8OE7 +# cQnfXXSYIghh2rBQHm+98eEA3+cxB6STOvdlR3jo+KhIq/fecn5ha293qYHLpwms +# ObvsxsvYgrRyzR30uIUBHoD7G4kqVDmyW9rIDVWZeodzOwjmmC3qjeAzLhIp9cAv +# VCch98isTtoouLGp25ayp0Kiyc8ZQU3ghvkqmqMRZjDTu3QyS99je/WZii8bxyGv +# WbWu3EQ8l1Bx16HSxVXjad5XwdHeMMD9zOZN+w2/XU/pnR4ZOC+8z1gFLu8NoFA1 +# 2u8JJxzVs341Hgi62jbb01+P3nSISRKhggLXMIICQAIBATCCAQChgdikgdUwgdIx +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p +# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh +# bGVzIFRTUyBFU046RTA0MS00QkVFLUZBN0UxJTAjBgNVBAMTHE1pY3Jvc29mdCBU +# aW1lLVN0YW1wIFNlcnZpY2WiIwoBATAHBgUrDgMCGgMVAOq7qDk4iVz8ITuZbUFr +# AG7ecxqcoIGDMIGApH4wfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0 +# b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3Jh +# dGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJ +# KoZIhvcNAQEFBQACBQDj8pLWMCIYDzIwMjEwMzEwMDgzNTM0WhgPMjAyMTAzMTEw +# ODM1MzRaMHcwPQYKKwYBBAGEWQoEATEvMC0wCgIFAOPyktYCAQAwCgIBAAICG1gC +# Af8wBwIBAAICEXIwCgIFAOPz5FYCAQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYB +# BAGEWQoDAqAKMAgCAQACAwehIKEKMAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOB +# gQAEm+4DlSjlm+kjVP/XWSP1LLC5N6X06oX7IKQb2lcTL3q5s1ynb7tB/NfXw706 +# FVRph6EaD0qjarySbmh09p5ppiTU+mgVW/3/Hp3mBR1zO2hyp4DKQRvcQf8YXC7U +# ww8Nxsm6i5/qmPyT5t99cAW9Kb8buKSY/gbaUc26bwAOOTGCAw0wggMJAgEBMIGT +# MHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMT +# HU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwAhMzAAABN0GPQ+daW2+nAAAA +# AAE3MA0GCWCGSAFlAwQCAQUAoIIBSjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQ +# AQQwLwYJKoZIhvcNAQkEMSIEICchTxy9OvC4IY0ZrIlK/DHKviFa335MlgP2ctmG +# nywXMIH6BgsqhkiG9w0BCRACLzGB6jCB5zCB5DCBvQQgHVl+r8CeBJ0iyX/aGZD2 +# YbQ7gk+U7N7BQiTDKAYSHBAwgZgwgYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UE +# CBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9z +# b2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQ +# Q0EgMjAxMAITMwAAATdBj0PnWltvpwAAAAABNzAiBCD2iEPL/BIac/kP8dmCd2vf +# 3BesgfWvHGDySCXAotVyszANBgkqhkiG9w0BAQsFAASCAQAbbvA8NT7oJq6HEa2V +# jlnHXErPoeHrGvLED+URteCHEwsUN3huz2PZ9uoHGsDfZRi5Qmb6uXBUD2W31nHs +# 5HciSwTlgbGp0rytTUwUJ6geRIZD4i17zDWZ9kI1Vq6CGJgPVDmk5Br/uBlXNux4 +# zPNjxSFZtm+RR6PGQw+Vt3UNRTsKXdpR5CxycwEMd1AU1MeaTipRa6spyLd2pL8x +# 9mKnSnB0aGnROivDXDlgY/VU9FrspVebMFdjbN1eU2ppS7ku2hp90W67g5sP31+C +# ZavFwcvyCRz9TACb7lMEi4Tyqo2fOnlpWcpjz6teRuHj64F+u+O7rQmN0JC+2xaS +# KvLr +# SIG # End signature block diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Management/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Management/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Management/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 new file mode 100644 index 0000000..ba54256 --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 @@ -0,0 +1,207 @@ +@{ +GUID="A94C8C7E-9810-47C0-B8AF-65089C13A35A" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +FunctionsToExport = @() +CmdletsToExport="Get-Acl", "Set-Acl", "Get-PfxCertificate", "Get-Credential", "Get-ExecutionPolicy", "Set-ExecutionPolicy", "Get-AuthenticodeSignature", "Set-AuthenticodeSignature", "ConvertFrom-SecureString", "ConvertTo-SecureString", "Get-CmsMessage", "Unprotect-CmsMessage", "Protect-CmsMessage" , "New-FileCatalog" , "Test-FileCatalog" +AliasesToExport = @() +NestedModules="Microsoft.PowerShell.Security.dll" +HelpInfoURI = 'https://aka.ms/powershell71-help' +} + +# SIG # Begin signature block +# MIIjgQYJKoZIhvcNAQcCoIIjcjCCI24CAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCCWrf4DYSQF4PRf +# ABzYgZWxNBZ/m+NpxzQRfwk1vdA4GKCCDYEwggX/MIID56ADAgECAhMzAAAB32vw +# LpKnSrTQAAAAAAHfMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjAxMjE1MjEzMTQ1WhcNMjExMjAyMjEzMTQ1WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQC2uxlZEACjqfHkuFyoCwfL25ofI9DZWKt4wEj3JBQ48GPt1UsDv834CcoUUPMn +# s/6CtPoaQ4Thy/kbOOg/zJAnrJeiMQqRe2Lsdb/NSI2gXXX9lad1/yPUDOXo4GNw +# PjXq1JZi+HZV91bUr6ZjzePj1g+bepsqd/HC1XScj0fT3aAxLRykJSzExEBmU9eS +# yuOwUuq+CriudQtWGMdJU650v/KmzfM46Y6lo/MCnnpvz3zEL7PMdUdwqj/nYhGG +# 3UVILxX7tAdMbz7LN+6WOIpT1A41rwaoOVnv+8Ua94HwhjZmu1S73yeV7RZZNxoh +# EegJi9YYssXa7UZUUkCCA+KnAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUOPbML8IdkNGtCfMmVPtvI6VZ8+Mw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDYzMDA5MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAnnqH +# tDyYUFaVAkvAK0eqq6nhoL95SZQu3RnpZ7tdQ89QR3++7A+4hrr7V4xxmkB5BObS +# 0YK+MALE02atjwWgPdpYQ68WdLGroJZHkbZdgERG+7tETFl3aKF4KpoSaGOskZXp +# TPnCaMo2PXoAMVMGpsQEQswimZq3IQ3nRQfBlJ0PoMMcN/+Pks8ZTL1BoPYsJpok +# t6cql59q6CypZYIwgyJ892HpttybHKg1ZtQLUlSXccRMlugPgEcNZJagPEgPYni4 +# b11snjRAgf0dyQ0zI9aLXqTxWUU5pCIFiPT0b2wsxzRqCtyGqpkGM8P9GazO8eao +# mVItCYBcJSByBx/pS0cSYwBBHAZxJODUqxSXoSGDvmTfqUJXntnWkL4okok1FiCD +# Z4jpyXOQunb6egIXvkgQ7jb2uO26Ow0m8RwleDvhOMrnHsupiOPbozKroSa6paFt +# VSh89abUSooR8QdZciemmoFhcWkEwFg4spzvYNP4nIs193261WyTaRMZoceGun7G +# CT2Rl653uUj+F+g94c63AhzSq4khdL4HlFIP2ePv29smfUnHtGq6yYFDLnT0q/Y+ +# Di3jwloF8EWkkHRtSuXlFUbTmwr/lDDgbpZiKhLS7CBTDj32I0L5i532+uHczw82 +# oZDmYmYmIUSMbZOgS65h797rj5JJ6OkeEUJoAVwwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIVVjCCFVICAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAd9r8C6Sp0q00AAAAAAB3zAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgclmP9xE4 +# ai4XceQaD9Ar4P4d1KiEP2an6S1DlkpwwbIwQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQCMx6mCPye0uN42xYEMdRhemJvI5B0pl8LSe8t14Gor +# UOirRWaqS+78Rycz9pQMPq7dRJVtA0yzwPLPF6vjCrOcWQnDEseatLmn57I/4vn6 +# QAgeQBjK4ULripeDFSvZDGEyJWfUkkbBxJdtUVO/27G/nOihaagVo8VlYdQOkfub +# 3/EWRiqZJxRwWdPvKR0p0RAQQbjY7jZ+/WBwxsxQ/BEJ74CQ4RdcZftvX0JdRmlu +# t0W8+980GzDVpqGCnkHYE0KK3ZMrqlAloNp4YVIDT7FBHr9zJOfasHqc3idt3Xxg +# 8siV+CKfAdnH92WEhSge4bzseJySU9aGUVSmgt5RIk5ToYIS4DCCEtwGCisGAQQB +# gjcDAwExghLMMIISyAYJKoZIhvcNAQcCoIISuTCCErUCAQMxDzANBglghkgBZQME +# AgEFADCCAU8GCyqGSIb3DQEJEAEEoIIBPgSCATowggE2AgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIHZ1VBp+LP9I6C3OlLydtMgchcn1pFmAu2siFnE5 +# nxgXAgZgPQGp+joYETIwMjEwMzEwMDExODM3LjZaMASAAgH0oIHQpIHNMIHKMQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxNaWNy +# b3NvZnQgQW1lcmljYSBPcGVyYXRpb25zMSYwJAYDVQQLEx1UaGFsZXMgVFNTIEVT +# TjoxMkJDLUUzQUUtNzRFQjElMCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAg +# U2VydmljZaCCDjkwggTxMIID2aADAgECAhMzAAABU9KCckVsV+OLAAAAAAFTMA0G +# CSqGSIb3DQEBCwUAMHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9u +# MRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRp +# b24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwMB4XDTIw +# MTExMjE4MjYwNVoXDTIyMDIxMTE4MjYwNVowgcoxCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xJTAjBgNVBAsTHE1pY3Jvc29mdCBBbWVyaWNhIE9w +# ZXJhdGlvbnMxJjAkBgNVBAsTHVRoYWxlcyBUU1MgRVNOOjEyQkMtRTNBRS03NEVC +# MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNlMIIBIjANBgkq +# hkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAteu2dAezG/mzQgLlwuhBibBb4FQeot9P +# 45eIJrVMKEBuc91qcUBzSY/rdiOH6RE0EC6MYqB0okfp2yRUZ091go3OlMGxgTJ0 +# CYM4M1V6H1TxyAopomDRIh8vOj7whKVk/L2+o3xXGjlaDHvuMDdjam5TlgOKOsJh +# EFBZq26SmQfnEVSRe1hNS+jQ30YjxPV0X0ZPs82XfjCYbN3lka+41XRtdL1RJVd4 +# atGBc34aO4Lj9y9GzMYpEct6T3uFuoO0MH+THMQ6TNAGrc/QjZLHAD8oeI2ThdH+ +# 3Yi9QRhE/3OL6fIkE5XyqhIQm7dxYvx6ueHMF4xNWlMc0L2uW/3m7QIDAQABo4IB +# GzCCARcwHQYDVR0OBBYEFMaii3NIKqmzMBlAt+BwbawxVkR1MB8GA1UdIwQYMBaA +# FNVjOlyKMZDzQ3t8RhvFM2hahW1VMFYGA1UdHwRPME0wS6BJoEeGRWh0dHA6Ly9j +# cmwubWljcm9zb2Z0LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1RpbVN0YVBDQV8y +# MDEwLTA3LTAxLmNybDBaBggrBgEFBQcBAQROMEwwSgYIKwYBBQUHMAKGPmh0dHA6 +# Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljVGltU3RhUENBXzIwMTAt +# MDctMDEuY3J0MAwGA1UdEwEB/wQCMAAwEwYDVR0lBAwwCgYIKwYBBQUHAwgwDQYJ +# KoZIhvcNAQELBQADggEBAJRovXl8+iBEPscBc0miUdycR7GonoMpvQ7EV3KX3e36 +# 5U1Gf+YlZMhavGF8iqBCPu21TsyZU39zxfFHWAsuMrFmnurMyPm7M9vW6GKEZcEm +# sXUDoPYcJV9TJH3TJ4SfiIsN+RFWKe6zFY3TfYummR5XSj/zw0DbvrsxB6GyjS6W +# bMXviyP4HcbiIhSQztzvXk7p9O8Vh34ZyMSdsEu8uTxB6XcWU0F9p71kdG43Zrea +# +ocuV9LDQ9V2YmlNmqZdVm/R2tm5zuAPJa3u8GY0vovFwVVSWhOC15nExXkJZWZX +# b6vMgZrw6OML4xThVXJKsgUqQjDCaUas5KHRg8SdOjQwggZxMIIEWaADAgECAgph +# CYEqAAAAAAACMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UE +# CBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9z +# b2Z0IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZp +# Y2F0ZSBBdXRob3JpdHkgMjAxMDAeFw0xMDA3MDEyMTM2NTVaFw0yNTA3MDEyMTQ2 +# NTVaMHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQH +# EwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNV +# BAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwMIIBIjANBgkqhkiG9w0B +# AQEFAAOCAQ8AMIIBCgKCAQEAqR0NvHcRijog7PwTl/X6f2mUa3RUENWlCgCChfvt +# fGhLLF/Fw+Vhwna3PmYrW/AVUycEMR9BGxqVHc4JE458YTBZsTBED/FgiIRUQwzX +# Tbg4CLNC3ZOs1nMwVyaCo0UN0Or1R4HNvyRgMlhgRvJYR4YyhB50YWeRX4FUsc+T +# TJLBxKZd0WETbijGGvmGgLvfYfxGwScdJGcSchohiq9LZIlQYrFd/XcfPfBXday9 +# ikJNQFHRD5wGPmd/9WbAA5ZEfu/QS/1u5ZrKsajyeioKMfDaTgaRtogINeh4HLDp +# mc085y9Euqf03GS9pAHBIAmTeM38vMDJRF1eFpwBBU8iTQIDAQABo4IB5jCCAeIw +# EAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFNVjOlyKMZDzQ3t8RhvFM2hahW1V +# MBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIBhjAPBgNVHRMB +# Af8EBTADAQH/MB8GA1UdIwQYMBaAFNX2VsuP6KJcYmjRPZSQW9fOmhjEMFYGA1Ud +# HwRPME0wS6BJoEeGRWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2kvY3JsL3By +# b2R1Y3RzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNybDBaBggrBgEFBQcBAQRO +# MEwwSgYIKwYBBQUHMAKGPmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2Vy +# dHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYtMjMuY3J0MIGgBgNVHSABAf8EgZUwgZIw +# gY8GCSsGAQQBgjcuAzCBgTA9BggrBgEFBQcCARYxaHR0cDovL3d3dy5taWNyb3Nv +# ZnQuY29tL1BLSS9kb2NzL0NQUy9kZWZhdWx0Lmh0bTBABggrBgEFBQcCAjA0HjIg +# HQBMAGUAZwBhAGwAXwBQAG8AbABpAGMAeQBfAFMAdABhAHQAZQBtAGUAbgB0AC4g +# HTANBgkqhkiG9w0BAQsFAAOCAgEAB+aIUQ3ixuCYP4FxAz2do6Ehb7Prpsz1Mb7P +# BeKp/vpXbRkws8LFZslq3/Xn8Hi9x6ieJeP5vO1rVFcIK1GCRBL7uVOMzPRgEop2 +# zEBAQZvcXBf/XPleFzWYJFZLdO9CEMivv3/Gf/I3fVo/HPKZeUqRUgCvOA8X9S95 +# gWXZqbVr5MfO9sp6AG9LMEQkIjzP7QOllo9ZKby2/QThcJ8ySif9Va8v/rbljjO7 +# Yl+a21dA6fHOmWaQjP9qYn/dxUoLkSbiOewZSnFjnXshbcOco6I8+n99lmqQeKZt +# 0uGc+R38ONiU9MalCpaGpL2eGq4EQoO4tYCbIjggtSXlZOz39L9+Y1klD3ouOVd2 +# onGqBooPiRa6YacRy5rYDkeagMXQzafQ732D8OE7cQnfXXSYIghh2rBQHm+98eEA +# 3+cxB6STOvdlR3jo+KhIq/fecn5ha293qYHLpwmsObvsxsvYgrRyzR30uIUBHoD7 +# G4kqVDmyW9rIDVWZeodzOwjmmC3qjeAzLhIp9cAvVCch98isTtoouLGp25ayp0Ki +# yc8ZQU3ghvkqmqMRZjDTu3QyS99je/WZii8bxyGvWbWu3EQ8l1Bx16HSxVXjad5X +# wdHeMMD9zOZN+w2/XU/pnR4ZOC+8z1gFLu8NoFA12u8JJxzVs341Hgi62jbb01+P +# 3nSISRKhggLLMIICNAIBATCB+KGB0KSBzTCByjELMAkGA1UEBhMCVVMxEzARBgNV +# BAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jv +# c29mdCBDb3Jwb3JhdGlvbjElMCMGA1UECxMcTWljcm9zb2Z0IEFtZXJpY2EgT3Bl +# cmF0aW9uczEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046MTJCQy1FM0FFLTc0RUIx +# JTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoBATAHBgUr +# DgMCGgMVAIpKTe3HDtZPTyghgr2kFisiedGboIGDMIGApH4wfDELMAkGA1UEBhMC +# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV +# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRp +# bWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDj8gutMCIYDzIwMjEw +# MzA5MjI1ODUzWhgPMjAyMTAzMTAyMjU4NTNaMHQwOgYKKwYBBAGEWQoEATEsMCow +# CgIFAOPyC60CAQAwBwIBAAICEG0wBwIBAAICEbIwCgIFAOPzXS0CAQAwNgYKKwYB +# BAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEKMAgCAQACAwGG +# oDANBgkqhkiG9w0BAQUFAAOBgQCK4Lzl7toTtkWf3MsgiO+L1i7H/SFxUUfgi1dc +# Izwb8KniWNJqsIijLJoCwvbWnAnyFEWvp+e7rjDVMqZb2t7DRU5zSrQ0H2ilPUHP +# gSqkw8w+KL00T7ZWurHo1ZK025AsiBRmJyZ92DbTZ3vOqE2OAg5XWfuUgpcZeAxr +# sMXO1TGCAw0wggMJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNo +# aW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29y +# cG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEw +# AhMzAAABU9KCckVsV+OLAAAAAAFTMA0GCWCGSAFlAwQCAQUAoIIBSjAaBgkqhkiG +# 9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIG0JE/E1+EdXtxxr +# ewaGn/nr8RLXgufevC6IsivocBetMIH6BgsqhkiG9w0BCRACLzGB6jCB5zCB5DCB +# vQQgUMEKjzm0IAgJ/JehkEOmmh0sgxxvbA4fasQFaI21jwAwgZgwgYCkfjB8MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNy +# b3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAVPSgnJFbFfjiwAAAAABUzAi +# BCAwJ47KtBjKLnHQfzfGxo7HbQkV7kFc5qV0uw/LUrX2mzANBgkqhkiG9w0BAQsF +# AASCAQAZZL2S69viNNoAtGDXRWna3LSqF2IfnumRxhtkavTrYQKgYLvg+rpeeQEC +# S9bGbeKl2zj+1r8H7YEecokkjZP0+Ga053LCaaCOHo83ktQmQSHomwIiCLfurudC +# UtkJjqjPHYHjf9UzY9tarBrpegEsfDGnMh/xc8CRsCDaZOtOzASvBGEh5BVGcnCT +# cQ4Vzca/4eMhqikHe53OB/wkYLsPzAO+bhh8gBFZp0LkdTQqnPhfRolLsXHHsx00 +# iyN3CmK5cL4lPQXkGcnJUPocSYT9OzI4w2DJaZblJcuyCrUqGVjHKNxrtUij464J +# 8bInXA1xiBL2c2QlcV/0bzAk3jMX +# SIG # End signature block diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Security/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Security/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Security/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 new file mode 100644 index 0000000..b933c99 --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 @@ -0,0 +1,237 @@ +@{ +GUID = "1DA87E53-152B-403E-98DC-74D7B4D63D59" +Author = "PowerShell" +CompanyName = "Microsoft Corporation" +Copyright = "Copyright (c) Microsoft Corporation." +ModuleVersion = "7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion = "3.0" +CmdletsToExport = @( + 'Export-Alias', 'Get-Alias', 'Import-Alias', 'New-Alias', 'Remove-Alias', 'Set-Alias', 'Export-Clixml', 'Import-Clixml', + 'Measure-Command', 'Trace-Command', 'ConvertFrom-Csv', 'ConvertTo-Csv', 'Export-Csv', 'Import-Csv', 'Get-Culture', + 'Format-Custom', 'Get-Date', 'Set-Date', 'Write-Debug', 'Wait-Debugger', 'Register-EngineEvent', 'Write-Error', + 'Get-Event', 'New-Event', 'Remove-Event', 'Unregister-Event', 'Wait-Event', 'Get-EventSubscriber', 'Invoke-Expression', + 'Out-File', 'Unblock-File', 'Get-FileHash', 'Export-FormatData', 'Get-FormatData', 'Update-FormatData', 'New-Guid', + 'Format-Hex', 'Get-Host', 'Read-Host', 'Write-Host', 'ConvertTo-Html', 'Write-Information', 'ConvertFrom-Json', + 'ConvertTo-Json', 'Test-Json', 'Format-List', 'Import-LocalizedData', 'Send-MailMessage', 'ConvertFrom-Markdown', + 'Show-Markdown', 'Get-MarkdownOption', 'Set-MarkdownOption', 'Add-Member', 'Get-Member', 'Compare-Object', 'Group-Object', + 'Measure-Object', 'New-Object', 'Select-Object', 'Sort-Object', 'Tee-Object', 'Register-ObjectEvent', 'Write-Output', + 'Import-PowerShellDataFile', 'Write-Progress', 'Disable-PSBreakpoint', 'Enable-PSBreakpoint', 'Get-PSBreakpoint', + 'Remove-PSBreakpoint', 'Set-PSBreakpoint', 'Get-PSCallStack', 'Export-PSSession', 'Import-PSSession', 'Get-Random', + 'Invoke-RestMethod', 'Debug-Runspace', 'Get-Runspace', 'Disable-RunspaceDebug', 'Enable-RunspaceDebug', + 'Get-RunspaceDebug', 'ConvertFrom-SddlString', 'Start-Sleep', 'Join-String', 'Out-String', 'Select-String', + 'ConvertFrom-StringData', 'Format-Table', 'New-TemporaryFile', 'New-TimeSpan', 'Get-TraceSource', 'Set-TraceSource', + 'Add-Type', 'Get-TypeData', 'Remove-TypeData', 'Update-TypeData', 'Get-UICulture', 'Get-Unique', 'Get-Uptime', + 'Clear-Variable', 'Get-Variable', 'New-Variable', 'Remove-Variable', 'Set-Variable', 'Get-Verb', 'Write-Verbose', + 'Write-Warning', 'Invoke-WebRequest', 'Format-Wide', 'ConvertTo-Xml', 'Select-Xml', 'Get-Error', 'Update-List', + 'Out-GridView', 'Show-Command', 'Out-Printer' +) +FunctionsToExport = @() +AliasesToExport = @('fhx') +NestedModules = @("Microsoft.PowerShell.Commands.Utility.dll") +HelpInfoURI = 'https://aka.ms/powershell71-help' +PrivateData = @{ + PSData = @{ + ExperimentalFeatures = @( + @{ + Name = 'Microsoft.PowerShell.Utility.PSManageBreakpointsInRunspace' + Description = 'Enables -BreakAll parameter on Debug-Runspace and Debug-Job cmdlets to allow users to decide if they want PowerShell to break immediately in the current location when they attach a debugger. Enables -Runspace parameter on *-PSBreakpoint cmdlets to support management of breakpoints in another runspace.' + } + ) + } +} +} + +# SIG # Begin signature block +# MIIjnwYJKoZIhvcNAQcCoIIjkDCCI4wCAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCDKs7+TNdqkzg+C +# d63aSPiMVSdeKwB372LswYmQL3zobKCCDYEwggX/MIID56ADAgECAhMzAAAB32vw +# LpKnSrTQAAAAAAHfMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjAxMjE1MjEzMTQ1WhcNMjExMjAyMjEzMTQ1WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQC2uxlZEACjqfHkuFyoCwfL25ofI9DZWKt4wEj3JBQ48GPt1UsDv834CcoUUPMn +# s/6CtPoaQ4Thy/kbOOg/zJAnrJeiMQqRe2Lsdb/NSI2gXXX9lad1/yPUDOXo4GNw +# PjXq1JZi+HZV91bUr6ZjzePj1g+bepsqd/HC1XScj0fT3aAxLRykJSzExEBmU9eS +# yuOwUuq+CriudQtWGMdJU650v/KmzfM46Y6lo/MCnnpvz3zEL7PMdUdwqj/nYhGG +# 3UVILxX7tAdMbz7LN+6WOIpT1A41rwaoOVnv+8Ua94HwhjZmu1S73yeV7RZZNxoh +# EegJi9YYssXa7UZUUkCCA+KnAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUOPbML8IdkNGtCfMmVPtvI6VZ8+Mw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDYzMDA5MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAnnqH +# tDyYUFaVAkvAK0eqq6nhoL95SZQu3RnpZ7tdQ89QR3++7A+4hrr7V4xxmkB5BObS +# 0YK+MALE02atjwWgPdpYQ68WdLGroJZHkbZdgERG+7tETFl3aKF4KpoSaGOskZXp +# TPnCaMo2PXoAMVMGpsQEQswimZq3IQ3nRQfBlJ0PoMMcN/+Pks8ZTL1BoPYsJpok +# t6cql59q6CypZYIwgyJ892HpttybHKg1ZtQLUlSXccRMlugPgEcNZJagPEgPYni4 +# b11snjRAgf0dyQ0zI9aLXqTxWUU5pCIFiPT0b2wsxzRqCtyGqpkGM8P9GazO8eao +# mVItCYBcJSByBx/pS0cSYwBBHAZxJODUqxSXoSGDvmTfqUJXntnWkL4okok1FiCD +# Z4jpyXOQunb6egIXvkgQ7jb2uO26Ow0m8RwleDvhOMrnHsupiOPbozKroSa6paFt +# VSh89abUSooR8QdZciemmoFhcWkEwFg4spzvYNP4nIs193261WyTaRMZoceGun7G +# CT2Rl653uUj+F+g94c63AhzSq4khdL4HlFIP2ePv29smfUnHtGq6yYFDLnT0q/Y+ +# Di3jwloF8EWkkHRtSuXlFUbTmwr/lDDgbpZiKhLS7CBTDj32I0L5i532+uHczw82 +# oZDmYmYmIUSMbZOgS65h797rj5JJ6OkeEUJoAVwwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIVdDCCFXACAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAd9r8C6Sp0q00AAAAAAB3zAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgzRl/BWLo +# LUObiTZYEoplB/rPFRYTIxlj/yq14PZvloIwQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQCr4X79E593QjwIiYDaSytf0T8Wip2RcpDRDAeAtvF8 +# Y++rKBrmrTrVR8nftAv0mPBiVNi4Nqi+QJf/Ft9ZOAKsEW4fDoB3DM0HLStSCsuT +# vEexj6FJ2oDOiFqUdpyg+IYKedSot1CZGM5Gy90ouuyHH/0Z4msLysAQnsqc8xz9 +# u3iT5Mm0vbrt2NSHYKlsQcGjzRPa0oMuWpR4ReYAizMpzRbJK1/juskLi02ufd9d +# pZ2lZLRi8Z0q80J4HqHj52vp+U+ibs636e3ONprEkTcdbhRZvQhHYxE6ZyD8I5Ah +# j9yi7OJvOACAec21DaWfZu/kxoBIBJXaMUnBeKJ/ilFZoYIS/jCCEvoGCisGAQQB +# gjcDAwExghLqMIIS5gYJKoZIhvcNAQcCoIIS1zCCEtMCAQMxDzANBglghkgBZQME +# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIFucJr8W5EzIHh7RFKkMKlSODFZlZPPp/zdg269P +# 31zjAgZgPSwjRPcYEzIwMjEwMzEwMDExODM4LjY1NVowBIACAfSggdikgdUwgdIx +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p +# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh +# bGVzIFRTUyBFU046RDA4Mi00QkZELUVFQkExJTAjBgNVBAMTHE1pY3Jvc29mdCBU +# aW1lLVN0YW1wIFNlcnZpY2Wggg5NMIIE+TCCA+GgAwIBAgITMwAAAUGvf1KXXPLc +# RQAAAAABQTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg +# MjAxMDAeFw0yMDEwMTUxNzI4MjdaFw0yMjAxMTIxNzI4MjdaMIHSMQswCQYDVQQG +# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG +# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg +# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg +# RVNOOkQwODItNEJGRC1FRUJBMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt +# cCBTZXJ2aWNlMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA8irLqL28 +# dal+PJUmUJOwvYn/sOCEzQzZyj94XbFPtRhDhPjagvvKOv1GgMoOuXvkpM3uM5E6 +# 7vyOCPxqhTAzq7Ak3zkEXXBv7JoM8Xm0x5UcnAkpUiEo0eycRl6bnYIB3KlZW3uz +# 4Jc2v2FV0KCGkLrvqfKP8V/i2hVyN854OejWpx8wGUazM4CYUVowcgEDc76OY+Xa +# 4W27DCZJm2f9ol4BjSL+b2L/T8n/LEGknaUxwSQTN1LQCt+uBDCASd6VQR5CLLJV +# t6MBL0W1NlaWxEAJwlIdyBnS1ihLvRg1jc/KUZe0sRFdD3fhKrjPac3hoy007Fvr +# 6Go0WJ4pr2rJdQIDAQABo4IBGzCCARcwHQYDVR0OBBYEFC0oPyxuLpD9RXBr9c8N +# O0EFEsbEMB8GA1UdIwQYMBaAFNVjOlyKMZDzQ3t8RhvFM2hahW1VMFYGA1UdHwRP +# ME0wS6BJoEeGRWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2kvY3JsL3Byb2R1 +# Y3RzL01pY1RpbVN0YVBDQV8yMDEwLTA3LTAxLmNybDBaBggrBgEFBQcBAQROMEww +# SgYIKwYBBQUHMAKGPmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMv +# TWljVGltU3RhUENBXzIwMTAtMDctMDEuY3J0MAwGA1UdEwEB/wQCMAAwEwYDVR0l +# BAwwCgYIKwYBBQUHAwgwDQYJKoZIhvcNAQELBQADggEBAFJ63yJ92ChqCgpexD48 +# okviGuC4ikNsvmwlCSet1sFpvJEzLJB8cTF4z4qQTz8AsQtcew6mAVmQCYDu9f5e +# e11xXj1LwHYsZGnSs/OfRul1VKmY51OQpqvK5O/Ct4fs0Iblzo8eyOLJygTk97aX +# VA4Uzq8GblL7LQ5XiwAY446MOALnNXFo/Kq9tvzipwY1YcRn/nlMQ+b92OiLLmHV +# Mi2wAUORiKFvaAfYWjhQd+2qHLMsdpNluwBbWe7FF5ABsDo0HROMWyCgxdLQ3vqr +# 3DMSH3ZWKiirFsvWJmchfZPGRObwqszvSXPFmPBZ9o+er+4UoLV+50GWnnQky7HV +# gLkwggZxMIIEWaADAgECAgphCYEqAAAAAAACMA0GCSqGSIb3DQEBCwUAMIGIMQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNy +# b3NvZnQgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgMjAxMDAeFw0xMDA3MDEy +# MTM2NTVaFw0yNTA3MDEyMTQ2NTVaMHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpX +# YXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQg +# Q29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAy +# MDEwMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqR0NvHcRijog7PwT +# l/X6f2mUa3RUENWlCgCChfvtfGhLLF/Fw+Vhwna3PmYrW/AVUycEMR9BGxqVHc4J +# E458YTBZsTBED/FgiIRUQwzXTbg4CLNC3ZOs1nMwVyaCo0UN0Or1R4HNvyRgMlhg +# RvJYR4YyhB50YWeRX4FUsc+TTJLBxKZd0WETbijGGvmGgLvfYfxGwScdJGcSchoh +# iq9LZIlQYrFd/XcfPfBXday9ikJNQFHRD5wGPmd/9WbAA5ZEfu/QS/1u5ZrKsajy +# eioKMfDaTgaRtogINeh4HLDpmc085y9Euqf03GS9pAHBIAmTeM38vMDJRF1eFpwB +# BU8iTQIDAQABo4IB5jCCAeIwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFNVj +# OlyKMZDzQ3t8RhvFM2hahW1VMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsG +# A1UdDwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFNX2VsuP6KJc +# YmjRPZSQW9fOmhjEMFYGA1UdHwRPME0wS6BJoEeGRWh0dHA6Ly9jcmwubWljcm9z +# b2Z0LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIz +# LmNybDBaBggrBgEFBQcBAQROMEwwSgYIKwYBBQUHMAKGPmh0dHA6Ly93d3cubWlj +# cm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYtMjMuY3J0 +# MIGgBgNVHSABAf8EgZUwgZIwgY8GCSsGAQQBgjcuAzCBgTA9BggrBgEFBQcCARYx +# aHR0cDovL3d3dy5taWNyb3NvZnQuY29tL1BLSS9kb2NzL0NQUy9kZWZhdWx0Lmh0 +# bTBABggrBgEFBQcCAjA0HjIgHQBMAGUAZwBhAGwAXwBQAG8AbABpAGMAeQBfAFMA +# dABhAHQAZQBtAGUAbgB0AC4gHTANBgkqhkiG9w0BAQsFAAOCAgEAB+aIUQ3ixuCY +# P4FxAz2do6Ehb7Prpsz1Mb7PBeKp/vpXbRkws8LFZslq3/Xn8Hi9x6ieJeP5vO1r +# VFcIK1GCRBL7uVOMzPRgEop2zEBAQZvcXBf/XPleFzWYJFZLdO9CEMivv3/Gf/I3 +# fVo/HPKZeUqRUgCvOA8X9S95gWXZqbVr5MfO9sp6AG9LMEQkIjzP7QOllo9ZKby2 +# /QThcJ8ySif9Va8v/rbljjO7Yl+a21dA6fHOmWaQjP9qYn/dxUoLkSbiOewZSnFj +# nXshbcOco6I8+n99lmqQeKZt0uGc+R38ONiU9MalCpaGpL2eGq4EQoO4tYCbIjgg +# tSXlZOz39L9+Y1klD3ouOVd2onGqBooPiRa6YacRy5rYDkeagMXQzafQ732D8OE7 +# cQnfXXSYIghh2rBQHm+98eEA3+cxB6STOvdlR3jo+KhIq/fecn5ha293qYHLpwms +# ObvsxsvYgrRyzR30uIUBHoD7G4kqVDmyW9rIDVWZeodzOwjmmC3qjeAzLhIp9cAv +# VCch98isTtoouLGp25ayp0Kiyc8ZQU3ghvkqmqMRZjDTu3QyS99je/WZii8bxyGv +# WbWu3EQ8l1Bx16HSxVXjad5XwdHeMMD9zOZN+w2/XU/pnR4ZOC+8z1gFLu8NoFA1 +# 2u8JJxzVs341Hgi62jbb01+P3nSISRKhggLXMIICQAIBATCCAQChgdikgdUwgdIx +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p +# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh +# bGVzIFRTUyBFU046RDA4Mi00QkZELUVFQkExJTAjBgNVBAMTHE1pY3Jvc29mdCBU +# aW1lLVN0YW1wIFNlcnZpY2WiIwoBATAHBgUrDgMCGgMVAKrlvym1CquIoQcrzncL +# vkD1WpUDoIGDMIGApH4wfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0 +# b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3Jh +# dGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJ +# KoZIhvcNAQEFBQACBQDj8jYBMCIYDzIwMjEwMzEwMDE1OTI5WhgPMjAyMTAzMTEw +# MTU5MjlaMHcwPQYKKwYBBAGEWQoEATEvMC0wCgIFAOPyNgECAQAwCgIBAAICDNUC +# Af8wBwIBAAICEWMwCgIFAOPzh4ECAQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYB +# BAGEWQoDAqAKMAgCAQACAwehIKEKMAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOB +# gQCiNZ1V0aaQZzA48kptUi9M95xCcy7r11ATxfNHw8Yt9RttYUsCBjMab3gGzeq6 +# OtrpIPx6BBLZiUlLGhacZwqwyYnk6NqMDl9WGrKjO3D6btVodilqjDZsmQiXXpg2 +# DbmXY/Wztp6aDSRjD/1AI2wDkuUc/SmWKRLjlz1LerYZ4TGCAw0wggMJAgEBMIGT +# MHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMT +# HU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwAhMzAAABQa9/Updc8txFAAAA +# AAFBMA0GCWCGSAFlAwQCAQUAoIIBSjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQ +# AQQwLwYJKoZIhvcNAQkEMSIEIMXL8Tdpx6BzywwCWYXzevDOBnUgxTWQmrJkXluc +# uOGdMIH6BgsqhkiG9w0BCRACLzGB6jCB5zCB5DCBvQQgUT8BPIzqc3SecHRPLKBt +# W0vOOnT+78haWo+XcxVerd4wgZgwgYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UE +# CBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9z +# b2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQ +# Q0EgMjAxMAITMwAAAUGvf1KXXPLcRQAAAAABQTAiBCAouz89aO/2P98kOhSxENc2 +# W3ZsQs/9fWv3BuFeIRz9djANBgkqhkiG9w0BAQsFAASCAQCMnmN00JfxIiQ3iWOr +# A+Xs+aWpZmsn5qHjI53t63H8Odp6JHt5CxikV6vP6uy0ojtGEk73g0ahNeHmA+sj +# 6+ptRSWn4Gi8XBGn5abxIuhH4XJBAvwSRti7IhEgX1a65C7QqRt/UExei/7LtUDI +# Etu3R7S3twGgmilDVHElaCW5ad1JUc6utLL7ED8qFBU7H43gNuTGx/SpoyCDOspy +# ZFtCJLIYq/kX2A3TM56EIphxDxcOZh+QKObeqKAr5Khh36yceaa0dzbx5PgnCAFv +# P7U7lHtEi92sKm3oHoxnBStLiDVbJz4Fh3S1oQADO0a2IHlFJX+WN+eEZ0o0O32l +# /fKA +# SIG # End signature block diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Utility/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Utility/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Utility/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1 b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1 new file mode 100644 index 0000000..225b9f2 --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1 @@ -0,0 +1,208 @@ +@{ +GUID="766204A6-330E-4263-A7AB-46C87AFC366C" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +FunctionsToExport = @() +CmdletsToExport="Disable-WSManCredSSP", "Enable-WSManCredSSP", "Get-WSManCredSSP", "Set-WSManQuickConfig", "Test-WSMan", "Invoke-WSManAction", "Connect-WSMan", "Disconnect-WSMan", "Get-WSManInstance", "Set-WSManInstance", "Remove-WSManInstance", "New-WSManInstance", "New-WSManSessionOption" +AliasesToExport = @() +NestedModules="Microsoft.WSMan.Management.dll" +FormatsToProcess="WSMan.format.ps1xml" +HelpInfoURI = 'https://aka.ms/powershell71-help' +} + +# SIG # Begin signature block +# MIIjgwYJKoZIhvcNAQcCoIIjdDCCI3ACAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCCgrg88GwDXsFNz +# F4OW7E6XanM5FL/dfqTNeI8dd5xw+6CCDYEwggX/MIID56ADAgECAhMzAAAB32vw +# LpKnSrTQAAAAAAHfMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjAxMjE1MjEzMTQ1WhcNMjExMjAyMjEzMTQ1WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQC2uxlZEACjqfHkuFyoCwfL25ofI9DZWKt4wEj3JBQ48GPt1UsDv834CcoUUPMn +# s/6CtPoaQ4Thy/kbOOg/zJAnrJeiMQqRe2Lsdb/NSI2gXXX9lad1/yPUDOXo4GNw +# PjXq1JZi+HZV91bUr6ZjzePj1g+bepsqd/HC1XScj0fT3aAxLRykJSzExEBmU9eS +# yuOwUuq+CriudQtWGMdJU650v/KmzfM46Y6lo/MCnnpvz3zEL7PMdUdwqj/nYhGG +# 3UVILxX7tAdMbz7LN+6WOIpT1A41rwaoOVnv+8Ua94HwhjZmu1S73yeV7RZZNxoh +# EegJi9YYssXa7UZUUkCCA+KnAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUOPbML8IdkNGtCfMmVPtvI6VZ8+Mw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDYzMDA5MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAnnqH +# tDyYUFaVAkvAK0eqq6nhoL95SZQu3RnpZ7tdQ89QR3++7A+4hrr7V4xxmkB5BObS +# 0YK+MALE02atjwWgPdpYQ68WdLGroJZHkbZdgERG+7tETFl3aKF4KpoSaGOskZXp +# TPnCaMo2PXoAMVMGpsQEQswimZq3IQ3nRQfBlJ0PoMMcN/+Pks8ZTL1BoPYsJpok +# t6cql59q6CypZYIwgyJ892HpttybHKg1ZtQLUlSXccRMlugPgEcNZJagPEgPYni4 +# b11snjRAgf0dyQ0zI9aLXqTxWUU5pCIFiPT0b2wsxzRqCtyGqpkGM8P9GazO8eao +# mVItCYBcJSByBx/pS0cSYwBBHAZxJODUqxSXoSGDvmTfqUJXntnWkL4okok1FiCD +# Z4jpyXOQunb6egIXvkgQ7jb2uO26Ow0m8RwleDvhOMrnHsupiOPbozKroSa6paFt +# VSh89abUSooR8QdZciemmoFhcWkEwFg4spzvYNP4nIs193261WyTaRMZoceGun7G +# CT2Rl653uUj+F+g94c63AhzSq4khdL4HlFIP2ePv29smfUnHtGq6yYFDLnT0q/Y+ +# Di3jwloF8EWkkHRtSuXlFUbTmwr/lDDgbpZiKhLS7CBTDj32I0L5i532+uHczw82 +# oZDmYmYmIUSMbZOgS65h797rj5JJ6OkeEUJoAVwwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIVWDCCFVQCAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAd9r8C6Sp0q00AAAAAAB3zAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgD1wAbHaJ +# Ah625m36a9xJJxSpKq18BextRencSirD9EcwQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQARDu9kTus8QcG/0uQRrCU+JtLB6Y53bpivAxkB0jcq +# 57NN5gVRp7YWPC1rYg+eu3drINmeGDUU78+rb3f7VVGo3FvQMzdb4A/wkSfRwCOL +# jWFK50ZeDg7ZQ76LDYEOqpjxBLwdORve808MCjRIjNMFf2qhPm2ejH0MLUfpvDGB +# qweAHIIlP5ORab8mH52g78L7D/QgGCWt8KSS81WzXkcR4IA+pY/uWiLtRv6OHWNX +# 4QD3N1Df/YuzmteQ+xQ0N4B9bQVlTNxaXRA4zIJ1phyF3acR8Gb9WCYFZAgbXHvP +# yGGAufTy2uqKM9UUmYEX8VsyGGdf7T2iix/2p3xnOgONoYIS4jCCEt4GCisGAQQB +# gjcDAwExghLOMIISygYJKoZIhvcNAQcCoIISuzCCErcCAQMxDzANBglghkgBZQME +# AgEFADCCAVEGCyqGSIb3DQEJEAEEoIIBQASCATwwggE4AgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIHuc38H9tEA5e8OQEZbjg4c/jLt9YisWYr4M6Og3 +# uk3XAgZgPPZd+JcYEzIwMjEwMzEwMDExODM3LjUzNVowBIACAfSggdCkgc0wgcox +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJTAjBgNVBAsTHE1p +# Y3Jvc29mdCBBbWVyaWNhIE9wZXJhdGlvbnMxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg +# RVNOOjNFN0EtRTM1OS1BMjVEMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt +# cCBTZXJ2aWNloIIOOTCCBPEwggPZoAMCAQICEzMAAAFSMEtdiazmcEcAAAAAAVIw +# DQYJKoZIhvcNAQELBQAwfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0 +# b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3Jh +# dGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwHhcN +# MjAxMTEyMTgyNjA1WhcNMjIwMjExMTgyNjA1WjCByjELMAkGA1UEBhMCVVMxEzAR +# BgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1p +# Y3Jvc29mdCBDb3Jwb3JhdGlvbjElMCMGA1UECxMcTWljcm9zb2Z0IEFtZXJpY2Eg +# T3BlcmF0aW9uczEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0U3QS1FMzU5LUEy +# NUQxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2UwggEiMA0G +# CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCuzG6EiZh0taCSbswMiupMTYnbboFz +# jj1DuDbbvT0RXKBCVl/umA+Uy214DmHiFhkeuRdlLB0ya5S9um5aKr7lBBqZzvtK +# gGNgCRbDTG9Yu6kzDzPTzQRulVIvoWVy0gITnEyoJ1O3m5IPpsLBNQCdXsh+3TZF +# 73JAcub21bnxm/4sxe4zTdbdttBrqX8/JJF2VEnAP+MBvF2UQSo6XUAaTKC/HPDP +# Cce/IsNoAxxLDI1wHhIlqjRBnt4HM5HcKHrZrvH+vHnihikdlEzh3fjQFowk1fG7 +# PVhmO60O5vVdqA+H9314hHENQI0cbo+SkSi8SSJSLNixgj0eWePTh7pbAgMBAAGj +# ggEbMIIBFzAdBgNVHQ4EFgQUhN2u2qwj1l2c2h/kULDuBRJsexQwHwYDVR0jBBgw +# FoAU1WM6XIoxkPNDe3xGG8UzaFqFbVUwVgYDVR0fBE8wTTBLoEmgR4ZFaHR0cDov +# L2NybC5taWNyb3NvZnQuY29tL3BraS9jcmwvcHJvZHVjdHMvTWljVGltU3RhUENB +# XzIwMTAtMDctMDEuY3JsMFoGCCsGAQUFBwEBBE4wTDBKBggrBgEFBQcwAoY+aHR0 +# cDovL3d3dy5taWNyb3NvZnQuY29tL3BraS9jZXJ0cy9NaWNUaW1TdGFQQ0FfMjAx +# MC0wNy0wMS5jcnQwDAYDVR0TAQH/BAIwADATBgNVHSUEDDAKBggrBgEFBQcDCDAN +# BgkqhkiG9w0BAQsFAAOCAQEAVcUncfFqSazQbDEXf3d10/upiWQU5HdTbwG9v9be +# VIDaG4oELyIcNE6e6CbOBMlPU+smpYYcnK3jucNqChwquLmxdi2iPy4iQ6vjAdBp +# 9+VFWlrBqUsNXZzjCpgMCZj6bu8Xq0Nndl4WyBbI0Jku68vUNG4wsMdKP3dz+1Mz +# k9SUma3j7HyNA559do9nhKmoZMn5dtf03QvxlaEwMAaPk9xuUv9BN8cNvFnpWk4m +# LERQW6tA3rXK0soEISKTYG7Ose7oMXZDYPWxf9oFhYKzZw/SwnhdBoj2S5eyYE3A +# uF/ZXzR3hdp3/XGzZeOdERfFy1rC7ZBwhDIajeFMi53GnzCCBnEwggRZoAMCAQIC +# CmEJgSoAAAAAAAIwDQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRp +# ZmljYXRlIEF1dGhvcml0eSAyMDEwMB4XDTEwMDcwMTIxMzY1NVoXDTI1MDcwMTIx +# NDY1NVowfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNV +# BAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQG +# A1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggEiMA0GCSqGSIb3 +# DQEBAQUAA4IBDwAwggEKAoIBAQCpHQ28dxGKOiDs/BOX9fp/aZRrdFQQ1aUKAIKF +# ++18aEssX8XD5WHCdrc+Zitb8BVTJwQxH0EbGpUdzgkTjnxhMFmxMEQP8WCIhFRD +# DNdNuDgIs0Ldk6zWczBXJoKjRQ3Q6vVHgc2/JGAyWGBG8lhHhjKEHnRhZ5FfgVSx +# z5NMksHEpl3RYRNuKMYa+YaAu99h/EbBJx0kZxJyGiGKr0tkiVBisV39dx898Fd1 +# rL2KQk1AUdEPnAY+Z3/1ZsADlkR+79BL/W7lmsqxqPJ6Kgox8NpOBpG2iAg16Hgc +# sOmZzTznL0S6p/TcZL2kAcEgCZN4zfy8wMlEXV4WnAEFTyJNAgMBAAGjggHmMIIB +# 4jAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU1WM6XIoxkPNDe3xGG8UzaFqF +# bVUwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMA8GA1Ud +# EwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU1fZWy4/oolxiaNE9lJBb186aGMQwVgYD +# VR0fBE8wTTBLoEmgR4ZFaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraS9jcmwv +# cHJvZHVjdHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYtMjMuY3JsMFoGCCsGAQUFBwEB +# BE4wTDBKBggrBgEFBQcwAoY+aHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraS9j +# ZXJ0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5jcnQwgaAGA1UdIAEB/wSBlTCB +# kjCBjwYJKwYBBAGCNy4DMIGBMD0GCCsGAQUFBwIBFjFodHRwOi8vd3d3Lm1pY3Jv +# c29mdC5jb20vUEtJL2RvY3MvQ1BTL2RlZmF1bHQuaHRtMEAGCCsGAQUFBwICMDQe +# MiAdAEwAZQBnAGEAbABfAFAAbwBsAGkAYwB5AF8AUwB0AGEAdABlAG0AZQBuAHQA +# LiAdMA0GCSqGSIb3DQEBCwUAA4ICAQAH5ohRDeLG4Jg/gXEDPZ2joSFvs+umzPUx +# vs8F4qn++ldtGTCzwsVmyWrf9efweL3HqJ4l4/m87WtUVwgrUYJEEvu5U4zM9GAS +# inbMQEBBm9xcF/9c+V4XNZgkVkt070IQyK+/f8Z/8jd9Wj8c8pl5SpFSAK84Dxf1 +# L3mBZdmptWvkx872ynoAb0swRCQiPM/tA6WWj1kpvLb9BOFwnzJKJ/1Vry/+tuWO +# M7tiX5rbV0Dp8c6ZZpCM/2pif93FSguRJuI57BlKcWOdeyFtw5yjojz6f32WapB4 +# pm3S4Zz5Hfw42JT0xqUKloakvZ4argRCg7i1gJsiOCC1JeVk7Pf0v35jWSUPei45 +# V3aicaoGig+JFrphpxHLmtgOR5qAxdDNp9DvfYPw4TtxCd9ddJgiCGHasFAeb73x +# 4QDf5zEHpJM692VHeOj4qEir995yfmFrb3epgcunCaw5u+zGy9iCtHLNHfS4hQEe +# gPsbiSpUObJb2sgNVZl6h3M7COaYLeqN4DMuEin1wC9UJyH3yKxO2ii4sanblrKn +# QqLJzxlBTeCG+SqaoxFmMNO7dDJL32N79ZmKLxvHIa9Zta7cRDyXUHHXodLFVeNp +# 3lfB0d4wwP3M5k37Db9dT+mdHhk4L7zPWAUu7w2gUDXa7wknHNWzfjUeCLraNtvT +# X4/edIhJEqGCAsswggI0AgEBMIH4oYHQpIHNMIHKMQswCQYDVQQGEwJVUzETMBEG +# A1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWlj +# cm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxNaWNyb3NvZnQgQW1lcmljYSBP +# cGVyYXRpb25zMSYwJAYDVQQLEx1UaGFsZXMgVFNTIEVTTjozRTdBLUUzNTktQTI1 +# RDElMCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAgU2VydmljZaIjCgEBMAcG +# BSsOAwIaAxUAv26eVJaumcmTchd6hqayQMNDXluggYMwgYCkfjB8MQswCQYDVQQG +# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG +# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQg +# VGltZS1TdGFtcCBQQ0EgMjAxMDANBgkqhkiG9w0BAQUFAAIFAOPyAMgwIhgPMjAy +# MTAzMDkyMjEyMjRaGA8yMDIxMDMxMDIyMTIyNFowdDA6BgorBgEEAYRZCgQBMSww +# KjAKAgUA4/IAyAIBADAHAgEAAgIcnDAHAgEAAgIRmDAKAgUA4/NSSAIBADA2Bgor +# BgEEAYRZCgQCMSgwJjAMBgorBgEEAYRZCgMCoAowCAIBAAIDB6EgoQowCAIBAAID +# AYagMA0GCSqGSIb3DQEBBQUAA4GBAJDVZ5yfSdZ+LlfL0XxjSSnMt5tYALyLo3NS +# BXE2ExNw4snoVNrJkdx8tsknLloTQJ6wxDB4DpRWcQ5zKxaYIissJa1WzeHxT3Jf +# 6f5VDVygQVLpNHpDG5Q29ogYHu3m2EBzWcKU++6gyTX80s0X2H11Go548MYFkgWQ +# 1OkbO5PyMYIDDTCCAwkCAQEwgZMwfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldh +# c2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBD +# b3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIw +# MTACEzMAAAFSMEtdiazmcEcAAAAAAVIwDQYJYIZIAWUDBAIBBQCgggFKMBoGCSqG +# SIb3DQEJAzENBgsqhkiG9w0BCRABBDAvBgkqhkiG9w0BCQQxIgQgki0TWfygUu+e +# /LjKh3ROAqnb9WRe9QmDrvj6JRfFej4wgfoGCyqGSIb3DQEJEAIvMYHqMIHnMIHk +# MIG9BCCT7lzHo4slUIxfEGp8LXQNik/ecK6vuuGWIcmBrrsnpjCBmDCBgKR+MHwx +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1p +# Y3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwAhMzAAABUjBLXYms5nBHAAAAAAFS +# MCIEICh4fdAMXOBt8Q/HY8UtgOHUMPI+5kZLGfKmPZWqtZ/wMA0GCSqGSIb3DQEB +# CwUABIIBABDNzcICNq4BaU78qF2lUcV4B4K/Dh+9au93kqLV5lMzyxmjNA8Aw68q +# 4W2BLgFym9ySDkT/0acWhrLAFbmNd0xPbyn2Wic1nUc2bG0oWGS1LNjFTtJYomTD +# UqlQMNoc/b9wYWOK8lHTO7dz7XtTlA0FnGm/rLOPe1R+j8NkCQCSosgVslnTUHEG +# zV1Txn0j/R3c1mYSrpa2WYHSo0tJ2qMHxXUM/t+biXqtKxNbKukQ3w4P6ICE7m/I +# jCumASQUTwGY6SYfxRWD30AO2bFvd4tZAr05yhkPVc7hdWfDKOJEjW0h+JHdqQb8 +# hjSAbiP09LYM1mJlQjZEYYKn2LQ63Sc= +# SIG # End signature block diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml new file mode 100644 index 0000000..912f4c0 --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml @@ -0,0 +1,429 @@ + + + + + + + System.Xml.XmlElement#http://schemas.dmtf.org/wbem/wsman/identity/1/wsmanidentity.xsd#IdentifyResponse + + System.Xml.XmlElement#http://schemas.dmtf.org/wbem/wsman/identity/1/wsmanidentity.xsd#IdentifyResponse + + + + + + + wsmid + + + ProtocolVersion + + + ProductVendor + + + ProductVersion + + + + + + + + Microsoft.WSMan.Management.WSManConfigElement + + Microsoft.WSMan.Management.WSManConfigElement + + + PSParentPath + + + + + + + 15 + + + + 30 + + + + + + + TypeNameOfElement + + + Name + + + + + + + + Microsoft.WSMan.Management.WSManConfigContainerElement + + Microsoft.WSMan.Management.WSManConfigContainerElement + + + PSParentPath + + + + + + + 15 + + + + 35 + + + + + + + + + + TypeNameOfElement + + + Keys + + + Name + + + + + + + + Microsoft.WSMan.Management.WSManConfigLeafElement + + Microsoft.WSMan.Management.WSManConfigLeafElement + + + PSParentPath + + + + + + + 15 + + + + 30 + + + + 15 + + + + + + + + + + TypeNameOfElement + + + Name + + + SourceOfValue + + + Value + + + + + + + + Microsoft.WSMan.Management.WSManConfigLeafElement#InitParams + + Microsoft.WSMan.Management.WSManConfigLeafElement#InitParams + + + PSParentPath + + + + + + + 30 + + + + 20 + + + + + + + Name + + + Value + + + + + + + + Microsoft.WSMan.Management.WSManConfigContainerElement#ComputerLevel + + Microsoft.WSMan.Management.WSManConfigContainerElement#ComputerLevel + + + PSParentPath + + + + + + + 45 + + + + 20 + + + + + + + Name + + + TypeNameOfElement + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.WSMan.Management/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.WSMan.Management/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/Microsoft.WSMan.Management/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/PSDiagnostics/PSDiagnostics.psd1 b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/PSDiagnostics/PSDiagnostics.psd1 new file mode 100644 index 0000000..addac07 --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/PSDiagnostics/PSDiagnostics.psd1 @@ -0,0 +1,207 @@ +@{ + GUID="c61d6278-02a3-4618-ae37-a524d40a7f44 " + Author="PowerShell" + CompanyName="Microsoft Corporation" + Copyright="Copyright (c) Microsoft Corporation." + ModuleVersion="7.0.0.0" + CompatiblePSEditions = @("Core") + PowerShellVersion="3.0" + ModuleToProcess="PSDiagnostics.psm1" + FunctionsToExport="Disable-PSTrace","Disable-PSWSManCombinedTrace","Disable-WSManTrace","Enable-PSTrace","Enable-PSWSManCombinedTrace","Enable-WSManTrace","Get-LogProperties","Set-LogProperties","Start-Trace","Stop-Trace" + CmdletsToExport = @() + AliasesToExport = @() + HelpInfoUri="https://aka.ms/powershell71-help" +} + +# SIG # Begin signature block +# MIIjkgYJKoZIhvcNAQcCoIIjgzCCI38CAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCA91XRAtGvuIwq4 +# dIRlYJEWc0aKphDzGetFjne7WD9WlaCCDYEwggX/MIID56ADAgECAhMzAAAB32vw +# LpKnSrTQAAAAAAHfMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjAxMjE1MjEzMTQ1WhcNMjExMjAyMjEzMTQ1WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQC2uxlZEACjqfHkuFyoCwfL25ofI9DZWKt4wEj3JBQ48GPt1UsDv834CcoUUPMn +# s/6CtPoaQ4Thy/kbOOg/zJAnrJeiMQqRe2Lsdb/NSI2gXXX9lad1/yPUDOXo4GNw +# PjXq1JZi+HZV91bUr6ZjzePj1g+bepsqd/HC1XScj0fT3aAxLRykJSzExEBmU9eS +# yuOwUuq+CriudQtWGMdJU650v/KmzfM46Y6lo/MCnnpvz3zEL7PMdUdwqj/nYhGG +# 3UVILxX7tAdMbz7LN+6WOIpT1A41rwaoOVnv+8Ua94HwhjZmu1S73yeV7RZZNxoh +# EegJi9YYssXa7UZUUkCCA+KnAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUOPbML8IdkNGtCfMmVPtvI6VZ8+Mw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDYzMDA5MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAnnqH +# tDyYUFaVAkvAK0eqq6nhoL95SZQu3RnpZ7tdQ89QR3++7A+4hrr7V4xxmkB5BObS +# 0YK+MALE02atjwWgPdpYQ68WdLGroJZHkbZdgERG+7tETFl3aKF4KpoSaGOskZXp +# TPnCaMo2PXoAMVMGpsQEQswimZq3IQ3nRQfBlJ0PoMMcN/+Pks8ZTL1BoPYsJpok +# t6cql59q6CypZYIwgyJ892HpttybHKg1ZtQLUlSXccRMlugPgEcNZJagPEgPYni4 +# b11snjRAgf0dyQ0zI9aLXqTxWUU5pCIFiPT0b2wsxzRqCtyGqpkGM8P9GazO8eao +# mVItCYBcJSByBx/pS0cSYwBBHAZxJODUqxSXoSGDvmTfqUJXntnWkL4okok1FiCD +# Z4jpyXOQunb6egIXvkgQ7jb2uO26Ow0m8RwleDvhOMrnHsupiOPbozKroSa6paFt +# VSh89abUSooR8QdZciemmoFhcWkEwFg4spzvYNP4nIs193261WyTaRMZoceGun7G +# CT2Rl653uUj+F+g94c63AhzSq4khdL4HlFIP2ePv29smfUnHtGq6yYFDLnT0q/Y+ +# Di3jwloF8EWkkHRtSuXlFUbTmwr/lDDgbpZiKhLS7CBTDj32I0L5i532+uHczw82 +# oZDmYmYmIUSMbZOgS65h797rj5JJ6OkeEUJoAVwwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIVZzCCFWMCAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAd9r8C6Sp0q00AAAAAAB3zAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgzhnRIznf +# SyXSAbGy3EWFNkXELkY1zSvlVeIVCMD74vwwQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQBRz0yZieUjb+dhwC5hGxn2+k9Mq1cdueFcN5vrWhjq +# gCEotyd5c5UpinT3Hmptd2Wonl3adgUcxQYUlxhNidCDAFfPrjH/wQCW5/4OUOxX +# 4MFzTjFAzFPPgv8VF7SAzTHj6ujCzDZCS2ZG52sian/f49STeQ12r+0TUicIe9zL +# e46OoczEXTGFIQZ95J/iGZh3Gmzr6zfRtonpuaV4hBjgOlrL0hbIKFA5BDtZ5Z02 +# luXI9DPdC6G00fVUKwimUXP9FT3hi+noQ91MlP7/fwGxHBkPxTu62wiDd9ns8zsn +# UjPsJ2woogU3BjNBqfL2IqsljwAKm1TQIPBqpYR0SZV9oYIS8TCCEu0GCisGAQQB +# gjcDAwExghLdMIIS2QYJKoZIhvcNAQcCoIISyjCCEsYCAQMxDzANBglghkgBZQME +# AgEFADCCAVUGCyqGSIb3DQEJEAEEoIIBRASCAUAwggE8AgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIE0HUjX7LGEK75SXVGkwSZ7C5K5F2FwG7vmappjx +# 0uFLAgZgPOmj/TUYEzIwMjEwMzEwMDExODM3LjY2N1owBIACAfSggdSkgdEwgc4x +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKTAnBgNVBAsTIE1p +# Y3Jvc29mdCBPcGVyYXRpb25zIFB1ZXJ0byBSaWNvMSYwJAYDVQQLEx1UaGFsZXMg +# VFNTIEVTTjpGNzdGLUUzNTYtNUJBRTElMCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUt +# U3RhbXAgU2VydmljZaCCDkQwggT1MIID3aADAgECAhMzAAABXp0px1+HBaHqAAAA +# AAFeMA0GCSqGSIb3DQEBCwUAMHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNo +# aW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29y +# cG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEw +# MB4XDTIxMDExNDE5MDIxOVoXDTIyMDQxMTE5MDIxOVowgc4xCzAJBgNVBAYTAlVT +# MRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQK +# ExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVy +# YXRpb25zIFB1ZXJ0byBSaWNvMSYwJAYDVQQLEx1UaGFsZXMgVFNTIEVTTjpGNzdG +# LUUzNTYtNUJBRTElMCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAgU2Vydmlj +# ZTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJrTI4OQehn3oKp2zuh6 +# WP2Zib/Dxw/srLeeyTb9ed7PX+fLg7zBA0yl6ivF2n6lauGH8W7EBwRPEv7ZCSXw +# XgYZ6GGaH8aU+OrDXAbc4BXTO5XnLGwSbaye9R2+uQHdCJmaMtz/lEBWUK5xvHoj +# 0TUrXOZdZ/vv7TqMWA4h1AT1w/JBR4kHtV1i8KWdlQ+dZX/gNHpA72IoLoOmpImb +# GRzcGQ4Z2Kzq4eMB9wjaFRV1JF/wz1hLFIjGtlU3eGjRBiBEEVI7UEMMSvI4rK+C +# fLAIZnULu7SzlIfqSU3R0pSNUahwpWdCiB6fKzIq94Z+9888moQuo95RAPmzHQW1 +# MI0CAwEAAaOCARswggEXMB0GA1UdDgQWBBSqcny6Dd1L5VTCEACezlR41fgfKzAf +# BgNVHSMEGDAWgBTVYzpcijGQ80N7fEYbxTNoWoVtVTBWBgNVHR8ETzBNMEugSaBH +# hkVodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNU +# aW1TdGFQQ0FfMjAxMC0wNy0wMS5jcmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUF +# BzAChj5odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1RpbVN0 +# YVBDQV8yMDEwLTA3LTAxLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoGCCsG +# AQUFBwMIMA0GCSqGSIb3DQEBCwUAA4IBAQB/IfxZhMYkBMqRmXnh/Vit4bfxyioA +# lr7HJ1XDSHTIvRwDD1PGr0upZE/vrrI/QN/1Wi6vDcKmnJ2r7Xj6pWZOZqc9Bp+u +# BvpPaulue4stu3TqKTc9Fu2K5ibctpF4oHPfZ+IKeChop+Mk9g7N5llHzv0aCDia +# M0w2aAT3rj3QHQS8ijnQ5/qhtzwo1AoUnV1y2urWwX5aHdUzaoeAJrvnf2ee89Kf +# 4ycjjyafNJSUp/qaXBlbjMu90vNubJstdSxOtvwcxeeHP6ZaYbTl2cOla4cokiPU +# +BUjIZA/t/IZfYoazMGmBtLWFJZdC9LYWWmLLsNJ2W21qkeSSpEAw4pmMIIGcTCC +# BFmgAwIBAgIKYQmBKgAAAAAAAjANBgkqhkiG9w0BAQsFADCBiDELMAkGA1UEBhMC +# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV +# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEyMDAGA1UEAxMpTWljcm9zb2Z0IFJv +# b3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTAwHhcNMTAwNzAxMjEzNjU1WhcN +# MjUwNzAxMjE0NjU1WjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3Rv +# bjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0 +# aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMDCCASIw +# DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKkdDbx3EYo6IOz8E5f1+n9plGt0 +# VBDVpQoAgoX77XxoSyxfxcPlYcJ2tz5mK1vwFVMnBDEfQRsalR3OCROOfGEwWbEw +# RA/xYIiEVEMM1024OAizQt2TrNZzMFcmgqNFDdDq9UeBzb8kYDJYYEbyWEeGMoQe +# dGFnkV+BVLHPk0ySwcSmXdFhE24oxhr5hoC732H8RsEnHSRnEnIaIYqvS2SJUGKx +# Xf13Hz3wV3WsvYpCTUBR0Q+cBj5nf/VmwAOWRH7v0Ev9buWayrGo8noqCjHw2k4G +# kbaICDXoeByw6ZnNPOcvRLqn9NxkvaQBwSAJk3jN/LzAyURdXhacAQVPIk0CAwEA +# AaOCAeYwggHiMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBTVYzpcijGQ80N7 +# fEYbxTNoWoVtVTAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNVHQ8EBAMC +# AYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo0T2UkFvX +# zpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20v +# cGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5jcmwwWgYI +# KwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j +# b20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDCBoAYDVR0g +# AQH/BIGVMIGSMIGPBgkrBgEEAYI3LgMwgYEwPQYIKwYBBQUHAgEWMWh0dHA6Ly93 +# d3cubWljcm9zb2Z0LmNvbS9QS0kvZG9jcy9DUFMvZGVmYXVsdC5odG0wQAYIKwYB +# BQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AUABvAGwAaQBjAHkAXwBTAHQAYQB0AGUA +# bQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAAfmiFEN4sbgmD+BcQM9naOh +# IW+z66bM9TG+zwXiqf76V20ZMLPCxWbJat/15/B4vceoniXj+bzta1RXCCtRgkQS +# +7lTjMz0YBKKdsxAQEGb3FwX/1z5Xhc1mCRWS3TvQhDIr79/xn/yN31aPxzymXlK +# kVIArzgPF/UveYFl2am1a+THzvbKegBvSzBEJCI8z+0DpZaPWSm8tv0E4XCfMkon +# /VWvL/625Y4zu2JfmttXQOnxzplmkIz/amJ/3cVKC5Em4jnsGUpxY517IW3DnKOi +# PPp/fZZqkHimbdLhnPkd/DjYlPTGpQqWhqS9nhquBEKDuLWAmyI4ILUl5WTs9/S/ +# fmNZJQ96LjlXdqJxqgaKD4kWumGnEcua2A5HmoDF0M2n0O99g/DhO3EJ3110mCII +# YdqwUB5vvfHhAN/nMQekkzr3ZUd46PioSKv33nJ+YWtvd6mBy6cJrDm77MbL2IK0 +# cs0d9LiFAR6A+xuJKlQ5slvayA1VmXqHczsI5pgt6o3gMy4SKfXAL1QnIffIrE7a +# KLixqduWsqdCosnPGUFN4Ib5KpqjEWYw07t0MkvfY3v1mYovG8chr1m1rtxEPJdQ +# cdeh0sVV42neV8HR3jDA/czmTfsNv11P6Z0eGTgvvM9YBS7vDaBQNdrvCScc1bN+ +# NR4Iuto229Nfj950iEkSoYIC0jCCAjsCAQEwgfyhgdSkgdEwgc4xCzAJBgNVBAYT +# AlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYD +# VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKTAnBgNVBAsTIE1pY3Jvc29mdCBP +# cGVyYXRpb25zIFB1ZXJ0byBSaWNvMSYwJAYDVQQLEx1UaGFsZXMgVFNTIEVTTjpG +# NzdGLUUzNTYtNUJBRTElMCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAgU2Vy +# dmljZaIjCgEBMAcGBSsOAwIaAxUAVkmPV/8hZVS9FzbtoX2x3Z2xYyqggYMwgYCk +# fjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMH +# UmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQD +# Ex1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMDANBgkqhkiG9w0BAQUFAAIF +# AOPynNowIhgPMjAyMTAzMTAwNTE4MThaGA8yMDIxMDMxMTA1MTgxOFowdzA9Bgor +# BgEEAYRZCgQBMS8wLTAKAgUA4/Kc2gIBADAKAgEAAgIVVQIB/zAHAgEAAgIQkzAK +# AgUA4/PuWgIBADA2BgorBgEEAYRZCgQCMSgwJjAMBgorBgEEAYRZCgMCoAowCAIB +# AAIDB6EgoQowCAIBAAIDAYagMA0GCSqGSIb3DQEBBQUAA4GBAIcyX9UVxHRZpop4 +# w5ORVEECsvj5QWcsstPWIoJOMlrrI2Ei69OCGDmNyBxLoVkQ1/5c4B3NQEb06PrF +# skhG934wmnsBIgVCdCMxsSCL3V6PtKyL9+e74edNCtZVHTVd1tWKSL5SPl7KZ1Q5 +# IUeFaqZzIilylI++QR13FODYhz/lMYIDDTCCAwkCAQEwgZMwfDELMAkGA1UEBhMC +# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV +# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRp +# bWUtU3RhbXAgUENBIDIwMTACEzMAAAFenSnHX4cFoeoAAAAAAV4wDQYJYIZIAWUD +# BAIBBQCgggFKMBoGCSqGSIb3DQEJAzENBgsqhkiG9w0BCRABBDAvBgkqhkiG9w0B +# CQQxIgQgsy4Fhdk0y//8AKFq5b3UqJpQjgVNH6gC3m53uNrRqm0wgfoGCyqGSIb3 +# DQEJEAIvMYHqMIHnMIHkMIG9BCB+5YTslNSXjuB+5mQDTKRkM7prkewhXnevXpLv +# 8RLT4jCBmDCBgKR+MHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9u +# MRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRp +# b24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwAhMzAAAB +# Xp0px1+HBaHqAAAAAAFeMCIEIFK88IrdedH9S6cQdmhqcVV3idjX1l0EpT5s17RV +# RHfkMA0GCSqGSIb3DQEBCwUABIIBAHhAkgIIyQ5op/Pjw3IqrbRS9+UsbmPZYSPV +# wFcR4Cvv8nwkaLJaZ7ufFR84qGuN2cDjPmm/6n8ngRnrIALVsK9lEBc9dx0flKTz +# b8rKk6sJCRYwSJZfHLVI389/ZrcwYBOcTT5ENKb5JPJrwt5Ocq8LqCNY/zVbc4LJ +# Ja41LXzaES7RzqhsE63TnYWZAzqwGpX7yy4bY2kEUq6bstp1koO9Es0Iyye25dCV +# 0HmKZZyRlRe1AjLUGCgj63NIDK/7f0AHYtuVtVjRoHqaTjfFFAwAocV5b/EZAWdL +# LkelqGB9pRgRlO+D5mhidlQzrolF+t+AuXJ4566iFkMQLrXbGiE= +# SIG # End signature block diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/PSDiagnostics/PSDiagnostics.psm1 b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/PSDiagnostics/PSDiagnostics.psm1 new file mode 100644 index 0000000..3db6b26 --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/PSDiagnostics/PSDiagnostics.psm1 @@ -0,0 +1,641 @@ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. + +<# + PowerShell Diagnostics Module + This module contains a set of wrapper scripts that + enable a user to use ETW tracing in Windows + PowerShell. + #> + +$script:Logman="$env:windir\system32\logman.exe" +$script:wsmanlogfile = "$env:windir\system32\wsmtraces.log" +$script:wsmprovfile = "$env:windir\system32\wsmtraceproviders.txt" +$script:wsmsession = "wsmlog" +$script:pssession = "PSTrace" +$script:psprovidername="Microsoft-Windows-PowerShell" +$script:wsmprovidername = "Microsoft-Windows-WinRM" +$script:oplog = "/Operational" +$script:analyticlog="/Analytic" +$script:debuglog="/Debug" +$script:wevtutil="$env:windir\system32\wevtutil.exe" +$script:slparam = "sl" +$script:glparam = "gl" + +function Start-Trace +{ + Param( + [Parameter(Mandatory=$true, + Position=0)] + [string] + $SessionName, + [Parameter(Position=1)] + [ValidateNotNullOrEmpty()] + [string] + $OutputFilePath, + [Parameter(Position=2)] + [ValidateNotNullOrEmpty()] + [string] + $ProviderFilePath, + [Parameter()] + [Switch] + $ETS, + [Parameter()] + [ValidateSet("bin", "bincirc", "csv", "tsv", "sql")] + $Format, + [Parameter()] + [int] + $MinBuffers=0, + [Parameter()] + [int] + $MaxBuffers=256, + [Parameter()] + [int] + $BufferSizeInKB = 0, + [Parameter()] + [int] + $MaxLogFileSizeInMB=0 + ) + + Process + { + $executestring = " start $SessionName" + + if ($ETS) + { + $executestring += " -ets" + } + + if ($null -ne $OutputFilePath) + { + $executestring += " -o ""$OutputFilePath""" + } + + if ($null -ne $ProviderFilePath) + { + $executestring += " -pf ""$ProviderFilePath""" + } + + if ($null -ne $Format) + { + $executestring += " -f $Format" + } + + if ($MinBuffers -ne 0 -or $MaxBuffers -ne 256) + { + $executestring += " -nb $MinBuffers $MaxBuffers" + } + + if ($BufferSizeInKB -ne 0) + { + $executestring += " -bs $BufferSizeInKB" + } + + if ($MaxLogFileSizeInMB -ne 0) + { + $executestring += " -max $MaxLogFileSizeInMB" + } + + & $script:Logman $executestring.Split(" ") + } +} + +function Stop-Trace +{ + param( + [Parameter(Mandatory=$true, + Position=0)] + $SessionName, + [Parameter()] + [switch] + $ETS + ) + + Process + { + if ($ETS) + { + & $script:Logman update $SessionName -ets + & $script:Logman stop $SessionName -ets + } + else + { + & $script:Logman update $SessionName + & $script:Logman stop $SessionName + } + } +} + +function Enable-WSManTrace +{ + + # winrm + "{04c6e16d-b99f-4a3a-9b3e-b8325bbc781e} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii + + # winrsmgr + "{c0a36be8-a515-4cfa-b2b6-2676366efff7} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append + + # WinrsExe + "{f1cab2c0-8beb-4fa2-90e1-8f17e0acdd5d} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append + + # WinrsCmd + "{03992646-3dfe-4477-80e3-85936ace7abb} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append + + # IPMIPrv + "{651d672b-e11f-41b7-add3-c2f6a4023672} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append + + #IpmiDrv + "{D5C6A3E9-FA9C-434e-9653-165B4FC869E4} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append + + # WSManProvHost + "{6e1b64d7-d3be-4651-90fb-3583af89d7f1} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append + + # Event Forwarding + "{6FCDF39A-EF67-483D-A661-76D715C6B008} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append + + Start-Trace -SessionName $script:wsmsession -ETS -OutputFilePath $script:wsmanlogfile -Format bincirc -MinBuffers 16 -MaxBuffers 256 -BufferSizeInKB 64 -MaxLogFileSizeInMB 256 -ProviderFilePath $script:wsmprovfile +} + +function Disable-WSManTrace +{ + Stop-Trace $script:wsmsession -ETS +} + +function Enable-PSWSManCombinedTrace +{ + param ( + [switch] $DoNotOverwriteExistingTrace + ) + + $provfile = [io.path]::GetTempFilename() + + $traceFileName = [string][Guid]::NewGuid() + if ($DoNotOverwriteExistingTrace) { + $fileName = [string][guid]::newguid() + $logfile = $PSHOME + "\\Traces\\PSTrace_$fileName.etl" + } else { + $logfile = $PSHOME + "\\Traces\\PSTrace.etl" + } + + "Microsoft-Windows-PowerShell 0 5" | Out-File $provfile -Encoding ascii + "Microsoft-Windows-WinRM 0 5" | Out-File $provfile -Encoding ascii -Append + + if (!(Test-Path $PSHOME\Traces)) + { + New-Item -ItemType Directory -Force $PSHOME\Traces | Out-Null + } + + if (Test-Path $logfile) + { + Remove-Item -Force $logfile | Out-Null + } + + Start-Trace -SessionName $script:pssession -OutputFilePath $logfile -ProviderFilePath $provfile -ETS + + Remove-Item $provfile -Force -ea 0 +} + +function Disable-PSWSManCombinedTrace +{ + Stop-Trace -SessionName $script:pssession -ETS +} + +function Set-LogProperties +{ + param( + [Parameter(Mandatory=$true, Position=0, ValueFromPipeline=$true)] + [Microsoft.PowerShell.Diagnostics.LogDetails] + $LogDetails, + [switch] $Force + ) + + Process + { + if ($LogDetails.AutoBackup -and !$LogDetails.Retention) + { + throw (New-Object System.InvalidOperationException) + } + + $enabled = $LogDetails.Enabled.ToString() + $retention = $LogDetails.Retention.ToString() + $autobackup = $LogDetails.AutoBackup.ToString() + $maxLogSize = $LogDetails.MaxLogSize.ToString() + $osVersion = [Version] (Get-CimInstance Win32_OperatingSystem).Version + + if (($LogDetails.Type -eq "Analytic") -or ($LogDetails.Type -eq "Debug")) + { + if ($LogDetails.Enabled) + { + if($osVersion -lt 6.3.7600) + { + & $script:wevtutil $script:slparam $LogDetails.Name -e:$Enabled + } + else + { + & $script:wevtutil /q:$Force $script:slparam $LogDetails.Name -e:$Enabled + } + } + else + { + if($osVersion -lt 6.3.7600) + { + & $script:wevtutil $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ms:$MaxLogSize + } + else + { + & $script:wevtutil /q:$Force $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ms:$MaxLogSize + } + } + } + else + { + if($osVersion -lt 6.3.7600) + { + & $script:wevtutil $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ab:$AutoBackup -ms:$MaxLogSize + } + else + { + & $script:wevtutil /q:$Force $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ab:$AutoBackup -ms:$MaxLogSize + } + } + } +} + +function ConvertTo-Bool([string]$value) +{ + if ($value -ieq "true") + { + return $true + } + else + { + return $false + } +} + +function Get-LogProperties +{ + param( + [Parameter(Mandatory=$true, ValueFromPipeline=$true, Position=0)] $Name + ) + + Process + { + $details = & $script:wevtutil $script:glparam $Name + $indexes = @(1,2,8,9,10) + $value = @() + foreach($index in $indexes) + { + $value += @(($details[$index].SubString($details[$index].IndexOf(":")+1)).Trim()) + } + + $enabled = ConvertTo-Bool $value[0] + $retention = ConvertTo-Bool $value[2] + $autobackup = ConvertTo-Bool $value[3] + + New-Object Microsoft.PowerShell.Diagnostics.LogDetails $Name, $enabled, $value[1], $retention, $autobackup, $value[4] + } +} + +function Enable-PSTrace +{ + param( + [switch] $Force, + [switch] $AnalyticOnly + ) + + $Properties = Get-LogProperties ($script:psprovidername + $script:analyticlog) + + if (!$Properties.Enabled) { + $Properties.Enabled = $true + if ($Force) { + Set-LogProperties $Properties -Force + } else { + Set-LogProperties $Properties + } + } + + if (!$AnalyticOnly) { + $Properties = Get-LogProperties ($script:psprovidername + $script:debuglog) + if (!$Properties.Enabled) { + $Properties.Enabled = $true + if ($Force) { + Set-LogProperties $Properties -Force + } else { + Set-LogProperties $Properties + } + } + } +} + +function Disable-PSTrace +{ + param( + [switch] $AnalyticOnly + ) + $Properties = Get-LogProperties ($script:psprovidername + $script:analyticlog) + if ($Properties.Enabled) { + $Properties.Enabled = $false + Set-LogProperties $Properties + } + + if (!$AnalyticOnly) { + $Properties = Get-LogProperties ($script:psprovidername + $script:debuglog) + if ($Properties.Enabled) { + $Properties.Enabled = $false + Set-LogProperties $Properties + } + } +} +Add-Type @" +using System; + +namespace Microsoft.PowerShell.Diagnostics +{ + public class LogDetails + { + public string Name + { + get + { + return name; + } + } + private string name; + + public bool Enabled + { + get + { + return enabled; + } + set + { + enabled = value; + } + } + private bool enabled; + + public string Type + { + get + { + return type; + } + } + private string type; + + public bool Retention + { + get + { + return retention; + } + set + { + retention = value; + } + } + private bool retention; + + public bool AutoBackup + { + get + { + return autoBackup; + } + set + { + autoBackup = value; + } + } + private bool autoBackup; + + public int MaxLogSize + { + get + { + return maxLogSize; + } + set + { + maxLogSize = value; + } + } + private int maxLogSize; + + public LogDetails(string name, bool enabled, string type, bool retention, bool autoBackup, int maxLogSize) + { + this.name = name; + this.enabled = enabled; + this.type = type; + this.retention = retention; + this.autoBackup = autoBackup; + this.maxLogSize = maxLogSize; + } + } +} +"@ + +if (Get-Command logman.exe -Type Application -ErrorAction SilentlyContinue) +{ + Export-ModuleMember Disable-PSTrace, Disable-PSWSManCombinedTrace, Disable-WSManTrace, Enable-PSTrace, Enable-PSWSManCombinedTrace, Enable-WSManTrace, Get-LogProperties, Set-LogProperties, Start-Trace, Stop-Trace +} +else +{ + # Currently we only support these cmdlets as logman.exe is not available on systems like Nano and IoT + Export-ModuleMember Disable-PSTrace, Enable-PSTrace, Get-LogProperties, Set-LogProperties +} + +# SIG # Begin signature block +# MIIjgwYJKoZIhvcNAQcCoIIjdDCCI3ACAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCBzuFp8c8UN6ilP +# /hSmUPDtAUbo8uWTs6wUbaR/ZpM1B6CCDYEwggX/MIID56ADAgECAhMzAAAB32vw +# LpKnSrTQAAAAAAHfMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjAxMjE1MjEzMTQ1WhcNMjExMjAyMjEzMTQ1WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQC2uxlZEACjqfHkuFyoCwfL25ofI9DZWKt4wEj3JBQ48GPt1UsDv834CcoUUPMn +# s/6CtPoaQ4Thy/kbOOg/zJAnrJeiMQqRe2Lsdb/NSI2gXXX9lad1/yPUDOXo4GNw +# PjXq1JZi+HZV91bUr6ZjzePj1g+bepsqd/HC1XScj0fT3aAxLRykJSzExEBmU9eS +# yuOwUuq+CriudQtWGMdJU650v/KmzfM46Y6lo/MCnnpvz3zEL7PMdUdwqj/nYhGG +# 3UVILxX7tAdMbz7LN+6WOIpT1A41rwaoOVnv+8Ua94HwhjZmu1S73yeV7RZZNxoh +# EegJi9YYssXa7UZUUkCCA+KnAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUOPbML8IdkNGtCfMmVPtvI6VZ8+Mw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDYzMDA5MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAnnqH +# tDyYUFaVAkvAK0eqq6nhoL95SZQu3RnpZ7tdQ89QR3++7A+4hrr7V4xxmkB5BObS +# 0YK+MALE02atjwWgPdpYQ68WdLGroJZHkbZdgERG+7tETFl3aKF4KpoSaGOskZXp +# TPnCaMo2PXoAMVMGpsQEQswimZq3IQ3nRQfBlJ0PoMMcN/+Pks8ZTL1BoPYsJpok +# t6cql59q6CypZYIwgyJ892HpttybHKg1ZtQLUlSXccRMlugPgEcNZJagPEgPYni4 +# b11snjRAgf0dyQ0zI9aLXqTxWUU5pCIFiPT0b2wsxzRqCtyGqpkGM8P9GazO8eao +# mVItCYBcJSByBx/pS0cSYwBBHAZxJODUqxSXoSGDvmTfqUJXntnWkL4okok1FiCD +# Z4jpyXOQunb6egIXvkgQ7jb2uO26Ow0m8RwleDvhOMrnHsupiOPbozKroSa6paFt +# VSh89abUSooR8QdZciemmoFhcWkEwFg4spzvYNP4nIs193261WyTaRMZoceGun7G +# CT2Rl653uUj+F+g94c63AhzSq4khdL4HlFIP2ePv29smfUnHtGq6yYFDLnT0q/Y+ +# Di3jwloF8EWkkHRtSuXlFUbTmwr/lDDgbpZiKhLS7CBTDj32I0L5i532+uHczw82 +# oZDmYmYmIUSMbZOgS65h797rj5JJ6OkeEUJoAVwwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIVWDCCFVQCAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAd9r8C6Sp0q00AAAAAAB3zAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgSB3jjVY/ +# WMZ8WHFGDewy2JQLkkMsgxe7OQ9hGxl1POAwQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQCWkuu4JwVVNM7OgS/oMMxdXcLFx0QQxmyjvdyVWbJT +# P6a9tO56gH0zgVedmqx+8ym+ox/waXw46UdDsQiwf3CtASxNis9quTkZnOCZWQIL +# 8OfQLdtCIQzhYy04mFouu5MfbD/3RIZVZ4zm4IJDDhxxEFbNearaoaHhD1MEg9Yd +# UviXseFVXA297Lc2MwUMNRyqkJS9TEahekiEM969NC/jGr+3pNHEJWg/R4P/Q1Qp +# nvvXo1WzX8G3YS5FeIHt0jKi1mPWRDAmFNXHl3LmdwJDXAFsezdpBfXZZIt1wGsq +# 9lJl7ETDylUAOmtgGOhPR0BNQpAcHeXL65vxyxJZ9Kg0oYIS4jCCEt4GCisGAQQB +# gjcDAwExghLOMIISygYJKoZIhvcNAQcCoIISuzCCErcCAQMxDzANBglghkgBZQME +# AgEFADCCAVEGCyqGSIb3DQEJEAEEoIIBQASCATwwggE4AgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIEDJpkzas5H9Nfnb9biOeOoxAGK+g9ZKwU9uiKTf +# +hEQAgZgPPZd+NgYEzIwMjEwMzEwMDExODQxLjU2MVowBIACAfSggdCkgc0wgcox +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJTAjBgNVBAsTHE1p +# Y3Jvc29mdCBBbWVyaWNhIE9wZXJhdGlvbnMxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg +# RVNOOjNFN0EtRTM1OS1BMjVEMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt +# cCBTZXJ2aWNloIIOOTCCBPEwggPZoAMCAQICEzMAAAFSMEtdiazmcEcAAAAAAVIw +# DQYJKoZIhvcNAQELBQAwfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0 +# b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3Jh +# dGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwHhcN +# MjAxMTEyMTgyNjA1WhcNMjIwMjExMTgyNjA1WjCByjELMAkGA1UEBhMCVVMxEzAR +# BgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1p +# Y3Jvc29mdCBDb3Jwb3JhdGlvbjElMCMGA1UECxMcTWljcm9zb2Z0IEFtZXJpY2Eg +# T3BlcmF0aW9uczEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0U3QS1FMzU5LUEy +# NUQxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2UwggEiMA0G +# CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCuzG6EiZh0taCSbswMiupMTYnbboFz +# jj1DuDbbvT0RXKBCVl/umA+Uy214DmHiFhkeuRdlLB0ya5S9um5aKr7lBBqZzvtK +# gGNgCRbDTG9Yu6kzDzPTzQRulVIvoWVy0gITnEyoJ1O3m5IPpsLBNQCdXsh+3TZF +# 73JAcub21bnxm/4sxe4zTdbdttBrqX8/JJF2VEnAP+MBvF2UQSo6XUAaTKC/HPDP +# Cce/IsNoAxxLDI1wHhIlqjRBnt4HM5HcKHrZrvH+vHnihikdlEzh3fjQFowk1fG7 +# PVhmO60O5vVdqA+H9314hHENQI0cbo+SkSi8SSJSLNixgj0eWePTh7pbAgMBAAGj +# ggEbMIIBFzAdBgNVHQ4EFgQUhN2u2qwj1l2c2h/kULDuBRJsexQwHwYDVR0jBBgw +# FoAU1WM6XIoxkPNDe3xGG8UzaFqFbVUwVgYDVR0fBE8wTTBLoEmgR4ZFaHR0cDov +# L2NybC5taWNyb3NvZnQuY29tL3BraS9jcmwvcHJvZHVjdHMvTWljVGltU3RhUENB +# XzIwMTAtMDctMDEuY3JsMFoGCCsGAQUFBwEBBE4wTDBKBggrBgEFBQcwAoY+aHR0 +# cDovL3d3dy5taWNyb3NvZnQuY29tL3BraS9jZXJ0cy9NaWNUaW1TdGFQQ0FfMjAx +# MC0wNy0wMS5jcnQwDAYDVR0TAQH/BAIwADATBgNVHSUEDDAKBggrBgEFBQcDCDAN +# BgkqhkiG9w0BAQsFAAOCAQEAVcUncfFqSazQbDEXf3d10/upiWQU5HdTbwG9v9be +# VIDaG4oELyIcNE6e6CbOBMlPU+smpYYcnK3jucNqChwquLmxdi2iPy4iQ6vjAdBp +# 9+VFWlrBqUsNXZzjCpgMCZj6bu8Xq0Nndl4WyBbI0Jku68vUNG4wsMdKP3dz+1Mz +# k9SUma3j7HyNA559do9nhKmoZMn5dtf03QvxlaEwMAaPk9xuUv9BN8cNvFnpWk4m +# LERQW6tA3rXK0soEISKTYG7Ose7oMXZDYPWxf9oFhYKzZw/SwnhdBoj2S5eyYE3A +# uF/ZXzR3hdp3/XGzZeOdERfFy1rC7ZBwhDIajeFMi53GnzCCBnEwggRZoAMCAQIC +# CmEJgSoAAAAAAAIwDQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRp +# ZmljYXRlIEF1dGhvcml0eSAyMDEwMB4XDTEwMDcwMTIxMzY1NVoXDTI1MDcwMTIx +# NDY1NVowfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNV +# BAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQG +# A1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggEiMA0GCSqGSIb3 +# DQEBAQUAA4IBDwAwggEKAoIBAQCpHQ28dxGKOiDs/BOX9fp/aZRrdFQQ1aUKAIKF +# ++18aEssX8XD5WHCdrc+Zitb8BVTJwQxH0EbGpUdzgkTjnxhMFmxMEQP8WCIhFRD +# DNdNuDgIs0Ldk6zWczBXJoKjRQ3Q6vVHgc2/JGAyWGBG8lhHhjKEHnRhZ5FfgVSx +# z5NMksHEpl3RYRNuKMYa+YaAu99h/EbBJx0kZxJyGiGKr0tkiVBisV39dx898Fd1 +# rL2KQk1AUdEPnAY+Z3/1ZsADlkR+79BL/W7lmsqxqPJ6Kgox8NpOBpG2iAg16Hgc +# sOmZzTznL0S6p/TcZL2kAcEgCZN4zfy8wMlEXV4WnAEFTyJNAgMBAAGjggHmMIIB +# 4jAQBgkrBgEEAYI3FQEEAwIBADAdBgNVHQ4EFgQU1WM6XIoxkPNDe3xGG8UzaFqF +# bVUwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0PBAQDAgGGMA8GA1Ud +# EwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU1fZWy4/oolxiaNE9lJBb186aGMQwVgYD +# VR0fBE8wTTBLoEmgR4ZFaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraS9jcmwv +# cHJvZHVjdHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYtMjMuY3JsMFoGCCsGAQUFBwEB +# BE4wTDBKBggrBgEFBQcwAoY+aHR0cDovL3d3dy5taWNyb3NvZnQuY29tL3BraS9j +# ZXJ0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5jcnQwgaAGA1UdIAEB/wSBlTCB +# kjCBjwYJKwYBBAGCNy4DMIGBMD0GCCsGAQUFBwIBFjFodHRwOi8vd3d3Lm1pY3Jv +# c29mdC5jb20vUEtJL2RvY3MvQ1BTL2RlZmF1bHQuaHRtMEAGCCsGAQUFBwICMDQe +# MiAdAEwAZQBnAGEAbABfAFAAbwBsAGkAYwB5AF8AUwB0AGEAdABlAG0AZQBuAHQA +# LiAdMA0GCSqGSIb3DQEBCwUAA4ICAQAH5ohRDeLG4Jg/gXEDPZ2joSFvs+umzPUx +# vs8F4qn++ldtGTCzwsVmyWrf9efweL3HqJ4l4/m87WtUVwgrUYJEEvu5U4zM9GAS +# inbMQEBBm9xcF/9c+V4XNZgkVkt070IQyK+/f8Z/8jd9Wj8c8pl5SpFSAK84Dxf1 +# L3mBZdmptWvkx872ynoAb0swRCQiPM/tA6WWj1kpvLb9BOFwnzJKJ/1Vry/+tuWO +# M7tiX5rbV0Dp8c6ZZpCM/2pif93FSguRJuI57BlKcWOdeyFtw5yjojz6f32WapB4 +# pm3S4Zz5Hfw42JT0xqUKloakvZ4argRCg7i1gJsiOCC1JeVk7Pf0v35jWSUPei45 +# V3aicaoGig+JFrphpxHLmtgOR5qAxdDNp9DvfYPw4TtxCd9ddJgiCGHasFAeb73x +# 4QDf5zEHpJM692VHeOj4qEir995yfmFrb3epgcunCaw5u+zGy9iCtHLNHfS4hQEe +# gPsbiSpUObJb2sgNVZl6h3M7COaYLeqN4DMuEin1wC9UJyH3yKxO2ii4sanblrKn +# QqLJzxlBTeCG+SqaoxFmMNO7dDJL32N79ZmKLxvHIa9Zta7cRDyXUHHXodLFVeNp +# 3lfB0d4wwP3M5k37Db9dT+mdHhk4L7zPWAUu7w2gUDXa7wknHNWzfjUeCLraNtvT +# X4/edIhJEqGCAsswggI0AgEBMIH4oYHQpIHNMIHKMQswCQYDVQQGEwJVUzETMBEG +# A1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWlj +# cm9zb2Z0IENvcnBvcmF0aW9uMSUwIwYDVQQLExxNaWNyb3NvZnQgQW1lcmljYSBP +# cGVyYXRpb25zMSYwJAYDVQQLEx1UaGFsZXMgVFNTIEVTTjozRTdBLUUzNTktQTI1 +# RDElMCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAgU2VydmljZaIjCgEBMAcG +# BSsOAwIaAxUAv26eVJaumcmTchd6hqayQMNDXluggYMwgYCkfjB8MQswCQYDVQQG +# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG +# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQg +# VGltZS1TdGFtcCBQQ0EgMjAxMDANBgkqhkiG9w0BAQUFAAIFAOPyAMgwIhgPMjAy +# MTAzMDkyMjEyMjRaGA8yMDIxMDMxMDIyMTIyNFowdDA6BgorBgEEAYRZCgQBMSww +# KjAKAgUA4/IAyAIBADAHAgEAAgIcnDAHAgEAAgIRmDAKAgUA4/NSSAIBADA2Bgor +# BgEEAYRZCgQCMSgwJjAMBgorBgEEAYRZCgMCoAowCAIBAAIDB6EgoQowCAIBAAID +# AYagMA0GCSqGSIb3DQEBBQUAA4GBAJDVZ5yfSdZ+LlfL0XxjSSnMt5tYALyLo3NS +# BXE2ExNw4snoVNrJkdx8tsknLloTQJ6wxDB4DpRWcQ5zKxaYIissJa1WzeHxT3Jf +# 6f5VDVygQVLpNHpDG5Q29ogYHu3m2EBzWcKU++6gyTX80s0X2H11Go548MYFkgWQ +# 1OkbO5PyMYIDDTCCAwkCAQEwgZMwfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldh +# c2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBD +# b3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIw +# MTACEzMAAAFSMEtdiazmcEcAAAAAAVIwDQYJYIZIAWUDBAIBBQCgggFKMBoGCSqG +# SIb3DQEJAzENBgsqhkiG9w0BCRABBDAvBgkqhkiG9w0BCQQxIgQgM/WE4VRMzSVP +# kLFHd5u7yOEUL8EGbNw1jim7CinnSEcwgfoGCyqGSIb3DQEJEAIvMYHqMIHnMIHk +# MIG9BCCT7lzHo4slUIxfEGp8LXQNik/ecK6vuuGWIcmBrrsnpjCBmDCBgKR+MHwx +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1p +# Y3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwAhMzAAABUjBLXYms5nBHAAAAAAFS +# MCIEICh4fdAMXOBt8Q/HY8UtgOHUMPI+5kZLGfKmPZWqtZ/wMA0GCSqGSIb3DQEB +# CwUABIIBAIeWQmpwZG/nqD0FdVZugUdv/Uiu32je90gBZEEZ0jMplgeO3CP5vbbG +# hhNH0OipM2Mbz8F3QqwkliryRXVuhchDRJZlhefFKSb5HMR4MYjbHzAjwuDEE1V7 +# 5Os/7Jg0d+dJWJfVQUJ/A/9Wr6aZBaxteDv2JcZg1ARZ5U2l3v5tDiY7hr/2Kiar +# Q2Q21Y7VKY+OrTOlNTGM+tk0a8oRVQcyD4Q4vs3Cm4vS5uUw25Kh82GaQc2O0sV/ +# AhPH9yvYoAbi9CYaLYz0DP/6mEYNqLQOhR0oIKoM+LsdT/DJE8MiSva4FDy1hnH0 +# eOygfCfMshfnQbQtVV4a4vpdFILMuzY= +# SIG # End signature block diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/PSDiagnostics/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/PSDiagnostics/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/PSDiagnostics/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/Modules/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/System.Management.Automation.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/System.Management.Automation.dll new file mode 100644 index 0000000..2707bd1 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/System.Management.Automation.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/net5.0/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/System.Data.Odbc.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/System.Data.Odbc.dll new file mode 100644 index 0000000..025f60e Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/System.Data.Odbc.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.Messages.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.Messages.dll new file mode 100644 index 0000000..c5150ac Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.Messages.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll new file mode 100644 index 0000000..5796c86 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll new file mode 100644 index 0000000..ad71a48 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.AccountManagement.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.AccountManagement.dll new file mode 100644 index 0000000..ceaa390 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.AccountManagement.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..73270c6 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll new file mode 100644 index 0000000..e43577d Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/System.Management.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/System.Management.dll new file mode 100644 index 0000000..a3a1f45 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/System.Management.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.0/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll new file mode 100644 index 0000000..009a9de Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.1/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.1/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp2.1/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..b5aa0c4 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll new file mode 100644 index 0000000..b80b430 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll new file mode 100644 index 0000000..fb97d63 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll new file mode 100644 index 0000000..ab82e83 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.0/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.0/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll new file mode 100644 index 0000000..934802f Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Data.OleDb.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Data.OleDb.dll new file mode 100644 index 0000000..c334b1f Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Data.OleDb.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.IO.Ports.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.IO.Ports.dll new file mode 100644 index 0000000..51b611d Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.IO.Ports.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll new file mode 100644 index 0000000..e201922 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll new file mode 100644 index 0000000..432ebb4 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..99215bb Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.dll new file mode 100644 index 0000000..9074d56 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Threading.AccessControl.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Threading.AccessControl.dll new file mode 100644 index 0000000..49d4324 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Threading.AccessControl.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x64/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x64/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x64/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x64/lib/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x64/lib/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x64/lib/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..c70b1d3 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..6d14e76 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x64/lib/netstandard1.6/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x64/lib/netstandard1.6/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x64/lib/netstandard1.6/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll new file mode 100644 index 0000000..2e5c7ea Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x64/native/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x64/native/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x64/native/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x64/native/mi.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x64/native/mi.dll new file mode 100644 index 0000000..f169cbe Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x64/native/mi.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x64/native/miutils.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x64/native/miutils.dll new file mode 100644 index 0000000..f9c9d3f Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x64/native/miutils.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x86/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x86/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x86/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x86/lib/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x86/lib/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x86/lib/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..e1819d5 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..13d9f3b Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x86/lib/netstandard1.6/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x86/lib/netstandard1.6/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x86/lib/netstandard1.6/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll new file mode 100644 index 0000000..434e1f4 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x86/native/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x86/native/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x86/native/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x86/native/mi.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x86/native/mi.dll new file mode 100644 index 0000000..cfa3846 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x86/native/mi.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x86/native/miutils.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x86/native/miutils.dll new file mode 100644 index 0000000..6a6fdd1 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win10-x86/native/miutils.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x64/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x64/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x64/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x64/lib/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x64/lib/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x64/lib/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..c70b1d3 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..6d14e76 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x64/lib/netstandard1.6/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x64/lib/netstandard1.6/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x64/lib/netstandard1.6/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll new file mode 100644 index 0000000..90fc1b2 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x64/native/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x64/native/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x64/native/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x64/native/mi.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x64/native/mi.dll new file mode 100644 index 0000000..75de9d2 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x64/native/mi.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x64/native/miutils.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x64/native/miutils.dll new file mode 100644 index 0000000..d6d3465 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x64/native/miutils.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x86/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x86/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x86/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x86/lib/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x86/lib/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x86/lib/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..e1819d5 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..13d9f3b Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x86/lib/netstandard1.6/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x86/lib/netstandard1.6/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x86/lib/netstandard1.6/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll new file mode 100644 index 0000000..7a2fe92 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x86/native/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x86/native/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x86/native/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x86/native/mi.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x86/native/mi.dll new file mode 100644 index 0000000..f0f556f Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x86/native/mi.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x86/native/miutils.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x86/native/miutils.dll new file mode 100644 index 0000000..19dbafc Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win7-x86/native/miutils.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x64/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x64/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x64/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x64/lib/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x64/lib/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x64/lib/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..c70b1d3 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..6d14e76 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x64/lib/netstandard1.6/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x64/lib/netstandard1.6/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x64/lib/netstandard1.6/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x64/native/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x64/native/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x64/native/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x64/native/mi.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x64/native/mi.dll new file mode 100644 index 0000000..34043ba Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x64/native/mi.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x64/native/miutils.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x64/native/miutils.dll new file mode 100644 index 0000000..0579e97 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x64/native/miutils.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x86/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x86/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x86/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x86/lib/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x86/lib/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x86/lib/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..e1819d5 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..13d9f3b Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x86/lib/netstandard1.6/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x86/lib/netstandard1.6/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x86/lib/netstandard1.6/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x86/native/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x86/native/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x86/native/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x86/native/mi.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x86/native/mi.dll new file mode 100644 index 0000000..f303e1e Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x86/native/mi.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x86/native/miutils.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x86/native/miutils.dll new file mode 100644 index 0000000..d305891 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win8-x86/native/miutils.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x64/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x64/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x64/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x64/lib/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x64/lib/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x64/lib/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..c70b1d3 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..6d14e76 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x64/lib/netstandard1.6/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x64/lib/netstandard1.6/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x64/lib/netstandard1.6/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll new file mode 100644 index 0000000..8af4889 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x64/native/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x64/native/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x64/native/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x64/native/mi.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x64/native/mi.dll new file mode 100644 index 0000000..46dedce Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x64/native/mi.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x64/native/miutils.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x64/native/miutils.dll new file mode 100644 index 0000000..3c8ebbd Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x64/native/miutils.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x86/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x86/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x86/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x86/lib/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x86/lib/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x86/lib/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..e1819d5 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..13d9f3b Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x86/lib/netstandard1.6/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x86/lib/netstandard1.6/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x86/lib/netstandard1.6/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll new file mode 100644 index 0000000..9dcbfd1 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x86/native/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x86/native/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x86/native/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x86/native/mi.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x86/native/mi.dll new file mode 100644 index 0000000..087163a Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x86/native/mi.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x86/native/miutils.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x86/native/miutils.dll new file mode 100644 index 0000000..21ad782 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/runtimes/win81-x86/native/miutils.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..87c1ca2 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.resources.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..5b1ff67 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/tr/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/tr/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/tr/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..8b19e64 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..32204d4 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/zh-Hans/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/zh-Hans/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/zh-Hans/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..2acfeed Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..57283cf Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/zh-Hant/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/zh-Hant/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Debug/net5.0/zh-Hant/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Release/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Release/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Release/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Release/net5.0/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Release/net5.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Release/net5.0/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/Release/net5.0/ref/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/Release/net5.0/ref/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/Release/net5.0/ref/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/bin/desktop.ini b/PowershellScriptHider/PowershellScriptHider/bin/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/bin/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/desktop.ini b/PowershellScriptHider/PowershellScriptHider/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/obj/Debug/desktop.ini b/PowershellScriptHider/PowershellScriptHider/obj/Debug/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/obj/Debug/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2f7e5ec --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/PowershellScriptHider.AssemblyInfo.cs b/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/PowershellScriptHider.AssemblyInfo.cs new file mode 100644 index 0000000..2771aa7 --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/PowershellScriptHider.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("PowershellScriptHider")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("PowershellScriptHider")] +[assembly: System.Reflection.AssemblyTitleAttribute("PowershellScriptHider")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/PowershellScriptHider.AssemblyInfoInputs.cache b/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/PowershellScriptHider.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fac691e --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/PowershellScriptHider.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +87f9a447b4f9b03723821a75aa9808904b03282d diff --git a/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/PowershellScriptHider.GeneratedMSBuildEditorConfig.editorconfig b/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/PowershellScriptHider.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d7e2983 --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/PowershellScriptHider.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,8 @@ +is_global = true +build_property.TargetFramework = net5.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.PublishSingleFile = +build_property.IncludeAllContentForSelfExtract = +build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows diff --git a/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/PowershellScriptHider.assets.cache b/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/PowershellScriptHider.assets.cache new file mode 100644 index 0000000..d432368 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/PowershellScriptHider.assets.cache differ diff --git a/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/PowershellScriptHider.csproj.AssemblyReference.cache b/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/PowershellScriptHider.csproj.AssemblyReference.cache new file mode 100644 index 0000000..a54ce95 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/PowershellScriptHider.csproj.AssemblyReference.cache differ diff --git a/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/PowershellScriptHider.csproj.CopyComplete b/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/PowershellScriptHider.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/PowershellScriptHider.csproj.CoreCompileInputs.cache b/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/PowershellScriptHider.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..3bc6303 --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/PowershellScriptHider.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +65baca873a37505610da6c9aa272bf30eef07299 diff --git a/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/PowershellScriptHider.csproj.FileListAbsolute.txt b/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/PowershellScriptHider.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..023bfa1 --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/PowershellScriptHider.csproj.FileListAbsolute.txt @@ -0,0 +1,377 @@ +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\PowershellScriptHider.exe +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\PowershellScriptHider.deps.json +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\PowershellScriptHider.runtimeconfig.json +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\PowershellScriptHider.runtimeconfig.dev.json +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\PowershellScriptHider.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\PowershellScriptHider.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\PowershellScriptHider.pdb +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\obj\Debug\net5.0\PowershellScriptHider.csproj.AssemblyReference.cache +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\obj\Debug\net5.0\PowershellScriptHider.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\obj\Debug\net5.0\PowershellScriptHider.AssemblyInfoInputs.cache +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\obj\Debug\net5.0\PowershellScriptHider.AssemblyInfo.cs +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\obj\Debug\net5.0\PowershellScriptHider.csproj.CoreCompileInputs.cache +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\obj\Debug\net5.0\PowershellScriptHider.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\obj\Debug\net5.0\ref\PowershellScriptHider.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\obj\Debug\net5.0\PowershellScriptHider.pdb +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\obj\Debug\net5.0\PowershellScriptHider.genruntimeconfig.cache +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\Microsoft.CSharp.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\Microsoft.VisualBasic.Core.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\Microsoft.VisualBasic.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\Microsoft.Win32.Primitives.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.AppContext.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Buffers.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Collections.Concurrent.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Collections.Immutable.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Collections.NonGeneric.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Collections.Specialized.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Collections.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.ComponentModel.Annotations.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.ComponentModel.DataAnnotations.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.ComponentModel.EventBasedAsync.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.ComponentModel.Primitives.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.ComponentModel.TypeConverter.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.ComponentModel.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Configuration.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Console.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Core.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Data.Common.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Data.DataSetExtensions.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Data.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Diagnostics.Contracts.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Diagnostics.Debug.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Diagnostics.DiagnosticSource.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Diagnostics.FileVersionInfo.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Diagnostics.Process.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Diagnostics.StackTrace.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Diagnostics.TextWriterTraceListener.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Diagnostics.Tools.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Diagnostics.TraceSource.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Diagnostics.Tracing.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Drawing.Primitives.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Drawing.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Dynamic.Runtime.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Formats.Asn1.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Globalization.Calendars.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Globalization.Extensions.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Globalization.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.IO.Compression.Brotli.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.IO.Compression.FileSystem.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.IO.Compression.ZipFile.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.IO.Compression.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.IO.FileSystem.DriveInfo.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.IO.FileSystem.Primitives.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.IO.FileSystem.Watcher.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.IO.FileSystem.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.IO.IsolatedStorage.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.IO.MemoryMappedFiles.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.IO.Pipes.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.IO.UnmanagedMemoryStream.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.IO.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Linq.Expressions.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Linq.Parallel.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Linq.Queryable.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Linq.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Memory.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Net.Http.Json.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Net.Http.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Net.HttpListener.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Net.Mail.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Net.NameResolution.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Net.NetworkInformation.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Net.Ping.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Net.Primitives.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Net.Requests.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Net.Security.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Net.ServicePoint.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Net.Sockets.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Net.WebClient.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Net.WebHeaderCollection.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Net.WebProxy.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Net.WebSockets.Client.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Net.WebSockets.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Net.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Numerics.Vectors.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Numerics.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.ObjectModel.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Reflection.DispatchProxy.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Reflection.Emit.ILGeneration.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Reflection.Emit.Lightweight.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Reflection.Emit.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Reflection.Extensions.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Reflection.Metadata.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Reflection.Primitives.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Reflection.TypeExtensions.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Reflection.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Resources.Reader.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Resources.ResourceManager.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Resources.Writer.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Runtime.CompilerServices.Unsafe.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Runtime.CompilerServices.VisualC.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Runtime.Extensions.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Runtime.Handles.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Runtime.InteropServices.RuntimeInformation.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Runtime.InteropServices.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Runtime.Intrinsics.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Runtime.Loader.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Runtime.Numerics.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Runtime.Serialization.Formatters.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Runtime.Serialization.Json.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Runtime.Serialization.Primitives.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Runtime.Serialization.Xml.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Runtime.Serialization.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Runtime.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Security.Claims.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Security.Cryptography.Algorithms.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Security.Cryptography.Csp.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Security.Cryptography.Encoding.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Security.Cryptography.Primitives.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Security.Cryptography.X509Certificates.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Security.Principal.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Security.SecureString.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Security.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.ServiceModel.Web.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.ServiceProcess.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Text.Encoding.CodePages.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Text.Encoding.Extensions.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Text.Encoding.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Text.Json.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Text.RegularExpressions.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Threading.Channels.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Threading.Overlapped.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Threading.Tasks.Dataflow.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Threading.Tasks.Extensions.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Threading.Tasks.Parallel.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Threading.Tasks.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Threading.Thread.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Threading.ThreadPool.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Threading.Timer.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Threading.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Transactions.Local.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Transactions.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.ValueTuple.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Web.HttpUtility.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Web.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Windows.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Xml.Linq.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Xml.ReaderWriter.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Xml.Serialization.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Xml.XDocument.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Xml.XPath.XDocument.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Xml.XPath.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Xml.XmlDocument.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Xml.XmlSerializer.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.Xml.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\System.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\WindowsBase.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\mscorlib.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ref\netstandard.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\net5.0\Modules\CimCmdlets\CimCmdlets.psd1 +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\Diagnostics.format.ps1xml +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\Event.format.ps1xml +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\GetEvent.types.ps1xml +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\Microsoft.PowerShell.Diagnostics.psd1 +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\net5.0\Modules\Microsoft.WSMan.Management\Microsoft.WSMan.Management.psd1 +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\net5.0\Modules\Microsoft.WSMan.Management\WSMan.format.ps1xml +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\net5.0\Modules\PSDiagnostics\PSDiagnostics.psd1 +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\net5.0\Modules\PSDiagnostics\PSDiagnostics.psm1 +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\Markdig.Signed.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\Microsoft.ApplicationInsights.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\Microsoft.CodeAnalysis.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\Microsoft.CodeAnalysis.CSharp.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\Microsoft.Win32.Registry.AccessControl.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\Microsoft.Win32.SystemEvents.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\Namotion.Reflection.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\Newtonsoft.Json.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\NJsonSchema.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.CodeDom.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.ComponentModel.Composition.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.ComponentModel.Composition.Registration.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.Configuration.ConfigurationManager.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.Data.Odbc.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.Data.OleDb.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.Data.SqlClient.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.Diagnostics.EventLog.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.Diagnostics.PerformanceCounter.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.DirectoryServices.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.DirectoryServices.AccountManagement.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.DirectoryServices.Protocols.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.Drawing.Common.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.IO.Packaging.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.IO.Ports.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.Management.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.Net.Http.WinHttpHandler.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.Private.ServiceModel.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.Reflection.Context.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.Runtime.Caching.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.Security.Cryptography.Pkcs.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.Security.Cryptography.ProtectedData.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.Security.Cryptography.Xml.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.Security.Permissions.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.ServiceModel.Duplex.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.ServiceModel.Http.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.ServiceModel.NetTcp.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.ServiceModel.Primitives.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.ServiceModel.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.ServiceModel.Security.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.ServiceModel.Syndication.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.ServiceProcess.ServiceController.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.Text.Encodings.Web.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.Threading.AccessControl.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\System.Windows.Extensions.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\cs\Microsoft.CodeAnalysis.resources.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\de\Microsoft.CodeAnalysis.resources.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\es\Microsoft.CodeAnalysis.resources.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\fr\Microsoft.CodeAnalysis.resources.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\it\Microsoft.CodeAnalysis.resources.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ja\Microsoft.CodeAnalysis.resources.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ko\Microsoft.CodeAnalysis.resources.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\pl\Microsoft.CodeAnalysis.resources.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\pt-BR\Microsoft.CodeAnalysis.resources.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ru\Microsoft.CodeAnalysis.resources.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\tr\Microsoft.CodeAnalysis.resources.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\net5.0\Microsoft.Management.Infrastructure.CimCmdlets.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\unix\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win-arm\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win-arm\native\mi.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win-arm\native\miutils.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win-arm64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win-arm64\native\mi.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win-arm64\native\miutils.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win10-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win10-x64\native\mi.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win10-x64\native\miutils.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win10-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win10-x86\native\mi.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win10-x86\native\miutils.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win7-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win7-x64\native\mi.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win7-x64\native\miutils.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win7-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win7-x86\native\mi.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win7-x86\native\miutils.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win8-x64\native\mi.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win8-x64\native\miutils.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win8-x86\native\mi.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win8-x86\native\miutils.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win81-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win81-x64\native\mi.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win81-x64\native\miutils.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win81-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win81-x86\native\mi.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win81-x86\native\miutils.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\net5.0\Microsoft.PowerShell.Commands.Diagnostics.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\unix\lib\net5.0\Microsoft.PowerShell.Commands.Management.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\net5.0\Microsoft.PowerShell.Commands.Management.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\unix\lib\net5.0\Microsoft.PowerShell.Commands.Utility.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\net5.0\Microsoft.PowerShell.Commands.Utility.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\unix\lib\net5.0\Microsoft.PowerShell.ConsoleHost.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\net5.0\Microsoft.PowerShell.ConsoleHost.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\net5.0\Microsoft.PowerShell.CoreCLR.Eventing.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\unix\lib\net5.0\Microsoft.PowerShell.MarkdownRender.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\net5.0\Microsoft.PowerShell.MarkdownRender.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\linux-arm\native\libpsl-native.so +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\linux-arm64\native\libpsl-native.so +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\linux-musl-x64\native\libpsl-native.so +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\linux-x64\native\libmi.so +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\linux-x64\native\libpsl-native.so +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\linux-x64\native\libpsrpclient.so +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\osx\native\libmi.dylib +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\osx\native\libpsl-native.dylib +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\osx\native\libpsrpclient.dylib +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win-arm\native\PowerShell.Core.Instrumentation.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win-arm\native\pwrshplugin.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win-arm64\native\PowerShell.Core.Instrumentation.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win-arm64\native\pwrshplugin.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win-x64\native\PowerShell.Core.Instrumentation.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win-x64\native\pwrshplugin.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win-x86\native\PowerShell.Core.Instrumentation.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win-x86\native\pwrshplugin.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\unix\lib\net5.0\Microsoft.PowerShell.SDK.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\net5.0\Microsoft.PowerShell.SDK.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\unix\lib\net5.0\Microsoft.PowerShell.Security.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\net5.0\Microsoft.PowerShell.Security.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\netstandard2.0\Microsoft.Win32.Registry.AccessControl.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\netcoreapp3.0\Microsoft.Win32.SystemEvents.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\net5.0\Microsoft.WSMan.Management.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\net5.0\Microsoft.WSMan.Runtime.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\linux-arm\native\libSystem.IO.Ports.Native.so +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\linux-arm64\native\libSystem.IO.Ports.Native.so +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\linux-x64\native\libSystem.IO.Ports.Native.so +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\osx-x64\native\libSystem.IO.Ports.Native.dylib +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win-arm64\native\sni.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win-x64\native\sni.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win-x86\native\sni.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\freebsd\lib\netcoreapp2.0\System.Data.Odbc.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\linux\lib\netcoreapp2.0\System.Data.Odbc.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\osx\lib\netcoreapp2.0\System.Data.Odbc.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\netcoreapp2.0\System.Data.Odbc.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\netstandard2.0\System.Data.OleDb.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.EventLog.Messages.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.EventLog.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\netcoreapp2.0\System.Diagnostics.PerformanceCounter.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.AccountManagement.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\linux\lib\netcoreapp2.0\System.DirectoryServices.Protocols.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\osx\lib\netcoreapp2.0\System.DirectoryServices.Protocols.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\netcoreapp2.0\System.DirectoryServices.Protocols.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\unix\lib\netcoreapp3.0\System.Drawing.Common.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\netcoreapp3.0\System.Drawing.Common.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\linux\lib\netstandard2.0\System.IO.Ports.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\osx\lib\netstandard2.0\System.IO.Ports.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\netstandard2.0\System.IO.Ports.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\netcoreapp2.0\System.Management.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\unix\lib\net5.0\System.Management.Automation.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\net5.0\System.Management.Automation.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\netstandard2.0\System.Net.Http.WinHttpHandler.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\netcoreapp3.0\System.Security.Cryptography.Pkcs.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\netstandard2.0\System.ServiceProcess.ServiceController.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\netstandard2.0\System.Threading.AccessControl.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\bin\Debug\net5.0\runtimes\win\lib\netcoreapp3.0\System.Windows.Extensions.dll +C:\Users\סארט\source\repos\PowershellScriptHider\PowershellScriptHider\obj\Debug\net5.0\PowershellScriptHider.csproj.CopyComplete diff --git a/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/PowershellScriptHider.dll b/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/PowershellScriptHider.dll new file mode 100644 index 0000000..3921cff Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/PowershellScriptHider.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/PowershellScriptHider.genruntimeconfig.cache b/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/PowershellScriptHider.genruntimeconfig.cache new file mode 100644 index 0000000..5d6f9cb --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/PowershellScriptHider.genruntimeconfig.cache @@ -0,0 +1 @@ +ba63240e6965becf51c17c736c8095dcc2cd1fe1 diff --git a/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/PowershellScriptHider.pdb b/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/PowershellScriptHider.pdb new file mode 100644 index 0000000..b41c3c9 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/PowershellScriptHider.pdb differ diff --git a/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/apphost.exe b/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/apphost.exe new file mode 100644 index 0000000..2533027 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/apphost.exe differ diff --git a/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/desktop.ini b/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/ref/PowershellScriptHider.dll b/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/ref/PowershellScriptHider.dll new file mode 100644 index 0000000..c34918c Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/ref/PowershellScriptHider.dll differ diff --git a/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/ref/desktop.ini b/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/ref/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/obj/Debug/net5.0/ref/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/obj/PowershellScriptHider.csproj.nuget.dgspec.json b/PowershellScriptHider/PowershellScriptHider/obj/PowershellScriptHider.csproj.nuget.dgspec.json new file mode 100644 index 0000000..eb4ff5a --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/obj/PowershellScriptHider.csproj.nuget.dgspec.json @@ -0,0 +1,77 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\סארט\\source\\repos\\PowershellScriptHider\\PowershellScriptHider\\PowershellScriptHider.csproj": {} + }, + "projects": { + "C:\\Users\\סארט\\source\\repos\\PowershellScriptHider\\PowershellScriptHider\\PowershellScriptHider.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\סארט\\source\\repos\\PowershellScriptHider\\PowershellScriptHider\\PowershellScriptHider.csproj", + "projectName": "PowershellScriptHider", + "projectPath": "C:\\Users\\סארט\\source\\repos\\PowershellScriptHider\\PowershellScriptHider\\PowershellScriptHider.csproj", + "packagesPath": "C:\\Users\\סארט\\.nuget\\packages\\", + "outputPath": "C:\\Users\\סארט\\source\\repos\\PowershellScriptHider\\PowershellScriptHider\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\סארט\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Users\\סארט\\source\\repos\\NetWork": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "dependencies": { + "Microsoft.PowerShell.SDK": { + "target": "Package", + "version": "[7.1.3, )" + }, + "System.Management.Automation": { + "target": "Package", + "version": "[7.1.3, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/PowershellScriptHider/PowershellScriptHider/obj/PowershellScriptHider.csproj.nuget.g.props b/PowershellScriptHider/PowershellScriptHider/obj/PowershellScriptHider.csproj.nuget.g.props new file mode 100644 index 0000000..09061e9 --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/obj/PowershellScriptHider.csproj.nuget.g.props @@ -0,0 +1,1872 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\סארט\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 5.10.0 + + + + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\Microsoft.CSharp.dll + ref\ + True + ref\Microsoft.CSharp.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\Microsoft.VisualBasic.Core.dll + ref\ + True + ref\Microsoft.VisualBasic.Core.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\Microsoft.VisualBasic.dll + ref\ + True + ref\Microsoft.VisualBasic.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\Microsoft.Win32.Primitives.dll + ref\ + True + ref\Microsoft.Win32.Primitives.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.AppContext.dll + ref\ + True + ref\System.AppContext.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Buffers.dll + ref\ + True + ref\System.Buffers.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Collections.Concurrent.dll + ref\ + True + ref\System.Collections.Concurrent.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Collections.Immutable.dll + ref\ + True + ref\System.Collections.Immutable.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Collections.NonGeneric.dll + ref\ + True + ref\System.Collections.NonGeneric.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Collections.Specialized.dll + ref\ + True + ref\System.Collections.Specialized.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Collections.dll + ref\ + True + ref\System.Collections.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.ComponentModel.Annotations.dll + ref\ + True + ref\System.ComponentModel.Annotations.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.ComponentModel.DataAnnotations.dll + ref\ + True + ref\System.ComponentModel.DataAnnotations.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.ComponentModel.EventBasedAsync.dll + ref\ + True + ref\System.ComponentModel.EventBasedAsync.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.ComponentModel.Primitives.dll + ref\ + True + ref\System.ComponentModel.Primitives.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.ComponentModel.TypeConverter.dll + ref\ + True + ref\System.ComponentModel.TypeConverter.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.ComponentModel.dll + ref\ + True + ref\System.ComponentModel.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Configuration.dll + ref\ + True + ref\System.Configuration.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Console.dll + ref\ + True + ref\System.Console.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Core.dll + ref\ + True + ref\System.Core.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Data.Common.dll + ref\ + True + ref\System.Data.Common.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Data.DataSetExtensions.dll + ref\ + True + ref\System.Data.DataSetExtensions.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Data.dll + ref\ + True + ref\System.Data.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Diagnostics.Contracts.dll + ref\ + True + ref\System.Diagnostics.Contracts.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Diagnostics.Debug.dll + ref\ + True + ref\System.Diagnostics.Debug.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Diagnostics.DiagnosticSource.dll + ref\ + True + ref\System.Diagnostics.DiagnosticSource.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Diagnostics.FileVersionInfo.dll + ref\ + True + ref\System.Diagnostics.FileVersionInfo.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Diagnostics.Process.dll + ref\ + True + ref\System.Diagnostics.Process.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Diagnostics.StackTrace.dll + ref\ + True + ref\System.Diagnostics.StackTrace.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Diagnostics.TextWriterTraceListener.dll + ref\ + True + ref\System.Diagnostics.TextWriterTraceListener.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Diagnostics.Tools.dll + ref\ + True + ref\System.Diagnostics.Tools.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Diagnostics.TraceSource.dll + ref\ + True + ref\System.Diagnostics.TraceSource.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Diagnostics.Tracing.dll + ref\ + True + ref\System.Diagnostics.Tracing.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Drawing.Primitives.dll + ref\ + True + ref\System.Drawing.Primitives.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Drawing.dll + ref\ + True + ref\System.Drawing.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Dynamic.Runtime.dll + ref\ + True + ref\System.Dynamic.Runtime.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Formats.Asn1.dll + ref\ + True + ref\System.Formats.Asn1.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Globalization.Calendars.dll + ref\ + True + ref\System.Globalization.Calendars.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Globalization.Extensions.dll + ref\ + True + ref\System.Globalization.Extensions.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Globalization.dll + ref\ + True + ref\System.Globalization.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.IO.Compression.Brotli.dll + ref\ + True + ref\System.IO.Compression.Brotli.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.IO.Compression.FileSystem.dll + ref\ + True + ref\System.IO.Compression.FileSystem.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.IO.Compression.ZipFile.dll + ref\ + True + ref\System.IO.Compression.ZipFile.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.IO.Compression.dll + ref\ + True + ref\System.IO.Compression.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.IO.FileSystem.DriveInfo.dll + ref\ + True + ref\System.IO.FileSystem.DriveInfo.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.IO.FileSystem.Primitives.dll + ref\ + True + ref\System.IO.FileSystem.Primitives.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.IO.FileSystem.Watcher.dll + ref\ + True + ref\System.IO.FileSystem.Watcher.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.IO.FileSystem.dll + ref\ + True + ref\System.IO.FileSystem.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.IO.IsolatedStorage.dll + ref\ + True + ref\System.IO.IsolatedStorage.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.IO.MemoryMappedFiles.dll + ref\ + True + ref\System.IO.MemoryMappedFiles.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.IO.Pipes.dll + ref\ + True + ref\System.IO.Pipes.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.IO.UnmanagedMemoryStream.dll + ref\ + True + ref\System.IO.UnmanagedMemoryStream.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.IO.dll + ref\ + True + ref\System.IO.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Linq.Expressions.dll + ref\ + True + ref\System.Linq.Expressions.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Linq.Parallel.dll + ref\ + True + ref\System.Linq.Parallel.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Linq.Queryable.dll + ref\ + True + ref\System.Linq.Queryable.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Linq.dll + ref\ + True + ref\System.Linq.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Memory.dll + ref\ + True + ref\System.Memory.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Net.Http.Json.dll + ref\ + True + ref\System.Net.Http.Json.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Net.Http.dll + ref\ + True + ref\System.Net.Http.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Net.HttpListener.dll + ref\ + True + ref\System.Net.HttpListener.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Net.Mail.dll + ref\ + True + ref\System.Net.Mail.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Net.NameResolution.dll + ref\ + True + ref\System.Net.NameResolution.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Net.NetworkInformation.dll + ref\ + True + ref\System.Net.NetworkInformation.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Net.Ping.dll + ref\ + True + ref\System.Net.Ping.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Net.Primitives.dll + ref\ + True + ref\System.Net.Primitives.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Net.Requests.dll + ref\ + True + ref\System.Net.Requests.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Net.Security.dll + ref\ + True + ref\System.Net.Security.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Net.ServicePoint.dll + ref\ + True + ref\System.Net.ServicePoint.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Net.Sockets.dll + ref\ + True + ref\System.Net.Sockets.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Net.WebClient.dll + ref\ + True + ref\System.Net.WebClient.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Net.WebHeaderCollection.dll + ref\ + True + ref\System.Net.WebHeaderCollection.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Net.WebProxy.dll + ref\ + True + ref\System.Net.WebProxy.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Net.WebSockets.Client.dll + ref\ + True + ref\System.Net.WebSockets.Client.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Net.WebSockets.dll + ref\ + True + ref\System.Net.WebSockets.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Net.dll + ref\ + True + ref\System.Net.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Numerics.Vectors.dll + ref\ + True + ref\System.Numerics.Vectors.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Numerics.dll + ref\ + True + ref\System.Numerics.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.ObjectModel.dll + ref\ + True + ref\System.ObjectModel.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Reflection.DispatchProxy.dll + ref\ + True + ref\System.Reflection.DispatchProxy.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Reflection.Emit.ILGeneration.dll + ref\ + True + ref\System.Reflection.Emit.ILGeneration.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Reflection.Emit.Lightweight.dll + ref\ + True + ref\System.Reflection.Emit.Lightweight.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Reflection.Emit.dll + ref\ + True + ref\System.Reflection.Emit.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Reflection.Extensions.dll + ref\ + True + ref\System.Reflection.Extensions.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Reflection.Metadata.dll + ref\ + True + ref\System.Reflection.Metadata.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Reflection.Primitives.dll + ref\ + True + ref\System.Reflection.Primitives.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Reflection.TypeExtensions.dll + ref\ + True + ref\System.Reflection.TypeExtensions.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Reflection.dll + ref\ + True + ref\System.Reflection.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Resources.Reader.dll + ref\ + True + ref\System.Resources.Reader.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Resources.ResourceManager.dll + ref\ + True + ref\System.Resources.ResourceManager.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Resources.Writer.dll + ref\ + True + ref\System.Resources.Writer.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Runtime.CompilerServices.Unsafe.dll + ref\ + True + ref\System.Runtime.CompilerServices.Unsafe.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Runtime.CompilerServices.VisualC.dll + ref\ + True + ref\System.Runtime.CompilerServices.VisualC.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Runtime.Extensions.dll + ref\ + True + ref\System.Runtime.Extensions.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Runtime.Handles.dll + ref\ + True + ref\System.Runtime.Handles.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Runtime.InteropServices.RuntimeInformation.dll + ref\ + True + ref\System.Runtime.InteropServices.RuntimeInformation.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Runtime.InteropServices.dll + ref\ + True + ref\System.Runtime.InteropServices.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Runtime.Intrinsics.dll + ref\ + True + ref\System.Runtime.Intrinsics.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Runtime.Loader.dll + ref\ + True + ref\System.Runtime.Loader.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Runtime.Numerics.dll + ref\ + True + ref\System.Runtime.Numerics.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Runtime.Serialization.Formatters.dll + ref\ + True + ref\System.Runtime.Serialization.Formatters.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Runtime.Serialization.Json.dll + ref\ + True + ref\System.Runtime.Serialization.Json.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Runtime.Serialization.Primitives.dll + ref\ + True + ref\System.Runtime.Serialization.Primitives.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Runtime.Serialization.Xml.dll + ref\ + True + ref\System.Runtime.Serialization.Xml.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Runtime.Serialization.dll + ref\ + True + ref\System.Runtime.Serialization.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Runtime.dll + ref\ + True + ref\System.Runtime.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Security.Claims.dll + ref\ + True + ref\System.Security.Claims.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Security.Cryptography.Algorithms.dll + ref\ + True + ref\System.Security.Cryptography.Algorithms.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Security.Cryptography.Csp.dll + ref\ + True + ref\System.Security.Cryptography.Csp.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Security.Cryptography.Encoding.dll + ref\ + True + ref\System.Security.Cryptography.Encoding.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Security.Cryptography.Primitives.dll + ref\ + True + ref\System.Security.Cryptography.Primitives.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Security.Cryptography.X509Certificates.dll + ref\ + True + ref\System.Security.Cryptography.X509Certificates.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Security.Principal.dll + ref\ + True + ref\System.Security.Principal.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Security.SecureString.dll + ref\ + True + ref\System.Security.SecureString.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Security.dll + ref\ + True + ref\System.Security.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.ServiceModel.Web.dll + ref\ + True + ref\System.ServiceModel.Web.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.ServiceProcess.dll + ref\ + True + ref\System.ServiceProcess.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Text.Encoding.CodePages.dll + ref\ + True + ref\System.Text.Encoding.CodePages.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Text.Encoding.Extensions.dll + ref\ + True + ref\System.Text.Encoding.Extensions.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Text.Encoding.dll + ref\ + True + ref\System.Text.Encoding.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Text.Json.dll + ref\ + True + ref\System.Text.Json.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Text.RegularExpressions.dll + ref\ + True + ref\System.Text.RegularExpressions.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Threading.Channels.dll + ref\ + True + ref\System.Threading.Channels.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Threading.Overlapped.dll + ref\ + True + ref\System.Threading.Overlapped.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Threading.Tasks.Dataflow.dll + ref\ + True + ref\System.Threading.Tasks.Dataflow.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Threading.Tasks.Extensions.dll + ref\ + True + ref\System.Threading.Tasks.Extensions.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Threading.Tasks.Parallel.dll + ref\ + True + ref\System.Threading.Tasks.Parallel.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Threading.Tasks.dll + ref\ + True + ref\System.Threading.Tasks.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Threading.Thread.dll + ref\ + True + ref\System.Threading.Thread.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Threading.ThreadPool.dll + ref\ + True + ref\System.Threading.ThreadPool.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Threading.Timer.dll + ref\ + True + ref\System.Threading.Timer.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Threading.dll + ref\ + True + ref\System.Threading.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Transactions.Local.dll + ref\ + True + ref\System.Transactions.Local.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Transactions.dll + ref\ + True + ref\System.Transactions.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.ValueTuple.dll + ref\ + True + ref\System.ValueTuple.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Web.HttpUtility.dll + ref\ + True + ref\System.Web.HttpUtility.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Web.dll + ref\ + True + ref\System.Web.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Windows.dll + ref\ + True + ref\System.Windows.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Xml.Linq.dll + ref\ + True + ref\System.Xml.Linq.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Xml.ReaderWriter.dll + ref\ + True + ref\System.Xml.ReaderWriter.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Xml.Serialization.dll + ref\ + True + ref\System.Xml.Serialization.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Xml.XDocument.dll + ref\ + True + ref\System.Xml.XDocument.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Xml.XPath.XDocument.dll + ref\ + True + ref\System.Xml.XPath.XDocument.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Xml.XPath.dll + ref\ + True + ref\System.Xml.XPath.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Xml.XmlDocument.dll + ref\ + True + ref\System.Xml.XmlDocument.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Xml.XmlSerializer.dll + ref\ + True + ref\System.Xml.XmlSerializer.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.Xml.dll + ref\ + True + ref\System.Xml.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\System.dll + ref\ + True + ref\System.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\WindowsBase.dll + ref\ + True + ref\WindowsBase.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\mscorlib.dll + ref\ + True + ref\mscorlib.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + ref\netstandard.dll + ref\ + True + ref\netstandard.dll + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 + runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Host\ + True + runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 + runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Management\ + True + runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 + runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Security\ + True + runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 + runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Utility\ + True + runtimes\unix\lib\net5.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + runtimes\win\lib\net5.0\Modules\CimCmdlets\CimCmdlets.psd1 + runtimes\win\lib\net5.0\Modules\CimCmdlets\ + True + runtimes\win\lib\net5.0\Modules\CimCmdlets\CimCmdlets.psd1 + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\Diagnostics.format.ps1xml + runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\ + True + runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\Diagnostics.format.ps1xml + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\Event.format.ps1xml + runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\ + True + runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\Event.format.ps1xml + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\GetEvent.types.ps1xml + runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\ + True + runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\GetEvent.types.ps1xml + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\Microsoft.PowerShell.Diagnostics.psd1 + runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\ + True + runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Diagnostics\Microsoft.PowerShell.Diagnostics.psd1 + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 + runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Host\ + True + runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 + runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Management\ + True + runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 + runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Security\ + True + runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 + runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Utility\ + True + runtimes\win\lib\net5.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + runtimes\win\lib\net5.0\Modules\Microsoft.WSMan.Management\Microsoft.WSMan.Management.psd1 + runtimes\win\lib\net5.0\Modules\Microsoft.WSMan.Management\ + True + runtimes\win\lib\net5.0\Modules\Microsoft.WSMan.Management\Microsoft.WSMan.Management.psd1 + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + runtimes\win\lib\net5.0\Modules\Microsoft.WSMan.Management\WSMan.format.ps1xml + runtimes\win\lib\net5.0\Modules\Microsoft.WSMan.Management\ + True + runtimes\win\lib\net5.0\Modules\Microsoft.WSMan.Management\WSMan.format.ps1xml + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + runtimes\win\lib\net5.0\Modules\PSDiagnostics\PSDiagnostics.psd1 + runtimes\win\lib\net5.0\Modules\PSDiagnostics\ + True + runtimes\win\lib\net5.0\Modules\PSDiagnostics\PSDiagnostics.psd1 + + + Microsoft.PowerShell.SDK + 7.1.3 + None + false + PreserveNewest + runtimes\win\lib\net5.0\Modules\PSDiagnostics\PSDiagnostics.psm1 + runtimes\win\lib\net5.0\Modules\PSDiagnostics\ + True + runtimes\win\lib\net5.0\Modules\PSDiagnostics\PSDiagnostics.psm1 + + + + C:\Users\סארט\.nuget\packages\microsoft.codeanalysis.analyzers\3.0.0 + + \ No newline at end of file diff --git a/PowershellScriptHider/PowershellScriptHider/obj/PowershellScriptHider.csproj.nuget.g.targets b/PowershellScriptHider/PowershellScriptHider/obj/PowershellScriptHider.csproj.nuget.g.targets new file mode 100644 index 0000000..53cfaa1 --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/obj/PowershellScriptHider.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/PowershellScriptHider/PowershellScriptHider/obj/Release/desktop.ini b/PowershellScriptHider/PowershellScriptHider/obj/Release/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/obj/Release/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/PowershellScriptHider/PowershellScriptHider/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2f7e5ec --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/PowershellScriptHider/PowershellScriptHider/obj/Release/net5.0/PowershellScriptHider.AssemblyInfo.cs b/PowershellScriptHider/PowershellScriptHider/obj/Release/net5.0/PowershellScriptHider.AssemblyInfo.cs new file mode 100644 index 0000000..37dece2 --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/obj/Release/net5.0/PowershellScriptHider.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("PowershellScriptHider")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("PowershellScriptHider")] +[assembly: System.Reflection.AssemblyTitleAttribute("PowershellScriptHider")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/PowershellScriptHider/PowershellScriptHider/obj/Release/net5.0/PowershellScriptHider.AssemblyInfoInputs.cache b/PowershellScriptHider/PowershellScriptHider/obj/Release/net5.0/PowershellScriptHider.AssemblyInfoInputs.cache new file mode 100644 index 0000000..0676dc6 --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/obj/Release/net5.0/PowershellScriptHider.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +0fe0e4f5d0a37f9cf6e8552c1b0b97385fc707cd diff --git a/PowershellScriptHider/PowershellScriptHider/obj/Release/net5.0/PowershellScriptHider.GeneratedMSBuildEditorConfig.editorconfig b/PowershellScriptHider/PowershellScriptHider/obj/Release/net5.0/PowershellScriptHider.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d7e2983 --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/obj/Release/net5.0/PowershellScriptHider.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,8 @@ +is_global = true +build_property.TargetFramework = net5.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.PublishSingleFile = +build_property.IncludeAllContentForSelfExtract = +build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows diff --git a/PowershellScriptHider/PowershellScriptHider/obj/Release/net5.0/PowershellScriptHider.assets.cache b/PowershellScriptHider/PowershellScriptHider/obj/Release/net5.0/PowershellScriptHider.assets.cache new file mode 100644 index 0000000..c6836e2 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/obj/Release/net5.0/PowershellScriptHider.assets.cache differ diff --git a/PowershellScriptHider/PowershellScriptHider/obj/Release/net5.0/desktop.ini b/PowershellScriptHider/PowershellScriptHider/obj/Release/net5.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/obj/Release/net5.0/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/obj/Release/net5.0/ref/desktop.ini b/PowershellScriptHider/PowershellScriptHider/obj/Release/net5.0/ref/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/obj/Release/net5.0/ref/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/obj/desktop.ini b/PowershellScriptHider/PowershellScriptHider/obj/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/PowershellScriptHider/obj/desktop.ini differ diff --git a/PowershellScriptHider/PowershellScriptHider/obj/project.assets.json b/PowershellScriptHider/PowershellScriptHider/obj/project.assets.json new file mode 100644 index 0000000..c59aacb --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/obj/project.assets.json @@ -0,0 +1,7596 @@ +{ + "version": 3, + "targets": { + "net5.0": { + "Markdig.Signed/0.21.1": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/Markdig.Signed.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Markdig.Signed.dll": {} + } + }, + "Microsoft.ApplicationInsights/2.15.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.DiagnosticSource": "4.6.0", + "System.Memory": "4.5.4" + }, + "compile": { + "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.0.0": { + "type": "package", + "build": { + "build/_._": {} + } + }, + "Microsoft.CodeAnalysis.Common/3.7.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.0.0", + "System.Collections.Immutable": "1.5.0", + "System.Memory": "4.5.4", + "System.Reflection.Metadata": "1.6.0", + "System.Runtime.CompilerServices.Unsafe": "4.7.0", + "System.Text.Encoding.CodePages": "4.5.1", + "System.Threading.Tasks.Extensions": "4.5.3" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {} + }, + "resource": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/3.7.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[3.7.0]" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "resource": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CSharp/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Management.Infrastructure/2.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Management.Infrastructure.Runtime.Unix": "2.0.0", + "Microsoft.Management.Infrastructure.Runtime.Win": "2.0.0" + }, + "compile": { + "ref/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {}, + "ref/netstandard1.6/Microsoft.Management.Infrastructure.dll": {} + }, + "runtime": { + "lib/netstandard1.6/_._": {} + } + }, + "Microsoft.Management.Infrastructure.CimCmdlets/7.1.3": { + "type": "package", + "dependencies": { + "System.Management.Automation": "7.1.3" + }, + "compile": { + "ref/net5.0/System.Management.Automation.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net5.0/Microsoft.Management.Infrastructure.CimCmdlets.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { + "type": "package", + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win-arm" + }, + "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win-arm" + }, + "runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm/native/mi.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm/native/miutils.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win-arm64" + }, + "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/mi.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/miutils.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win10-x64" + }, + "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win10-x64" + }, + "runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win10-x64" + }, + "runtimes/win10-x64/native/mi.dll": { + "assetType": "native", + "rid": "win10-x64" + }, + "runtimes/win10-x64/native/miutils.dll": { + "assetType": "native", + "rid": "win10-x64" + }, + "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win10-x86" + }, + "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win10-x86" + }, + "runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win10-x86" + }, + "runtimes/win10-x86/native/mi.dll": { + "assetType": "native", + "rid": "win10-x86" + }, + "runtimes/win10-x86/native/miutils.dll": { + "assetType": "native", + "rid": "win10-x86" + }, + "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win7-x64" + }, + "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/mi.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/miutils.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win7-x86" + }, + "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win7-x86" + }, + "runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win7-x86" + }, + "runtimes/win7-x86/native/mi.dll": { + "assetType": "native", + "rid": "win7-x86" + }, + "runtimes/win7-x86/native/miutils.dll": { + "assetType": "native", + "rid": "win7-x86" + }, + "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win8-x64" + }, + "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/mi.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/miutils.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win8-x86" + }, + "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win8-x86" + }, + "runtimes/win8-x86/native/mi.dll": { + "assetType": "native", + "rid": "win8-x86" + }, + "runtimes/win8-x86/native/miutils.dll": { + "assetType": "native", + "rid": "win8-x86" + }, + "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win81-x64" + }, + "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win81-x64" + }, + "runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win81-x64" + }, + "runtimes/win81-x64/native/mi.dll": { + "assetType": "native", + "rid": "win81-x64" + }, + "runtimes/win81-x64/native/miutils.dll": { + "assetType": "native", + "rid": "win81-x64" + }, + "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win81-x86" + }, + "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win81-x86" + }, + "runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win81-x86" + }, + "runtimes/win81-x86/native/mi.dll": { + "assetType": "native", + "rid": "win81-x86" + }, + "runtimes/win81-x86/native/miutils.dll": { + "assetType": "native", + "rid": "win81-x86" + } + } + }, + "Microsoft.NETCore.Platforms/5.0.1": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "type": "package" + }, + "Microsoft.PowerShell.Commands.Diagnostics/7.1.3": { + "type": "package", + "dependencies": { + "System.Management.Automation": "7.1.3" + }, + "compile": { + "ref/net5.0/System.Management.Automation.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net5.0/Microsoft.PowerShell.Commands.Diagnostics.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.PowerShell.Commands.Management/7.1.3": { + "type": "package", + "dependencies": { + "Microsoft.PowerShell.Security": "7.1.3", + "System.ServiceProcess.ServiceController": "5.0.0" + }, + "compile": { + "ref/net5.0/System.Management.Automation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net5.0/Microsoft.PowerShell.Commands.Management.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net5.0/Microsoft.PowerShell.Commands.Management.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.PowerShell.Commands.Utility/7.1.3": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "3.7.0", + "Microsoft.PowerShell.MarkdownRender": "7.1.3", + "NJsonSchema": "10.2.2", + "System.Drawing.Common": "5.0.2", + "System.Management.Automation": "7.1.3", + "System.Threading.AccessControl": "5.0.0" + }, + "compile": { + "ref/net5.0/Microsoft.PowerShell.Commands.Utility.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net5.0/Microsoft.PowerShell.Commands.Utility.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net5.0/Microsoft.PowerShell.Commands.Utility.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.PowerShell.ConsoleHost/7.1.3": { + "type": "package", + "dependencies": { + "System.Management.Automation": "7.1.3" + }, + "compile": { + "ref/net5.0/Microsoft.PowerShell.ConsoleHost.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net5.0/Microsoft.PowerShell.ConsoleHost.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net5.0/Microsoft.PowerShell.ConsoleHost.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.PowerShell.CoreCLR.Eventing/7.1.3": { + "type": "package", + "dependencies": { + "System.Diagnostics.EventLog": "5.0.1" + }, + "compile": { + "ref/net5.0/System.Management.Automation.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net5.0/Microsoft.PowerShell.CoreCLR.Eventing.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.PowerShell.MarkdownRender/7.1.3": { + "type": "package", + "dependencies": { + "Markdig.Signed": "0.21.1", + "System.Management.Automation": "7.1.3" + }, + "compile": { + "ref/net5.0/System.Management.Automation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net5.0/Microsoft.PowerShell.MarkdownRender.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net5.0/Microsoft.PowerShell.MarkdownRender.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.PowerShell.Native/7.1.0": { + "type": "package", + "runtimeTargets": { + "runtimes/linux-arm/native/libpsl-native.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libpsl-native.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-musl-x64/native/libpsl-native.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/libmi.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/linux-x64/native/libpsl-native.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/linux-x64/native/libpsrpclient.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/osx/native/libmi.dylib": { + "assetType": "native", + "rid": "osx" + }, + "runtimes/osx/native/libpsl-native.dylib": { + "assetType": "native", + "rid": "osx" + }, + "runtimes/osx/native/libpsrpclient.dylib": { + "assetType": "native", + "rid": "osx" + }, + "runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm/native/pwrshplugin.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/pwrshplugin.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x64/native/pwrshplugin.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll": { + "assetType": "native", + "rid": "win-x86" + }, + "runtimes/win-x86/native/pwrshplugin.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Microsoft.PowerShell.SDK/7.1.3": { + "type": "package", + "dependencies": { + "Microsoft.Management.Infrastructure.CimCmdlets": "7.1.3", + "Microsoft.NETCore.Windows.ApiSets": "1.0.1", + "Microsoft.PowerShell.Commands.Diagnostics": "7.1.3", + "Microsoft.PowerShell.Commands.Management": "7.1.3", + "Microsoft.PowerShell.Commands.Utility": "7.1.3", + "Microsoft.PowerShell.ConsoleHost": "7.1.3", + "Microsoft.PowerShell.Security": "7.1.3", + "Microsoft.WSMan.Management": "7.1.3", + "Microsoft.Windows.Compatibility": "5.0.0", + "System.Data.SqlClient": "4.8.2", + "System.IO.Packaging": "5.0.0", + "System.Management.Automation": "7.1.3", + "System.Net.Http.WinHttpHandler": "5.0.0", + "System.Private.ServiceModel": "4.7.0", + "System.ServiceModel.Duplex": "4.7.0", + "System.ServiceModel.Http": "4.7.0", + "System.ServiceModel.NetTcp": "4.7.0", + "System.ServiceModel.Primitives": "4.7.0", + "System.ServiceModel.Security": "4.7.0", + "System.Text.Encodings.Web": "5.0.1" + }, + "compile": { + "ref/net5.0/Microsoft.PowerShell.Commands.Utility.dll": {}, + "ref/net5.0/Microsoft.PowerShell.ConsoleHost.dll": {}, + "ref/net5.0/System.Management.Automation.dll": {} + }, + "contentFiles": { + "contentFiles/any/any/ref/Microsoft.CSharp.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/Microsoft.CSharp.dll" + }, + "contentFiles/any/any/ref/Microsoft.VisualBasic.Core.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/Microsoft.VisualBasic.Core.dll" + }, + "contentFiles/any/any/ref/Microsoft.VisualBasic.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/Microsoft.VisualBasic.dll" + }, + "contentFiles/any/any/ref/Microsoft.Win32.Primitives.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/Microsoft.Win32.Primitives.dll" + }, + "contentFiles/any/any/ref/System.AppContext.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.AppContext.dll" + }, + "contentFiles/any/any/ref/System.Buffers.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Buffers.dll" + }, + "contentFiles/any/any/ref/System.Collections.Concurrent.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Collections.Concurrent.dll" + }, + "contentFiles/any/any/ref/System.Collections.Immutable.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Collections.Immutable.dll" + }, + "contentFiles/any/any/ref/System.Collections.NonGeneric.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Collections.NonGeneric.dll" + }, + "contentFiles/any/any/ref/System.Collections.Specialized.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Collections.Specialized.dll" + }, + "contentFiles/any/any/ref/System.Collections.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Collections.dll" + }, + "contentFiles/any/any/ref/System.ComponentModel.Annotations.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.ComponentModel.Annotations.dll" + }, + "contentFiles/any/any/ref/System.ComponentModel.DataAnnotations.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.ComponentModel.DataAnnotations.dll" + }, + "contentFiles/any/any/ref/System.ComponentModel.EventBasedAsync.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.ComponentModel.EventBasedAsync.dll" + }, + "contentFiles/any/any/ref/System.ComponentModel.Primitives.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.ComponentModel.Primitives.dll" + }, + "contentFiles/any/any/ref/System.ComponentModel.TypeConverter.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.ComponentModel.TypeConverter.dll" + }, + "contentFiles/any/any/ref/System.ComponentModel.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.ComponentModel.dll" + }, + "contentFiles/any/any/ref/System.Configuration.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Configuration.dll" + }, + "contentFiles/any/any/ref/System.Console.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Console.dll" + }, + "contentFiles/any/any/ref/System.Core.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Core.dll" + }, + "contentFiles/any/any/ref/System.Data.Common.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Data.Common.dll" + }, + "contentFiles/any/any/ref/System.Data.DataSetExtensions.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Data.DataSetExtensions.dll" + }, + "contentFiles/any/any/ref/System.Data.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Data.dll" + }, + "contentFiles/any/any/ref/System.Diagnostics.Contracts.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Diagnostics.Contracts.dll" + }, + "contentFiles/any/any/ref/System.Diagnostics.Debug.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Diagnostics.Debug.dll" + }, + "contentFiles/any/any/ref/System.Diagnostics.DiagnosticSource.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Diagnostics.DiagnosticSource.dll" + }, + "contentFiles/any/any/ref/System.Diagnostics.FileVersionInfo.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Diagnostics.FileVersionInfo.dll" + }, + "contentFiles/any/any/ref/System.Diagnostics.Process.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Diagnostics.Process.dll" + }, + "contentFiles/any/any/ref/System.Diagnostics.StackTrace.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Diagnostics.StackTrace.dll" + }, + "contentFiles/any/any/ref/System.Diagnostics.TextWriterTraceListener.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Diagnostics.TextWriterTraceListener.dll" + }, + "contentFiles/any/any/ref/System.Diagnostics.Tools.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Diagnostics.Tools.dll" + }, + "contentFiles/any/any/ref/System.Diagnostics.TraceSource.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Diagnostics.TraceSource.dll" + }, + "contentFiles/any/any/ref/System.Diagnostics.Tracing.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Diagnostics.Tracing.dll" + }, + "contentFiles/any/any/ref/System.Drawing.Primitives.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Drawing.Primitives.dll" + }, + "contentFiles/any/any/ref/System.Drawing.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Drawing.dll" + }, + "contentFiles/any/any/ref/System.Dynamic.Runtime.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Dynamic.Runtime.dll" + }, + "contentFiles/any/any/ref/System.Formats.Asn1.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Formats.Asn1.dll" + }, + "contentFiles/any/any/ref/System.Globalization.Calendars.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Globalization.Calendars.dll" + }, + "contentFiles/any/any/ref/System.Globalization.Extensions.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Globalization.Extensions.dll" + }, + "contentFiles/any/any/ref/System.Globalization.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Globalization.dll" + }, + "contentFiles/any/any/ref/System.IO.Compression.Brotli.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.IO.Compression.Brotli.dll" + }, + "contentFiles/any/any/ref/System.IO.Compression.FileSystem.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.IO.Compression.FileSystem.dll" + }, + "contentFiles/any/any/ref/System.IO.Compression.ZipFile.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.IO.Compression.ZipFile.dll" + }, + "contentFiles/any/any/ref/System.IO.Compression.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.IO.Compression.dll" + }, + "contentFiles/any/any/ref/System.IO.FileSystem.DriveInfo.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.IO.FileSystem.DriveInfo.dll" + }, + "contentFiles/any/any/ref/System.IO.FileSystem.Primitives.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.IO.FileSystem.Primitives.dll" + }, + "contentFiles/any/any/ref/System.IO.FileSystem.Watcher.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.IO.FileSystem.Watcher.dll" + }, + "contentFiles/any/any/ref/System.IO.FileSystem.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.IO.FileSystem.dll" + }, + "contentFiles/any/any/ref/System.IO.IsolatedStorage.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.IO.IsolatedStorage.dll" + }, + "contentFiles/any/any/ref/System.IO.MemoryMappedFiles.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.IO.MemoryMappedFiles.dll" + }, + "contentFiles/any/any/ref/System.IO.Pipes.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.IO.Pipes.dll" + }, + "contentFiles/any/any/ref/System.IO.UnmanagedMemoryStream.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.IO.UnmanagedMemoryStream.dll" + }, + "contentFiles/any/any/ref/System.IO.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.IO.dll" + }, + "contentFiles/any/any/ref/System.Linq.Expressions.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Linq.Expressions.dll" + }, + "contentFiles/any/any/ref/System.Linq.Parallel.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Linq.Parallel.dll" + }, + "contentFiles/any/any/ref/System.Linq.Queryable.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Linq.Queryable.dll" + }, + "contentFiles/any/any/ref/System.Linq.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Linq.dll" + }, + "contentFiles/any/any/ref/System.Memory.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Memory.dll" + }, + "contentFiles/any/any/ref/System.Net.Http.Json.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Net.Http.Json.dll" + }, + "contentFiles/any/any/ref/System.Net.Http.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Net.Http.dll" + }, + "contentFiles/any/any/ref/System.Net.HttpListener.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Net.HttpListener.dll" + }, + "contentFiles/any/any/ref/System.Net.Mail.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Net.Mail.dll" + }, + "contentFiles/any/any/ref/System.Net.NameResolution.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Net.NameResolution.dll" + }, + "contentFiles/any/any/ref/System.Net.NetworkInformation.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Net.NetworkInformation.dll" + }, + "contentFiles/any/any/ref/System.Net.Ping.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Net.Ping.dll" + }, + "contentFiles/any/any/ref/System.Net.Primitives.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Net.Primitives.dll" + }, + "contentFiles/any/any/ref/System.Net.Requests.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Net.Requests.dll" + }, + "contentFiles/any/any/ref/System.Net.Security.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Net.Security.dll" + }, + "contentFiles/any/any/ref/System.Net.ServicePoint.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Net.ServicePoint.dll" + }, + "contentFiles/any/any/ref/System.Net.Sockets.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Net.Sockets.dll" + }, + "contentFiles/any/any/ref/System.Net.WebClient.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Net.WebClient.dll" + }, + "contentFiles/any/any/ref/System.Net.WebHeaderCollection.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Net.WebHeaderCollection.dll" + }, + "contentFiles/any/any/ref/System.Net.WebProxy.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Net.WebProxy.dll" + }, + "contentFiles/any/any/ref/System.Net.WebSockets.Client.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Net.WebSockets.Client.dll" + }, + "contentFiles/any/any/ref/System.Net.WebSockets.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Net.WebSockets.dll" + }, + "contentFiles/any/any/ref/System.Net.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Net.dll" + }, + "contentFiles/any/any/ref/System.Numerics.Vectors.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Numerics.Vectors.dll" + }, + "contentFiles/any/any/ref/System.Numerics.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Numerics.dll" + }, + "contentFiles/any/any/ref/System.ObjectModel.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.ObjectModel.dll" + }, + "contentFiles/any/any/ref/System.Reflection.DispatchProxy.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Reflection.DispatchProxy.dll" + }, + "contentFiles/any/any/ref/System.Reflection.Emit.ILGeneration.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Reflection.Emit.ILGeneration.dll" + }, + "contentFiles/any/any/ref/System.Reflection.Emit.Lightweight.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Reflection.Emit.Lightweight.dll" + }, + "contentFiles/any/any/ref/System.Reflection.Emit.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Reflection.Emit.dll" + }, + "contentFiles/any/any/ref/System.Reflection.Extensions.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Reflection.Extensions.dll" + }, + "contentFiles/any/any/ref/System.Reflection.Metadata.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Reflection.Metadata.dll" + }, + "contentFiles/any/any/ref/System.Reflection.Primitives.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Reflection.Primitives.dll" + }, + "contentFiles/any/any/ref/System.Reflection.TypeExtensions.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Reflection.TypeExtensions.dll" + }, + "contentFiles/any/any/ref/System.Reflection.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Reflection.dll" + }, + "contentFiles/any/any/ref/System.Resources.Reader.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Resources.Reader.dll" + }, + "contentFiles/any/any/ref/System.Resources.ResourceManager.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Resources.ResourceManager.dll" + }, + "contentFiles/any/any/ref/System.Resources.Writer.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Resources.Writer.dll" + }, + "contentFiles/any/any/ref/System.Runtime.CompilerServices.Unsafe.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Runtime.CompilerServices.Unsafe.dll" + }, + "contentFiles/any/any/ref/System.Runtime.CompilerServices.VisualC.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Runtime.CompilerServices.VisualC.dll" + }, + "contentFiles/any/any/ref/System.Runtime.Extensions.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Runtime.Extensions.dll" + }, + "contentFiles/any/any/ref/System.Runtime.Handles.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Runtime.Handles.dll" + }, + "contentFiles/any/any/ref/System.Runtime.InteropServices.RuntimeInformation.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Runtime.InteropServices.RuntimeInformation.dll" + }, + "contentFiles/any/any/ref/System.Runtime.InteropServices.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Runtime.InteropServices.dll" + }, + "contentFiles/any/any/ref/System.Runtime.Intrinsics.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Runtime.Intrinsics.dll" + }, + "contentFiles/any/any/ref/System.Runtime.Loader.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Runtime.Loader.dll" + }, + "contentFiles/any/any/ref/System.Runtime.Numerics.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Runtime.Numerics.dll" + }, + "contentFiles/any/any/ref/System.Runtime.Serialization.Formatters.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Runtime.Serialization.Formatters.dll" + }, + "contentFiles/any/any/ref/System.Runtime.Serialization.Json.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Runtime.Serialization.Json.dll" + }, + "contentFiles/any/any/ref/System.Runtime.Serialization.Primitives.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Runtime.Serialization.Primitives.dll" + }, + "contentFiles/any/any/ref/System.Runtime.Serialization.Xml.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Runtime.Serialization.Xml.dll" + }, + "contentFiles/any/any/ref/System.Runtime.Serialization.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Runtime.Serialization.dll" + }, + "contentFiles/any/any/ref/System.Runtime.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Runtime.dll" + }, + "contentFiles/any/any/ref/System.Security.Claims.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Security.Claims.dll" + }, + "contentFiles/any/any/ref/System.Security.Cryptography.Algorithms.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Security.Cryptography.Algorithms.dll" + }, + "contentFiles/any/any/ref/System.Security.Cryptography.Csp.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Security.Cryptography.Csp.dll" + }, + "contentFiles/any/any/ref/System.Security.Cryptography.Encoding.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Security.Cryptography.Encoding.dll" + }, + "contentFiles/any/any/ref/System.Security.Cryptography.Primitives.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Security.Cryptography.Primitives.dll" + }, + "contentFiles/any/any/ref/System.Security.Cryptography.X509Certificates.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Security.Cryptography.X509Certificates.dll" + }, + "contentFiles/any/any/ref/System.Security.Principal.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Security.Principal.dll" + }, + "contentFiles/any/any/ref/System.Security.SecureString.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Security.SecureString.dll" + }, + "contentFiles/any/any/ref/System.Security.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Security.dll" + }, + "contentFiles/any/any/ref/System.ServiceModel.Web.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.ServiceModel.Web.dll" + }, + "contentFiles/any/any/ref/System.ServiceProcess.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.ServiceProcess.dll" + }, + "contentFiles/any/any/ref/System.Text.Encoding.CodePages.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Text.Encoding.CodePages.dll" + }, + "contentFiles/any/any/ref/System.Text.Encoding.Extensions.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Text.Encoding.Extensions.dll" + }, + "contentFiles/any/any/ref/System.Text.Encoding.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Text.Encoding.dll" + }, + "contentFiles/any/any/ref/System.Text.Json.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Text.Json.dll" + }, + "contentFiles/any/any/ref/System.Text.RegularExpressions.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Text.RegularExpressions.dll" + }, + "contentFiles/any/any/ref/System.Threading.Channels.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Threading.Channels.dll" + }, + "contentFiles/any/any/ref/System.Threading.Overlapped.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Threading.Overlapped.dll" + }, + "contentFiles/any/any/ref/System.Threading.Tasks.Dataflow.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Threading.Tasks.Dataflow.dll" + }, + "contentFiles/any/any/ref/System.Threading.Tasks.Extensions.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Threading.Tasks.Extensions.dll" + }, + "contentFiles/any/any/ref/System.Threading.Tasks.Parallel.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Threading.Tasks.Parallel.dll" + }, + "contentFiles/any/any/ref/System.Threading.Tasks.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Threading.Tasks.dll" + }, + "contentFiles/any/any/ref/System.Threading.Thread.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Threading.Thread.dll" + }, + "contentFiles/any/any/ref/System.Threading.ThreadPool.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Threading.ThreadPool.dll" + }, + "contentFiles/any/any/ref/System.Threading.Timer.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Threading.Timer.dll" + }, + "contentFiles/any/any/ref/System.Threading.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Threading.dll" + }, + "contentFiles/any/any/ref/System.Transactions.Local.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Transactions.Local.dll" + }, + "contentFiles/any/any/ref/System.Transactions.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Transactions.dll" + }, + "contentFiles/any/any/ref/System.ValueTuple.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.ValueTuple.dll" + }, + "contentFiles/any/any/ref/System.Web.HttpUtility.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Web.HttpUtility.dll" + }, + "contentFiles/any/any/ref/System.Web.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Web.dll" + }, + "contentFiles/any/any/ref/System.Windows.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Windows.dll" + }, + "contentFiles/any/any/ref/System.Xml.Linq.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Xml.Linq.dll" + }, + "contentFiles/any/any/ref/System.Xml.ReaderWriter.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Xml.ReaderWriter.dll" + }, + "contentFiles/any/any/ref/System.Xml.Serialization.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Xml.Serialization.dll" + }, + "contentFiles/any/any/ref/System.Xml.XDocument.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Xml.XDocument.dll" + }, + "contentFiles/any/any/ref/System.Xml.XPath.XDocument.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Xml.XPath.XDocument.dll" + }, + "contentFiles/any/any/ref/System.Xml.XPath.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Xml.XPath.dll" + }, + "contentFiles/any/any/ref/System.Xml.XmlDocument.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Xml.XmlDocument.dll" + }, + "contentFiles/any/any/ref/System.Xml.XmlSerializer.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Xml.XmlSerializer.dll" + }, + "contentFiles/any/any/ref/System.Xml.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.Xml.dll" + }, + "contentFiles/any/any/ref/System.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/System.dll" + }, + "contentFiles/any/any/ref/WindowsBase.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/WindowsBase.dll" + }, + "contentFiles/any/any/ref/mscorlib.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/mscorlib.dll" + }, + "contentFiles/any/any/ref/netstandard.dll": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "ref/netstandard.dll" + }, + "contentFiles/any/any/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1" + }, + "contentFiles/any/any/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1" + }, + "contentFiles/any/any/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1" + }, + "contentFiles/any/any/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1" + }, + "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/CimCmdlets/CimCmdlets.psd1": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "runtimes/win/lib/net5.0/Modules/CimCmdlets/CimCmdlets.psd1" + }, + "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml" + }, + "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml" + }, + "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml" + }, + "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1" + }, + "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1" + }, + "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1" + }, + "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1" + }, + "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1" + }, + "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "runtimes/win/lib/net5.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1" + }, + "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "runtimes/win/lib/net5.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml" + }, + "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/PSDiagnostics/PSDiagnostics.psd1": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "runtimes/win/lib/net5.0/Modules/PSDiagnostics/PSDiagnostics.psd1" + }, + "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/PSDiagnostics/PSDiagnostics.psm1": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "runtimes/win/lib/net5.0/Modules/PSDiagnostics/PSDiagnostics.psm1" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net5.0/Microsoft.PowerShell.SDK.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net5.0/Microsoft.PowerShell.SDK.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.PowerShell.Security/7.1.3": { + "type": "package", + "dependencies": { + "System.Management.Automation": "7.1.3" + }, + "compile": { + "ref/net5.0/System.Management.Automation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net5.0/Microsoft.PowerShell.Security.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net5.0/Microsoft.PowerShell.Security.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.Registry/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.Registry.AccessControl/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "5.0.0", + "System.Security.AccessControl": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Windows.Compatibility/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "5.0.0", + "Microsoft.Win32.Registry.AccessControl": "5.0.0", + "Microsoft.Win32.SystemEvents": "5.0.0", + "System.CodeDom": "5.0.0", + "System.ComponentModel.Composition": "5.0.0", + "System.ComponentModel.Composition.Registration": "5.0.0", + "System.Configuration.ConfigurationManager": "5.0.0", + "System.Data.DataSetExtensions": "4.5.0", + "System.Data.Odbc": "5.0.0", + "System.Data.OleDb": "5.0.0", + "System.Data.SqlClient": "4.8.1", + "System.Diagnostics.EventLog": "5.0.0", + "System.Diagnostics.PerformanceCounter": "5.0.0", + "System.DirectoryServices": "5.0.0", + "System.DirectoryServices.AccountManagement": "5.0.0", + "System.DirectoryServices.Protocols": "5.0.0", + "System.Drawing.Common": "5.0.0", + "System.IO.FileSystem.AccessControl": "5.0.0", + "System.IO.Packaging": "5.0.0", + "System.IO.Pipes.AccessControl": "5.0.0", + "System.IO.Ports": "5.0.0", + "System.Management": "5.0.0", + "System.Reflection.Context": "5.0.0", + "System.Reflection.Emit": "4.7.0", + "System.Reflection.Emit.ILGeneration": "4.7.0", + "System.Reflection.Emit.Lightweight": "4.7.0", + "System.Runtime.Caching": "5.0.0", + "System.Security.AccessControl": "5.0.0", + "System.Security.Cryptography.Cng": "5.0.0", + "System.Security.Cryptography.Pkcs": "5.0.0", + "System.Security.Cryptography.ProtectedData": "5.0.0", + "System.Security.Cryptography.Xml": "5.0.0", + "System.Security.Permissions": "5.0.0", + "System.Security.Principal.Windows": "5.0.0", + "System.ServiceModel.Duplex": "4.7.0", + "System.ServiceModel.Http": "4.7.0", + "System.ServiceModel.NetTcp": "4.7.0", + "System.ServiceModel.Primitives": "4.7.0", + "System.ServiceModel.Security": "4.7.0", + "System.ServiceModel.Syndication": "5.0.0", + "System.ServiceProcess.ServiceController": "5.0.0", + "System.Text.Encoding.CodePages": "5.0.0", + "System.Threading.AccessControl": "5.0.0" + } + }, + "Microsoft.WSMan.Management/7.1.3": { + "type": "package", + "dependencies": { + "Microsoft.WSMan.Runtime": "7.1.3", + "System.Management.Automation": "7.1.3", + "System.ServiceProcess.ServiceController": "5.0.0" + }, + "compile": { + "ref/net5.0/System.Management.Automation.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net5.0/Microsoft.WSMan.Management.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.WSMan.Runtime/7.1.3": { + "type": "package", + "compile": { + "ref/net5.0/System.Management.Automation.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net5.0/Microsoft.WSMan.Runtime.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Namotion.Reflection/1.0.14": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.3.0" + }, + "compile": { + "lib/netstandard2.0/Namotion.Reflection.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Namotion.Reflection.dll": {} + } + }, + "Newtonsoft.Json/12.0.3": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "NJsonSchema/10.2.2": { + "type": "package", + "dependencies": { + "Namotion.Reflection": "1.0.14", + "Newtonsoft.Json": "9.0.1" + }, + "compile": { + "lib/netstandard2.0/NJsonSchema.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NJsonSchema.dll": {} + } + }, + "runtime.linux-arm.runtime.native.System.IO.Ports/5.0.0-rtm.20519.4": { + "type": "package", + "runtimeTargets": { + "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so": { + "assetType": "native", + "rid": "linux-arm" + } + } + }, + "runtime.linux-arm64.runtime.native.System.IO.Ports/5.0.0-rtm.20519.4": { + "type": "package", + "runtimeTargets": { + "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so": { + "assetType": "native", + "rid": "linux-arm64" + } + } + }, + "runtime.linux-x64.runtime.native.System.IO.Ports/5.0.0-rtm.20519.4": { + "type": "package", + "runtimeTargets": { + "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so": { + "assetType": "native", + "rid": "linux-x64" + } + } + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "type": "package", + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.native.System.IO.Ports/5.0.0": { + "type": "package", + "dependencies": { + "runtime.linux-arm.runtime.native.System.IO.Ports": "5.0.0-rtm.20519.4", + "runtime.linux-arm64.runtime.native.System.IO.Ports": "5.0.0-rtm.20519.4", + "runtime.linux-x64.runtime.native.System.IO.Ports": "5.0.0-rtm.20519.4", + "runtime.osx-x64.runtime.native.System.IO.Ports": "5.0.0-rtm.20519.4" + } + }, + "runtime.osx-x64.runtime.native.System.IO.Ports/5.0.0-rtm.20519.4": { + "type": "package", + "runtimeTargets": { + "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib": { + "assetType": "native", + "rid": "osx-x64" + } + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "assetType": "native", + "rid": "win-arm64" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "assetType": "native", + "rid": "win-x64" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "System.CodeDom/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.CodeDom.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.CodeDom.dll": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.Collections.Immutable/1.5.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Collections.Immutable.dll": {} + } + }, + "System.ComponentModel.Composition/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.ComponentModel.Composition.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/System.ComponentModel.Composition.dll": {} + } + }, + "System.ComponentModel.Composition.Registration/5.0.0": { + "type": "package", + "dependencies": { + "System.ComponentModel.Composition": "5.0.0", + "System.Reflection.Context": "5.0.0" + }, + "compile": { + "ref/netstandard2.1/System.ComponentModel.Composition.Registration.dll": {} + }, + "runtime": { + "lib/netstandard2.1/System.ComponentModel.Composition.Registration.dll": {} + } + }, + "System.Configuration.ConfigurationManager/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "5.0.0", + "System.Security.Permissions": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + } + }, + "System.Data.DataSetExtensions/4.5.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Data.DataSetExtensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Data.DataSetExtensions.dll": {} + } + }, + "System.Data.Odbc/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Data.Odbc.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Data.Odbc.dll": {} + }, + "runtimeTargets": { + "runtimes/freebsd/lib/netcoreapp2.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "freebsd" + }, + "runtimes/linux/lib/netcoreapp2.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "linux" + }, + "runtimes/osx/lib/netcoreapp2.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/win/lib/netcoreapp2.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Data.OleDb/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "5.0.0", + "System.Configuration.ConfigurationManager": "5.0.0", + "System.Diagnostics.PerformanceCounter": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Data.OleDb.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Data.OleDb.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Data.OleDb.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Data.SqlClient/4.8.2": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "runtime.native.System.Data.SqlClient.sni": "4.7.0" + }, + "compile": { + "ref/netcoreapp2.1/System.Data.SqlClient.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.Data.SqlClient.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.6.0": { + "type": "package", + "compile": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.EventLog/5.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.1", + "Microsoft.Win32.Registry": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Diagnostics.EventLog.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.Messages.dll": { + "assetType": "runtime", + "rid": "win" + }, + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.PerformanceCounter/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.Win32.Registry": "5.0.0", + "System.Configuration.ConfigurationManager": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.IO.FileSystem.AccessControl": "5.0.0", + "System.Security.AccessControl": "5.0.0", + "System.Security.Permissions": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.DirectoryServices.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices.AccountManagement/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Configuration.ConfigurationManager": "5.0.0", + "System.DirectoryServices": "5.0.0", + "System.DirectoryServices.Protocols": "5.0.0", + "System.IO.FileSystem.AccessControl": "5.0.0", + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.DirectoryServices.AccountManagement.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.AccountManagement.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.AccountManagement.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices.Protocols/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.DirectoryServices.Protocols.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll": {} + }, + "runtimeTargets": { + "runtimes/linux/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "linux" + }, + "runtimes/osx/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Drawing.Common/5.0.2": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "5.0.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Drawing.Common.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Drawing.Common.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Formats.Asn1/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Formats.Asn1.dll": {} + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + } + }, + "System.IO.FileSystem.AccessControl/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Packaging/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.IO.Packaging.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.IO.Packaging.dll": {} + } + }, + "System.IO.Pipes.AccessControl/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/net5.0/System.IO.Pipes.AccessControl.dll": {} + }, + "runtime": { + "lib/net5.0/System.IO.Pipes.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net5.0/System.IO.Pipes.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Ports/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "5.0.0", + "runtime.native.System.IO.Ports": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.IO.Ports.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.IO.Ports.dll": {} + }, + "runtimeTargets": { + "runtimes/linux/lib/netstandard2.0/System.IO.Ports.dll": { + "assetType": "runtime", + "rid": "linux" + }, + "runtimes/osx/lib/netstandard2.0/System.IO.Ports.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/win/lib/netstandard2.0/System.IO.Ports.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Management/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.Win32.Registry": "5.0.0", + "System.CodeDom": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Management.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Management.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Management.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Management.Automation/7.1.3": { + "type": "package", + "dependencies": { + "Microsoft.ApplicationInsights": "2.15.0", + "Microsoft.Management.Infrastructure": "2.0.0", + "Microsoft.PowerShell.CoreCLR.Eventing": "7.1.3", + "Microsoft.PowerShell.Native": "7.1.0", + "Microsoft.Win32.Registry.AccessControl": "5.0.0", + "Newtonsoft.Json": "12.0.3", + "System.Configuration.ConfigurationManager": "5.0.0", + "System.DirectoryServices": "5.0.0", + "System.IO.FileSystem.AccessControl": "5.0.0", + "System.Management": "5.0.0", + "System.Runtime.CompilerServices.Unsafe": "5.0.0", + "System.Security.AccessControl": "5.0.0", + "System.Security.Cryptography.Pkcs": "5.0.1", + "System.Security.Permissions": "5.0.0", + "System.Text.Encoding.CodePages": "5.0.0" + }, + "compile": { + "ref/net5.0/System.Management.Automation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net5.0/System.Management.Automation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net5.0/System.Management.Automation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Memory/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Net.Http.WinHttpHandler/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Private.ServiceModel/4.7.0": { + "type": "package", + "dependencies": { + "System.Reflection.DispatchProxy": "4.5.0", + "System.Security.Cryptography.Xml": "4.5.0", + "System.Security.Principal.Windows": "4.5.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Private.ServiceModel.dll": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + } + }, + "System.Reflection.Context/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Reflection.Context.dll": {} + }, + "runtime": { + "lib/netstandard2.1/System.Reflection.Context.dll": {} + } + }, + "System.Reflection.DispatchProxy/4.5.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Reflection.DispatchProxy.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/System.Reflection.DispatchProxy.dll": {} + } + }, + "System.Reflection.Emit/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Reflection.Emit.Lightweight/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + } + }, + "System.Reflection.Metadata/1.6.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + } + }, + "System.Runtime.Caching/5.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": {} + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/_._": {} + } + }, + "System.Security.AccessControl/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/5.0.0": { + "type": "package", + "dependencies": { + "System.Formats.Asn1": "5.0.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Pkcs/5.0.1": { + "type": "package", + "dependencies": { + "System.Formats.Asn1": "5.0.0", + "System.Security.Cryptography.Cng": "5.0.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.ProtectedData/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Xml/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.Pkcs": "5.0.0", + "System.Security.Permissions": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.Cryptography.Xml.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.Xml.dll": {} + } + }, + "System.Security.Permissions/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Windows.Extensions": "5.0.0" + }, + "compile": { + "ref/net5.0/System.Security.Permissions.dll": {} + }, + "runtime": { + "lib/net5.0/System.Security.Permissions.dll": {} + } + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.ServiceModel.Duplex/4.7.0": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.7.0", + "System.ServiceModel.Primitives": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.ServiceModel.Duplex.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.ServiceModel.Duplex.dll": {} + } + }, + "System.ServiceModel.Http/4.7.0": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.7.0", + "System.ServiceModel.Primitives": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.ServiceModel.Http.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.ServiceModel.Http.dll": {} + } + }, + "System.ServiceModel.NetTcp/4.7.0": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.7.0", + "System.ServiceModel.Primitives": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.ServiceModel.NetTcp.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.ServiceModel.NetTcp.dll": {} + } + }, + "System.ServiceModel.Primitives/4.7.0": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.7.0" + }, + "compile": { + "ref/netcoreapp2.1/System.ServiceModel.Primitives.dll": {}, + "ref/netcoreapp2.1/System.ServiceModel.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.ServiceModel.Primitives.dll": {}, + "lib/netcoreapp2.1/System.ServiceModel.dll": {} + } + }, + "System.ServiceModel.Security/4.7.0": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.7.0", + "System.ServiceModel.Primitives": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.ServiceModel.Security.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.ServiceModel.Security.dll": {} + } + }, + "System.ServiceModel.Syndication/5.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/System.ServiceModel.Syndication.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.ServiceModel.Syndication.dll": {} + } + }, + "System.ServiceProcess.ServiceController/5.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.EventLog": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.ServiceProcess.ServiceController.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.CodePages/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encodings.Web/5.0.1": { + "type": "package", + "compile": { + "lib/netcoreapp3.0/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Text.Encodings.Web.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.AccessControl/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Threading.AccessControl.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Threading.AccessControl.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Threading.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Tasks.Extensions/4.5.3": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Windows.Extensions/5.0.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "5.0.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Windows.Extensions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + } + } + }, + "libraries": { + "Markdig.Signed/0.21.1": { + "sha512": "Lg0FPQdKUXai4/XZpQGlQ/HldpHsGnsU6Jd+udJgHj/R7i3ngM2TtR+SZqdHRtgItIHe3dFh2DS/M5qXGSPRiQ==", + "type": "package", + "path": "markdig.signed/0.21.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/Markdig.Signed.dll", + "lib/net452/Markdig.Signed.xml", + "lib/netcoreapp2.1/Markdig.Signed.dll", + "lib/netcoreapp2.1/Markdig.Signed.xml", + "lib/netcoreapp3.1/Markdig.Signed.dll", + "lib/netcoreapp3.1/Markdig.Signed.xml", + "lib/netstandard2.0/Markdig.Signed.dll", + "lib/netstandard2.0/Markdig.Signed.xml", + "lib/netstandard2.1/Markdig.Signed.dll", + "lib/netstandard2.1/Markdig.Signed.xml", + "markdig.signed.0.21.1.nupkg.sha512", + "markdig.signed.nuspec" + ] + }, + "Microsoft.ApplicationInsights/2.15.0": { + "sha512": "tG9WZoFc0BTbkj+UjH4IUp8qkT9NA5st8zvPzlHbU8rJDgPFqZDJ3SSAQajl42jet1ghhJ5ZixsjjqVvwi4kaQ==", + "type": "package", + "path": "microsoft.applicationinsights/2.15.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net452/Microsoft.ApplicationInsights.dll", + "lib/net452/Microsoft.ApplicationInsights.pdb", + "lib/net452/Microsoft.ApplicationInsights.xml", + "lib/net46/Microsoft.ApplicationInsights.dll", + "lib/net46/Microsoft.ApplicationInsights.pdb", + "lib/net46/Microsoft.ApplicationInsights.xml", + "lib/netstandard2.0/Microsoft.ApplicationInsights.dll", + "lib/netstandard2.0/Microsoft.ApplicationInsights.pdb", + "lib/netstandard2.0/Microsoft.ApplicationInsights.xml", + "microsoft.applicationinsights.2.15.0.nupkg.sha512", + "microsoft.applicationinsights.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/3.0.0": { + "sha512": "ojG5pGAhTPmjxRGTNvuszO3H8XPZqksDwr9xLd4Ae/JBjZZdl6GuoLk7uLMf+o7yl5wO0TAqoWcEKkEWqrZE5g==", + "type": "package", + "path": "microsoft.codeanalysis.analyzers/3.0.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "EULA.rtf", + "ThirdPartyNotices.rtf", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "build/Microsoft.CodeAnalysis.Analyzers.props", + "build/Microsoft.CodeAnalysis.Analyzers.targets", + "documentation/Analyzer Configuration.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.sarif", + "editorconfig/AllRulesDefault/.editorconfig", + "editorconfig/AllRulesDisabled/.editorconfig", + "editorconfig/AllRulesEnabled/.editorconfig", + "editorconfig/CorrectnessRulesDefault/.editorconfig", + "editorconfig/CorrectnessRulesEnabled/.editorconfig", + "editorconfig/DataflowRulesDefault/.editorconfig", + "editorconfig/DataflowRulesEnabled/.editorconfig", + "editorconfig/LibraryRulesDefault/.editorconfig", + "editorconfig/LibraryRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig", + "editorconfig/PortedFromFxCopRulesDefault/.editorconfig", + "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig", + "microsoft.codeanalysis.analyzers.3.0.0.nupkg.sha512", + "microsoft.codeanalysis.analyzers.nuspec", + "rulesets/AllRulesDefault.ruleset", + "rulesets/AllRulesDisabled.ruleset", + "rulesets/AllRulesEnabled.ruleset", + "rulesets/CorrectnessRulesDefault.ruleset", + "rulesets/CorrectnessRulesEnabled.ruleset", + "rulesets/DataflowRulesDefault.ruleset", + "rulesets/DataflowRulesEnabled.ruleset", + "rulesets/LibraryRulesDefault.ruleset", + "rulesets/LibraryRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset", + "rulesets/PortedFromFxCopRulesDefault.ruleset", + "rulesets/PortedFromFxCopRulesEnabled.ruleset", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/3.7.0": { + "sha512": "SFEdnbw8204hTlde3JePYSIpNX58h/MMXa7LctUsUDigWMR8Ar9gE8LnsLqAIFM0O33JEuQbJ0G4Sat+cPGldw==", + "type": "package", + "path": "microsoft.codeanalysis.common/3.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.pdb", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.xml", + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "microsoft.codeanalysis.common.3.7.0.nupkg.sha512", + "microsoft.codeanalysis.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp/3.7.0": { + "sha512": "sKi5PIVy9nVDerkbplY6OQhJBNzEO4XJsMGrnmb6KFEa6K1ulGCHIv6NtDjdUQ/dGrouU3OExc3yzww0COD76w==", + "type": "package", + "path": "microsoft.codeanalysis.csharp/3.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.xml", + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "microsoft.codeanalysis.csharp.3.7.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.nuspec" + ] + }, + "Microsoft.CSharp/4.3.0": { + "sha512": "P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==", + "type": "package", + "path": "microsoft.csharp/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.3.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.Management.Infrastructure/2.0.0": { + "sha512": "IaKZRNBBv3sdrmBWd+aqwHq8cVHk/3WgWFAN/dt40MRY9rbtHiDfTTmaEN0tGTmQqGCGDo/ncntA8MvFMvcsRw==", + "type": "package", + "path": "microsoft.management.infrastructure/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard1.6/_._", + "microsoft.management.infrastructure.2.0.0.nupkg.sha512", + "microsoft.management.infrastructure.nuspec", + "ref/net451/Microsoft.Management.Infrastructure.Native.dll", + "ref/net451/Microsoft.Management.Infrastructure.dll", + "ref/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "ref/netstandard1.6/Microsoft.Management.Infrastructure.dll" + ] + }, + "Microsoft.Management.Infrastructure.CimCmdlets/7.1.3": { + "sha512": "IgXC2hL2nerZdLlmV8isXXXUVwC326k/Bodpzm+pxXmOU+D4XPY4789CZLPJFlOVMHR6ARmHE/M+iQpY3jeeGA==", + "type": "package", + "path": "microsoft.management.infrastructure.cimcmdlets/7.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.management.infrastructure.cimcmdlets.7.1.3.nupkg.sha512", + "microsoft.management.infrastructure.cimcmdlets.nuspec", + "ref/net5.0/System.Management.Automation.dll", + "runtimes/win/lib/net5.0/Microsoft.Management.Infrastructure.CimCmdlets.dll" + ] + }, + "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { + "sha512": "p0lslMX5bdWLxO2P7ao+rjAMOB0LEwPYpzvdCQ2OEYgX2NxFpQ8ILvqPGnYlTAb53rT8gu5DyIol1HboHFYfxQ==", + "type": "package", + "path": "microsoft.management.infrastructure.runtime.unix/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512", + "microsoft.management.infrastructure.runtime.unix.nuspec", + "runtimes/unix/lib/net451/_._", + "runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll" + ] + }, + "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { + "sha512": "vjBWQeDOjgernkrOdbEgn7M70SF7hof7ORdKPSlL06Uc15+oYdth5dZju9KsgUoti/cwnkZTiwtDx/lRtay0sA==", + "type": "package", + "path": "microsoft.management.infrastructure.runtime.win/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512", + "microsoft.management.infrastructure.runtime.win.nuspec", + "runtimes/win-arm/lib/net451/_._", + "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win-arm/native/mi.dll", + "runtimes/win-arm/native/miutils.dll", + "runtimes/win-arm64/lib/net451/_._", + "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win-arm64/native/mi.dll", + "runtimes/win-arm64/native/miutils.dll", + "runtimes/win10-x64/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win10-x64/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win10-x64/native/mi.dll", + "runtimes/win10-x64/native/miutils.dll", + "runtimes/win10-x86/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win10-x86/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win10-x86/native/mi.dll", + "runtimes/win10-x86/native/miutils.dll", + "runtimes/win7-x64/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win7-x64/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win7-x64/native/mi.dll", + "runtimes/win7-x64/native/miutils.dll", + "runtimes/win7-x86/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win7-x86/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win7-x86/native/mi.dll", + "runtimes/win7-x86/native/miutils.dll", + "runtimes/win8-x64/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win8-x64/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win8-x64/native/mi.dll", + "runtimes/win8-x64/native/miutils.dll", + "runtimes/win8-x86/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win8-x86/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win8-x86/native/mi.dll", + "runtimes/win8-x86/native/miutils.dll", + "runtimes/win81-x64/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win81-x64/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win81-x64/native/mi.dll", + "runtimes/win81-x64/native/miutils.dll", + "runtimes/win81-x86/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win81-x86/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win81-x86/native/mi.dll", + "runtimes/win81-x86/native/miutils.dll" + ] + }, + "Microsoft.NETCore.Platforms/5.0.1": { + "sha512": "z3YFkbnl1RMj6lb+Bm/2tsZ0cJCULlB4uPOFqlj6dNSm/8feJl4UrXmG6TcZh8ipJQwkAS5I6UCs1FnGog4QZg==", + "type": "package", + "path": "microsoft.netcore.platforms/5.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.5.0.1.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "sha512": "SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==", + "type": "package", + "path": "microsoft.netcore.windows.apisets/1.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512", + "microsoft.netcore.windows.apisets.nuspec", + "runtime.json" + ] + }, + "Microsoft.PowerShell.Commands.Diagnostics/7.1.3": { + "sha512": "LjYU4Fn/CrA/8hBpadisKjnycJgGkS7GlP3PgnFCgVhMq5rsTABgm0akA9rucH8NQnFN9LjSk9dPrkL0wpP6Eg==", + "type": "package", + "path": "microsoft.powershell.commands.diagnostics/7.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.powershell.commands.diagnostics.7.1.3.nupkg.sha512", + "microsoft.powershell.commands.diagnostics.nuspec", + "ref/net5.0/System.Management.Automation.dll", + "runtimes/win/lib/net5.0/Microsoft.PowerShell.Commands.Diagnostics.dll" + ] + }, + "Microsoft.PowerShell.Commands.Management/7.1.3": { + "sha512": "0z2I3xpfLTFb5lygdytPido1TEhpvurDFQSDRnYl0v1zIEbStFIPeJajT0WhqPhSIzXmI4uj/+MeToD/79qaHQ==", + "type": "package", + "path": "microsoft.powershell.commands.management/7.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.powershell.commands.management.7.1.3.nupkg.sha512", + "microsoft.powershell.commands.management.nuspec", + "ref/net5.0/System.Management.Automation.dll", + "runtimes/unix/lib/net5.0/Microsoft.PowerShell.Commands.Management.dll", + "runtimes/win/lib/net5.0/Microsoft.PowerShell.Commands.Management.dll" + ] + }, + "Microsoft.PowerShell.Commands.Utility/7.1.3": { + "sha512": "AsQTmJdC13QN0JyqH0cy2vqi2VM9kGKWkfzGpyktYaY4lnWJbnzCg/0dOD1SJlmB+41DSyjTg03RBgTPOsoOXA==", + "type": "package", + "path": "microsoft.powershell.commands.utility/7.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.powershell.commands.utility.7.1.3.nupkg.sha512", + "microsoft.powershell.commands.utility.nuspec", + "ref/net5.0/Microsoft.PowerShell.Commands.Utility.dll", + "runtimes/unix/lib/net5.0/Microsoft.PowerShell.Commands.Utility.dll", + "runtimes/win/lib/net5.0/Microsoft.PowerShell.Commands.Utility.dll" + ] + }, + "Microsoft.PowerShell.ConsoleHost/7.1.3": { + "sha512": "u/iNvSQ/cGYzxj1TJQCtcSM78H8pbpPiYs30I1HrJxvtj0tqKtBagzWvMoeCFYlA6p4ZgztPHSKr4xiHh/Wrxw==", + "type": "package", + "path": "microsoft.powershell.consolehost/7.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.powershell.consolehost.7.1.3.nupkg.sha512", + "microsoft.powershell.consolehost.nuspec", + "ref/net5.0/Microsoft.PowerShell.ConsoleHost.dll", + "runtimes/unix/lib/net5.0/Microsoft.PowerShell.ConsoleHost.dll", + "runtimes/win/lib/net5.0/Microsoft.PowerShell.ConsoleHost.dll" + ] + }, + "Microsoft.PowerShell.CoreCLR.Eventing/7.1.3": { + "sha512": "gsshJYIbjJjlTDGlDntENxMkRd+KWZo0CXF1jLJrpqtF51nmP5AHMKysFXRTPBWTNFmFTZ0tqgazkzF5S92/VA==", + "type": "package", + "path": "microsoft.powershell.coreclr.eventing/7.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.powershell.coreclr.eventing.7.1.3.nupkg.sha512", + "microsoft.powershell.coreclr.eventing.nuspec", + "ref/net5.0/System.Management.Automation.dll", + "runtimes/win/lib/net5.0/Microsoft.PowerShell.CoreCLR.Eventing.dll" + ] + }, + "Microsoft.PowerShell.MarkdownRender/7.1.3": { + "sha512": "86h8paEYo7BQ017G47cKL1twAxdhOD9sJRu6NSEuwbDgjVd3t5fahgLz7YDxwugcxDiA1TLCgH1cwUjChvoOrw==", + "type": "package", + "path": "microsoft.powershell.markdownrender/7.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.powershell.markdownrender.7.1.3.nupkg.sha512", + "microsoft.powershell.markdownrender.nuspec", + "ref/net5.0/System.Management.Automation.dll", + "runtimes/unix/lib/net5.0/Microsoft.PowerShell.MarkdownRender.dll", + "runtimes/win/lib/net5.0/Microsoft.PowerShell.MarkdownRender.dll" + ] + }, + "Microsoft.PowerShell.Native/7.1.0": { + "sha512": "PJ/ei1HnYC+CMVDdUMT96PgWFONwVv/ZaJ5j//qLdk073alzdzOPWZiGsxYimJaRLP0TW4uomgIsR9q6jrf48A==", + "type": "package", + "path": "microsoft.powershell.native/7.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "PSRP_version.txt", + "Powershell_black_64.png", + "microsoft.powershell.native.7.1.0.nupkg.sha512", + "microsoft.powershell.native.nuspec", + "runtimes/linux-arm/native/libpsl-native.so", + "runtimes/linux-arm64/native/libpsl-native.so", + "runtimes/linux-musl-x64/native/libpsl-native.so", + "runtimes/linux-x64/native/libmi.so", + "runtimes/linux-x64/native/libpsl-native.so", + "runtimes/linux-x64/native/libpsrpclient.so", + "runtimes/osx/native/libmi.dylib", + "runtimes/osx/native/libpsl-native.dylib", + "runtimes/osx/native/libpsrpclient.dylib", + "runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll", + "runtimes/win-arm/native/pwrshplugin.dll", + "runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll", + "runtimes/win-arm64/native/pwrshplugin.dll", + "runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll", + "runtimes/win-x64/native/pwrshplugin.dll", + "runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll", + "runtimes/win-x86/native/pwrshplugin.dll" + ] + }, + "Microsoft.PowerShell.SDK/7.1.3": { + "sha512": "MwD8qwp+7LjtO5YVD5vSNtb3VlsMJGEg5PL5R3IgtFXfN3MDzvOF0BUEw60FC+Sf80RvYl3si1HacXr5DXxM5Q==", + "type": "package", + "path": "microsoft.powershell.sdk/7.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "contentFiles/any/any/ref/Microsoft.CSharp.dll", + "contentFiles/any/any/ref/Microsoft.VisualBasic.Core.dll", + "contentFiles/any/any/ref/Microsoft.VisualBasic.dll", + "contentFiles/any/any/ref/Microsoft.Win32.Primitives.dll", + "contentFiles/any/any/ref/System.AppContext.dll", + "contentFiles/any/any/ref/System.Buffers.dll", + "contentFiles/any/any/ref/System.Collections.Concurrent.dll", + "contentFiles/any/any/ref/System.Collections.Immutable.dll", + "contentFiles/any/any/ref/System.Collections.NonGeneric.dll", + "contentFiles/any/any/ref/System.Collections.Specialized.dll", + "contentFiles/any/any/ref/System.Collections.dll", + "contentFiles/any/any/ref/System.ComponentModel.Annotations.dll", + "contentFiles/any/any/ref/System.ComponentModel.DataAnnotations.dll", + "contentFiles/any/any/ref/System.ComponentModel.EventBasedAsync.dll", + "contentFiles/any/any/ref/System.ComponentModel.Primitives.dll", + "contentFiles/any/any/ref/System.ComponentModel.TypeConverter.dll", + "contentFiles/any/any/ref/System.ComponentModel.dll", + "contentFiles/any/any/ref/System.Configuration.dll", + "contentFiles/any/any/ref/System.Console.dll", + "contentFiles/any/any/ref/System.Core.dll", + "contentFiles/any/any/ref/System.Data.Common.dll", + "contentFiles/any/any/ref/System.Data.DataSetExtensions.dll", + "contentFiles/any/any/ref/System.Data.dll", + "contentFiles/any/any/ref/System.Diagnostics.Contracts.dll", + "contentFiles/any/any/ref/System.Diagnostics.Debug.dll", + "contentFiles/any/any/ref/System.Diagnostics.DiagnosticSource.dll", + "contentFiles/any/any/ref/System.Diagnostics.FileVersionInfo.dll", + "contentFiles/any/any/ref/System.Diagnostics.Process.dll", + "contentFiles/any/any/ref/System.Diagnostics.StackTrace.dll", + "contentFiles/any/any/ref/System.Diagnostics.TextWriterTraceListener.dll", + "contentFiles/any/any/ref/System.Diagnostics.Tools.dll", + "contentFiles/any/any/ref/System.Diagnostics.TraceSource.dll", + "contentFiles/any/any/ref/System.Diagnostics.Tracing.dll", + "contentFiles/any/any/ref/System.Drawing.Primitives.dll", + "contentFiles/any/any/ref/System.Drawing.dll", + "contentFiles/any/any/ref/System.Dynamic.Runtime.dll", + "contentFiles/any/any/ref/System.Formats.Asn1.dll", + "contentFiles/any/any/ref/System.Globalization.Calendars.dll", + "contentFiles/any/any/ref/System.Globalization.Extensions.dll", + "contentFiles/any/any/ref/System.Globalization.dll", + "contentFiles/any/any/ref/System.IO.Compression.Brotli.dll", + "contentFiles/any/any/ref/System.IO.Compression.FileSystem.dll", + "contentFiles/any/any/ref/System.IO.Compression.ZipFile.dll", + "contentFiles/any/any/ref/System.IO.Compression.dll", + "contentFiles/any/any/ref/System.IO.FileSystem.DriveInfo.dll", + "contentFiles/any/any/ref/System.IO.FileSystem.Primitives.dll", + "contentFiles/any/any/ref/System.IO.FileSystem.Watcher.dll", + "contentFiles/any/any/ref/System.IO.FileSystem.dll", + "contentFiles/any/any/ref/System.IO.IsolatedStorage.dll", + "contentFiles/any/any/ref/System.IO.MemoryMappedFiles.dll", + "contentFiles/any/any/ref/System.IO.Pipes.dll", + "contentFiles/any/any/ref/System.IO.UnmanagedMemoryStream.dll", + "contentFiles/any/any/ref/System.IO.dll", + "contentFiles/any/any/ref/System.Linq.Expressions.dll", + "contentFiles/any/any/ref/System.Linq.Parallel.dll", + "contentFiles/any/any/ref/System.Linq.Queryable.dll", + "contentFiles/any/any/ref/System.Linq.dll", + "contentFiles/any/any/ref/System.Memory.dll", + "contentFiles/any/any/ref/System.Net.Http.Json.dll", + "contentFiles/any/any/ref/System.Net.Http.dll", + "contentFiles/any/any/ref/System.Net.HttpListener.dll", + "contentFiles/any/any/ref/System.Net.Mail.dll", + "contentFiles/any/any/ref/System.Net.NameResolution.dll", + "contentFiles/any/any/ref/System.Net.NetworkInformation.dll", + "contentFiles/any/any/ref/System.Net.Ping.dll", + "contentFiles/any/any/ref/System.Net.Primitives.dll", + "contentFiles/any/any/ref/System.Net.Requests.dll", + "contentFiles/any/any/ref/System.Net.Security.dll", + "contentFiles/any/any/ref/System.Net.ServicePoint.dll", + "contentFiles/any/any/ref/System.Net.Sockets.dll", + "contentFiles/any/any/ref/System.Net.WebClient.dll", + "contentFiles/any/any/ref/System.Net.WebHeaderCollection.dll", + "contentFiles/any/any/ref/System.Net.WebProxy.dll", + "contentFiles/any/any/ref/System.Net.WebSockets.Client.dll", + "contentFiles/any/any/ref/System.Net.WebSockets.dll", + "contentFiles/any/any/ref/System.Net.dll", + "contentFiles/any/any/ref/System.Numerics.Vectors.dll", + "contentFiles/any/any/ref/System.Numerics.dll", + "contentFiles/any/any/ref/System.ObjectModel.dll", + "contentFiles/any/any/ref/System.Reflection.DispatchProxy.dll", + "contentFiles/any/any/ref/System.Reflection.Emit.ILGeneration.dll", + "contentFiles/any/any/ref/System.Reflection.Emit.Lightweight.dll", + "contentFiles/any/any/ref/System.Reflection.Emit.dll", + "contentFiles/any/any/ref/System.Reflection.Extensions.dll", + "contentFiles/any/any/ref/System.Reflection.Metadata.dll", + "contentFiles/any/any/ref/System.Reflection.Primitives.dll", + "contentFiles/any/any/ref/System.Reflection.TypeExtensions.dll", + "contentFiles/any/any/ref/System.Reflection.dll", + "contentFiles/any/any/ref/System.Resources.Reader.dll", + "contentFiles/any/any/ref/System.Resources.ResourceManager.dll", + "contentFiles/any/any/ref/System.Resources.Writer.dll", + "contentFiles/any/any/ref/System.Runtime.CompilerServices.Unsafe.dll", + "contentFiles/any/any/ref/System.Runtime.CompilerServices.VisualC.dll", + "contentFiles/any/any/ref/System.Runtime.Extensions.dll", + "contentFiles/any/any/ref/System.Runtime.Handles.dll", + "contentFiles/any/any/ref/System.Runtime.InteropServices.RuntimeInformation.dll", + "contentFiles/any/any/ref/System.Runtime.InteropServices.dll", + "contentFiles/any/any/ref/System.Runtime.Intrinsics.dll", + "contentFiles/any/any/ref/System.Runtime.Loader.dll", + "contentFiles/any/any/ref/System.Runtime.Numerics.dll", + "contentFiles/any/any/ref/System.Runtime.Serialization.Formatters.dll", + "contentFiles/any/any/ref/System.Runtime.Serialization.Json.dll", + "contentFiles/any/any/ref/System.Runtime.Serialization.Primitives.dll", + "contentFiles/any/any/ref/System.Runtime.Serialization.Xml.dll", + "contentFiles/any/any/ref/System.Runtime.Serialization.dll", + "contentFiles/any/any/ref/System.Runtime.dll", + "contentFiles/any/any/ref/System.Security.Claims.dll", + "contentFiles/any/any/ref/System.Security.Cryptography.Algorithms.dll", + "contentFiles/any/any/ref/System.Security.Cryptography.Csp.dll", + "contentFiles/any/any/ref/System.Security.Cryptography.Encoding.dll", + "contentFiles/any/any/ref/System.Security.Cryptography.Primitives.dll", + "contentFiles/any/any/ref/System.Security.Cryptography.X509Certificates.dll", + "contentFiles/any/any/ref/System.Security.Principal.dll", + "contentFiles/any/any/ref/System.Security.SecureString.dll", + "contentFiles/any/any/ref/System.Security.dll", + "contentFiles/any/any/ref/System.ServiceModel.Web.dll", + "contentFiles/any/any/ref/System.ServiceProcess.dll", + "contentFiles/any/any/ref/System.Text.Encoding.CodePages.dll", + "contentFiles/any/any/ref/System.Text.Encoding.Extensions.dll", + "contentFiles/any/any/ref/System.Text.Encoding.dll", + "contentFiles/any/any/ref/System.Text.Json.dll", + "contentFiles/any/any/ref/System.Text.RegularExpressions.dll", + "contentFiles/any/any/ref/System.Threading.Channels.dll", + "contentFiles/any/any/ref/System.Threading.Overlapped.dll", + "contentFiles/any/any/ref/System.Threading.Tasks.Dataflow.dll", + "contentFiles/any/any/ref/System.Threading.Tasks.Extensions.dll", + "contentFiles/any/any/ref/System.Threading.Tasks.Parallel.dll", + "contentFiles/any/any/ref/System.Threading.Tasks.dll", + "contentFiles/any/any/ref/System.Threading.Thread.dll", + "contentFiles/any/any/ref/System.Threading.ThreadPool.dll", + "contentFiles/any/any/ref/System.Threading.Timer.dll", + "contentFiles/any/any/ref/System.Threading.dll", + "contentFiles/any/any/ref/System.Transactions.Local.dll", + "contentFiles/any/any/ref/System.Transactions.dll", + "contentFiles/any/any/ref/System.ValueTuple.dll", + "contentFiles/any/any/ref/System.Web.HttpUtility.dll", + "contentFiles/any/any/ref/System.Web.dll", + "contentFiles/any/any/ref/System.Windows.dll", + "contentFiles/any/any/ref/System.Xml.Linq.dll", + "contentFiles/any/any/ref/System.Xml.ReaderWriter.dll", + "contentFiles/any/any/ref/System.Xml.Serialization.dll", + "contentFiles/any/any/ref/System.Xml.XDocument.dll", + "contentFiles/any/any/ref/System.Xml.XPath.XDocument.dll", + "contentFiles/any/any/ref/System.Xml.XPath.dll", + "contentFiles/any/any/ref/System.Xml.XmlDocument.dll", + "contentFiles/any/any/ref/System.Xml.XmlSerializer.dll", + "contentFiles/any/any/ref/System.Xml.dll", + "contentFiles/any/any/ref/System.dll", + "contentFiles/any/any/ref/WindowsBase.dll", + "contentFiles/any/any/ref/mscorlib.dll", + "contentFiles/any/any/ref/netstandard.dll", + "contentFiles/any/any/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1", + "contentFiles/any/any/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1", + "contentFiles/any/any/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1", + "contentFiles/any/any/runtimes/unix/lib/net5.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1", + "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/CimCmdlets/CimCmdlets.psd1", + "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml", + "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml", + "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml", + "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1", + "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1", + "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1", + "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1", + "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1", + "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1", + "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml", + "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/PSDiagnostics/PSDiagnostics.psd1", + "contentFiles/any/any/runtimes/win/lib/net5.0/Modules/PSDiagnostics/PSDiagnostics.psm1", + "microsoft.powershell.sdk.7.1.3.nupkg.sha512", + "microsoft.powershell.sdk.nuspec", + "ref/net5.0/Microsoft.PowerShell.Commands.Utility.dll", + "ref/net5.0/Microsoft.PowerShell.ConsoleHost.dll", + "ref/net5.0/System.Management.Automation.dll", + "runtimes/unix/lib/net5.0/Microsoft.PowerShell.SDK.dll", + "runtimes/win/lib/net5.0/Microsoft.PowerShell.SDK.dll" + ] + }, + "Microsoft.PowerShell.Security/7.1.3": { + "sha512": "hmXwtDMiF13vUTF1wk/FArwy/nOM5YNtNoOEY5Vrtf0TOiYyjx/PCsObMEPCb5jLgpUO2AC4b5gtVNmyEw/5LQ==", + "type": "package", + "path": "microsoft.powershell.security/7.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.powershell.security.7.1.3.nupkg.sha512", + "microsoft.powershell.security.nuspec", + "ref/net5.0/System.Management.Automation.dll", + "runtimes/unix/lib/net5.0/Microsoft.PowerShell.Security.dll", + "runtimes/win/lib/net5.0/Microsoft.PowerShell.Security.dll" + ] + }, + "Microsoft.Win32.Registry/5.0.0": { + "sha512": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", + "type": "package", + "path": "microsoft.win32.registry/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.5.0.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.Registry.AccessControl/5.0.0": { + "sha512": "rwF501ZS/xKGWz5H3RLBvwta6E5kcMLB0UYGTgrZ8nL5bvrbGmtEcEObgMC/qRFhA3og/0Zh+eacrcA+0FBXJA==", + "type": "package", + "path": "microsoft.win32.registry.accesscontrol/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.AccessControl.dll", + "lib/net461/Microsoft.Win32.Registry.AccessControl.dll", + "lib/net461/Microsoft.Win32.Registry.AccessControl.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.AccessControl.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.xml", + "microsoft.win32.registry.accesscontrol.5.0.0.nupkg.sha512", + "microsoft.win32.registry.accesscontrol.nuspec", + "ref/net46/Microsoft.Win32.Registry.AccessControl.dll", + "ref/net461/Microsoft.Win32.Registry.AccessControl.dll", + "ref/net461/Microsoft.Win32.Registry.AccessControl.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.AccessControl.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.AccessControl.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.AccessControl.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.AccessControl.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.AccessControl.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.AccessControl.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.AccessControl.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.AccessControl.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.AccessControl.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.AccessControl.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.AccessControl.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.AccessControl.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.AccessControl.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.AccessControl.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.SystemEvents/5.0.0": { + "sha512": "Bh6blKG8VAKvXiLe2L+sEsn62nc1Ij34MrNxepD2OCrS5cpCwQa9MeLyhVQPQ/R4Wlzwuy6wMK8hLb11QPDRsQ==", + "type": "package", + "path": "microsoft.win32.systemevents/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.5.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "ref/net461/Microsoft.Win32.SystemEvents.dll", + "ref/net461/Microsoft.Win32.SystemEvents.xml", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Windows.Compatibility/5.0.0": { + "sha512": "HujVMtkV1WTVlzbPWNZjHVG8ro6mIS15ul0XRLwmCq8NnbuI3C8bAUP3KdPTypK2D/Zr+u0q3m3qk7iM7b3JPg==", + "type": "package", + "path": "microsoft.windows.compatibility/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "microsoft.windows.compatibility.5.0.0.nupkg.sha512", + "microsoft.windows.compatibility.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.WSMan.Management/7.1.3": { + "sha512": "pSo+31uFqBNS2hXzb5X8MUXOy5BgzMdW0sadBeHA0kaGqSItVFniO/YI5nSboPzyFUPeJhENXnch/uQ3kBKsdg==", + "type": "package", + "path": "microsoft.wsman.management/7.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.wsman.management.7.1.3.nupkg.sha512", + "microsoft.wsman.management.nuspec", + "ref/net5.0/System.Management.Automation.dll", + "runtimes/win/lib/net5.0/Microsoft.WSMan.Management.dll" + ] + }, + "Microsoft.WSMan.Runtime/7.1.3": { + "sha512": "whAtJ6Gl/KoclB3NALkk1MptpP6vaVlA8zSuQo4AXBrMuSLUZZV9cbsc3f8Xb2c/5W/C+Of5fSusBGsaGt6wgQ==", + "type": "package", + "path": "microsoft.wsman.runtime/7.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.wsman.runtime.7.1.3.nupkg.sha512", + "microsoft.wsman.runtime.nuspec", + "ref/net5.0/System.Management.Automation.dll", + "runtimes/win/lib/net5.0/Microsoft.WSMan.Runtime.dll" + ] + }, + "Namotion.Reflection/1.0.14": { + "sha512": "wuJGiFvGfehH2w7jAhMbCJt0/rvUuHyqSZn0sMhNTviDfBZRyX8LFlR/ndQcofkGWulPDfH5nKYTeGXE8xBHPA==", + "type": "package", + "path": "namotion.reflection/1.0.14", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net40/Namotion.Reflection.dll", + "lib/net40/Namotion.Reflection.xml", + "lib/net45/Namotion.Reflection.dll", + "lib/net45/Namotion.Reflection.xml", + "lib/netstandard1.0/Namotion.Reflection.dll", + "lib/netstandard1.0/Namotion.Reflection.xml", + "lib/netstandard2.0/Namotion.Reflection.dll", + "lib/netstandard2.0/Namotion.Reflection.xml", + "namotion.reflection.1.0.14.nupkg.sha512", + "namotion.reflection.nuspec" + ] + }, + "Newtonsoft.Json/12.0.3": { + "sha512": "6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==", + "type": "package", + "path": "newtonsoft.json/12.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml", + "newtonsoft.json.12.0.3.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "NJsonSchema/10.2.2": { + "sha512": "s6oNUrjw5Ix5WVkYdU0vgyzoutZdi7p+uQqTGYa3QbLtjDYrkD4ahfGnfyCpHNoJUXun9pHKGy6AD0LJNcSgjQ==", + "type": "package", + "path": "njsonschema/10.2.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net40/NJsonSchema.dll", + "lib/net40/NJsonSchema.xml", + "lib/net45/NJsonSchema.dll", + "lib/net45/NJsonSchema.xml", + "lib/netstandard1.0/NJsonSchema.dll", + "lib/netstandard1.0/NJsonSchema.xml", + "lib/netstandard2.0/NJsonSchema.dll", + "lib/netstandard2.0/NJsonSchema.xml", + "njsonschema.10.2.2.nupkg.sha512", + "njsonschema.nuspec" + ] + }, + "runtime.linux-arm.runtime.native.System.IO.Ports/5.0.0-rtm.20519.4": { + "sha512": "Np6w3r1dSFB930GGZHIKCc5ZClRXZIqOrCAT0pzcd/zXnsZPvGqLZB1MnxAbVhvriJl71B0N0tJaaT1ICWXsyg==", + "type": "package", + "path": "runtime.linux-arm.runtime.native.system.io.ports/5.0.0-rtm.20519.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.linux-arm.runtime.native.system.io.ports.5.0.0-rtm.20519.4.nupkg.sha512", + "runtime.linux-arm.runtime.native.system.io.ports.nuspec", + "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.linux-arm64.runtime.native.System.IO.Ports/5.0.0-rtm.20519.4": { + "sha512": "VnGZmQ7pzMNkcTVdmGtXUQIbytK4Xk8F4/mxm0I+n7zbrsW/WNgLrWMTv9pb2Uyq09azXazNDQhZao4R4ebWcw==", + "type": "package", + "path": "runtime.linux-arm64.runtime.native.system.io.ports/5.0.0-rtm.20519.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.linux-arm64.runtime.native.system.io.ports.5.0.0-rtm.20519.4.nupkg.sha512", + "runtime.linux-arm64.runtime.native.system.io.ports.nuspec", + "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.linux-x64.runtime.native.System.IO.Ports/5.0.0-rtm.20519.4": { + "sha512": "kvMZgZjtcC6cA8Y8imKpjCpiOJKDtwlNekS86GzUol4Jmzh0FWiRwAj4E9ZKO8R7rTBGIA4rkmra9Ko8j7l6AA==", + "type": "package", + "path": "runtime.linux-x64.runtime.native.system.io.ports/5.0.0-rtm.20519.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.linux-x64.runtime.native.system.io.ports.5.0.0-rtm.20519.4.nupkg.sha512", + "runtime.linux-x64.runtime.native.system.io.ports.nuspec", + "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "sha512": "9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", + "type": "package", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", + "runtime.native.system.data.sqlclient.sni.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.native.System.IO.Ports/5.0.0": { + "sha512": "ME+/evR+UxVlWyGHUlLBoNTnsTdaylMbnvVwOp0Nl6XIZGGyXdqJqjlEew7e6TcKkJAA0lljhjKi3Kie+vzQ7g==", + "type": "package", + "path": "runtime.native.system.io.ports/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.native.system.io.ports.5.0.0.nupkg.sha512", + "runtime.native.system.io.ports.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.osx-x64.runtime.native.System.IO.Ports/5.0.0-rtm.20519.4": { + "sha512": "N+dbbqhT7JBnPVHa7n2+Z5fHYO4a4UUhm7cQkbuQQoNkjbxLpxYnQ4lpRjr1RuQptqYkPmunKvN5etdFOObaiw==", + "type": "package", + "path": "runtime.osx-x64.runtime.native.system.io.ports/5.0.0-rtm.20519.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.osx-x64.runtime.native.system.io.ports.5.0.0-rtm.20519.4.nupkg.sha512", + "runtime.osx-x64.runtime.native.system.io.ports.nuspec", + "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "type": "package", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-arm64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "type": "package", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "type": "package", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x86/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.CodeDom/5.0.0": { + "sha512": "JPJArwA1kdj8qDAkY2XGjSWoYnqiM7q/3yRNkt6n28Mnn95MuEGkZXUbPBf7qc3IjwrGY5ttQon7yqHZyQJmOQ==", + "type": "package", + "path": "system.codedom/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.CodeDom.dll", + "lib/net461/System.CodeDom.xml", + "lib/netstandard2.0/System.CodeDom.dll", + "lib/netstandard2.0/System.CodeDom.xml", + "ref/net461/System.CodeDom.dll", + "ref/net461/System.CodeDom.xml", + "ref/netstandard2.0/System.CodeDom.dll", + "ref/netstandard2.0/System.CodeDom.xml", + "system.codedom.5.0.0.nupkg.sha512", + "system.codedom.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Immutable/1.5.0": { + "sha512": "EXKiDFsChZW0RjrZ4FYHu9aW6+P4MCgEDCklsVseRfhoO0F+dXeMSsMRAlVXIo06kGJ/zv+2w1a2uc2+kxxSaQ==", + "type": "package", + "path": "system.collections.immutable/1.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/System.Collections.Immutable.dll", + "lib/netstandard1.0/System.Collections.Immutable.xml", + "lib/netstandard1.3/System.Collections.Immutable.dll", + "lib/netstandard1.3/System.Collections.Immutable.xml", + "lib/netstandard2.0/System.Collections.Immutable.dll", + "lib/netstandard2.0/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "system.collections.immutable.1.5.0.nupkg.sha512", + "system.collections.immutable.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ComponentModel.Composition/5.0.0": { + "sha512": "YL8iA3VOFxhyomn7FxtBgh3F+8XG5jOfT5UcqYLtkafSa6g6alQfKZuRwlEIWe+tzH6OVnj0Ekg5tn/DmV7SkQ==", + "type": "package", + "path": "system.componentmodel.composition/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcoreapp2.0/System.ComponentModel.Composition.dll", + "lib/netcoreapp2.0/System.ComponentModel.Composition.xml", + "lib/netstandard2.0/System.ComponentModel.Composition.dll", + "lib/netstandard2.0/System.ComponentModel.Composition.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard2.0/System.ComponentModel.Composition.dll", + "ref/netstandard2.0/System.ComponentModel.Composition.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.composition.5.0.0.nupkg.sha512", + "system.componentmodel.composition.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ComponentModel.Composition.Registration/5.0.0": { + "sha512": "CTTPajoCKcXQ1NVTlazz6ned37MHVFf1qKfzsBIdHkaFJBnRVVh4hYsVkPP7z+RrMQU5iXdiTcsfxDb5DWOKOA==", + "type": "package", + "path": "system.componentmodel.composition.registration/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/_._", + "lib/netstandard2.1/System.ComponentModel.Composition.Registration.dll", + "lib/netstandard2.1/System.ComponentModel.Composition.Registration.xml", + "ref/net45/_._", + "ref/netstandard2.1/System.ComponentModel.Composition.Registration.dll", + "ref/netstandard2.1/System.ComponentModel.Composition.Registration.xml", + "system.componentmodel.composition.registration.5.0.0.nupkg.sha512", + "system.componentmodel.composition.registration.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Configuration.ConfigurationManager/5.0.0": { + "sha512": "aM7cbfEfVNlEEOj3DsZP+2g9NRwbkyiAv2isQEzw7pnkDg9ekCU2m1cdJLM02Uq691OaCS91tooaxcEn8d0q5w==", + "type": "package", + "path": "system.configuration.configurationmanager/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/net461/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "ref/net461/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.xml", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.5.0.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Data.DataSetExtensions/4.5.0": { + "sha512": "221clPs1445HkTBZPL+K9sDBdJRB8UN8rgjO3ztB0CQ26z//fmJXtlsr6whGatscsKGBrhJl5bwJuKSA8mwFOw==", + "type": "package", + "path": "system.data.datasetextensions/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/_._", + "lib/netstandard2.0/System.Data.DataSetExtensions.dll", + "ref/net45/_._", + "ref/netstandard2.0/System.Data.DataSetExtensions.dll", + "system.data.datasetextensions.4.5.0.nupkg.sha512", + "system.data.datasetextensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Data.Odbc/5.0.0": { + "sha512": "j4WsYGmcD7m1D0Tc3N7HqWqcdUHNn9+kdXh9ODTWEsOGrAvALf+BgRStd7L0/O/zDS0R4Uu9vNM8UY6EnK+WYw==", + "type": "package", + "path": "system.data.odbc/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Data.Odbc.dll", + "lib/net461/System.Data.Odbc.xml", + "lib/netstandard2.0/System.Data.Odbc.dll", + "lib/netstandard2.0/System.Data.Odbc.xml", + "ref/net461/System.Data.Odbc.dll", + "ref/net461/System.Data.Odbc.xml", + "ref/netstandard2.0/System.Data.Odbc.dll", + "ref/netstandard2.0/System.Data.Odbc.xml", + "runtimes/freebsd/lib/netcoreapp2.0/System.Data.Odbc.dll", + "runtimes/freebsd/lib/netcoreapp2.0/System.Data.Odbc.xml", + "runtimes/linux/lib/netcoreapp2.0/System.Data.Odbc.dll", + "runtimes/linux/lib/netcoreapp2.0/System.Data.Odbc.xml", + "runtimes/osx/lib/netcoreapp2.0/System.Data.Odbc.dll", + "runtimes/osx/lib/netcoreapp2.0/System.Data.Odbc.xml", + "runtimes/win/lib/net461/System.Data.Odbc.dll", + "runtimes/win/lib/net461/System.Data.Odbc.xml", + "runtimes/win/lib/netcoreapp2.0/System.Data.Odbc.dll", + "runtimes/win/lib/netcoreapp2.0/System.Data.Odbc.xml", + "system.data.odbc.5.0.0.nupkg.sha512", + "system.data.odbc.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Data.OleDb/5.0.0": { + "sha512": "DHCZucsidgFtUr1w5OggQNjb7M6N722QpNbkG6TV+3hCvPSLXdrm1NjJqVZB5/OW067gzuZVj9W147hrkTF/Ig==", + "type": "package", + "path": "system.data.oledb/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Data.OleDb.dll", + "lib/net461/System.Data.OleDb.xml", + "lib/netstandard2.0/System.Data.OleDb.dll", + "lib/netstandard2.0/System.Data.OleDb.xml", + "ref/net461/System.Data.OleDb.dll", + "ref/net461/System.Data.OleDb.xml", + "ref/netstandard2.0/System.Data.OleDb.dll", + "ref/netstandard2.0/System.Data.OleDb.xml", + "runtimes/win/lib/net461/System.Data.OleDb.dll", + "runtimes/win/lib/net461/System.Data.OleDb.xml", + "runtimes/win/lib/netstandard2.0/System.Data.OleDb.dll", + "runtimes/win/lib/netstandard2.0/System.Data.OleDb.xml", + "system.data.oledb.5.0.0.nupkg.sha512", + "system.data.oledb.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Data.SqlClient/4.8.2": { + "sha512": "80vGtW6uLB4AkyrdVuKTXYUyuXDPAsSKbTVfvjndZaRAYxzFzWhJbvUfeAKrN+128ycWZjLIAl61dFUwWHOOTw==", + "type": "package", + "path": "system.data.sqlclient/4.8.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/System.Data.SqlClient.dll", + "lib/net46/System.Data.SqlClient.dll", + "lib/net461/System.Data.SqlClient.dll", + "lib/net461/System.Data.SqlClient.xml", + "lib/netcoreapp2.1/System.Data.SqlClient.dll", + "lib/netcoreapp2.1/System.Data.SqlClient.xml", + "lib/netstandard1.2/System.Data.SqlClient.dll", + "lib/netstandard1.2/System.Data.SqlClient.xml", + "lib/netstandard1.3/System.Data.SqlClient.dll", + "lib/netstandard1.3/System.Data.SqlClient.xml", + "lib/netstandard2.0/System.Data.SqlClient.dll", + "lib/netstandard2.0/System.Data.SqlClient.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/System.Data.SqlClient.dll", + "ref/net46/System.Data.SqlClient.dll", + "ref/net461/System.Data.SqlClient.dll", + "ref/net461/System.Data.SqlClient.xml", + "ref/netcoreapp2.1/System.Data.SqlClient.dll", + "ref/netcoreapp2.1/System.Data.SqlClient.xml", + "ref/netstandard1.2/System.Data.SqlClient.dll", + "ref/netstandard1.2/System.Data.SqlClient.xml", + "ref/netstandard1.2/de/System.Data.SqlClient.xml", + "ref/netstandard1.2/es/System.Data.SqlClient.xml", + "ref/netstandard1.2/fr/System.Data.SqlClient.xml", + "ref/netstandard1.2/it/System.Data.SqlClient.xml", + "ref/netstandard1.2/ja/System.Data.SqlClient.xml", + "ref/netstandard1.2/ko/System.Data.SqlClient.xml", + "ref/netstandard1.2/ru/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard1.3/System.Data.SqlClient.dll", + "ref/netstandard1.3/System.Data.SqlClient.xml", + "ref/netstandard1.3/de/System.Data.SqlClient.xml", + "ref/netstandard1.3/es/System.Data.SqlClient.xml", + "ref/netstandard1.3/fr/System.Data.SqlClient.xml", + "ref/netstandard1.3/it/System.Data.SqlClient.xml", + "ref/netstandard1.3/ja/System.Data.SqlClient.xml", + "ref/netstandard1.3/ko/System.Data.SqlClient.xml", + "ref/netstandard1.3/ru/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard2.0/System.Data.SqlClient.dll", + "ref/netstandard2.0/System.Data.SqlClient.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.xml", + "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.xml", + "runtimes/win/lib/net451/System.Data.SqlClient.dll", + "runtimes/win/lib/net46/System.Data.SqlClient.dll", + "runtimes/win/lib/net461/System.Data.SqlClient.dll", + "runtimes/win/lib/net461/System.Data.SqlClient.xml", + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll", + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.xml", + "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.xml", + "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll", + "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.xml", + "system.data.sqlclient.4.8.2.nupkg.sha512", + "system.data.sqlclient.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "type": "package", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/4.6.0": { + "sha512": "mbBgoR0rRfl2uimsZ2avZY8g7Xnh1Mza0rJZLPcxqiMWlkGukjmRkuMJ/er+AhQuiRIh80CR/Hpeztr80seV5g==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/4.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/System.Diagnostics.DiagnosticSource.dll", + "lib/net45/System.Diagnostics.DiagnosticSource.xml", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.4.6.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.EventLog/5.0.1": { + "sha512": "k4O5RrjnhJZrP4EgOklUVkcmVdAxs9+PoXCGmlNS3NPIwaSyMMLy7pUaamMHCFkduiOO/ZUzIRjyoCnvXLJpfw==", + "type": "package", + "path": "system.diagnostics.eventlog/5.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Diagnostics.EventLog.dll", + "lib/net461/System.Diagnostics.EventLog.xml", + "lib/netstandard2.0/System.Diagnostics.EventLog.dll", + "lib/netstandard2.0/System.Diagnostics.EventLog.xml", + "ref/net461/System.Diagnostics.EventLog.dll", + "ref/net461/System.Diagnostics.EventLog.xml", + "ref/netstandard2.0/System.Diagnostics.EventLog.dll", + "ref/netstandard2.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.EventLog.xml", + "system.diagnostics.eventlog.5.0.1.nupkg.sha512", + "system.diagnostics.eventlog.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.PerformanceCounter/5.0.0": { + "sha512": "kcQWWtGVC3MWMNXdMDWfrmIlFZZ2OdoeT6pSNVRtk9+Sa7jwdPiMlNwb0ZQcS7NRlT92pCfmjRtkSWUW3RAKwg==", + "type": "package", + "path": "system.diagnostics.performancecounter/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Diagnostics.PerformanceCounter.dll", + "lib/net461/System.Diagnostics.PerformanceCounter.xml", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Diagnostics.PerformanceCounter.dll", + "ref/net461/System.Diagnostics.PerformanceCounter.xml", + "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll", + "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll", + "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.xml", + "system.diagnostics.performancecounter.5.0.0.nupkg.sha512", + "system.diagnostics.performancecounter.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.DirectoryServices/5.0.0": { + "sha512": "lAS54Y3KO1XV68akGa0/GJeddkkuuiv2CtcSkMiTmLHQ6o6kFbKpw4DmJZADF7a6KjPwYxmZnH4D3eGicrJdcg==", + "type": "package", + "path": "system.directoryservices/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/_._", + "lib/netstandard2.0/System.DirectoryServices.dll", + "lib/netstandard2.0/System.DirectoryServices.xml", + "ref/net45/_._", + "ref/netstandard2.0/System.DirectoryServices.dll", + "ref/netstandard2.0/System.DirectoryServices.xml", + "runtimes/win/lib/net45/_._", + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.dll", + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.xml", + "system.directoryservices.5.0.0.nupkg.sha512", + "system.directoryservices.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.DirectoryServices.AccountManagement/5.0.0": { + "sha512": "1WevH/8ULy0iixbsZW4k8ftV9fDqkeUJfeVMsJ7SySrHsnBISkRx1JuDRRV7QXfNTCQKrHeecfqcY5pevlDwog==", + "type": "package", + "path": "system.directoryservices.accountmanagement/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/_._", + "lib/netstandard2.0/System.DirectoryServices.AccountManagement.dll", + "lib/netstandard2.0/System.DirectoryServices.AccountManagement.xml", + "ref/net45/_._", + "ref/netstandard2.0/System.DirectoryServices.AccountManagement.dll", + "ref/netstandard2.0/System.DirectoryServices.AccountManagement.xml", + "runtimes/win/lib/net45/_._", + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.AccountManagement.dll", + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.AccountManagement.xml", + "system.directoryservices.accountmanagement.5.0.0.nupkg.sha512", + "system.directoryservices.accountmanagement.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.DirectoryServices.Protocols/5.0.0": { + "sha512": "uQvO3kpXBDCoRQecbY8yXiQTVBT5t6ZMCZwBsyGFeCL0KUTlNJDsaIx+hsqCKF+bLglaYyz5nWLVRaxPKVeBBw==", + "type": "package", + "path": "system.directoryservices.protocols/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/_._", + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll", + "lib/netstandard2.0/System.DirectoryServices.Protocols.xml", + "ref/net45/_._", + "ref/netstandard2.0/System.DirectoryServices.Protocols.dll", + "ref/netstandard2.0/System.DirectoryServices.Protocols.xml", + "runtimes/linux/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll", + "runtimes/linux/lib/netcoreapp2.0/System.DirectoryServices.Protocols.xml", + "runtimes/osx/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll", + "runtimes/osx/lib/netcoreapp2.0/System.DirectoryServices.Protocols.xml", + "runtimes/win/lib/net45/_._", + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.dll", + "runtimes/win/lib/netcoreapp2.0/System.DirectoryServices.Protocols.xml", + "system.directoryservices.protocols.5.0.0.nupkg.sha512", + "system.directoryservices.protocols.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Drawing.Common/5.0.2": { + "sha512": "rvr/M1WPf24ljpvvrVd74+NdjRUJu1bBkspkZcnzSZnmAUQWSvanlQ0k/hVHk+cHufZbZfu7vOh/vYc0q5Uu/A==", + "type": "package", + "path": "system.drawing.common/5.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/netcoreapp3.0/System.Drawing.Common.dll", + "lib/netcoreapp3.0/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.xml", + "ref/netstandard2.0/System.Drawing.Common.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml", + "system.drawing.common.5.0.2.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Dynamic.Runtime/4.3.0": { + "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", + "type": "package", + "path": "system.dynamic.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "lib/netstandard1.3/System.Dynamic.Runtime.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/System.Dynamic.Runtime.dll", + "ref/netstandard1.0/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/System.Dynamic.Runtime.dll", + "ref/netstandard1.3/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", + "system.dynamic.runtime.4.3.0.nupkg.sha512", + "system.dynamic.runtime.nuspec" + ] + }, + "System.Formats.Asn1/5.0.0": { + "sha512": "MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==", + "type": "package", + "path": "system.formats.asn1/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Formats.Asn1.dll", + "lib/net461/System.Formats.Asn1.xml", + "lib/netstandard2.0/System.Formats.Asn1.dll", + "lib/netstandard2.0/System.Formats.Asn1.xml", + "system.formats.asn1.5.0.0.nupkg.sha512", + "system.formats.asn1.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.FileSystem.AccessControl/5.0.0": { + "sha512": "SxHB3nuNrpptVk+vZ/F+7OHEpoHUIKKMl02bUmYHQr1r+glbZQxs7pRtsf4ENO29TVm2TH3AEeep2fJcy92oYw==", + "type": "package", + "path": "system.io.filesystem.accesscontrol/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.IO.FileSystem.AccessControl.dll", + "lib/net461/System.IO.FileSystem.AccessControl.dll", + "lib/net461/System.IO.FileSystem.AccessControl.xml", + "lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "ref/net46/System.IO.FileSystem.AccessControl.dll", + "ref/net461/System.IO.FileSystem.AccessControl.dll", + "ref/net461/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "ref/netstandard1.3/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "runtimes/win/lib/net46/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512", + "system.io.filesystem.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.Packaging/5.0.0": { + "sha512": "ebfUwKsgZF4HTwaRUj67SrJdsM4O62Fxsd6u1bSk3MNgvU8yjyfEK0xQmUFUqOYJi1IcL4HENoccl4SKVPndYw==", + "type": "package", + "path": "system.io.packaging/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.IO.Packaging.dll", + "lib/net46/System.IO.Packaging.xml", + "lib/netstandard1.3/System.IO.Packaging.dll", + "lib/netstandard1.3/System.IO.Packaging.xml", + "lib/netstandard2.0/System.IO.Packaging.dll", + "lib/netstandard2.0/System.IO.Packaging.xml", + "ref/net46/System.IO.Packaging.dll", + "ref/net46/System.IO.Packaging.xml", + "ref/netstandard1.3/System.IO.Packaging.dll", + "ref/netstandard1.3/System.IO.Packaging.xml", + "ref/netstandard2.0/System.IO.Packaging.dll", + "ref/netstandard2.0/System.IO.Packaging.xml", + "system.io.packaging.5.0.0.nupkg.sha512", + "system.io.packaging.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.Pipes.AccessControl/5.0.0": { + "sha512": "P0FIsXSFNL1AXlHO9zpJ9atRUzVyoPZCkcbkYGZfXXMx9xlGA2H3HOGBwIhpKhB+h0eL3hry/z0UcfJZ+yb2kQ==", + "type": "package", + "path": "system.io.pipes.accesscontrol/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.IO.Pipes.AccessControl.dll", + "lib/net461/System.IO.Pipes.AccessControl.dll", + "lib/net5.0/System.IO.Pipes.AccessControl.dll", + "lib/net5.0/System.IO.Pipes.AccessControl.xml", + "lib/netstandard1.3/System.IO.Pipes.AccessControl.dll", + "lib/netstandard2.0/System.IO.Pipes.AccessControl.dll", + "ref/net46/System.IO.Pipes.AccessControl.dll", + "ref/net461/System.IO.Pipes.AccessControl.dll", + "ref/net461/System.IO.Pipes.AccessControl.xml", + "ref/net5.0/System.IO.Pipes.AccessControl.dll", + "ref/net5.0/System.IO.Pipes.AccessControl.xml", + "ref/netstandard1.3/System.IO.Pipes.AccessControl.dll", + "ref/netstandard2.0/System.IO.Pipes.AccessControl.dll", + "ref/netstandard2.0/System.IO.Pipes.AccessControl.xml", + "runtimes/win/lib/net46/System.IO.Pipes.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.Pipes.AccessControl.dll", + "runtimes/win/lib/net5.0/System.IO.Pipes.AccessControl.dll", + "runtimes/win/lib/net5.0/System.IO.Pipes.AccessControl.xml", + "runtimes/win/lib/netcoreapp2.1/System.IO.Pipes.AccessControl.dll", + "system.io.pipes.accesscontrol.5.0.0.nupkg.sha512", + "system.io.pipes.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.Ports/5.0.0": { + "sha512": "MZY/0cgRg5bcuvHR4LKHqWnlxWV7GkoTgBaOdwIoWGZKsfSBC1twDz+BzG0o1Rk46WdRhhV30E2qzsBABHwGUA==", + "type": "package", + "path": "system.io.ports/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.IO.Ports.dll", + "lib/net461/System.IO.Ports.xml", + "lib/netstandard2.0/System.IO.Ports.dll", + "lib/netstandard2.0/System.IO.Ports.xml", + "lib/uap10.0.16299/_._", + "ref/net461/System.IO.Ports.dll", + "ref/net461/System.IO.Ports.xml", + "ref/netstandard2.0/System.IO.Ports.dll", + "ref/netstandard2.0/System.IO.Ports.xml", + "ref/uap10.0.16299/_._", + "runtimes/linux/lib/netstandard2.0/System.IO.Ports.dll", + "runtimes/linux/lib/netstandard2.0/System.IO.Ports.xml", + "runtimes/osx/lib/netstandard2.0/System.IO.Ports.dll", + "runtimes/osx/lib/netstandard2.0/System.IO.Ports.xml", + "runtimes/win/lib/net461/System.IO.Ports.dll", + "runtimes/win/lib/net461/System.IO.Ports.xml", + "runtimes/win/lib/netstandard2.0/System.IO.Ports.dll", + "runtimes/win/lib/netstandard2.0/System.IO.Ports.xml", + "runtimes/win/lib/uap10.0.16299/_._", + "system.io.ports.5.0.0.nupkg.sha512", + "system.io.ports.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Linq/4.3.0": { + "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Expressions/4.3.0": { + "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "type": "package", + "path": "system.linq.expressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.3.0.nupkg.sha512", + "system.linq.expressions.nuspec" + ] + }, + "System.Management/5.0.0": { + "sha512": "MF1CHaRcC+MLFdnDthv4/bKWBZnlnSpkGqa87pKukQefgEdwtb9zFW6zs0GjPp73qtpYYg4q6PEKbzJbxCpKfw==", + "type": "package", + "path": "system.management/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/_._", + "lib/netstandard2.0/System.Management.dll", + "lib/netstandard2.0/System.Management.xml", + "ref/net45/_._", + "ref/netstandard2.0/System.Management.dll", + "ref/netstandard2.0/System.Management.xml", + "runtimes/win/lib/net45/_._", + "runtimes/win/lib/netcoreapp2.0/System.Management.dll", + "runtimes/win/lib/netcoreapp2.0/System.Management.xml", + "system.management.5.0.0.nupkg.sha512", + "system.management.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Management.Automation/7.1.3": { + "sha512": "rXPo+ujbsrraKk7F0VYQLM5oTXUo8bOmd+lnALCNPXaeZZ7pcGLqAfayuGX/Y6sXd4zoOE0jDtF572u4vCR5fg==", + "type": "package", + "path": "system.management.automation/7.1.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "ref/net5.0/System.Management.Automation.dll", + "runtimes/unix/lib/net5.0/System.Management.Automation.dll", + "runtimes/win/lib/net5.0/System.Management.Automation.dll", + "system.management.automation.7.1.3.nupkg.sha512", + "system.management.automation.nuspec" + ] + }, + "System.Memory/4.5.4": { + "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "type": "package", + "path": "system.memory/4.5.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Memory.dll", + "lib/net461/System.Memory.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.4.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.Http.WinHttpHandler/5.0.0": { + "sha512": "Mq6dPidztlkEwzjmzK4gtla8N8MTfjCyd0yub/8DY5UbkbV82wU+kiMoBHHjQ2fY70RrdraEoeZFgH915lHJhg==", + "type": "package", + "path": "system.net.http.winhttphandler/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Net.Http.WinHttpHandler.dll", + "lib/net461/System.Net.Http.WinHttpHandler.dll", + "lib/net461/System.Net.Http.WinHttpHandler.xml", + "lib/netstandard1.3/System.Net.Http.WinHttpHandler.dll", + "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll", + "lib/netstandard2.0/System.Net.Http.WinHttpHandler.xml", + "runtimes/win/lib/net46/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/net461/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/net461/System.Net.Http.WinHttpHandler.xml", + "runtimes/win/lib/netstandard1.3/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.xml", + "system.net.http.winhttphandler.5.0.0.nupkg.sha512", + "system.net.http.winhttphandler.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ObjectModel/4.3.0": { + "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "type": "package", + "path": "system.objectmodel/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.3.0.nupkg.sha512", + "system.objectmodel.nuspec" + ] + }, + "System.Private.ServiceModel/4.7.0": { + "sha512": "BItrYCkoTV3VzVPsrew+uc34fmLb+3ncgspa7vbO3vkfY9JQCea4u34pHE+Bcv1Iy16MgRs3n2jKVRCDg0rPfg==", + "type": "package", + "path": "system.private.servicemodel/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard2.0/System.Private.ServiceModel.dll", + "lib/netstandard2.0/System.Private.ServiceModel.pdb", + "ref/netstandard2.0/_._", + "system.private.servicemodel.4.7.0.nupkg.sha512", + "system.private.servicemodel.nuspec" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Context/5.0.0": { + "sha512": "gG1wxxJLcjQaUkd07K2l2MKVoW+e0w8jS8Jye7QLPXrXT7XXMmOcFV/Ek6XyTOy5Z4GVN0WY95BQNp/iHEs5mw==", + "type": "package", + "path": "system.reflection.context/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Context.dll", + "lib/netstandard1.1/System.Reflection.Context.dll", + "lib/netstandard1.1/System.Reflection.Context.xml", + "lib/netstandard2.0/System.Reflection.Context.dll", + "lib/netstandard2.0/System.Reflection.Context.xml", + "lib/netstandard2.1/System.Reflection.Context.dll", + "lib/netstandard2.1/System.Reflection.Context.xml", + "lib/portable-net45+win8/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Context.dll", + "ref/netcore50/System.Reflection.Context.xml", + "ref/netcore50/de/System.Reflection.Context.xml", + "ref/netcore50/es/System.Reflection.Context.xml", + "ref/netcore50/fr/System.Reflection.Context.xml", + "ref/netcore50/it/System.Reflection.Context.xml", + "ref/netcore50/ja/System.Reflection.Context.xml", + "ref/netcore50/ko/System.Reflection.Context.xml", + "ref/netcore50/ru/System.Reflection.Context.xml", + "ref/netcore50/zh-hans/System.Reflection.Context.xml", + "ref/netcore50/zh-hant/System.Reflection.Context.xml", + "ref/netstandard1.1/System.Reflection.Context.dll", + "ref/netstandard1.1/System.Reflection.Context.xml", + "ref/netstandard2.0/System.Reflection.Context.dll", + "ref/netstandard2.0/System.Reflection.Context.xml", + "ref/portable-net45+win8/_._", + "system.reflection.context.5.0.0.nupkg.sha512", + "system.reflection.context.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.DispatchProxy/4.5.0": { + "sha512": "+UW1hq11TNSeb+16rIk8hRQ02o339NFyzMc4ma/FqmxBzM30l1c2IherBB4ld1MNcenS48fz8tbt50OW4rVULA==", + "type": "package", + "path": "system.reflection.dispatchproxy/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Reflection.DispatchProxy.dll", + "lib/netcoreapp2.0/System.Reflection.DispatchProxy.dll", + "lib/netstandard1.3/System.Reflection.DispatchProxy.dll", + "lib/netstandard2.0/System.Reflection.DispatchProxy.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.3/System.Reflection.DispatchProxy.dll", + "ref/netstandard1.3/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/de/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/es/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/fr/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/it/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ja/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ko/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ru/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.DispatchProxy.xml", + "ref/netstandard2.0/System.Reflection.DispatchProxy.dll", + "ref/netstandard2.0/System.Reflection.DispatchProxy.xml", + "ref/uap10.0.16299/System.Reflection.DispatchProxy.dll", + "ref/uap10.0.16299/System.Reflection.DispatchProxy.xml", + "ref/uap10.0.16300/System.Reflection.DispatchProxy.dll", + "ref/uap10.0.16300/System.Reflection.DispatchProxy.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll", + "runtimes/win-aot/lib/uap10.0.16299/System.Reflection.DispatchProxy.dll", + "runtimes/win/lib/uap10.0.16299/System.Reflection.DispatchProxy.dll", + "system.reflection.dispatchproxy.4.5.0.nupkg.sha512", + "system.reflection.dispatchproxy.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Emit/4.7.0": { + "sha512": "VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==", + "type": "package", + "path": "system.reflection.emit/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.1/System.Reflection.Emit.dll", + "lib/netstandard1.1/System.Reflection.Emit.xml", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/netstandard2.0/System.Reflection.Emit.dll", + "lib/netstandard2.0/System.Reflection.Emit.xml", + "lib/netstandard2.1/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/netstandard2.0/System.Reflection.Emit.dll", + "ref/netstandard2.0/System.Reflection.Emit.xml", + "ref/netstandard2.1/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.Emit.dll", + "runtimes/aot/lib/netcore50/System.Reflection.Emit.xml", + "system.reflection.emit.4.7.0.nupkg.sha512", + "system.reflection.emit.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Emit.ILGeneration/4.7.0": { + "sha512": "AucBYo3DSI0IDxdUjKksBcQJXPHyoPyrCXYURW1WDsLI4M65Ar/goSHjdnHOAY9MiYDNKqDlIgaYm+zL2hA1KA==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard2.0/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard2.0/System.Reflection.Emit.ILGeneration.xml", + "lib/netstandard2.1/_._", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard2.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard2.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard2.1/_._", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "runtimes/aot/lib/netcore50/System.Reflection.Emit.ILGeneration.xml", + "system.reflection.emit.ilgeneration.4.7.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Emit.Lightweight/4.7.0": { + "sha512": "a4OLB4IITxAXJeV74MDx49Oq2+PsF6Sml54XAFv+2RyWwtDBcabzoxiiJRhdhx+gaohLh4hEGCLQyBozXoQPqA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard2.0/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard2.0/System.Reflection.Emit.Lightweight.xml", + "lib/netstandard2.1/_._", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard2.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard2.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard2.1/_._", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "runtimes/aot/lib/netcore50/System.Reflection.Emit.Lightweight.xml", + "system.reflection.emit.lightweight.4.7.0.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Extensions/4.3.0": { + "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "type": "package", + "path": "system.reflection.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.extensions.4.3.0.nupkg.sha512", + "system.reflection.extensions.nuspec" + ] + }, + "System.Reflection.Metadata/1.6.0": { + "sha512": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==", + "type": "package", + "path": "system.reflection.metadata/1.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.1/System.Reflection.Metadata.dll", + "lib/netstandard1.1/System.Reflection.Metadata.xml", + "lib/netstandard2.0/System.Reflection.Metadata.dll", + "lib/netstandard2.0/System.Reflection.Metadata.xml", + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "system.reflection.metadata.1.6.0.nupkg.sha512", + "system.reflection.metadata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.3.0": { + "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "type": "package", + "path": "system.reflection.typeextensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net462/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net462/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.3.0.nupkg.sha512", + "system.reflection.typeextensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Caching/5.0.0": { + "sha512": "30D6MkO8WF9jVGWZIP0hmCN8l9BTY4LCsAzLIe4xFSXzs+AjDotR7DpSmj27pFskDURzUvqYYY0ikModgBTxWw==", + "type": "package", + "path": "system.runtime.caching/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netstandard2.0/System.Runtime.Caching.dll", + "lib/netstandard2.0/System.Runtime.Caching.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard2.0/System.Runtime.Caching.dll", + "ref/netstandard2.0/System.Runtime.Caching.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net45/_._", + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll", + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml", + "system.runtime.caching.5.0.0.nupkg.sha512", + "system.runtime.caching.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/5.0.0": { + "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net45/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/net461/System.Runtime.CompilerServices.Unsafe.dll", + "ref/net461/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Security.AccessControl/5.0.0": { + "sha512": "dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", + "type": "package", + "path": "system.security.accesscontrol/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.xml", + "ref/netstandard1.3/System.Security.AccessControl.dll", + "ref/netstandard1.3/System.Security.AccessControl.xml", + "ref/netstandard1.3/de/System.Security.AccessControl.xml", + "ref/netstandard1.3/es/System.Security.AccessControl.xml", + "ref/netstandard1.3/fr/System.Security.AccessControl.xml", + "ref/netstandard1.3/it/System.Security.AccessControl.xml", + "ref/netstandard1.3/ja/System.Security.AccessControl.xml", + "ref/netstandard1.3/ko/System.Security.AccessControl.xml", + "ref/netstandard1.3/ru/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", + "ref/netstandard2.0/System.Security.AccessControl.dll", + "ref/netstandard2.0/System.Security.AccessControl.xml", + "ref/uap10.0.16299/_._", + "runtimes/win/lib/net46/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.5.0.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Cng/5.0.0": { + "sha512": "jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==", + "type": "package", + "path": "system.security.cryptography.cng/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.xml", + "lib/net462/System.Security.Cryptography.Cng.dll", + "lib/net462/System.Security.Cryptography.Cng.xml", + "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.xml", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml", + "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.xml", + "lib/netstandard2.1/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.1/System.Security.Cryptography.Cng.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.xml", + "ref/net462/System.Security.Cryptography.Cng.dll", + "ref/net462/System.Security.Cryptography.Cng.xml", + "ref/net47/System.Security.Cryptography.Cng.dll", + "ref/net47/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp3.0/System.Security.Cryptography.Cng.xml", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/netstandard2.1/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.1/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.xml", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.xml", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.5.0.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Pkcs/5.0.1": { + "sha512": "9ualfJXOMrjW/E4z73cGHVcAvFMCCnMZQE+8xME9eX70bTZ0UAJCstG0khsMvL8B+9c9qw+ktowt1fN0BffMnQ==", + "type": "package", + "path": "system.security.cryptography.pkcs/5.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Cryptography.Pkcs.dll", + "lib/net461/System.Security.Cryptography.Pkcs.dll", + "lib/net461/System.Security.Cryptography.Pkcs.xml", + "lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll", + "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll", + "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml", + "lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml", + "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml", + "ref/net46/System.Security.Cryptography.Pkcs.dll", + "ref/net461/System.Security.Cryptography.Pkcs.dll", + "ref/net461/System.Security.Cryptography.Pkcs.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.xml", + "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll", + "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml", + "ref/netstandard1.3/System.Security.Cryptography.Pkcs.dll", + "ref/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "ref/netstandard2.0/System.Security.Cryptography.Pkcs.xml", + "ref/netstandard2.1/System.Security.Cryptography.Pkcs.dll", + "ref/netstandard2.1/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net46/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml", + "system.security.cryptography.pkcs.5.0.1.nupkg.sha512", + "system.security.cryptography.pkcs.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.ProtectedData/5.0.0": { + "sha512": "HGxMSAFAPLNoxBvSfW08vHde0F9uh7BjASwu6JF9JnXuEPhCY3YUqURn0+bQV/4UWeaqymmrHWV+Aw9riQCtCA==", + "type": "package", + "path": "system.security.cryptography.protecteddata/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.xml", + "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "system.security.cryptography.protecteddata.5.0.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Xml/5.0.0": { + "sha512": "MYmkHtCW+paFmPGFDktnLdOeH3zUrNchbZNki87E1ejNSMm9enSRbJokmvFrsWUrDE4bRE1lVeAle01+t6SGhA==", + "type": "package", + "path": "system.security.cryptography.xml/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Security.Cryptography.Xml.dll", + "lib/net461/System.Security.Cryptography.Xml.xml", + "lib/netstandard2.0/System.Security.Cryptography.Xml.dll", + "lib/netstandard2.0/System.Security.Cryptography.Xml.xml", + "ref/net461/System.Security.Cryptography.Xml.dll", + "ref/net461/System.Security.Cryptography.Xml.xml", + "ref/netstandard2.0/System.Security.Cryptography.Xml.dll", + "ref/netstandard2.0/System.Security.Cryptography.Xml.xml", + "system.security.cryptography.xml.5.0.0.nupkg.sha512", + "system.security.cryptography.xml.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Permissions/5.0.0": { + "sha512": "uE8juAhEkp7KDBCdjDIE3H9R1HJuEHqeqX8nLX9gmYKWwsqk3T5qZlPx8qle5DPKimC/Fy3AFTdV7HamgCh9qQ==", + "type": "package", + "path": "system.security.permissions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Security.Permissions.dll", + "lib/net461/System.Security.Permissions.xml", + "lib/net5.0/System.Security.Permissions.dll", + "lib/net5.0/System.Security.Permissions.xml", + "lib/netcoreapp3.0/System.Security.Permissions.dll", + "lib/netcoreapp3.0/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "ref/net461/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.xml", + "ref/net5.0/System.Security.Permissions.dll", + "ref/net5.0/System.Security.Permissions.xml", + "ref/netcoreapp3.0/System.Security.Permissions.dll", + "ref/netcoreapp3.0/System.Security.Permissions.xml", + "ref/netstandard2.0/System.Security.Permissions.dll", + "ref/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.5.0.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal.Windows/5.0.0": { + "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "type": "package", + "path": "system.security.principal.windows/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.5.0.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ServiceModel.Duplex/4.7.0": { + "sha512": "7GBKQc2QWRxnEVQ49zMKq3z3RFKaHhhWjfMWhp+DP+dgfp0X4Szln/eL+UQumOKvv+sTU5bhOXjnJg5045liCA==", + "type": "package", + "path": "system.servicemodel.duplex/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ServiceModel.Duplex.dll", + "lib/net461/System.ServiceModel.Duplex.pdb", + "lib/netcore50/System.ServiceModel.Duplex.dll", + "lib/netstandard1.3/System.ServiceModel.Duplex.dll", + "lib/netstandard2.0/System.ServiceModel.Duplex.dll", + "lib/netstandard2.0/System.ServiceModel.Duplex.pdb", + "lib/portable-net45+win8/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ServiceModel.Duplex.dll", + "ref/netcore50/System.ServiceModel.Duplex.dll", + "ref/netstandard1.1/System.ServiceModel.Duplex.dll", + "ref/netstandard2.0/System.ServiceModel.Duplex.dll", + "ref/portable-net45+win8/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.servicemodel.duplex.4.7.0.nupkg.sha512", + "system.servicemodel.duplex.nuspec" + ] + }, + "System.ServiceModel.Http/4.7.0": { + "sha512": "+BB61ycl1cSlRbJDpABoqMa7bRE4boJfK1CfWfbNzTGeADFVmDkhylpfmC1bKloxtf95p2owj8/n7kilgRBAow==", + "type": "package", + "path": "system.servicemodel.http/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.ServiceModel.Http.dll", + "lib/net461/System.ServiceModel.Http.dll", + "lib/net461/System.ServiceModel.Http.pdb", + "lib/netcore50/System.ServiceModel.Http.dll", + "lib/netstandard1.3/System.ServiceModel.Http.dll", + "lib/netstandard2.0/System.ServiceModel.Http.dll", + "lib/netstandard2.0/System.ServiceModel.Http.pdb", + "lib/portable-net45+win8+wp8/_._", + "lib/win8/_._", + "lib/wp8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.ServiceModel.Http.dll", + "ref/net461/System.ServiceModel.Http.dll", + "ref/netcore50/System.ServiceModel.Http.dll", + "ref/netstandard1.0/System.ServiceModel.Http.dll", + "ref/netstandard1.1/System.ServiceModel.Http.dll", + "ref/netstandard1.3/System.ServiceModel.Http.dll", + "ref/netstandard2.0/System.ServiceModel.Http.dll", + "ref/portable-net45+win8+wp8/_._", + "ref/win8/_._", + "ref/wp8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.servicemodel.http.4.7.0.nupkg.sha512", + "system.servicemodel.http.nuspec" + ] + }, + "System.ServiceModel.NetTcp/4.7.0": { + "sha512": "snQgAc7kn4721eaus8nZ52eRu1QrdEnWGbru6I263hPWcISStntwHwSrT57Iwp1Z58b3Lz0J/hbjJhGP0yExOA==", + "type": "package", + "path": "system.servicemodel.nettcp/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.ServiceModel.NetTcp.dll", + "lib/net461/System.ServiceModel.NetTcp.dll", + "lib/net461/System.ServiceModel.NetTcp.pdb", + "lib/netcore50/System.ServiceModel.NetTcp.dll", + "lib/netstandard1.3/System.ServiceModel.NetTcp.dll", + "lib/netstandard2.0/System.ServiceModel.NetTcp.dll", + "lib/netstandard2.0/System.ServiceModel.NetTcp.pdb", + "lib/portable-net45+win8/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.ServiceModel.NetTcp.dll", + "ref/net461/System.ServiceModel.NetTcp.dll", + "ref/netcore50/System.ServiceModel.NetTcp.dll", + "ref/netstandard1.1/System.ServiceModel.NetTcp.dll", + "ref/netstandard1.3/System.ServiceModel.NetTcp.dll", + "ref/netstandard2.0/System.ServiceModel.NetTcp.dll", + "ref/portable-net45+win8/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.servicemodel.nettcp.4.7.0.nupkg.sha512", + "system.servicemodel.nettcp.nuspec" + ] + }, + "System.ServiceModel.Primitives/4.7.0": { + "sha512": "YUXIMO4kL1v6dUVptJGixAx/8Ai5trQzVn3gbk0mpwxh77kGAs+MyBRoHN/5ZoxtwNn4E1dq3N4rJCAgAUaiJA==", + "type": "package", + "path": "system.servicemodel.primitives/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.ServiceModel.Primitives.dll", + "lib/net461/System.ServiceModel.Primitives.dll", + "lib/net461/System.ServiceModel.Primitives.pdb", + "lib/netcore50/System.ServiceModel.Primitives.dll", + "lib/netcoreapp2.1/System.ServiceModel.Primitives.dll", + "lib/netcoreapp2.1/System.ServiceModel.Primitives.pdb", + "lib/netcoreapp2.1/System.ServiceModel.dll", + "lib/netstandard1.3/System.ServiceModel.Primitives.dll", + "lib/netstandard2.0/System.ServiceModel.Primitives.dll", + "lib/netstandard2.0/System.ServiceModel.Primitives.pdb", + "lib/netstandard2.0/System.ServiceModel.dll", + "lib/portable-net45+win8+wp8/_._", + "lib/win8/_._", + "lib/wp8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.ServiceModel.Primitives.dll", + "ref/net461/System.ServiceModel.Primitives.dll", + "ref/netcore50/System.ServiceModel.Primitives.dll", + "ref/netcoreapp2.1/System.ServiceModel.Primitives.dll", + "ref/netcoreapp2.1/System.ServiceModel.dll", + "ref/netstandard1.0/System.ServiceModel.Primitives.dll", + "ref/netstandard1.1/System.ServiceModel.Primitives.dll", + "ref/netstandard1.3/System.ServiceModel.Primitives.dll", + "ref/netstandard2.0/System.ServiceModel.Primitives.dll", + "ref/netstandard2.0/System.ServiceModel.dll", + "ref/portable-net45+win8+wp8/_._", + "ref/win8/_._", + "ref/wp8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.servicemodel.primitives.4.7.0.nupkg.sha512", + "system.servicemodel.primitives.nuspec" + ] + }, + "System.ServiceModel.Security/4.7.0": { + "sha512": "LjYrQRrP1rw+s/wieB+QIv3p6/oG2ucTfVpg5iWmX8/7+nfUxcqmy9l8rsbtYE8X8BEQnSq42OhWap/Dlhlh9Q==", + "type": "package", + "path": "system.servicemodel.security/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ServiceModel.Security.dll", + "lib/net461/System.ServiceModel.Security.pdb", + "lib/netcore50/System.ServiceModel.Security.dll", + "lib/netstandard1.3/System.ServiceModel.Security.dll", + "lib/netstandard2.0/System.ServiceModel.Security.dll", + "lib/netstandard2.0/System.ServiceModel.Security.pdb", + "lib/portable-net45+win8+wp8/_._", + "lib/win8/_._", + "lib/wp8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ServiceModel.Security.dll", + "ref/netcore50/System.ServiceModel.Security.dll", + "ref/netstandard1.0/System.ServiceModel.Security.dll", + "ref/netstandard1.1/System.ServiceModel.Security.dll", + "ref/netstandard2.0/System.ServiceModel.Security.dll", + "ref/portable-net45+win8+wp8/_._", + "ref/win8/_._", + "ref/wp8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.servicemodel.security.4.7.0.nupkg.sha512", + "system.servicemodel.security.nuspec" + ] + }, + "System.ServiceModel.Syndication/5.0.0": { + "sha512": "xjwRFydlevI/DMLlBcDRbOmofJTZNoJ0FCkEPdMw9i+85lDbl8Pw001LJKQbRSeHSVJCEuPfAvEuC1TAumxcmw==", + "type": "package", + "path": "system.servicemodel.syndication/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.ServiceModel.Syndication.dll", + "lib/net461/System.ServiceModel.Syndication.xml", + "lib/netstandard2.0/System.ServiceModel.Syndication.dll", + "lib/netstandard2.0/System.ServiceModel.Syndication.xml", + "ref/net461/System.ServiceModel.Syndication.dll", + "ref/net461/System.ServiceModel.Syndication.xml", + "ref/netcoreapp2.1/System.ServiceModel.Syndication.dll", + "ref/netcoreapp2.1/System.ServiceModel.Syndication.xml", + "ref/netstandard2.0/System.ServiceModel.Syndication.dll", + "ref/netstandard2.0/System.ServiceModel.Syndication.xml", + "runtimes/win/lib/net461/System.ServiceModel.Syndication.dll", + "runtimes/win/lib/net461/System.ServiceModel.Syndication.xml", + "system.servicemodel.syndication.5.0.0.nupkg.sha512", + "system.servicemodel.syndication.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ServiceProcess.ServiceController/5.0.0": { + "sha512": "p2yX167GW1pr2DCR6cW+cBKrvhli4thckXk108faFaTPHnoudb0AYPcIPq3nmrwn7IQj9FEmjpyJlXzcOmIjjw==", + "type": "package", + "path": "system.serviceprocess.servicecontroller/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.ServiceProcess.ServiceController.dll", + "lib/net461/System.ServiceProcess.ServiceController.xml", + "lib/netstandard1.4/System.ServiceProcess.ServiceController.dll", + "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll", + "lib/netstandard2.0/System.ServiceProcess.ServiceController.xml", + "ref/net461/System.ServiceProcess.ServiceController.dll", + "ref/net461/System.ServiceProcess.ServiceController.xml", + "ref/netstandard1.4/System.ServiceProcess.ServiceController.dll", + "ref/netstandard1.4/System.ServiceProcess.ServiceController.xml", + "ref/netstandard1.4/de/System.ServiceProcess.ServiceController.xml", + "ref/netstandard1.4/es/System.ServiceProcess.ServiceController.xml", + "ref/netstandard1.4/fr/System.ServiceProcess.ServiceController.xml", + "ref/netstandard1.4/it/System.ServiceProcess.ServiceController.xml", + "ref/netstandard1.4/ja/System.ServiceProcess.ServiceController.xml", + "ref/netstandard1.4/ko/System.ServiceProcess.ServiceController.xml", + "ref/netstandard1.4/ru/System.ServiceProcess.ServiceController.xml", + "ref/netstandard1.4/zh-hans/System.ServiceProcess.ServiceController.xml", + "ref/netstandard1.4/zh-hant/System.ServiceProcess.ServiceController.xml", + "ref/netstandard2.0/System.ServiceProcess.ServiceController.dll", + "ref/netstandard2.0/System.ServiceProcess.ServiceController.xml", + "runtimes/win/lib/net461/System.ServiceProcess.ServiceController.dll", + "runtimes/win/lib/net461/System.ServiceProcess.ServiceController.xml", + "runtimes/win/lib/netstandard1.5/System.ServiceProcess.ServiceController.dll", + "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.dll", + "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.xml", + "system.serviceprocess.servicecontroller.5.0.0.nupkg.sha512", + "system.serviceprocess.servicecontroller.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.CodePages/5.0.0": { + "sha512": "NyscU59xX6Uo91qvhOs2Ccho3AR2TnZPomo1Z0K6YpyztBPM/A5VbkzOO19sy3A3i1TtEnTxA7bCe3Us+r5MWg==", + "type": "package", + "path": "system.text.encoding.codepages/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.xml", + "lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "system.text.encoding.codepages.5.0.0.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encodings.Web/5.0.1": { + "sha512": "KmJ+CJXizDofbq6mpqDoRRLcxgOd2z9X3XoFNULSbvbqVRZkFX3istvr+MUjL6Zw1RT+RNdoI4GYidIINtgvqQ==", + "type": "package", + "path": "system.text.encodings.web/5.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Text.Encodings.Web.dll", + "lib/net461/System.Text.Encodings.Web.xml", + "lib/netcoreapp3.0/System.Text.Encodings.Web.dll", + "lib/netcoreapp3.0/System.Text.Encodings.Web.xml", + "lib/netstandard1.0/System.Text.Encodings.Web.dll", + "lib/netstandard1.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.1/System.Text.Encodings.Web.dll", + "lib/netstandard2.1/System.Text.Encodings.Web.xml", + "system.text.encodings.web.5.0.1.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading/4.3.0": { + "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.AccessControl/5.0.0": { + "sha512": "WJ9w9m4iHJVq0VoH7hZvYAccbRq95itYRhAAXd6M4kVCzLmT6NqTwmSXKwp3oQilWHhYTXgqaIXxBfg8YaqtmA==", + "type": "package", + "path": "system.threading.accesscontrol/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Threading.AccessControl.dll", + "lib/net461/System.Threading.AccessControl.dll", + "lib/net461/System.Threading.AccessControl.xml", + "lib/netstandard1.3/System.Threading.AccessControl.dll", + "lib/netstandard2.0/System.Threading.AccessControl.dll", + "lib/netstandard2.0/System.Threading.AccessControl.xml", + "ref/net46/System.Threading.AccessControl.dll", + "ref/net461/System.Threading.AccessControl.dll", + "ref/net461/System.Threading.AccessControl.xml", + "ref/netstandard1.3/System.Threading.AccessControl.dll", + "ref/netstandard1.3/System.Threading.AccessControl.xml", + "ref/netstandard1.3/de/System.Threading.AccessControl.xml", + "ref/netstandard1.3/es/System.Threading.AccessControl.xml", + "ref/netstandard1.3/fr/System.Threading.AccessControl.xml", + "ref/netstandard1.3/it/System.Threading.AccessControl.xml", + "ref/netstandard1.3/ja/System.Threading.AccessControl.xml", + "ref/netstandard1.3/ko/System.Threading.AccessControl.xml", + "ref/netstandard1.3/ru/System.Threading.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.Threading.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.Threading.AccessControl.xml", + "ref/netstandard2.0/System.Threading.AccessControl.dll", + "ref/netstandard2.0/System.Threading.AccessControl.xml", + "runtimes/win/lib/net46/System.Threading.AccessControl.dll", + "runtimes/win/lib/net461/System.Threading.AccessControl.dll", + "runtimes/win/lib/net461/System.Threading.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.Threading.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.Threading.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.Threading.AccessControl.xml", + "system.threading.accesscontrol.5.0.0.nupkg.sha512", + "system.threading.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Extensions/4.5.3": { + "sha512": "+MvhNtcvIbqmhANyKu91jQnvIRVSTiaOiFNfKWwXGHG48YAb4I/TyH8spsySiPYla7gKal5ZnF3teJqZAximyQ==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netcoreapp2.1/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.extensions.4.5.3.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Windows.Extensions/5.0.0": { + "sha512": "c1ho9WU9ZxMZawML+ssPKZfdnrg/OjR3pe0m9v8230z3acqphwvPJqzAkH54xRYm5ntZHGG1EPP3sux9H3qSPg==", + "type": "package", + "path": "system.windows.extensions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.0/System.Windows.Extensions.dll", + "lib/netcoreapp3.0/System.Windows.Extensions.xml", + "ref/netcoreapp3.0/System.Windows.Extensions.dll", + "ref/netcoreapp3.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml", + "system.windows.extensions.5.0.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + } + }, + "projectFileDependencyGroups": { + "net5.0": [ + "Microsoft.PowerShell.SDK >= 7.1.3", + "System.Management.Automation >= 7.1.3" + ] + }, + "packageFolders": { + "C:\\Users\\סארט\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\סארט\\source\\repos\\PowershellScriptHider\\PowershellScriptHider\\PowershellScriptHider.csproj", + "projectName": "PowershellScriptHider", + "projectPath": "C:\\Users\\סארט\\source\\repos\\PowershellScriptHider\\PowershellScriptHider\\PowershellScriptHider.csproj", + "packagesPath": "C:\\Users\\סארט\\.nuget\\packages\\", + "outputPath": "C:\\Users\\סארט\\source\\repos\\PowershellScriptHider\\PowershellScriptHider\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\סארט\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Users\\סארט\\source\\repos\\NetWork": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "dependencies": { + "Microsoft.PowerShell.SDK": { + "target": "Package", + "version": "[7.1.3, )" + }, + "System.Management.Automation": { + "target": "Package", + "version": "[7.1.3, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/PowershellScriptHider/PowershellScriptHider/obj/project.nuget.cache b/PowershellScriptHider/PowershellScriptHider/obj/project.nuget.cache new file mode 100644 index 0000000..49af9dd --- /dev/null +++ b/PowershellScriptHider/PowershellScriptHider/obj/project.nuget.cache @@ -0,0 +1,122 @@ +{ + "version": 2, + "dgSpecHash": "OuRFOQwUJBdesLF5YxluSFsFjHfVGRmE1aNyl+n9GCiuE+whf4sLKqrP2URI5uqJVhW7fRy0s92rt3bGp2eN4A==", + "success": true, + "projectFilePath": "C:\\Users\\סארט\\source\\repos\\PowershellScriptHider\\PowershellScriptHider\\PowershellScriptHider.csproj", + "expectedPackageFiles": [ + "C:\\Users\\סארט\\.nuget\\packages\\markdig.signed\\0.21.1\\markdig.signed.0.21.1.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.applicationinsights\\2.15.0\\microsoft.applicationinsights.2.15.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.0.0\\microsoft.codeanalysis.analyzers.3.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.codeanalysis.common\\3.7.0\\microsoft.codeanalysis.common.3.7.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.codeanalysis.csharp\\3.7.0\\microsoft.codeanalysis.csharp.3.7.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.csharp\\4.3.0\\microsoft.csharp.4.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.management.infrastructure\\2.0.0\\microsoft.management.infrastructure.2.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.management.infrastructure.cimcmdlets\\7.1.3\\microsoft.management.infrastructure.cimcmdlets.7.1.3.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.management.infrastructure.runtime.unix\\2.0.0\\microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.management.infrastructure.runtime.win\\2.0.0\\microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.1\\microsoft.netcore.platforms.5.0.1.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.netcore.windows.apisets\\1.0.1\\microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.powershell.commands.diagnostics\\7.1.3\\microsoft.powershell.commands.diagnostics.7.1.3.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.powershell.commands.management\\7.1.3\\microsoft.powershell.commands.management.7.1.3.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.powershell.commands.utility\\7.1.3\\microsoft.powershell.commands.utility.7.1.3.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.powershell.consolehost\\7.1.3\\microsoft.powershell.consolehost.7.1.3.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.powershell.coreclr.eventing\\7.1.3\\microsoft.powershell.coreclr.eventing.7.1.3.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.powershell.markdownrender\\7.1.3\\microsoft.powershell.markdownrender.7.1.3.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.powershell.native\\7.1.0\\microsoft.powershell.native.7.1.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.powershell.sdk\\7.1.3\\microsoft.powershell.sdk.7.1.3.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.powershell.security\\7.1.3\\microsoft.powershell.security.7.1.3.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.win32.registry\\5.0.0\\microsoft.win32.registry.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.win32.registry.accesscontrol\\5.0.0\\microsoft.win32.registry.accesscontrol.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.win32.systemevents\\5.0.0\\microsoft.win32.systemevents.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.windows.compatibility\\5.0.0\\microsoft.windows.compatibility.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.wsman.management\\7.1.3\\microsoft.wsman.management.7.1.3.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.wsman.runtime\\7.1.3\\microsoft.wsman.runtime.7.1.3.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\namotion.reflection\\1.0.14\\namotion.reflection.1.0.14.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\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\\system.codedom\\5.0.0\\system.codedom.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.collections.immutable\\1.5.0\\system.collections.immutable.1.5.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.componentmodel.composition\\5.0.0\\system.componentmodel.composition.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.componentmodel.composition.registration\\5.0.0\\system.componentmodel.composition.registration.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.configuration.configurationmanager\\5.0.0\\system.configuration.configurationmanager.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.data.datasetextensions\\4.5.0\\system.data.datasetextensions.4.5.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.data.odbc\\5.0.0\\system.data.odbc.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.data.oledb\\5.0.0\\system.data.oledb.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.data.sqlclient\\4.8.2\\system.data.sqlclient.4.8.2.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.6.0\\system.diagnostics.diagnosticsource.4.6.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.diagnostics.eventlog\\5.0.1\\system.diagnostics.eventlog.5.0.1.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.diagnostics.performancecounter\\5.0.0\\system.diagnostics.performancecounter.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.directoryservices\\5.0.0\\system.directoryservices.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.directoryservices.accountmanagement\\5.0.0\\system.directoryservices.accountmanagement.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.directoryservices.protocols\\5.0.0\\system.directoryservices.protocols.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.drawing.common\\5.0.2\\system.drawing.common.5.0.2.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.formats.asn1\\5.0.0\\system.formats.asn1.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.io.filesystem.accesscontrol\\5.0.0\\system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.io.packaging\\5.0.0\\system.io.packaging.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.io.pipes.accesscontrol\\5.0.0\\system.io.pipes.accesscontrol.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.io.ports\\5.0.0\\system.io.ports.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.management\\5.0.0\\system.management.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.management.automation\\7.1.3\\system.management.automation.7.1.3.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.net.http.winhttphandler\\5.0.0\\system.net.http.winhttphandler.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.private.servicemodel\\4.7.0\\system.private.servicemodel.4.7.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.reflection.context\\5.0.0\\system.reflection.context.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.reflection.dispatchproxy\\4.5.0\\system.reflection.dispatchproxy.4.5.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.reflection.emit\\4.7.0\\system.reflection.emit.4.7.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.7.0\\system.reflection.emit.ilgeneration.4.7.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.reflection.emit.lightweight\\4.7.0\\system.reflection.emit.lightweight.4.7.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.reflection.metadata\\1.6.0\\system.reflection.metadata.1.6.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.runtime.caching\\5.0.0\\system.runtime.caching.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\5.0.0\\system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.security.accesscontrol\\5.0.0\\system.security.accesscontrol.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.security.cryptography.cng\\5.0.0\\system.security.cryptography.cng.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.security.cryptography.pkcs\\5.0.1\\system.security.cryptography.pkcs.5.0.1.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.security.cryptography.protecteddata\\5.0.0\\system.security.cryptography.protecteddata.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.security.cryptography.xml\\5.0.0\\system.security.cryptography.xml.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.security.permissions\\5.0.0\\system.security.permissions.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.servicemodel.duplex\\4.7.0\\system.servicemodel.duplex.4.7.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.servicemodel.http\\4.7.0\\system.servicemodel.http.4.7.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.servicemodel.nettcp\\4.7.0\\system.servicemodel.nettcp.4.7.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.servicemodel.primitives\\4.7.0\\system.servicemodel.primitives.4.7.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.servicemodel.security\\4.7.0\\system.servicemodel.security.4.7.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.servicemodel.syndication\\5.0.0\\system.servicemodel.syndication.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.serviceprocess.servicecontroller\\5.0.0\\system.serviceprocess.servicecontroller.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.text.encoding.codepages\\5.0.0\\system.text.encoding.codepages.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.text.encodings.web\\5.0.1\\system.text.encodings.web.5.0.1.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.threading.accesscontrol\\5.0.0\\system.threading.accesscontrol.5.0.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.3\\system.threading.tasks.extensions.4.5.3.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.windows.extensions\\5.0.0\\system.windows.extensions.5.0.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/PowershellScriptHider/desktop.ini b/PowershellScriptHider/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/PowershellScriptHider/desktop.ini differ diff --git a/RunNormally/.vs/RunNormally/DesignTimeBuild/.dtbcache.v2 b/RunNormally/.vs/RunNormally/DesignTimeBuild/.dtbcache.v2 new file mode 100644 index 0000000..5cc1d7e Binary files /dev/null and b/RunNormally/.vs/RunNormally/DesignTimeBuild/.dtbcache.v2 differ diff --git a/RunNormally/.vs/RunNormally/DesignTimeBuild/desktop.ini b/RunNormally/.vs/RunNormally/DesignTimeBuild/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/RunNormally/.vs/RunNormally/DesignTimeBuild/desktop.ini differ diff --git a/RunNormally/.vs/RunNormally/desktop.ini b/RunNormally/.vs/RunNormally/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/RunNormally/.vs/RunNormally/desktop.ini differ diff --git a/RunNormally/.vs/RunNormally/v16/.suo b/RunNormally/.vs/RunNormally/v16/.suo new file mode 100644 index 0000000..4b7dc5b Binary files /dev/null and b/RunNormally/.vs/RunNormally/v16/.suo differ diff --git a/RunNormally/.vs/RunNormally/v16/desktop.ini b/RunNormally/.vs/RunNormally/v16/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/RunNormally/.vs/RunNormally/v16/desktop.ini differ diff --git a/RunNormally/.vs/RunNormally/v17/.futdcache.v1 b/RunNormally/.vs/RunNormally/v17/.futdcache.v1 new file mode 100644 index 0000000..38280b8 Binary files /dev/null and b/RunNormally/.vs/RunNormally/v17/.futdcache.v1 differ diff --git a/RunNormally/.vs/RunNormally/v17/.suo b/RunNormally/.vs/RunNormally/v17/.suo new file mode 100644 index 0000000..d766438 Binary files /dev/null and b/RunNormally/.vs/RunNormally/v17/.suo differ diff --git a/RunNormally/.vs/RunNormally/v17/desktop.ini b/RunNormally/.vs/RunNormally/v17/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/RunNormally/.vs/RunNormally/v17/desktop.ini differ diff --git a/RunNormally/.vs/desktop.ini b/RunNormally/.vs/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/RunNormally/.vs/desktop.ini differ diff --git a/RunNormally/RunNormally.sln b/RunNormally/RunNormally.sln new file mode 100644 index 0000000..3aa5311 --- /dev/null +++ b/RunNormally/RunNormally.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31424.327 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RunNormally", "RunNormally\RunNormally.csproj", "{A49A88BD-617A-45CE-B40F-CE4ECDC7B482}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A49A88BD-617A-45CE-B40F-CE4ECDC7B482}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A49A88BD-617A-45CE-B40F-CE4ECDC7B482}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A49A88BD-617A-45CE-B40F-CE4ECDC7B482}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A49A88BD-617A-45CE-B40F-CE4ECDC7B482}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {F1E27C41-1F49-490D-9DBE-25E604B27E25} + EndGlobalSection +EndGlobal diff --git a/RunNormally/RunNormally/Program.cs b/RunNormally/RunNormally/Program.cs new file mode 100644 index 0000000..11ee1d7 --- /dev/null +++ b/RunNormally/RunNormally/Program.cs @@ -0,0 +1,62 @@ +using Newtonsoft.Json; +using System.Diagnostics; + +namespace Runas +{ + class Program + { + public static dynamic jprograms = JsonConvert.DeserializeObject(RunNormally.Properties.Resources.progs); + + public static bool DoRun(string program) + { + Process[] process = Process.GetProcessesByName(program); + return (process.Length > 0); + } + public static void RunProcess(string programName) + { + + if (!(DoRun(programName))) + { + if (programName.Equals("AutoHotKey")) + { + Process.Start(jprograms[programName][0].Value, $"\u0022{jprograms[programName][1].Value.ToString()}\u0022"); + } + + else if (jprograms[programName].Count > 1) + { + foreach (var prog in jprograms[programName]) + { + + Process.Start(prog.Value); + } + } + else if ((jprograms[programName].Count == 1) && (!(programName.Equals("RunAsMe")))) + { + Process.Start(jprograms[programName][0].Value); + } + else if (programName.Equals("RunAsMe")) + { + System.Diagnostics.Process file = new(); + file.StartInfo.FileName = jprograms[programName][0].Value; + file.StartInfo.UseShellExecute = true; + file.StartInfo.Verb = "runas"; + file.Start(); + } + } + } + static void Main(string[] args) + { + Newtonsoft.Json.Linq.JArray r = new(); + string[] drivefs = System.IO.Directory.GetFiles("C:\\Program Files\\Google", "GoogleDriveFS.exe", System.IO.SearchOption.AllDirectories); + r.Add(drivefs[^1]); + jprograms.Add("GoogleDriveFS", r); + foreach (var prog in jprograms) + { + string ProgProg = ((Newtonsoft.Json.Linq.JProperty)prog).Name; + System.Threading.Thread thread = new(new System.Threading.ThreadStart(() => RunProcess(ProgProg))); + thread.Start(); + //RunProcess(ProgProg); + } + } + } +} diff --git a/RunNormally/RunNormally/Properties/Resources.Designer.cs b/RunNormally/RunNormally/Properties/Resources.Designer.cs new file mode 100644 index 0000000..b210613 --- /dev/null +++ b/RunNormally/RunNormally/Properties/Resources.Designer.cs @@ -0,0 +1,76 @@ +//------------------------------------------------------------------------------ +// +// 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. +// +//------------------------------------------------------------------------------ + +namespace RunNormally.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("RunNormally.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to { + /// "QuickLook": ["C:\\Users\\סארט\\AppData\\Local\\Programs\\QuickLook\\QuickLook.exe"], + /// "nimi places": ["D:\\nimi places.exe"], + /// "RunAsMe": ["D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\Runas\\Runas\\bin\\Debug\\net5.0\\Runas.exe"] + ///}. + /// + internal static string progs { + get { + return ResourceManager.GetString("progs", resourceCulture); + } + } + } +} diff --git a/RunNormally/RunNormally/Properties/Resources.resx b/RunNormally/RunNormally/Properties/Resources.resx new file mode 100644 index 0000000..813bd22 --- /dev/null +++ b/RunNormally/RunNormally/Properties/Resources.resx @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + ..\Resources\progs.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 + + \ No newline at end of file diff --git a/RunNormally/RunNormally/Properties/desktop.ini b/RunNormally/RunNormally/Properties/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/RunNormally/RunNormally/Properties/desktop.ini differ diff --git a/RunNormally/RunNormally/Resources/desktop.ini b/RunNormally/RunNormally/Resources/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/RunNormally/RunNormally/Resources/desktop.ini differ diff --git a/RunNormally/RunNormally/Resources/progs.json b/RunNormally/RunNormally/Resources/progs.json new file mode 100644 index 0000000..7c238bc --- /dev/null +++ b/RunNormally/RunNormally/Resources/progs.json @@ -0,0 +1,5 @@ +{ + "QuickLook": [ "C:\\Users\\סארט\\AppData\\Local\\Programs\\QuickLook\\QuickLook.exe" ], + "nimi places": [ "D:\\nimi places.exe" ], + "RunAsMe": [ "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\Runas\\Runas\\bin\\Debug\\net5.0\\Runas.exe" ] +} \ No newline at end of file diff --git a/RunNormally/RunNormally/RunNormally.csproj b/RunNormally/RunNormally/RunNormally.csproj new file mode 100644 index 0000000..8258d08 --- /dev/null +++ b/RunNormally/RunNormally/RunNormally.csproj @@ -0,0 +1,29 @@ + + + + WinExe + net5.0 + + + + + + + + + + + True + True + Resources.resx + + + + + + ResXFileCodeGenerator + Resources.Designer.cs + + + + diff --git a/RunNormally/RunNormally/bin/Debug/desktop.ini b/RunNormally/RunNormally/bin/Debug/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/RunNormally/RunNormally/bin/Debug/desktop.ini differ diff --git a/RunNormally/RunNormally/bin/Debug/net5.0/Newtonsoft.Json.dll b/RunNormally/RunNormally/bin/Debug/net5.0/Newtonsoft.Json.dll new file mode 100644 index 0000000..1ffeabe Binary files /dev/null and b/RunNormally/RunNormally/bin/Debug/net5.0/Newtonsoft.Json.dll differ diff --git a/RunNormally/RunNormally/bin/Debug/net5.0/RunNormally.deps.json b/RunNormally/RunNormally/bin/Debug/net5.0/RunNormally.deps.json new file mode 100644 index 0000000..32efd5d --- /dev/null +++ b/RunNormally/RunNormally/bin/Debug/net5.0/RunNormally.deps.json @@ -0,0 +1,41 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v5.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v5.0": { + "RunNormally/1.0.0": { + "dependencies": { + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "RunNormally.dll": {} + } + }, + "Newtonsoft.Json/13.0.1": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" + } + } + } + } + }, + "libraries": { + "RunNormally/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/RunNormally/RunNormally/bin/Debug/net5.0/RunNormally.dll b/RunNormally/RunNormally/bin/Debug/net5.0/RunNormally.dll new file mode 100644 index 0000000..6248156 Binary files /dev/null and b/RunNormally/RunNormally/bin/Debug/net5.0/RunNormally.dll differ diff --git a/RunNormally/RunNormally/bin/Debug/net5.0/RunNormally.exe b/RunNormally/RunNormally/bin/Debug/net5.0/RunNormally.exe new file mode 100644 index 0000000..0315085 Binary files /dev/null and b/RunNormally/RunNormally/bin/Debug/net5.0/RunNormally.exe differ diff --git a/RunNormally/RunNormally/bin/Debug/net5.0/RunNormally.pdb b/RunNormally/RunNormally/bin/Debug/net5.0/RunNormally.pdb new file mode 100644 index 0000000..e5c2423 Binary files /dev/null and b/RunNormally/RunNormally/bin/Debug/net5.0/RunNormally.pdb differ diff --git a/RunNormally/RunNormally/bin/Debug/net5.0/RunNormally.runtimeconfig.dev.json b/RunNormally/RunNormally/bin/Debug/net5.0/RunNormally.runtimeconfig.dev.json new file mode 100644 index 0000000..c1d81ac --- /dev/null +++ b/RunNormally/RunNormally/bin/Debug/net5.0/RunNormally.runtimeconfig.dev.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "C:\\Users\\סארט\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\סארט\\.nuget\\packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ] + } +} \ No newline at end of file diff --git a/RunNormally/RunNormally/bin/Debug/net5.0/RunNormally.runtimeconfig.json b/RunNormally/RunNormally/bin/Debug/net5.0/RunNormally.runtimeconfig.json new file mode 100644 index 0000000..a8e7e82 --- /dev/null +++ b/RunNormally/RunNormally/bin/Debug/net5.0/RunNormally.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net5.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "5.0.0" + } + } +} \ No newline at end of file diff --git a/RunNormally/RunNormally/bin/Debug/net5.0/desktop.ini b/RunNormally/RunNormally/bin/Debug/net5.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/RunNormally/RunNormally/bin/Debug/net5.0/desktop.ini differ diff --git a/RunNormally/RunNormally/bin/Debug/net5.0/ref/RunNormally.dll b/RunNormally/RunNormally/bin/Debug/net5.0/ref/RunNormally.dll new file mode 100644 index 0000000..d97b559 Binary files /dev/null and b/RunNormally/RunNormally/bin/Debug/net5.0/ref/RunNormally.dll differ diff --git a/RunNormally/RunNormally/bin/Debug/net5.0/ref/desktop.ini b/RunNormally/RunNormally/bin/Debug/net5.0/ref/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/RunNormally/RunNormally/bin/Debug/net5.0/ref/desktop.ini differ diff --git a/RunNormally/RunNormally/bin/Release/desktop.ini b/RunNormally/RunNormally/bin/Release/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/RunNormally/RunNormally/bin/Release/desktop.ini differ diff --git a/RunNormally/RunNormally/bin/Release/net5.0/desktop.ini b/RunNormally/RunNormally/bin/Release/net5.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/RunNormally/RunNormally/bin/Release/net5.0/desktop.ini differ diff --git a/RunNormally/RunNormally/bin/Release/net5.0/ref/desktop.ini b/RunNormally/RunNormally/bin/Release/net5.0/ref/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/RunNormally/RunNormally/bin/Release/net5.0/ref/desktop.ini differ diff --git a/RunNormally/RunNormally/bin/desktop.ini b/RunNormally/RunNormally/bin/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/RunNormally/RunNormally/bin/desktop.ini differ diff --git a/RunNormally/RunNormally/desktop.ini b/RunNormally/RunNormally/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/RunNormally/RunNormally/desktop.ini differ diff --git a/RunNormally/RunNormally/obj/Debug/desktop.ini b/RunNormally/RunNormally/obj/Debug/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/RunNormally/RunNormally/obj/Debug/desktop.ini differ diff --git a/RunNormally/RunNormally/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/RunNormally/RunNormally/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2f7e5ec --- /dev/null +++ b/RunNormally/RunNormally/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.AssemblyInfo.cs b/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.AssemblyInfo.cs new file mode 100644 index 0000000..2b59d21 --- /dev/null +++ b/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("RunNormally")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("RunNormally")] +[assembly: System.Reflection.AssemblyTitleAttribute("RunNormally")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.AssemblyInfoInputs.cache b/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.AssemblyInfoInputs.cache new file mode 100644 index 0000000..8d599fd --- /dev/null +++ b/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +dbfaba4dc64c0ae420182894de67b5826e62a448 diff --git a/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.GeneratedMSBuildEditorConfig.editorconfig b/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d63008d --- /dev/null +++ b/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = RunNormally +build_property.ProjectDir = D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\ diff --git a/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.Properties.Resources.resources b/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.Properties.Resources.resources new file mode 100644 index 0000000..994efe6 Binary files /dev/null and b/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.Properties.Resources.resources differ diff --git a/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.assets.cache b/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.assets.cache new file mode 100644 index 0000000..f4f42f8 Binary files /dev/null and b/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.assets.cache differ diff --git a/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.csproj.AssemblyReference.cache b/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.csproj.AssemblyReference.cache new file mode 100644 index 0000000..f5e894a Binary files /dev/null and b/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.csproj.AssemblyReference.cache differ diff --git a/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.csproj.CopyComplete b/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.csproj.CoreCompileInputs.cache b/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..e1a3b67 --- /dev/null +++ b/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +c2f02db10cf69175123f1a3416e5c651c22b510c diff --git a/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.csproj.FileListAbsolute.txt b/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..76717bb --- /dev/null +++ b/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.csproj.FileListAbsolute.txt @@ -0,0 +1,39 @@ +C:\Users\סארט\source\repos\RunNormally\RunNormally\bin\Debug\net5.0\RunNormally.exe +C:\Users\סארט\source\repos\RunNormally\RunNormally\bin\Debug\net5.0\RunNormally.deps.json +C:\Users\סארט\source\repos\RunNormally\RunNormally\bin\Debug\net5.0\RunNormally.runtimeconfig.json +C:\Users\סארט\source\repos\RunNormally\RunNormally\bin\Debug\net5.0\RunNormally.runtimeconfig.dev.json +C:\Users\סארט\source\repos\RunNormally\RunNormally\bin\Debug\net5.0\RunNormally.dll +C:\Users\סארט\source\repos\RunNormally\RunNormally\bin\Debug\net5.0\ref\RunNormally.dll +C:\Users\סארט\source\repos\RunNormally\RunNormally\bin\Debug\net5.0\RunNormally.pdb +C:\Users\סארט\source\repos\RunNormally\RunNormally\bin\Debug\net5.0\Newtonsoft.Json.dll +C:\Users\סארט\source\repos\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.csproj.AssemblyReference.cache +C:\Users\סארט\source\repos\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.Properties.Resources.resources +C:\Users\סארט\source\repos\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.csproj.GenerateResource.cache +C:\Users\סארט\source\repos\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\סארט\source\repos\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.AssemblyInfoInputs.cache +C:\Users\סארט\source\repos\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.AssemblyInfo.cs +C:\Users\סארט\source\repos\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.csproj.CoreCompileInputs.cache +C:\Users\סארט\source\repos\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.csproj.CopyComplete +C:\Users\סארט\source\repos\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.dll +C:\Users\סארט\source\repos\RunNormally\RunNormally\obj\Debug\net5.0\ref\RunNormally.dll +C:\Users\סארט\source\repos\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.pdb +C:\Users\סארט\source\repos\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.genruntimeconfig.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\bin\Debug\net5.0\RunNormally.exe +D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\bin\Debug\net5.0\RunNormally.deps.json +D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\bin\Debug\net5.0\RunNormally.runtimeconfig.json +D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\bin\Debug\net5.0\RunNormally.runtimeconfig.dev.json +D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\bin\Debug\net5.0\RunNormally.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\bin\Debug\net5.0\ref\RunNormally.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\bin\Debug\net5.0\RunNormally.pdb +D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\bin\Debug\net5.0\Newtonsoft.Json.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.Properties.Resources.resources +D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.csproj.GenerateResource.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.GeneratedMSBuildEditorConfig.editorconfig +D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.AssemblyInfoInputs.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.AssemblyInfo.cs +D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.csproj.CoreCompileInputs.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\obj\Debug\net5.0\ref\RunNormally.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.pdb +D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.genruntimeconfig.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\RunNormally\RunNormally\obj\Debug\net5.0\RunNormally.csproj.CopyComplete diff --git a/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.csproj.GenerateResource.cache b/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.csproj.GenerateResource.cache new file mode 100644 index 0000000..2e8393a Binary files /dev/null and b/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.csproj.GenerateResource.cache differ diff --git a/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.dll b/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.dll new file mode 100644 index 0000000..6248156 Binary files /dev/null and b/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.dll differ diff --git a/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.genruntimeconfig.cache b/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.genruntimeconfig.cache new file mode 100644 index 0000000..1e31aae --- /dev/null +++ b/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.genruntimeconfig.cache @@ -0,0 +1 @@ +097a550015b5ae7ea7d9461296fe14aeeb539897 diff --git a/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.pdb b/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.pdb new file mode 100644 index 0000000..e5c2423 Binary files /dev/null and b/RunNormally/RunNormally/obj/Debug/net5.0/RunNormally.pdb differ diff --git a/RunNormally/RunNormally/obj/Debug/net5.0/TempPE/Properties.Resources.Designer.cs.dll b/RunNormally/RunNormally/obj/Debug/net5.0/TempPE/Properties.Resources.Designer.cs.dll new file mode 100644 index 0000000..52c2b52 Binary files /dev/null and b/RunNormally/RunNormally/obj/Debug/net5.0/TempPE/Properties.Resources.Designer.cs.dll differ diff --git a/RunNormally/RunNormally/obj/Debug/net5.0/TempPE/desktop.ini b/RunNormally/RunNormally/obj/Debug/net5.0/TempPE/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/RunNormally/RunNormally/obj/Debug/net5.0/TempPE/desktop.ini differ diff --git a/RunNormally/RunNormally/obj/Debug/net5.0/apphost.exe b/RunNormally/RunNormally/obj/Debug/net5.0/apphost.exe new file mode 100644 index 0000000..0315085 Binary files /dev/null and b/RunNormally/RunNormally/obj/Debug/net5.0/apphost.exe differ diff --git a/RunNormally/RunNormally/obj/Debug/net5.0/desktop.ini b/RunNormally/RunNormally/obj/Debug/net5.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/RunNormally/RunNormally/obj/Debug/net5.0/desktop.ini differ diff --git a/RunNormally/RunNormally/obj/Debug/net5.0/ref/RunNormally.dll b/RunNormally/RunNormally/obj/Debug/net5.0/ref/RunNormally.dll new file mode 100644 index 0000000..d97b559 Binary files /dev/null and b/RunNormally/RunNormally/obj/Debug/net5.0/ref/RunNormally.dll differ diff --git a/RunNormally/RunNormally/obj/Debug/net5.0/ref/desktop.ini b/RunNormally/RunNormally/obj/Debug/net5.0/ref/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/RunNormally/RunNormally/obj/Debug/net5.0/ref/desktop.ini differ diff --git a/RunNormally/RunNormally/obj/Release/desktop.ini b/RunNormally/RunNormally/obj/Release/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/RunNormally/RunNormally/obj/Release/desktop.ini differ diff --git a/RunNormally/RunNormally/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/RunNormally/RunNormally/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2f7e5ec --- /dev/null +++ b/RunNormally/RunNormally/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/RunNormally/RunNormally/obj/Release/net5.0/RunNormally.AssemblyInfo.cs b/RunNormally/RunNormally/obj/Release/net5.0/RunNormally.AssemblyInfo.cs new file mode 100644 index 0000000..a3d6c23 --- /dev/null +++ b/RunNormally/RunNormally/obj/Release/net5.0/RunNormally.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("RunNormally")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("RunNormally")] +[assembly: System.Reflection.AssemblyTitleAttribute("RunNormally")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/RunNormally/RunNormally/obj/Release/net5.0/RunNormally.AssemblyInfoInputs.cache b/RunNormally/RunNormally/obj/Release/net5.0/RunNormally.AssemblyInfoInputs.cache new file mode 100644 index 0000000..a2f324f --- /dev/null +++ b/RunNormally/RunNormally/obj/Release/net5.0/RunNormally.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +0be6c031f524a78582103089e0c30d31d4a6cc04 diff --git a/RunNormally/RunNormally/obj/Release/net5.0/RunNormally.GeneratedMSBuildEditorConfig.editorconfig b/RunNormally/RunNormally/obj/Release/net5.0/RunNormally.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d7e2983 --- /dev/null +++ b/RunNormally/RunNormally/obj/Release/net5.0/RunNormally.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,8 @@ +is_global = true +build_property.TargetFramework = net5.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.PublishSingleFile = +build_property.IncludeAllContentForSelfExtract = +build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows diff --git a/RunNormally/RunNormally/obj/Release/net5.0/RunNormally.assets.cache b/RunNormally/RunNormally/obj/Release/net5.0/RunNormally.assets.cache new file mode 100644 index 0000000..3ef98b8 Binary files /dev/null and b/RunNormally/RunNormally/obj/Release/net5.0/RunNormally.assets.cache differ diff --git a/RunNormally/RunNormally/obj/Release/net5.0/desktop.ini b/RunNormally/RunNormally/obj/Release/net5.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/RunNormally/RunNormally/obj/Release/net5.0/desktop.ini differ diff --git a/RunNormally/RunNormally/obj/Release/net5.0/ref/desktop.ini b/RunNormally/RunNormally/obj/Release/net5.0/ref/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/RunNormally/RunNormally/obj/Release/net5.0/ref/desktop.ini differ diff --git a/RunNormally/RunNormally/obj/RunNormally.csproj.nuget.dgspec.json b/RunNormally/RunNormally/obj/RunNormally.csproj.nuget.dgspec.json new file mode 100644 index 0000000..ac0fa94 --- /dev/null +++ b/RunNormally/RunNormally/obj/RunNormally.csproj.nuget.dgspec.json @@ -0,0 +1,78 @@ +{ + "format": 1, + "restore": { + "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\RunNormally\\RunNormally\\RunNormally.csproj": {} + }, + "projects": { + "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\RunNormally\\RunNormally\\RunNormally.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\RunNormally\\RunNormally\\RunNormally.csproj", + "projectName": "RunNormally", + "projectPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\RunNormally\\RunNormally\\RunNormally.csproj", + "packagesPath": "C:\\Users\\סארט\\.nuget\\packages\\", + "outputPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\RunNormally\\RunNormally\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\סארט\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "dependencies": { + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.NETCore.App.Host.win-x64", + "version": "[5.0.8, 5.0.8]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100-preview.7.21379.14\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/RunNormally/RunNormally/obj/RunNormally.csproj.nuget.g.props b/RunNormally/RunNormally/obj/RunNormally.csproj.nuget.g.props new file mode 100644 index 0000000..4d0913f --- /dev/null +++ b/RunNormally/RunNormally/obj/RunNormally.csproj.nuget.g.props @@ -0,0 +1,19 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\סארט\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.0.0 + + + + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/RunNormally/RunNormally/obj/RunNormally.csproj.nuget.g.targets b/RunNormally/RunNormally/obj/RunNormally.csproj.nuget.g.targets new file mode 100644 index 0000000..53cfaa1 --- /dev/null +++ b/RunNormally/RunNormally/obj/RunNormally.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/RunNormally/RunNormally/obj/desktop.ini b/RunNormally/RunNormally/obj/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/RunNormally/RunNormally/obj/desktop.ini differ diff --git a/RunNormally/RunNormally/obj/project.assets.json b/RunNormally/RunNormally/obj/project.assets.json new file mode 100644 index 0000000..956610b --- /dev/null +++ b/RunNormally/RunNormally/obj/project.assets.json @@ -0,0 +1,124 @@ +{ + "version": 3, + "targets": { + "net5.0": { + "Newtonsoft.Json/13.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + } + } + }, + "libraries": { + "Newtonsoft.Json/13.0.1": { + "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "type": "package", + "path": "newtonsoft.json/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + } + }, + "projectFileDependencyGroups": { + "net5.0": [ + "Newtonsoft.Json >= 13.0.1" + ] + }, + "packageFolders": { + "C:\\Users\\סארט\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\RunNormally\\RunNormally\\RunNormally.csproj", + "projectName": "RunNormally", + "projectPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\RunNormally\\RunNormally\\RunNormally.csproj", + "packagesPath": "C:\\Users\\סארט\\.nuget\\packages\\", + "outputPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\RunNormally\\RunNormally\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\סארט\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "dependencies": { + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.NETCore.App.Host.win-x64", + "version": "[5.0.8, 5.0.8]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100-preview.7.21379.14\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/RunNormally/RunNormally/obj/project.nuget.cache b/RunNormally/RunNormally/obj/project.nuget.cache new file mode 100644 index 0000000..e616eec --- /dev/null +++ b/RunNormally/RunNormally/obj/project.nuget.cache @@ -0,0 +1,11 @@ +{ + "version": 2, + "dgSpecHash": "2hR8RzqTHiAtQUmxM4F/X5/avtjT+wTfJcfIQZc2CCpZ3uVovRh9mjFzTKEppz/Kz4UddTwfpEfsKRrgi/a/tA==", + "success": true, + "projectFilePath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\RunNormally\\RunNormally\\RunNormally.csproj", + "expectedPackageFiles": [ + "C:\\Users\\סארט\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.netcore.app.host.win-x64\\5.0.8\\microsoft.netcore.app.host.win-x64.5.0.8.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/RunNormally/desktop.ini b/RunNormally/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/RunNormally/desktop.ini differ diff --git a/Runas/.vs/Runas/DesignTimeBuild/.dtbcache.v2 b/Runas/.vs/Runas/DesignTimeBuild/.dtbcache.v2 new file mode 100644 index 0000000..5afedad Binary files /dev/null and b/Runas/.vs/Runas/DesignTimeBuild/.dtbcache.v2 differ diff --git a/Runas/.vs/Runas/DesignTimeBuild/desktop.ini b/Runas/.vs/Runas/DesignTimeBuild/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Runas/.vs/Runas/DesignTimeBuild/desktop.ini differ diff --git a/Runas/.vs/Runas/desktop.ini b/Runas/.vs/Runas/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Runas/.vs/Runas/desktop.ini differ diff --git a/Runas/.vs/Runas/v16/.suo b/Runas/.vs/Runas/v16/.suo new file mode 100644 index 0000000..b8dbb50 Binary files /dev/null and b/Runas/.vs/Runas/v16/.suo differ diff --git a/Runas/.vs/Runas/v16/desktop.ini b/Runas/.vs/Runas/v16/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Runas/.vs/Runas/v16/desktop.ini differ diff --git a/Runas/.vs/desktop.ini b/Runas/.vs/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Runas/.vs/desktop.ini differ diff --git a/Runas/Runas.sln b/Runas/Runas.sln new file mode 100644 index 0000000..aa7249c --- /dev/null +++ b/Runas/Runas.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31424.327 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Runas", "Runas\Runas.csproj", "{59E685B2-BE76-440E-BE79-87B9E483D5DA}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {59E685B2-BE76-440E-BE79-87B9E483D5DA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {59E685B2-BE76-440E-BE79-87B9E483D5DA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {59E685B2-BE76-440E-BE79-87B9E483D5DA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {59E685B2-BE76-440E-BE79-87B9E483D5DA}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {E57A5128-5783-4123-A2C0-50AD2177D814} + EndGlobalSection +EndGlobal diff --git a/Runas/Runas/Program.cs b/Runas/Runas/Program.cs new file mode 100644 index 0000000..e401e46 --- /dev/null +++ b/Runas/Runas/Program.cs @@ -0,0 +1,51 @@ +using System; +using Newtonsoft.Json; +using System.Diagnostics; +namespace Runas +{ + class Program + { + public static dynamic jprograms = JsonConvert.DeserializeObject(Properties.Resources.progs); + + public static bool DoRun(string program) + { + Process[] process = Process.GetProcessesByName(program); + return (process.Length > 0); + } + public static void RunProcess(string programName) + { + + if (!(DoRun(programName))) + { + if (programName.Equals("AutoHotKey")) + { + Process.Start(jprograms[programName][0].Value, $"\u0022{jprograms[programName][1].Value.ToString()}\u0022"); + } + + else if (jprograms[programName].Count > 1) + { + foreach (var prog in jprograms[programName]) + { + if (System.IO.File.Exists(prog.Value)) + { + Process.Start(prog.Value); + } + } + } + else if (jprograms[programName].Count == 1) + { + Process.Start(jprograms[programName][0].Value); + } + } + } + static void Main(string[] args) + { + foreach(var prog in jprograms) + { + string ProgProg = ((Newtonsoft.Json.Linq.JProperty)prog).Name; + System.Threading.Thread thread = new (new System.Threading.ThreadStart(() => RunProcess(ProgProg))); + thread.Start(); + } + } + } +} diff --git a/Runas/Runas/Properties/Resources.Designer.cs b/Runas/Runas/Properties/Resources.Designer.cs new file mode 100644 index 0000000..2d8e50d --- /dev/null +++ b/Runas/Runas/Properties/Resources.Designer.cs @@ -0,0 +1,85 @@ +//------------------------------------------------------------------------------ +// +// 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. +// +//------------------------------------------------------------------------------ + +namespace Runas.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Runas.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to { + /// "AutoHotKey": [ + /// "C:\\Program Files\\AutoHotkey\\AutoHotkey.exe", + /// "D:\\Drive\\טוויקים למחשב\\myscript 3.0\\myscript 2.0.ahk" + /// ], + /// "Lightshot": [ + /// "C:\\Program Files (x86)\\Skillbrains\\lightshot\\Lightshot.exe" + /// ], + /// "AsusNbKeys": [ + /// "C:\\Program Files (x86)\\ASUS\\ATK Package\\AsusNbKeys\\AsusNbKeys.exe", + /// "C:\\Program Files (x86)\\ASUS\\ATK Package\\ATK Hotkey\\AsusNbKeys.exe" + /// ], + /// "HControl": [ + /// "C:\\Program Files (x86)\\ASUS\ [rest of string was truncated]";. + /// + internal static string progs { + get { + return ResourceManager.GetString("progs", resourceCulture); + } + } + } +} diff --git a/Runas/Runas/Properties/Resources.resx b/Runas/Runas/Properties/Resources.resx new file mode 100644 index 0000000..813bd22 --- /dev/null +++ b/Runas/Runas/Properties/Resources.resx @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + ..\Resources\progs.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 + + \ No newline at end of file diff --git a/Runas/Runas/Properties/desktop.ini b/Runas/Runas/Properties/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Runas/Runas/Properties/desktop.ini differ diff --git a/Runas/Runas/Resources/desktop.ini b/Runas/Runas/Resources/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Runas/Runas/Resources/desktop.ini differ diff --git a/Runas/Runas/Resources/progs.json b/Runas/Runas/Resources/progs.json new file mode 100644 index 0000000..73ce100 --- /dev/null +++ b/Runas/Runas/Resources/progs.json @@ -0,0 +1,20 @@ +{ + "AutoHotKey": [ + "C:\\Program Files\\AutoHotkey\\AutoHotkey.exe", + "D:\\Drive\\טוויקים למחשב\\myscript 3.0\\myscript 2.0.ahk" + ], + "Lightshot": [ + "C:\\Program Files (x86)\\Skillbrains\\lightshot\\Lightshot.exe" + ], + "AsusNbKeys": [ + "C:\\Program Files (x86)\\ASUS\\ATK Package\\AsusNbKeys\\AsusNbKeys.exe", + "C:\\Program Files (x86)\\ASUS\\ATK Package\\ATK Hotkey\\AsusNbKeys.exe" + ], + "HControl": [ + "C:\\Program Files (x86)\\ASUS\\ATK Package\\ATK Hotkey\\HControl.exe" + ], + "Ditto": [ + "C:\\Program Files\\Ditto\\Ditto.exe" + ] + +} \ No newline at end of file diff --git a/Runas/Runas/Runas.csproj b/Runas/Runas/Runas.csproj new file mode 100644 index 0000000..d449a1a --- /dev/null +++ b/Runas/Runas/Runas.csproj @@ -0,0 +1,32 @@ + + + + WinExe + net5.0 + + + + + + + + + + + Always + + + Always + True + True + Resources.resx + + + + + + ResXFileCodeGenerator + + + + diff --git a/Runas/Runas/Runas.csproj.user b/Runas/Runas/Runas.csproj.user new file mode 100644 index 0000000..a324019 --- /dev/null +++ b/Runas/Runas/Runas.csproj.user @@ -0,0 +1,9 @@ + + + + + + Designer + + + \ No newline at end of file diff --git a/Runas/Runas/app.manifest b/Runas/Runas/app.manifest new file mode 100644 index 0000000..438ee0d --- /dev/null +++ b/Runas/Runas/app.manifest @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Runas/Runas/bin/Debug/desktop.ini b/Runas/Runas/bin/Debug/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Runas/Runas/bin/Debug/desktop.ini differ diff --git a/Runas/Runas/bin/Debug/net5.0/Newtonsoft.Json.dll b/Runas/Runas/bin/Debug/net5.0/Newtonsoft.Json.dll new file mode 100644 index 0000000..1ffeabe Binary files /dev/null and b/Runas/Runas/bin/Debug/net5.0/Newtonsoft.Json.dll differ diff --git a/Runas/Runas/bin/Debug/net5.0/Program.cs b/Runas/Runas/bin/Debug/net5.0/Program.cs new file mode 100644 index 0000000..e401e46 --- /dev/null +++ b/Runas/Runas/bin/Debug/net5.0/Program.cs @@ -0,0 +1,51 @@ +using System; +using Newtonsoft.Json; +using System.Diagnostics; +namespace Runas +{ + class Program + { + public static dynamic jprograms = JsonConvert.DeserializeObject(Properties.Resources.progs); + + public static bool DoRun(string program) + { + Process[] process = Process.GetProcessesByName(program); + return (process.Length > 0); + } + public static void RunProcess(string programName) + { + + if (!(DoRun(programName))) + { + if (programName.Equals("AutoHotKey")) + { + Process.Start(jprograms[programName][0].Value, $"\u0022{jprograms[programName][1].Value.ToString()}\u0022"); + } + + else if (jprograms[programName].Count > 1) + { + foreach (var prog in jprograms[programName]) + { + if (System.IO.File.Exists(prog.Value)) + { + Process.Start(prog.Value); + } + } + } + else if (jprograms[programName].Count == 1) + { + Process.Start(jprograms[programName][0].Value); + } + } + } + static void Main(string[] args) + { + foreach(var prog in jprograms) + { + string ProgProg = ((Newtonsoft.Json.Linq.JProperty)prog).Name; + System.Threading.Thread thread = new (new System.Threading.ThreadStart(() => RunProcess(ProgProg))); + thread.Start(); + } + } + } +} diff --git a/Runas/Runas/bin/Debug/net5.0/Properties/Resources.Designer.cs b/Runas/Runas/bin/Debug/net5.0/Properties/Resources.Designer.cs new file mode 100644 index 0000000..2d8e50d --- /dev/null +++ b/Runas/Runas/bin/Debug/net5.0/Properties/Resources.Designer.cs @@ -0,0 +1,85 @@ +//------------------------------------------------------------------------------ +// +// 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. +// +//------------------------------------------------------------------------------ + +namespace Runas.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Runas.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized string similar to { + /// "AutoHotKey": [ + /// "C:\\Program Files\\AutoHotkey\\AutoHotkey.exe", + /// "D:\\Drive\\טוויקים למחשב\\myscript 3.0\\myscript 2.0.ahk" + /// ], + /// "Lightshot": [ + /// "C:\\Program Files (x86)\\Skillbrains\\lightshot\\Lightshot.exe" + /// ], + /// "AsusNbKeys": [ + /// "C:\\Program Files (x86)\\ASUS\\ATK Package\\AsusNbKeys\\AsusNbKeys.exe", + /// "C:\\Program Files (x86)\\ASUS\\ATK Package\\ATK Hotkey\\AsusNbKeys.exe" + /// ], + /// "HControl": [ + /// "C:\\Program Files (x86)\\ASUS\ [rest of string was truncated]";. + /// + internal static string progs { + get { + return ResourceManager.GetString("progs", resourceCulture); + } + } + } +} diff --git a/Runas/Runas/bin/Debug/net5.0/Properties/desktop.ini b/Runas/Runas/bin/Debug/net5.0/Properties/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Runas/Runas/bin/Debug/net5.0/Properties/desktop.ini differ diff --git a/Runas/Runas/bin/Debug/net5.0/Runas.deps.json b/Runas/Runas/bin/Debug/net5.0/Runas.deps.json new file mode 100644 index 0000000..bcb67e9 --- /dev/null +++ b/Runas/Runas/bin/Debug/net5.0/Runas.deps.json @@ -0,0 +1,41 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v5.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v5.0": { + "Runas/1.0.0": { + "dependencies": { + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "Runas.dll": {} + } + }, + "Newtonsoft.Json/13.0.1": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" + } + } + } + } + }, + "libraries": { + "Runas/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/Runas/Runas/bin/Debug/net5.0/Runas.dll b/Runas/Runas/bin/Debug/net5.0/Runas.dll new file mode 100644 index 0000000..bd4138e Binary files /dev/null and b/Runas/Runas/bin/Debug/net5.0/Runas.dll differ diff --git a/Runas/Runas/bin/Debug/net5.0/Runas.exe b/Runas/Runas/bin/Debug/net5.0/Runas.exe new file mode 100644 index 0000000..893ed1a Binary files /dev/null and b/Runas/Runas/bin/Debug/net5.0/Runas.exe differ diff --git a/Runas/Runas/bin/Debug/net5.0/Runas.pdb b/Runas/Runas/bin/Debug/net5.0/Runas.pdb new file mode 100644 index 0000000..f78f785 Binary files /dev/null and b/Runas/Runas/bin/Debug/net5.0/Runas.pdb differ diff --git a/Runas/Runas/bin/Debug/net5.0/Runas.runtimeconfig.dev.json b/Runas/Runas/bin/Debug/net5.0/Runas.runtimeconfig.dev.json new file mode 100644 index 0000000..c1d81ac --- /dev/null +++ b/Runas/Runas/bin/Debug/net5.0/Runas.runtimeconfig.dev.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "C:\\Users\\סארט\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\סארט\\.nuget\\packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ] + } +} \ No newline at end of file diff --git a/Runas/Runas/bin/Debug/net5.0/Runas.runtimeconfig.json b/Runas/Runas/bin/Debug/net5.0/Runas.runtimeconfig.json new file mode 100644 index 0000000..a8e7e82 --- /dev/null +++ b/Runas/Runas/bin/Debug/net5.0/Runas.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net5.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "5.0.0" + } + } +} \ No newline at end of file diff --git a/Runas/Runas/bin/Debug/net5.0/desktop.ini b/Runas/Runas/bin/Debug/net5.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Runas/Runas/bin/Debug/net5.0/desktop.ini differ diff --git a/Runas/Runas/bin/Debug/net5.0/ref/Runas.dll b/Runas/Runas/bin/Debug/net5.0/ref/Runas.dll new file mode 100644 index 0000000..6569f57 Binary files /dev/null and b/Runas/Runas/bin/Debug/net5.0/ref/Runas.dll differ diff --git a/Runas/Runas/bin/Debug/net5.0/ref/desktop.ini b/Runas/Runas/bin/Debug/net5.0/ref/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Runas/Runas/bin/Debug/net5.0/ref/desktop.ini differ diff --git a/Runas/Runas/bin/Release/desktop.ini b/Runas/Runas/bin/Release/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Runas/Runas/bin/Release/desktop.ini differ diff --git a/Runas/Runas/bin/Release/net5.0/desktop.ini b/Runas/Runas/bin/Release/net5.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Runas/Runas/bin/Release/net5.0/desktop.ini differ diff --git a/Runas/Runas/bin/Release/net5.0/ref/desktop.ini b/Runas/Runas/bin/Release/net5.0/ref/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Runas/Runas/bin/Release/net5.0/ref/desktop.ini differ diff --git a/Runas/Runas/bin/desktop.ini b/Runas/Runas/bin/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Runas/Runas/bin/desktop.ini differ diff --git a/Runas/Runas/desktop.ini b/Runas/Runas/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Runas/Runas/desktop.ini differ diff --git a/Runas/Runas/obj/Debug/desktop.ini b/Runas/Runas/obj/Debug/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Runas/Runas/obj/Debug/desktop.ini differ diff --git a/Runas/Runas/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/Runas/Runas/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2f7e5ec --- /dev/null +++ b/Runas/Runas/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/Runas/Runas/obj/Debug/net5.0/Runas.AssemblyInfo.cs b/Runas/Runas/obj/Debug/net5.0/Runas.AssemblyInfo.cs new file mode 100644 index 0000000..3d0c10b --- /dev/null +++ b/Runas/Runas/obj/Debug/net5.0/Runas.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Runas")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Runas")] +[assembly: System.Reflection.AssemblyTitleAttribute("Runas")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Runas/Runas/obj/Debug/net5.0/Runas.AssemblyInfoInputs.cache b/Runas/Runas/obj/Debug/net5.0/Runas.AssemblyInfoInputs.cache new file mode 100644 index 0000000..7aec08a --- /dev/null +++ b/Runas/Runas/obj/Debug/net5.0/Runas.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +be4894790f00c01a0a16ecfee71bb96e4388edf0 diff --git a/Runas/Runas/obj/Debug/net5.0/Runas.GeneratedMSBuildEditorConfig.editorconfig b/Runas/Runas/obj/Debug/net5.0/Runas.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b2b6b7c --- /dev/null +++ b/Runas/Runas/obj/Debug/net5.0/Runas.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net5.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.PublishSingleFile = +build_property.IncludeAllContentForSelfExtract = +build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows +build_property.RootNamespace = Runas +build_property.ProjectDir = D:\Drive\טוויקים למחשב\סקריפטוש\C#\Runas\Runas\ diff --git a/Runas/Runas/obj/Debug/net5.0/Runas.Properties.Resources.resources b/Runas/Runas/obj/Debug/net5.0/Runas.Properties.Resources.resources new file mode 100644 index 0000000..7dbfaeb Binary files /dev/null and b/Runas/Runas/obj/Debug/net5.0/Runas.Properties.Resources.resources differ diff --git a/Runas/Runas/obj/Debug/net5.0/Runas.assets.cache b/Runas/Runas/obj/Debug/net5.0/Runas.assets.cache new file mode 100644 index 0000000..4333b04 Binary files /dev/null and b/Runas/Runas/obj/Debug/net5.0/Runas.assets.cache differ diff --git a/Runas/Runas/obj/Debug/net5.0/Runas.csproj.AssemblyReference.cache b/Runas/Runas/obj/Debug/net5.0/Runas.csproj.AssemblyReference.cache new file mode 100644 index 0000000..f5e894a Binary files /dev/null and b/Runas/Runas/obj/Debug/net5.0/Runas.csproj.AssemblyReference.cache differ diff --git a/Runas/Runas/obj/Debug/net5.0/Runas.csproj.CopyComplete b/Runas/Runas/obj/Debug/net5.0/Runas.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/Runas/Runas/obj/Debug/net5.0/Runas.csproj.CoreCompileInputs.cache b/Runas/Runas/obj/Debug/net5.0/Runas.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..009accd --- /dev/null +++ b/Runas/Runas/obj/Debug/net5.0/Runas.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +abe8d238f5fed52e69d40ef0d57d0c90f780886f diff --git a/Runas/Runas/obj/Debug/net5.0/Runas.csproj.FileListAbsolute.txt b/Runas/Runas/obj/Debug/net5.0/Runas.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..81f390f --- /dev/null +++ b/Runas/Runas/obj/Debug/net5.0/Runas.csproj.FileListAbsolute.txt @@ -0,0 +1,42 @@ +C:\Users\סארט\source\repos\Runas\Runas\bin\Debug\net5.0\Runas.exe +C:\Users\סארט\source\repos\Runas\Runas\bin\Debug\net5.0\Runas.deps.json +C:\Users\סארט\source\repos\Runas\Runas\bin\Debug\net5.0\Runas.runtimeconfig.json +C:\Users\סארט\source\repos\Runas\Runas\bin\Debug\net5.0\Runas.runtimeconfig.dev.json +C:\Users\סארט\source\repos\Runas\Runas\bin\Debug\net5.0\Runas.dll +C:\Users\סארט\source\repos\Runas\Runas\bin\Debug\net5.0\ref\Runas.dll +C:\Users\סארט\source\repos\Runas\Runas\bin\Debug\net5.0\Runas.pdb +C:\Users\סארט\source\repos\Runas\Runas\bin\Debug\net5.0\Newtonsoft.Json.dll +C:\Users\סארט\source\repos\Runas\Runas\obj\Debug\net5.0\Runas.csproj.AssemblyReference.cache +C:\Users\סארט\source\repos\Runas\Runas\obj\Debug\net5.0\Runas.Properties.Resources.resources +C:\Users\סארט\source\repos\Runas\Runas\obj\Debug\net5.0\Runas.csproj.GenerateResource.cache +C:\Users\סארט\source\repos\Runas\Runas\obj\Debug\net5.0\Runas.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\סארט\source\repos\Runas\Runas\obj\Debug\net5.0\Runas.AssemblyInfoInputs.cache +C:\Users\סארט\source\repos\Runas\Runas\obj\Debug\net5.0\Runas.AssemblyInfo.cs +C:\Users\סארט\source\repos\Runas\Runas\obj\Debug\net5.0\Runas.csproj.CoreCompileInputs.cache +C:\Users\סארט\source\repos\Runas\Runas\obj\Debug\net5.0\Runas.csproj.CopyComplete +C:\Users\סארט\source\repos\Runas\Runas\obj\Debug\net5.0\Runas.dll +C:\Users\סארט\source\repos\Runas\Runas\obj\Debug\net5.0\ref\Runas.dll +C:\Users\סארט\source\repos\Runas\Runas\obj\Debug\net5.0\Runas.pdb +C:\Users\סארט\source\repos\Runas\Runas\obj\Debug\net5.0\Runas.genruntimeconfig.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Runas\Runas\bin\Debug\net5.0\Runas.exe +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Runas\Runas\bin\Debug\net5.0\Runas.deps.json +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Runas\Runas\bin\Debug\net5.0\Runas.runtimeconfig.json +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Runas\Runas\bin\Debug\net5.0\Runas.runtimeconfig.dev.json +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Runas\Runas\bin\Debug\net5.0\Runas.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Runas\Runas\bin\Debug\net5.0\ref\Runas.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Runas\Runas\bin\Debug\net5.0\Runas.pdb +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Runas\Runas\bin\Debug\net5.0\Newtonsoft.Json.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Runas\Runas\obj\Debug\net5.0\Runas.csproj.AssemblyReference.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Runas\Runas\obj\Debug\net5.0\Runas.GeneratedMSBuildEditorConfig.editorconfig +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Runas\Runas\obj\Debug\net5.0\Runas.AssemblyInfoInputs.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Runas\Runas\obj\Debug\net5.0\Runas.AssemblyInfo.cs +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Runas\Runas\obj\Debug\net5.0\Runas.csproj.CoreCompileInputs.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Runas\Runas\obj\Debug\net5.0\Runas.csproj.CopyComplete +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Runas\Runas\obj\Debug\net5.0\Runas.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Runas\Runas\obj\Debug\net5.0\ref\Runas.dll +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Runas\Runas\obj\Debug\net5.0\Runas.pdb +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Runas\Runas\obj\Debug\net5.0\Runas.genruntimeconfig.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Runas\Runas\obj\Debug\net5.0\Runas.Properties.Resources.resources +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Runas\Runas\obj\Debug\net5.0\Runas.csproj.GenerateResource.cache +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Runas\Runas\bin\Debug\net5.0\Program.cs +D:\Drive\טוויקים למחשב\סקריפטוש\C#\Runas\Runas\bin\Debug\net5.0\Properties\Resources.Designer.cs diff --git a/Runas/Runas/obj/Debug/net5.0/Runas.csproj.GenerateResource.cache b/Runas/Runas/obj/Debug/net5.0/Runas.csproj.GenerateResource.cache new file mode 100644 index 0000000..6666f6e Binary files /dev/null and b/Runas/Runas/obj/Debug/net5.0/Runas.csproj.GenerateResource.cache differ diff --git a/Runas/Runas/obj/Debug/net5.0/Runas.dll b/Runas/Runas/obj/Debug/net5.0/Runas.dll new file mode 100644 index 0000000..bd4138e Binary files /dev/null and b/Runas/Runas/obj/Debug/net5.0/Runas.dll differ diff --git a/Runas/Runas/obj/Debug/net5.0/Runas.genruntimeconfig.cache b/Runas/Runas/obj/Debug/net5.0/Runas.genruntimeconfig.cache new file mode 100644 index 0000000..9aaf71f --- /dev/null +++ b/Runas/Runas/obj/Debug/net5.0/Runas.genruntimeconfig.cache @@ -0,0 +1 @@ +95c8f15094a815fa6134beb8c0d579034af79de3 diff --git a/Runas/Runas/obj/Debug/net5.0/Runas.pdb b/Runas/Runas/obj/Debug/net5.0/Runas.pdb new file mode 100644 index 0000000..f78f785 Binary files /dev/null and b/Runas/Runas/obj/Debug/net5.0/Runas.pdb differ diff --git a/Runas/Runas/obj/Debug/net5.0/TempPE/Properties.Resources.Designer.cs.dll b/Runas/Runas/obj/Debug/net5.0/TempPE/Properties.Resources.Designer.cs.dll new file mode 100644 index 0000000..ac402a2 Binary files /dev/null and b/Runas/Runas/obj/Debug/net5.0/TempPE/Properties.Resources.Designer.cs.dll differ diff --git a/Runas/Runas/obj/Debug/net5.0/TempPE/desktop.ini b/Runas/Runas/obj/Debug/net5.0/TempPE/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Runas/Runas/obj/Debug/net5.0/TempPE/desktop.ini differ diff --git a/Runas/Runas/obj/Debug/net5.0/apphost.exe b/Runas/Runas/obj/Debug/net5.0/apphost.exe new file mode 100644 index 0000000..893ed1a Binary files /dev/null and b/Runas/Runas/obj/Debug/net5.0/apphost.exe differ diff --git a/Runas/Runas/obj/Debug/net5.0/desktop.ini b/Runas/Runas/obj/Debug/net5.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Runas/Runas/obj/Debug/net5.0/desktop.ini differ diff --git a/Runas/Runas/obj/Debug/net5.0/ref/Runas.dll b/Runas/Runas/obj/Debug/net5.0/ref/Runas.dll new file mode 100644 index 0000000..6569f57 Binary files /dev/null and b/Runas/Runas/obj/Debug/net5.0/ref/Runas.dll differ diff --git a/Runas/Runas/obj/Debug/net5.0/ref/desktop.ini b/Runas/Runas/obj/Debug/net5.0/ref/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Runas/Runas/obj/Debug/net5.0/ref/desktop.ini differ diff --git a/Runas/Runas/obj/Release/desktop.ini b/Runas/Runas/obj/Release/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Runas/Runas/obj/Release/desktop.ini differ diff --git a/Runas/Runas/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/Runas/Runas/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2f7e5ec --- /dev/null +++ b/Runas/Runas/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/Runas/Runas/obj/Release/net5.0/Runas.AssemblyInfo.cs b/Runas/Runas/obj/Release/net5.0/Runas.AssemblyInfo.cs new file mode 100644 index 0000000..714d177 --- /dev/null +++ b/Runas/Runas/obj/Release/net5.0/Runas.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Runas")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Runas")] +[assembly: System.Reflection.AssemblyTitleAttribute("Runas")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Runas/Runas/obj/Release/net5.0/Runas.AssemblyInfoInputs.cache b/Runas/Runas/obj/Release/net5.0/Runas.AssemblyInfoInputs.cache new file mode 100644 index 0000000..e3b8a8f --- /dev/null +++ b/Runas/Runas/obj/Release/net5.0/Runas.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +449448acb18a11c7fc5490e78494e06c0e2a4718 diff --git a/Runas/Runas/obj/Release/net5.0/Runas.GeneratedMSBuildEditorConfig.editorconfig b/Runas/Runas/obj/Release/net5.0/Runas.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d7e2983 --- /dev/null +++ b/Runas/Runas/obj/Release/net5.0/Runas.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,8 @@ +is_global = true +build_property.TargetFramework = net5.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.PublishSingleFile = +build_property.IncludeAllContentForSelfExtract = +build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows diff --git a/Runas/Runas/obj/Release/net5.0/Runas.assets.cache b/Runas/Runas/obj/Release/net5.0/Runas.assets.cache new file mode 100644 index 0000000..160e7f9 Binary files /dev/null and b/Runas/Runas/obj/Release/net5.0/Runas.assets.cache differ diff --git a/Runas/Runas/obj/Release/net5.0/desktop.ini b/Runas/Runas/obj/Release/net5.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Runas/Runas/obj/Release/net5.0/desktop.ini differ diff --git a/Runas/Runas/obj/Release/net5.0/ref/desktop.ini b/Runas/Runas/obj/Release/net5.0/ref/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Runas/Runas/obj/Release/net5.0/ref/desktop.ini differ diff --git a/Runas/Runas/obj/Runas.csproj.nuget.dgspec.json b/Runas/Runas/obj/Runas.csproj.nuget.dgspec.json new file mode 100644 index 0000000..61ff64d --- /dev/null +++ b/Runas/Runas/obj/Runas.csproj.nuget.dgspec.json @@ -0,0 +1,72 @@ +{ + "format": 1, + "restore": { + "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\Runas\\Runas\\Runas.csproj": {} + }, + "projects": { + "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\Runas\\Runas\\Runas.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\Runas\\Runas\\Runas.csproj", + "projectName": "Runas", + "projectPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\Runas\\Runas\\Runas.csproj", + "packagesPath": "C:\\Users\\סארט\\.nuget\\packages\\", + "outputPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\Runas\\Runas\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\סארט\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "dependencies": { + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/Runas/Runas/obj/Runas.csproj.nuget.g.props b/Runas/Runas/obj/Runas.csproj.nuget.g.props new file mode 100644 index 0000000..7641879 --- /dev/null +++ b/Runas/Runas/obj/Runas.csproj.nuget.g.props @@ -0,0 +1,19 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\סארט\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 5.11.0 + + + + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/Runas/Runas/obj/Runas.csproj.nuget.g.targets b/Runas/Runas/obj/Runas.csproj.nuget.g.targets new file mode 100644 index 0000000..53cfaa1 --- /dev/null +++ b/Runas/Runas/obj/Runas.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/Runas/Runas/obj/desktop.ini b/Runas/Runas/obj/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Runas/Runas/obj/desktop.ini differ diff --git a/Runas/Runas/obj/project.assets.json b/Runas/Runas/obj/project.assets.json new file mode 100644 index 0000000..5a659ba --- /dev/null +++ b/Runas/Runas/obj/project.assets.json @@ -0,0 +1,118 @@ +{ + "version": 3, + "targets": { + "net5.0": { + "Newtonsoft.Json/13.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + } + } + }, + "libraries": { + "Newtonsoft.Json/13.0.1": { + "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "type": "package", + "path": "newtonsoft.json/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + } + }, + "projectFileDependencyGroups": { + "net5.0": [ + "Newtonsoft.Json >= 13.0.1" + ] + }, + "packageFolders": { + "C:\\Users\\סארט\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\Runas\\Runas\\Runas.csproj", + "projectName": "Runas", + "projectPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\Runas\\Runas\\Runas.csproj", + "packagesPath": "C:\\Users\\סארט\\.nuget\\packages\\", + "outputPath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\Runas\\Runas\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\סארט\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "dependencies": { + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.400\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/Runas/Runas/obj/project.nuget.cache b/Runas/Runas/obj/project.nuget.cache new file mode 100644 index 0000000..fbe0789 --- /dev/null +++ b/Runas/Runas/obj/project.nuget.cache @@ -0,0 +1,10 @@ +{ + "version": 2, + "dgSpecHash": "2dRrkMNmSfdvCvxCOfVDdkKtwQO3AH6Ilcw5X9plBjliNzbW41cu6gcjTJG+hntXsnyvR6630agClPHTiIFthQ==", + "success": true, + "projectFilePath": "D:\\Drive\\טוויקים למחשב\\סקריפטוש\\C#\\Runas\\Runas\\Runas.csproj", + "expectedPackageFiles": [ + "C:\\Users\\סארט\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/Runas/desktop.ini b/Runas/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Runas/desktop.ini differ diff --git a/Upgrade All/.vs/Upgrade All/desktop.ini b/Upgrade All/.vs/Upgrade All/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Upgrade All/.vs/Upgrade All/desktop.ini differ diff --git a/Upgrade All/.vs/Upgrade All/v16/.suo b/Upgrade All/.vs/Upgrade All/v16/.suo new file mode 100644 index 0000000..daafabb Binary files /dev/null and b/Upgrade All/.vs/Upgrade All/v16/.suo differ diff --git a/Upgrade All/.vs/Upgrade All/v16/desktop.ini b/Upgrade All/.vs/Upgrade All/v16/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Upgrade All/.vs/Upgrade All/v16/desktop.ini differ diff --git a/Upgrade All/.vs/desktop.ini b/Upgrade All/.vs/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Upgrade All/.vs/desktop.ini differ diff --git a/Upgrade All/Upgrade All.sln b/Upgrade All/Upgrade All.sln new file mode 100644 index 0000000..e856e19 --- /dev/null +++ b/Upgrade All/Upgrade All.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31424.327 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Upgrade All", "Upgrade All\Upgrade All.csproj", "{193F0C6B-BAD1-4AAF-98DA-8F4536401B1E}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {193F0C6B-BAD1-4AAF-98DA-8F4536401B1E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {193F0C6B-BAD1-4AAF-98DA-8F4536401B1E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {193F0C6B-BAD1-4AAF-98DA-8F4536401B1E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {193F0C6B-BAD1-4AAF-98DA-8F4536401B1E}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {DAA725DE-F071-4C43-94DD-181D11AA5B59} + EndGlobalSection +EndGlobal diff --git a/Upgrade All/Upgrade All/Program.cs b/Upgrade All/Upgrade All/Program.cs new file mode 100644 index 0000000..e09abc5 --- /dev/null +++ b/Upgrade All/Upgrade All/Program.cs @@ -0,0 +1,20 @@ +using System; +using chocolatey; +using Cake; +using NuGet; + + +namespace Upgrade_All +{ + class Program + { + public static string[] ChocoAppList() + { + + } + static void Main(string[] args) + { + ChocoAppList(); + } + } +} diff --git a/Upgrade All/Upgrade All/Upgrade All.csproj b/Upgrade All/Upgrade All/Upgrade All.csproj new file mode 100644 index 0000000..66ed264 --- /dev/null +++ b/Upgrade All/Upgrade All/Upgrade All.csproj @@ -0,0 +1,17 @@ + + + + Exe + net5.0 + Upgrade_All + + + + + + + + + + + diff --git a/Upgrade All/Upgrade All/bin/Debug/desktop.ini b/Upgrade All/Upgrade All/bin/Debug/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Upgrade All/Upgrade All/bin/Debug/desktop.ini differ diff --git a/Upgrade All/Upgrade All/bin/Debug/net5.0/Upgrade All.deps.json b/Upgrade All/Upgrade All/bin/Debug/net5.0/Upgrade All.deps.json new file mode 100644 index 0000000..fbac2d9 --- /dev/null +++ b/Upgrade All/Upgrade All/bin/Debug/net5.0/Upgrade All.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v5.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v5.0": { + "Upgrade All/1.0.0": { + "runtime": { + "Upgrade All.dll": {} + } + } + } + }, + "libraries": { + "Upgrade All/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/Upgrade All/Upgrade All/bin/Debug/net5.0/Upgrade All.dll b/Upgrade All/Upgrade All/bin/Debug/net5.0/Upgrade All.dll new file mode 100644 index 0000000..a67ca9c Binary files /dev/null and b/Upgrade All/Upgrade All/bin/Debug/net5.0/Upgrade All.dll differ diff --git a/Upgrade All/Upgrade All/bin/Debug/net5.0/Upgrade All.exe b/Upgrade All/Upgrade All/bin/Debug/net5.0/Upgrade All.exe new file mode 100644 index 0000000..cac8f2f Binary files /dev/null and b/Upgrade All/Upgrade All/bin/Debug/net5.0/Upgrade All.exe differ diff --git a/Upgrade All/Upgrade All/bin/Debug/net5.0/Upgrade All.pdb b/Upgrade All/Upgrade All/bin/Debug/net5.0/Upgrade All.pdb new file mode 100644 index 0000000..3e69570 Binary files /dev/null and b/Upgrade All/Upgrade All/bin/Debug/net5.0/Upgrade All.pdb differ diff --git a/Upgrade All/Upgrade All/bin/Debug/net5.0/Upgrade All.runtimeconfig.dev.json b/Upgrade All/Upgrade All/bin/Debug/net5.0/Upgrade All.runtimeconfig.dev.json new file mode 100644 index 0000000..c1d81ac --- /dev/null +++ b/Upgrade All/Upgrade All/bin/Debug/net5.0/Upgrade All.runtimeconfig.dev.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "additionalProbingPaths": [ + "C:\\Users\\סארט\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\סארט\\.nuget\\packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ] + } +} \ No newline at end of file diff --git a/Upgrade All/Upgrade All/bin/Debug/net5.0/Upgrade All.runtimeconfig.json b/Upgrade All/Upgrade All/bin/Debug/net5.0/Upgrade All.runtimeconfig.json new file mode 100644 index 0000000..a8e7e82 --- /dev/null +++ b/Upgrade All/Upgrade All/bin/Debug/net5.0/Upgrade All.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net5.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "5.0.0" + } + } +} \ No newline at end of file diff --git a/Upgrade All/Upgrade All/bin/Debug/net5.0/desktop.ini b/Upgrade All/Upgrade All/bin/Debug/net5.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Upgrade All/Upgrade All/bin/Debug/net5.0/desktop.ini differ diff --git a/Upgrade All/Upgrade All/bin/Debug/net5.0/ref/Upgrade All.dll b/Upgrade All/Upgrade All/bin/Debug/net5.0/ref/Upgrade All.dll new file mode 100644 index 0000000..54a2484 Binary files /dev/null and b/Upgrade All/Upgrade All/bin/Debug/net5.0/ref/Upgrade All.dll differ diff --git a/Upgrade All/Upgrade All/bin/Debug/net5.0/ref/desktop.ini b/Upgrade All/Upgrade All/bin/Debug/net5.0/ref/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Upgrade All/Upgrade All/bin/Debug/net5.0/ref/desktop.ini differ diff --git a/Upgrade All/Upgrade All/bin/Release/desktop.ini b/Upgrade All/Upgrade All/bin/Release/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Upgrade All/Upgrade All/bin/Release/desktop.ini differ diff --git a/Upgrade All/Upgrade All/bin/Release/net5.0/desktop.ini b/Upgrade All/Upgrade All/bin/Release/net5.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Upgrade All/Upgrade All/bin/Release/net5.0/desktop.ini differ diff --git a/Upgrade All/Upgrade All/bin/Release/net5.0/ref/desktop.ini b/Upgrade All/Upgrade All/bin/Release/net5.0/ref/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Upgrade All/Upgrade All/bin/Release/net5.0/ref/desktop.ini differ diff --git a/Upgrade All/Upgrade All/bin/desktop.ini b/Upgrade All/Upgrade All/bin/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Upgrade All/Upgrade All/bin/desktop.ini differ diff --git a/Upgrade All/Upgrade All/desktop.ini b/Upgrade All/Upgrade All/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Upgrade All/Upgrade All/desktop.ini differ diff --git a/Upgrade All/Upgrade All/obj/Debug/desktop.ini b/Upgrade All/Upgrade All/obj/Debug/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Upgrade All/Upgrade All/obj/Debug/desktop.ini differ diff --git a/Upgrade All/Upgrade All/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/Upgrade All/Upgrade All/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2f7e5ec --- /dev/null +++ b/Upgrade All/Upgrade All/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/Upgrade All/Upgrade All/obj/Debug/net5.0/Upgrade All.AssemblyInfo.cs b/Upgrade All/Upgrade All/obj/Debug/net5.0/Upgrade All.AssemblyInfo.cs new file mode 100644 index 0000000..2b3b955 --- /dev/null +++ b/Upgrade All/Upgrade All/obj/Debug/net5.0/Upgrade All.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Upgrade All")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Upgrade All")] +[assembly: System.Reflection.AssemblyTitleAttribute("Upgrade All")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Upgrade All/Upgrade All/obj/Debug/net5.0/Upgrade All.AssemblyInfoInputs.cache b/Upgrade All/Upgrade All/obj/Debug/net5.0/Upgrade All.AssemblyInfoInputs.cache new file mode 100644 index 0000000..224c4ba --- /dev/null +++ b/Upgrade All/Upgrade All/obj/Debug/net5.0/Upgrade All.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +612adc3641fb982c68f4ad8ff2d2453319f93eb0 diff --git a/Upgrade All/Upgrade All/obj/Debug/net5.0/Upgrade All.GeneratedMSBuildEditorConfig.editorconfig b/Upgrade All/Upgrade All/obj/Debug/net5.0/Upgrade All.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d7e2983 --- /dev/null +++ b/Upgrade All/Upgrade All/obj/Debug/net5.0/Upgrade All.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,8 @@ +is_global = true +build_property.TargetFramework = net5.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.PublishSingleFile = +build_property.IncludeAllContentForSelfExtract = +build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows diff --git a/Upgrade All/Upgrade All/obj/Debug/net5.0/Upgrade All.assets.cache b/Upgrade All/Upgrade All/obj/Debug/net5.0/Upgrade All.assets.cache new file mode 100644 index 0000000..7be23cb Binary files /dev/null and b/Upgrade All/Upgrade All/obj/Debug/net5.0/Upgrade All.assets.cache differ diff --git a/Upgrade All/Upgrade All/obj/Debug/net5.0/Upgrade All.csproj.AssemblyReference.cache b/Upgrade All/Upgrade All/obj/Debug/net5.0/Upgrade All.csproj.AssemblyReference.cache new file mode 100644 index 0000000..fe17b83 Binary files /dev/null and b/Upgrade All/Upgrade All/obj/Debug/net5.0/Upgrade All.csproj.AssemblyReference.cache differ diff --git a/Upgrade All/Upgrade All/obj/Debug/net5.0/Upgrade All.csproj.CoreCompileInputs.cache b/Upgrade All/Upgrade All/obj/Debug/net5.0/Upgrade All.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..4656dfa --- /dev/null +++ b/Upgrade All/Upgrade All/obj/Debug/net5.0/Upgrade All.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +ba73894d11becc4fdc98cd8ed31340eeed4b4906 diff --git a/Upgrade All/Upgrade All/obj/Debug/net5.0/Upgrade All.csproj.FileListAbsolute.txt b/Upgrade All/Upgrade All/obj/Debug/net5.0/Upgrade All.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..3151459 --- /dev/null +++ b/Upgrade All/Upgrade All/obj/Debug/net5.0/Upgrade All.csproj.FileListAbsolute.txt @@ -0,0 +1,16 @@ +C:\Users\סארט\source\repos\Upgrade All\Upgrade All\bin\Debug\net5.0\Upgrade All.exe +C:\Users\סארט\source\repos\Upgrade All\Upgrade All\bin\Debug\net5.0\Upgrade All.deps.json +C:\Users\סארט\source\repos\Upgrade All\Upgrade All\bin\Debug\net5.0\Upgrade All.runtimeconfig.json +C:\Users\סארט\source\repos\Upgrade All\Upgrade All\bin\Debug\net5.0\Upgrade All.runtimeconfig.dev.json +C:\Users\סארט\source\repos\Upgrade All\Upgrade All\bin\Debug\net5.0\Upgrade All.dll +C:\Users\סארט\source\repos\Upgrade All\Upgrade All\bin\Debug\net5.0\ref\Upgrade All.dll +C:\Users\סארט\source\repos\Upgrade All\Upgrade All\bin\Debug\net5.0\Upgrade All.pdb +C:\Users\סארט\source\repos\Upgrade All\Upgrade All\obj\Debug\net5.0\Upgrade All.csproj.AssemblyReference.cache +C:\Users\סארט\source\repos\Upgrade All\Upgrade All\obj\Debug\net5.0\Upgrade All.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\סארט\source\repos\Upgrade All\Upgrade All\obj\Debug\net5.0\Upgrade All.AssemblyInfoInputs.cache +C:\Users\סארט\source\repos\Upgrade All\Upgrade All\obj\Debug\net5.0\Upgrade All.AssemblyInfo.cs +C:\Users\סארט\source\repos\Upgrade All\Upgrade All\obj\Debug\net5.0\Upgrade All.csproj.CoreCompileInputs.cache +C:\Users\סארט\source\repos\Upgrade All\Upgrade All\obj\Debug\net5.0\Upgrade All.dll +C:\Users\סארט\source\repos\Upgrade All\Upgrade All\obj\Debug\net5.0\ref\Upgrade All.dll +C:\Users\סארט\source\repos\Upgrade All\Upgrade All\obj\Debug\net5.0\Upgrade All.pdb +C:\Users\סארט\source\repos\Upgrade All\Upgrade All\obj\Debug\net5.0\Upgrade All.genruntimeconfig.cache diff --git a/Upgrade All/Upgrade All/obj/Debug/net5.0/Upgrade All.dll b/Upgrade All/Upgrade All/obj/Debug/net5.0/Upgrade All.dll new file mode 100644 index 0000000..a67ca9c Binary files /dev/null and b/Upgrade All/Upgrade All/obj/Debug/net5.0/Upgrade All.dll differ diff --git a/Upgrade All/Upgrade All/obj/Debug/net5.0/Upgrade All.genruntimeconfig.cache b/Upgrade All/Upgrade All/obj/Debug/net5.0/Upgrade All.genruntimeconfig.cache new file mode 100644 index 0000000..b9ef60d --- /dev/null +++ b/Upgrade All/Upgrade All/obj/Debug/net5.0/Upgrade All.genruntimeconfig.cache @@ -0,0 +1 @@ +fcbcd4bb995cf329a575004ade024e7ceacf05c4 diff --git a/Upgrade All/Upgrade All/obj/Debug/net5.0/Upgrade All.pdb b/Upgrade All/Upgrade All/obj/Debug/net5.0/Upgrade All.pdb new file mode 100644 index 0000000..3e69570 Binary files /dev/null and b/Upgrade All/Upgrade All/obj/Debug/net5.0/Upgrade All.pdb differ diff --git a/Upgrade All/Upgrade All/obj/Debug/net5.0/apphost.exe b/Upgrade All/Upgrade All/obj/Debug/net5.0/apphost.exe new file mode 100644 index 0000000..cac8f2f Binary files /dev/null and b/Upgrade All/Upgrade All/obj/Debug/net5.0/apphost.exe differ diff --git a/Upgrade All/Upgrade All/obj/Debug/net5.0/desktop.ini b/Upgrade All/Upgrade All/obj/Debug/net5.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Upgrade All/Upgrade All/obj/Debug/net5.0/desktop.ini differ diff --git a/Upgrade All/Upgrade All/obj/Debug/net5.0/ref/Upgrade All.dll b/Upgrade All/Upgrade All/obj/Debug/net5.0/ref/Upgrade All.dll new file mode 100644 index 0000000..54a2484 Binary files /dev/null and b/Upgrade All/Upgrade All/obj/Debug/net5.0/ref/Upgrade All.dll differ diff --git a/Upgrade All/Upgrade All/obj/Debug/net5.0/ref/desktop.ini b/Upgrade All/Upgrade All/obj/Debug/net5.0/ref/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Upgrade All/Upgrade All/obj/Debug/net5.0/ref/desktop.ini differ diff --git a/Upgrade All/Upgrade All/obj/Release/desktop.ini b/Upgrade All/Upgrade All/obj/Release/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Upgrade All/Upgrade All/obj/Release/desktop.ini differ diff --git a/Upgrade All/Upgrade All/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/Upgrade All/Upgrade All/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2f7e5ec --- /dev/null +++ b/Upgrade All/Upgrade All/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/Upgrade All/Upgrade All/obj/Release/net5.0/Upgrade All.AssemblyInfo.cs b/Upgrade All/Upgrade All/obj/Release/net5.0/Upgrade All.AssemblyInfo.cs new file mode 100644 index 0000000..68f1c20 --- /dev/null +++ b/Upgrade All/Upgrade All/obj/Release/net5.0/Upgrade All.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Upgrade All")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Upgrade All")] +[assembly: System.Reflection.AssemblyTitleAttribute("Upgrade All")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Upgrade All/Upgrade All/obj/Release/net5.0/Upgrade All.AssemblyInfoInputs.cache b/Upgrade All/Upgrade All/obj/Release/net5.0/Upgrade All.AssemblyInfoInputs.cache new file mode 100644 index 0000000..595f567 --- /dev/null +++ b/Upgrade All/Upgrade All/obj/Release/net5.0/Upgrade All.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +2dea3604cb12d592bb8c5df5be4759b1e2e3cb9a diff --git a/Upgrade All/Upgrade All/obj/Release/net5.0/Upgrade All.GeneratedMSBuildEditorConfig.editorconfig b/Upgrade All/Upgrade All/obj/Release/net5.0/Upgrade All.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d7e2983 --- /dev/null +++ b/Upgrade All/Upgrade All/obj/Release/net5.0/Upgrade All.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,8 @@ +is_global = true +build_property.TargetFramework = net5.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.PublishSingleFile = +build_property.IncludeAllContentForSelfExtract = +build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows diff --git a/Upgrade All/Upgrade All/obj/Release/net5.0/Upgrade All.assets.cache b/Upgrade All/Upgrade All/obj/Release/net5.0/Upgrade All.assets.cache new file mode 100644 index 0000000..03ec9f4 Binary files /dev/null and b/Upgrade All/Upgrade All/obj/Release/net5.0/Upgrade All.assets.cache differ diff --git a/Upgrade All/Upgrade All/obj/Release/net5.0/desktop.ini b/Upgrade All/Upgrade All/obj/Release/net5.0/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Upgrade All/Upgrade All/obj/Release/net5.0/desktop.ini differ diff --git a/Upgrade All/Upgrade All/obj/Release/net5.0/ref/desktop.ini b/Upgrade All/Upgrade All/obj/Release/net5.0/ref/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Upgrade All/Upgrade All/obj/Release/net5.0/ref/desktop.ini differ diff --git a/Upgrade All/Upgrade All/obj/Upgrade All.csproj.nuget.dgspec.json b/Upgrade All/Upgrade All/obj/Upgrade All.csproj.nuget.dgspec.json new file mode 100644 index 0000000..c12b82c --- /dev/null +++ b/Upgrade All/Upgrade All/obj/Upgrade All.csproj.nuget.dgspec.json @@ -0,0 +1,89 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\סארט\\source\\repos\\Upgrade All\\Upgrade All\\Upgrade All.csproj": {} + }, + "projects": { + "C:\\Users\\סארט\\source\\repos\\Upgrade All\\Upgrade All\\Upgrade All.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\סארט\\source\\repos\\Upgrade All\\Upgrade All\\Upgrade All.csproj", + "projectName": "Upgrade All", + "projectPath": "C:\\Users\\סארט\\source\\repos\\Upgrade All\\Upgrade All\\Upgrade All.csproj", + "packagesPath": "C:\\Users\\סארט\\.nuget\\packages\\", + "outputPath": "C:\\Users\\סארט\\source\\repos\\Upgrade All\\Upgrade All\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\סארט\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Users\\סארט\\source\\repos\\NetWork": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "dependencies": { + "Cake.Chocolatey.Module": { + "target": "Package", + "version": "[0.6.1, )" + }, + "NLog": { + "target": "Package", + "version": "[4.7.10, )" + }, + "chocolatey": { + "target": "Package", + "version": "[0.10.14, )" + }, + "chocolatey.lib": { + "target": "Package", + "version": "[0.10.15, )" + }, + "instchoco": { + "target": "Package", + "version": "[2.11.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/Upgrade All/Upgrade All/obj/Upgrade All.csproj.nuget.g.props b/Upgrade All/Upgrade All/obj/Upgrade All.csproj.nuget.g.props new file mode 100644 index 0000000..3044b84 --- /dev/null +++ b/Upgrade All/Upgrade All/obj/Upgrade All.csproj.nuget.g.props @@ -0,0 +1,22 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\סארט\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 5.10.0 + + + + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + C:\Users\סארט\.nuget\packages\chocolatey\0.10.14 + + \ No newline at end of file diff --git a/Upgrade All/Upgrade All/obj/Upgrade All.csproj.nuget.g.targets b/Upgrade All/Upgrade All/obj/Upgrade All.csproj.nuget.g.targets new file mode 100644 index 0000000..53cfaa1 --- /dev/null +++ b/Upgrade All/Upgrade All/obj/Upgrade All.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/Upgrade All/Upgrade All/obj/desktop.ini b/Upgrade All/Upgrade All/obj/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Upgrade All/Upgrade All/obj/desktop.ini differ diff --git a/Upgrade All/Upgrade All/obj/project.assets.json b/Upgrade All/Upgrade All/obj/project.assets.json new file mode 100644 index 0000000..3a51671 --- /dev/null +++ b/Upgrade All/Upgrade All/obj/project.assets.json @@ -0,0 +1,370 @@ +{ + "version": 3, + "targets": { + "net5.0": { + "Cake.Chocolatey.Module/0.6.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Cake.Chocolatey.Module.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Cake.Chocolatey.Module.dll": {} + } + }, + "chocolatey/0.10.14": { + "type": "package" + }, + "chocolatey.lib/0.10.15": { + "type": "package", + "dependencies": { + "log4net": "2.0.3" + }, + "compile": { + "lib/chocolatey.dll": {} + }, + "runtime": { + "lib/chocolatey.dll": {} + } + }, + "instchoco/2.11.0": { + "type": "package" + }, + "log4net/2.0.3": { + "type": "package", + "compile": { + "lib/net40-full/log4net.dll": {} + }, + "runtime": { + "lib/net40-full/log4net.dll": {} + } + }, + "NLog/4.7.10": { + "type": "package", + "compile": { + "lib/netstandard2.0/NLog.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NLog.dll": {} + } + } + } + }, + "libraries": { + "Cake.Chocolatey.Module/0.6.1": { + "sha512": "YOeV9X5LkEgHkEfs8wb+ts1X8N4x8ZXU4nqm2BvXCovf9jSibP5fiM/6uSoKh5UwUlk4w2puHgvPDxwQpR1FdA==", + "type": "package", + "path": "cake.chocolatey.module/0.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "cake.chocolatey.module.0.6.1.nupkg.sha512", + "cake.chocolatey.module.nuspec", + "lib/netstandard2.0/Cake.Chocolatey.Module.dll", + "lib/netstandard2.0/Cake.Chocolatey.Module.pdb", + "lib/netstandard2.0/Cake.Chocolatey.Module.xml" + ] + }, + "chocolatey/0.10.14": { + "sha512": "CgNVoZFzJ9eHaAvVMBsVLYe8PKxEnOCR4vpspOlAqeBHw1JfzFnIeX/ztk6LCEkdZ1xTYLcoXG/2hvDbwBB2vQ==", + "type": "package", + "path": "chocolatey/0.10.14", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "chocolatey.0.10.14.nupkg.sha512", + "chocolatey.nuspec", + "tools/VERIFICATION.txt", + "tools/chocolateyInstall.ps1", + "tools/chocolateyInstall/CREDITS.txt", + "tools/chocolateyInstall/LICENSE.txt", + "tools/chocolateyInstall/choco.exe", + "tools/chocolateyInstall/choco.exe.ignore", + "tools/chocolateyInstall/choco.exe.manifest", + "tools/chocolateyInstall/helpers/ChocolateyTabExpansion.ps1", + "tools/chocolateyInstall/helpers/chocolateyInstaller.psm1", + "tools/chocolateyInstall/helpers/chocolateyProfile.psm1", + "tools/chocolateyInstall/helpers/chocolateyScriptRunner.ps1", + "tools/chocolateyInstall/helpers/functions/Format-FileSize.ps1", + "tools/chocolateyInstall/helpers/functions/Get-CheckSumValid.ps1", + "tools/chocolateyInstall/helpers/functions/Get-ChocolateyUnzip.ps1", + "tools/chocolateyInstall/helpers/functions/Get-ChocolateyWebFile.ps1", + "tools/chocolateyInstall/helpers/functions/Get-EnvironmentVariable.ps1", + "tools/chocolateyInstall/helpers/functions/Get-EnvironmentVariableNames.ps1", + "tools/chocolateyInstall/helpers/functions/Get-FtpFile.ps1", + "tools/chocolateyInstall/helpers/functions/Get-OSArchitectureWidth.ps1", + "tools/chocolateyInstall/helpers/functions/Get-PackageParameters.ps1", + "tools/chocolateyInstall/helpers/functions/Get-ToolsLocation.ps1", + "tools/chocolateyInstall/helpers/functions/Get-UACEnabled.ps1", + "tools/chocolateyInstall/helpers/functions/Get-UninstallRegistryKey.ps1", + "tools/chocolateyInstall/helpers/functions/Get-VirusCheckValid.ps1", + "tools/chocolateyInstall/helpers/functions/Get-WebFile.ps1", + "tools/chocolateyInstall/helpers/functions/Get-WebFileName.ps1", + "tools/chocolateyInstall/helpers/functions/Get-WebHeaders.ps1", + "tools/chocolateyInstall/helpers/functions/Install-BinFile.ps1", + "tools/chocolateyInstall/helpers/functions/Install-ChocolateyDesktopLink.ps1", + "tools/chocolateyInstall/helpers/functions/Install-ChocolateyEnvironmentVariable.ps1", + "tools/chocolateyInstall/helpers/functions/Install-ChocolateyExplorerMenuItem.ps1", + "tools/chocolateyInstall/helpers/functions/Install-ChocolateyFileAssociation.ps1", + "tools/chocolateyInstall/helpers/functions/Install-ChocolateyInstallPackage.ps1", + "tools/chocolateyInstall/helpers/functions/Install-ChocolateyPackage.ps1", + "tools/chocolateyInstall/helpers/functions/Install-ChocolateyPath.ps1", + "tools/chocolateyInstall/helpers/functions/Install-ChocolateyPinnedTaskBarItem.ps1", + "tools/chocolateyInstall/helpers/functions/Install-ChocolateyPowershellCommand.ps1", + "tools/chocolateyInstall/helpers/functions/Install-ChocolateyShortcut.ps1", + "tools/chocolateyInstall/helpers/functions/Install-ChocolateyVsixPackage.ps1", + "tools/chocolateyInstall/helpers/functions/Install-ChocolateyZipPackage.ps1", + "tools/chocolateyInstall/helpers/functions/Install-Vsix.ps1", + "tools/chocolateyInstall/helpers/functions/Set-EnvironmentVariable.ps1", + "tools/chocolateyInstall/helpers/functions/Set-PowerShellExitCode.ps1", + "tools/chocolateyInstall/helpers/functions/Start-ChocolateyProcessAsAdmin.ps1", + "tools/chocolateyInstall/helpers/functions/Test-ProcessAdminRights.ps1", + "tools/chocolateyInstall/helpers/functions/UnInstall-ChocolateyZipPackage.ps1", + "tools/chocolateyInstall/helpers/functions/Uninstall-BinFile.ps1", + "tools/chocolateyInstall/helpers/functions/Uninstall-ChocolateyEnvironmentVariable.ps1", + "tools/chocolateyInstall/helpers/functions/Uninstall-ChocolateyPackage.ps1", + "tools/chocolateyInstall/helpers/functions/Update-SessionEnvironment.ps1", + "tools/chocolateyInstall/helpers/functions/Write-ChocolateyFailure.ps1", + "tools/chocolateyInstall/helpers/functions/Write-ChocolateySuccess.ps1", + "tools/chocolateyInstall/helpers/functions/Write-FileUpdateLog.ps1", + "tools/chocolateyInstall/helpers/functions/Write-FunctionCallLogMessage.ps1", + "tools/chocolateyInstall/redirects/RefreshEnv.cmd", + "tools/chocolateyInstall/redirects/choco.exe", + "tools/chocolateyInstall/redirects/choco.exe.ignore", + "tools/chocolateyInstall/redirects/chocolatey.exe", + "tools/chocolateyInstall/redirects/chocolatey.exe.ignore", + "tools/chocolateyInstall/redirects/cinst.exe", + "tools/chocolateyInstall/redirects/cinst.exe.ignore", + "tools/chocolateyInstall/redirects/clist.exe", + "tools/chocolateyInstall/redirects/clist.exe.ignore", + "tools/chocolateyInstall/redirects/cpack.exe", + "tools/chocolateyInstall/redirects/cpack.exe.ignore", + "tools/chocolateyInstall/redirects/cpush.exe", + "tools/chocolateyInstall/redirects/cpush.exe.ignore", + "tools/chocolateyInstall/redirects/cuninst.exe", + "tools/chocolateyInstall/redirects/cuninst.exe.ignore", + "tools/chocolateyInstall/redirects/cup.exe", + "tools/chocolateyInstall/redirects/cup.exe.ignore", + "tools/chocolateyInstall/redirects/cver.exe", + "tools/chocolateyInstall/redirects/cver.exe.ignore", + "tools/chocolateyInstall/tools/7z.dll", + "tools/chocolateyInstall/tools/7z.dll.manifest", + "tools/chocolateyInstall/tools/7z.exe", + "tools/chocolateyInstall/tools/7z.exe.ignore", + "tools/chocolateyInstall/tools/7z.exe.manifest", + "tools/chocolateyInstall/tools/7zip.license.txt", + "tools/chocolateyInstall/tools/checksum.exe", + "tools/chocolateyInstall/tools/checksum.exe.config", + "tools/chocolateyInstall/tools/checksum.exe.ignore", + "tools/chocolateyInstall/tools/checksum.license.txt", + "tools/chocolateyInstall/tools/shimgen.exe", + "tools/chocolateyInstall/tools/shimgen.exe.ignore", + "tools/chocolateyInstall/tools/shimgen.license.txt", + "tools/chocolateysetup.psm1", + "tools/init.ps1" + ] + }, + "chocolatey.lib/0.10.15": { + "sha512": "93fILlJ0+UsqjhL426vO0HItR49+NYSdneMQ/+e6VtSRTDK4xdfXmKTls1d21glGicRVv4VTijT5Rtkw2PN6yg==", + "type": "package", + "path": "chocolatey.lib/0.10.15", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "chocolatey.lib.0.10.15.nupkg.sha512", + "chocolatey.lib.nuspec", + "lib/CREDITS.txt", + "lib/chocolatey.dll", + "lib/chocolatey.pdb", + "lib/chocolatey.xml" + ] + }, + "instchoco/2.11.0": { + "sha512": "DBBoOo9Dlt5uT+zMjZs+/WNlfTQlJpvVHss3DUD27dajWg6V95OjX9bWvmtAke8pmQgl18BIT0a4PlA/Qwd5wg==", + "type": "package", + "path": "instchoco/2.11.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "InstChoco.exe", + "LICENSE.txt", + "instchoco.2.11.0.nupkg.sha512", + "instchoco.nuspec" + ] + }, + "log4net/2.0.3": { + "sha512": "rxMHzK5efGPo5XtRnuUGO4tfW5l74Aji6kVmtMAt2SgcB5PHBNtNY7yj2LCI2VtKrLPO7kCKR6kH6lIZggq3Gg==", + "type": "package", + "path": "log4net/2.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net10-full/log4net.dll", + "lib/net10-full/log4net.xml", + "lib/net11-full/log4net.dll", + "lib/net11-full/log4net.xml", + "lib/net20-full/log4net.dll", + "lib/net20-full/log4net.xml", + "lib/net35-client/log4net.dll", + "lib/net35-client/log4net.xml", + "lib/net35-full/log4net.dll", + "lib/net35-full/log4net.xml", + "lib/net40-client/log4net.dll", + "lib/net40-client/log4net.xml", + "lib/net40-full/log4net.dll", + "lib/net40-full/log4net.xml", + "log4net.2.0.3.nupkg.sha512", + "log4net.nuspec" + ] + }, + "NLog/4.7.10": { + "sha512": "rcegW7kYOCjl7wX0SzsqpPBqnJ51JKi1WkYb6QBVX0Wc5IgH19Pv4t/co+T0s06OS0Ne44xgkY/mHg0PdrmJow==", + "type": "package", + "path": "nlog/4.7.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/monoandroid44/NLog.dll", + "lib/monoandroid44/NLog.xml", + "lib/net35/NLog.dll", + "lib/net35/NLog.xml", + "lib/net40-client/NLog.dll", + "lib/net40-client/NLog.xml", + "lib/net45/NLog.dll", + "lib/net45/NLog.xml", + "lib/netstandard1.3/NLog.dll", + "lib/netstandard1.3/NLog.xml", + "lib/netstandard1.5/NLog.dll", + "lib/netstandard1.5/NLog.xml", + "lib/netstandard2.0/NLog.dll", + "lib/netstandard2.0/NLog.xml", + "lib/sl4/NLog.dll", + "lib/sl4/NLog.xml", + "lib/sl5/NLog.dll", + "lib/sl5/NLog.xml", + "lib/wp8/NLog.dll", + "lib/wp8/NLog.xml", + "lib/xamarinios10/NLog.dll", + "lib/xamarinios10/NLog.xml", + "nlog.4.7.10.nupkg.sha512", + "nlog.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "net5.0": [ + "Cake.Chocolatey.Module >= 0.6.1", + "NLog >= 4.7.10", + "chocolatey >= 0.10.14", + "chocolatey.lib >= 0.10.15", + "instchoco >= 2.11.0" + ] + }, + "packageFolders": { + "C:\\Users\\סארט\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\סארט\\source\\repos\\Upgrade All\\Upgrade All\\Upgrade All.csproj", + "projectName": "Upgrade All", + "projectPath": "C:\\Users\\סארט\\source\\repos\\Upgrade All\\Upgrade All\\Upgrade All.csproj", + "packagesPath": "C:\\Users\\סארט\\.nuget\\packages\\", + "outputPath": "C:\\Users\\סארט\\source\\repos\\Upgrade All\\Upgrade All\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\סארט\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Users\\סארט\\source\\repos\\NetWork": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0": { + "targetAlias": "net5.0", + "dependencies": { + "Cake.Chocolatey.Module": { + "target": "Package", + "version": "[0.6.1, )" + }, + "NLog": { + "target": "Package", + "version": "[4.7.10, )" + }, + "chocolatey": { + "target": "Package", + "version": "[0.10.14, )" + }, + "chocolatey.lib": { + "target": "Package", + "version": "[0.10.15, )" + }, + "instchoco": { + "target": "Package", + "version": "[2.11.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json" + } + } + }, + "logs": [ + { + "code": "NU1701", + "level": "Warning", + "warningLevel": 1, + "message": "Package 'chocolatey.lib 0.10.15' 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'. This package may not be fully compatible with your project.", + "libraryId": "chocolatey.lib", + "targetGraphs": [ + "net5.0" + ] + }, + { + "code": "NU1701", + "level": "Warning", + "warningLevel": 1, + "message": "Package 'log4net 2.0.3' 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'. This package may not be fully compatible with your project.", + "libraryId": "log4net", + "targetGraphs": [ + "net5.0" + ] + } + ] +} \ No newline at end of file diff --git a/Upgrade All/Upgrade All/obj/project.nuget.cache b/Upgrade All/Upgrade All/obj/project.nuget.cache new file mode 100644 index 0000000..2a86dd6 --- /dev/null +++ b/Upgrade All/Upgrade All/obj/project.nuget.cache @@ -0,0 +1,36 @@ +{ + "version": 2, + "dgSpecHash": "Hk8lWr5TqHSYkGf/sI6HXlW5wOjLcmmr1JQQumIxkYiR6be2dhZBDCoSvU4V44iMYFDObL97nvJPexYH5aHUeg==", + "success": true, + "projectFilePath": "C:\\Users\\סארט\\source\\repos\\Upgrade All\\Upgrade All\\Upgrade All.csproj", + "expectedPackageFiles": [ + "C:\\Users\\סארט\\.nuget\\packages\\cake.chocolatey.module\\0.6.1\\cake.chocolatey.module.0.6.1.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\chocolatey\\0.10.14\\chocolatey.0.10.14.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\chocolatey.lib\\0.10.15\\chocolatey.lib.0.10.15.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\instchoco\\2.11.0\\instchoco.2.11.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\log4net\\2.0.3\\log4net.2.0.3.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\nlog\\4.7.10\\nlog.4.7.10.nupkg.sha512" + ], + "logs": [ + { + "code": "NU1701", + "level": "Warning", + "warningLevel": 1, + "message": "Package 'chocolatey.lib 0.10.15' 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'. This package may not be fully compatible with your project.", + "libraryId": "chocolatey.lib", + "targetGraphs": [ + "net5.0" + ] + }, + { + "code": "NU1701", + "level": "Warning", + "warningLevel": 1, + "message": "Package 'log4net 2.0.3' 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'. This package may not be fully compatible with your project.", + "libraryId": "log4net", + "targetGraphs": [ + "net5.0" + ] + } + ] +} \ No newline at end of file diff --git a/Upgrade All/desktop.ini b/Upgrade All/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/Upgrade All/desktop.ini differ diff --git a/WpfApp1/.vs/WpfApp1/DesignTimeBuild/.dtbcache.v2 b/WpfApp1/.vs/WpfApp1/DesignTimeBuild/.dtbcache.v2 new file mode 100644 index 0000000..02135fa Binary files /dev/null and b/WpfApp1/.vs/WpfApp1/DesignTimeBuild/.dtbcache.v2 differ diff --git a/WpfApp1/.vs/WpfApp1/DesignTimeBuild/desktop.ini b/WpfApp1/.vs/WpfApp1/DesignTimeBuild/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/WpfApp1/.vs/WpfApp1/DesignTimeBuild/desktop.ini differ diff --git a/WpfApp1/.vs/WpfApp1/desktop.ini b/WpfApp1/.vs/WpfApp1/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/WpfApp1/.vs/WpfApp1/desktop.ini differ diff --git a/WpfApp1/.vs/WpfApp1/v16/.suo b/WpfApp1/.vs/WpfApp1/v16/.suo new file mode 100644 index 0000000..d69954f Binary files /dev/null and b/WpfApp1/.vs/WpfApp1/v16/.suo differ diff --git a/WpfApp1/.vs/WpfApp1/v16/desktop.ini b/WpfApp1/.vs/WpfApp1/v16/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/WpfApp1/.vs/WpfApp1/v16/desktop.ini differ diff --git a/WpfApp1/.vs/desktop.ini b/WpfApp1/.vs/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/WpfApp1/.vs/desktop.ini differ diff --git a/WpfApp1/WpfApp1.sln b/WpfApp1/WpfApp1.sln new file mode 100644 index 0000000..344a4cf --- /dev/null +++ b/WpfApp1/WpfApp1.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31402.337 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WpfApp1", "WpfApp1\WpfApp1.csproj", "{1D40D023-AC48-4FFD-9075-30AD921C14CA}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {1D40D023-AC48-4FFD-9075-30AD921C14CA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1D40D023-AC48-4FFD-9075-30AD921C14CA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1D40D023-AC48-4FFD-9075-30AD921C14CA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1D40D023-AC48-4FFD-9075-30AD921C14CA}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {286F96AB-4F59-4D07-88E1-70EAB9DFFFE5} + EndGlobalSection +EndGlobal diff --git a/WpfApp1/WpfApp1/App.xaml b/WpfApp1/WpfApp1/App.xaml new file mode 100644 index 0000000..2e70522 --- /dev/null +++ b/WpfApp1/WpfApp1/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/WpfApp1/WpfApp1/App.xaml.cs b/WpfApp1/WpfApp1/App.xaml.cs new file mode 100644 index 0000000..909eaa5 --- /dev/null +++ b/WpfApp1/WpfApp1/App.xaml.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Threading.Tasks; +using System.Windows; + +namespace WpfApp1 +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/WpfApp1/WpfApp1/AssemblyInfo.cs b/WpfApp1/WpfApp1/AssemblyInfo.cs new file mode 100644 index 0000000..8b5504e --- /dev/null +++ b/WpfApp1/WpfApp1/AssemblyInfo.cs @@ -0,0 +1,10 @@ +using System.Windows; + +[assembly: ThemeInfo( + ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located + //(used if a resource is not found in the page, + // or application resource dictionaries) + ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located + //(used if a resource is not found in the page, + // app, or any theme specific resource dictionaries) +)] diff --git a/WpfApp1/WpfApp1/CodeFile1.cs b/WpfApp1/WpfApp1/CodeFile1.cs new file mode 100644 index 0000000..5f28270 --- /dev/null +++ b/WpfApp1/WpfApp1/CodeFile1.cs @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/WpfApp1/WpfApp1/MainWindow.xaml b/WpfApp1/WpfApp1/MainWindow.xaml new file mode 100644 index 0000000..cfada06 --- /dev/null +++ b/WpfApp1/WpfApp1/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/WpfApp1/WpfApp1/MainWindow.xaml.cs b/WpfApp1/WpfApp1/MainWindow.xaml.cs new file mode 100644 index 0000000..5638ce0 --- /dev/null +++ b/WpfApp1/WpfApp1/MainWindow.xaml.cs @@ -0,0 +1,15 @@ +using System; +using System.Net; +using System.Net.NetworkInformation; + +namespace WebApp +{ + class Program + { + static void Main(string[] args) + { + NetworkInterface[] nets = NetworkInterface.GetAllNetworkInterfaces(); + Console.WriteLine(nets); + } + } +} diff --git a/WpfApp1/WpfApp1/WpfApp1.csproj b/WpfApp1/WpfApp1/WpfApp1.csproj new file mode 100644 index 0000000..eae8f91 --- /dev/null +++ b/WpfApp1/WpfApp1/WpfApp1.csproj @@ -0,0 +1,15 @@ + + + + Exe + net5.0-windows + true + + WebApp.Program + + + + + + + diff --git a/WpfApp1/WpfApp1/WpfApp1.csproj.user b/WpfApp1/WpfApp1/WpfApp1.csproj.user new file mode 100644 index 0000000..644b0a6 --- /dev/null +++ b/WpfApp1/WpfApp1/WpfApp1.csproj.user @@ -0,0 +1,14 @@ + + + + + + Designer + + + + + Designer + + + \ No newline at end of file diff --git a/WpfApp1/WpfApp1/bin/Debug/desktop.ini b/WpfApp1/WpfApp1/bin/Debug/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/WpfApp1/WpfApp1/bin/Debug/desktop.ini differ diff --git a/WpfApp1/WpfApp1/bin/Debug/net5.0-windows/desktop.ini b/WpfApp1/WpfApp1/bin/Debug/net5.0-windows/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/WpfApp1/WpfApp1/bin/Debug/net5.0-windows/desktop.ini differ diff --git a/WpfApp1/WpfApp1/bin/Debug/net5.0-windows/ref/desktop.ini b/WpfApp1/WpfApp1/bin/Debug/net5.0-windows/ref/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/WpfApp1/WpfApp1/bin/Debug/net5.0-windows/ref/desktop.ini differ diff --git a/WpfApp1/WpfApp1/bin/Release/desktop.ini b/WpfApp1/WpfApp1/bin/Release/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/WpfApp1/WpfApp1/bin/Release/desktop.ini differ diff --git a/WpfApp1/WpfApp1/bin/Release/net5.0-windows/desktop.ini b/WpfApp1/WpfApp1/bin/Release/net5.0-windows/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/WpfApp1/WpfApp1/bin/Release/net5.0-windows/desktop.ini differ diff --git a/WpfApp1/WpfApp1/bin/Release/net5.0-windows/ref/desktop.ini b/WpfApp1/WpfApp1/bin/Release/net5.0-windows/ref/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/WpfApp1/WpfApp1/bin/Release/net5.0-windows/ref/desktop.ini differ diff --git a/WpfApp1/WpfApp1/bin/desktop.ini b/WpfApp1/WpfApp1/bin/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/WpfApp1/WpfApp1/bin/desktop.ini differ diff --git a/WpfApp1/WpfApp1/desktop.ini b/WpfApp1/WpfApp1/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/WpfApp1/WpfApp1/desktop.ini differ diff --git a/WpfApp1/WpfApp1/obj/Debug/desktop.ini b/WpfApp1/WpfApp1/obj/Debug/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/WpfApp1/WpfApp1/obj/Debug/desktop.ini differ diff --git a/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2f7e5ec --- /dev/null +++ b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/App.g.cs b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/App.g.cs new file mode 100644 index 0000000..87a4cc0 --- /dev/null +++ b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/App.g.cs @@ -0,0 +1,71 @@ +#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "DCC59813AB95D23CF72F07367E2D9621042BF6D9" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Diagnostics; +using System.Windows; +using System.Windows.Automation; +using System.Windows.Controls; +using System.Windows.Controls.Primitives; +using System.Windows.Controls.Ribbon; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Ink; +using System.Windows.Input; +using System.Windows.Markup; +using System.Windows.Media; +using System.Windows.Media.Animation; +using System.Windows.Media.Effects; +using System.Windows.Media.Imaging; +using System.Windows.Media.Media3D; +using System.Windows.Media.TextFormatting; +using System.Windows.Navigation; +using System.Windows.Shapes; +using System.Windows.Shell; +using WpfApp1; + + +namespace WpfApp1 { + + + /// + /// App + /// + public partial class App : System.Windows.Application { + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.6.0")] + public void InitializeComponent() { + + #line 5 "..\..\..\App.xaml" + this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative); + + #line default + #line hidden + } + + /// + /// Application Entry Point. + /// + [System.STAThreadAttribute()] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.6.0")] + public static void Main() { + WpfApp1.App app = new WpfApp1.App(); + app.InitializeComponent(); + app.Run(); + } + } +} + diff --git a/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/App.g.i.cs b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/App.g.i.cs new file mode 100644 index 0000000..87a4cc0 --- /dev/null +++ b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/App.g.i.cs @@ -0,0 +1,71 @@ +#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "DCC59813AB95D23CF72F07367E2D9621042BF6D9" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Diagnostics; +using System.Windows; +using System.Windows.Automation; +using System.Windows.Controls; +using System.Windows.Controls.Primitives; +using System.Windows.Controls.Ribbon; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Ink; +using System.Windows.Input; +using System.Windows.Markup; +using System.Windows.Media; +using System.Windows.Media.Animation; +using System.Windows.Media.Effects; +using System.Windows.Media.Imaging; +using System.Windows.Media.Media3D; +using System.Windows.Media.TextFormatting; +using System.Windows.Navigation; +using System.Windows.Shapes; +using System.Windows.Shell; +using WpfApp1; + + +namespace WpfApp1 { + + + /// + /// App + /// + public partial class App : System.Windows.Application { + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.6.0")] + public void InitializeComponent() { + + #line 5 "..\..\..\App.xaml" + this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative); + + #line default + #line hidden + } + + /// + /// Application Entry Point. + /// + [System.STAThreadAttribute()] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.6.0")] + public static void Main() { + WpfApp1.App app = new WpfApp1.App(); + app.InitializeComponent(); + app.Run(); + } + } +} + diff --git a/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/MainWindow.g.cs b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/MainWindow.g.cs new file mode 100644 index 0000000..64dbad4 --- /dev/null +++ b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/MainWindow.g.cs @@ -0,0 +1,76 @@ +#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "7FA5E26BFC15BF5CE7CC8E140A3B90C7EE25F21F" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Diagnostics; +using System.Windows; +using System.Windows.Automation; +using System.Windows.Controls; +using System.Windows.Controls.Primitives; +using System.Windows.Controls.Ribbon; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Ink; +using System.Windows.Input; +using System.Windows.Markup; +using System.Windows.Media; +using System.Windows.Media.Animation; +using System.Windows.Media.Effects; +using System.Windows.Media.Imaging; +using System.Windows.Media.Media3D; +using System.Windows.Media.TextFormatting; +using System.Windows.Navigation; +using System.Windows.Shapes; +using System.Windows.Shell; +using WpfApp1; + + +namespace WpfApp1 { + + + /// + /// MainWindow + /// + public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.6.0")] + public void InitializeComponent() { + if (_contentLoaded) { + return; + } + _contentLoaded = true; + System.Uri resourceLocater = new System.Uri("/WpfApp1;component/mainwindow.xaml", System.UriKind.Relative); + + #line 1 "..\..\..\MainWindow.xaml" + System.Windows.Application.LoadComponent(this, resourceLocater); + + #line default + #line hidden + } + + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.6.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] + void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { + this._contentLoaded = true; + } + } +} + diff --git a/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/MainWindow.g.i.cs b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/MainWindow.g.i.cs new file mode 100644 index 0000000..64dbad4 --- /dev/null +++ b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/MainWindow.g.i.cs @@ -0,0 +1,76 @@ +#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "7FA5E26BFC15BF5CE7CC8E140A3B90C7EE25F21F" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Diagnostics; +using System.Windows; +using System.Windows.Automation; +using System.Windows.Controls; +using System.Windows.Controls.Primitives; +using System.Windows.Controls.Ribbon; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Ink; +using System.Windows.Input; +using System.Windows.Markup; +using System.Windows.Media; +using System.Windows.Media.Animation; +using System.Windows.Media.Effects; +using System.Windows.Media.Imaging; +using System.Windows.Media.Media3D; +using System.Windows.Media.TextFormatting; +using System.Windows.Navigation; +using System.Windows.Shapes; +using System.Windows.Shell; +using WpfApp1; + + +namespace WpfApp1 { + + + /// + /// MainWindow + /// + public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.6.0")] + public void InitializeComponent() { + if (_contentLoaded) { + return; + } + _contentLoaded = true; + System.Uri resourceLocater = new System.Uri("/WpfApp1;component/mainwindow.xaml", System.UriKind.Relative); + + #line 1 "..\..\..\MainWindow.xaml" + System.Windows.Application.LoadComponent(this, resourceLocater); + + #line default + #line hidden + } + + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.6.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] + void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { + this._contentLoaded = true; + } + } +} + diff --git a/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/WpfApp1.AssemblyInfo.cs b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/WpfApp1.AssemblyInfo.cs new file mode 100644 index 0000000..8836792 --- /dev/null +++ b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/WpfApp1.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp1")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("WpfApp1")] +[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp1")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/WpfApp1.AssemblyInfoInputs.cache b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/WpfApp1.AssemblyInfoInputs.cache new file mode 100644 index 0000000..4215463 --- /dev/null +++ b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/WpfApp1.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +d604ad24407ce953817be2036da374ec3791f6f9 diff --git a/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/WpfApp1.GeneratedMSBuildEditorConfig.editorconfig b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/WpfApp1.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..7694274 --- /dev/null +++ b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/WpfApp1.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,8 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.PublishSingleFile = +build_property.IncludeAllContentForSelfExtract = +build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows diff --git a/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/WpfApp1.assets.cache b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/WpfApp1.assets.cache new file mode 100644 index 0000000..508eb4a Binary files /dev/null and b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/WpfApp1.assets.cache differ diff --git a/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/WpfApp1.csproj.AssemblyReference.cache b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/WpfApp1.csproj.AssemblyReference.cache new file mode 100644 index 0000000..224ce2a Binary files /dev/null and b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/WpfApp1.csproj.AssemblyReference.cache differ diff --git a/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/WpfApp1.csproj.FileListAbsolute.txt b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/WpfApp1.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..1e82bf6 --- /dev/null +++ b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/WpfApp1.csproj.FileListAbsolute.txt @@ -0,0 +1,5 @@ +C:\Users\סארט\source\repos\WpfApp1\WpfApp1\obj\Debug\net5.0-windows\WpfApp1.csproj.AssemblyReference.cache +C:\Users\סארט\source\repos\WpfApp1\WpfApp1\obj\Debug\net5.0-windows\MainWindow.g.cs +C:\Users\סארט\source\repos\WpfApp1\WpfApp1\obj\Debug\net5.0-windows\App.g.cs +C:\Users\סארט\source\repos\WpfApp1\WpfApp1\obj\Debug\net5.0-windows\WpfApp1_MarkupCompile.cache +C:\Users\סארט\source\repos\WpfApp1\WpfApp1\obj\Debug\net5.0-windows\WpfApp1_MarkupCompile.lref diff --git a/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/WpfApp1.designer.deps.json b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/WpfApp1.designer.deps.json new file mode 100644 index 0000000..74b9003 --- /dev/null +++ b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/WpfApp1.designer.deps.json @@ -0,0 +1,11 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v5.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v5.0": {} + }, + "libraries": {} +} \ No newline at end of file diff --git a/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/WpfApp1.designer.runtimeconfig.json b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/WpfApp1.designer.runtimeconfig.json new file mode 100644 index 0000000..2efed64 --- /dev/null +++ b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/WpfApp1.designer.runtimeconfig.json @@ -0,0 +1,17 @@ +{ + "runtimeOptions": { + "tfm": "net5.0", + "framework": { + "name": "Microsoft.WindowsDesktop.App", + "version": "5.0.0" + }, + "additionalProbingPaths": [ + "C:\\Users\\סארט\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\סארט\\.nuget\\packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configProperties": { + "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true + } + } +} \ No newline at end of file diff --git a/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/WpfApp1_MarkupCompile.cache b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/WpfApp1_MarkupCompile.cache new file mode 100644 index 0000000..57370c8 --- /dev/null +++ b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/WpfApp1_MarkupCompile.cache @@ -0,0 +1,20 @@ +WpfApp1 + + +winexe +C# +.cs +C:\Users\סארט\source\repos\WpfApp1\WpfApp1\obj\Debug\net5.0-windows\ +WpfApp1 +none +false +TRACE;DEBUG;NET;NET5_0;NETCOREAPP +C:\Users\סארט\source\repos\WpfApp1\WpfApp1\App.xaml +11407045341 + +41786600360 +193-1891726104 +MainWindow.xaml; + +True + diff --git a/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/WpfApp1_MarkupCompile.i.cache b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/WpfApp1_MarkupCompile.i.cache new file mode 100644 index 0000000..1b7c13b --- /dev/null +++ b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/WpfApp1_MarkupCompile.i.cache @@ -0,0 +1,20 @@ +WpfApp1 +1.0.0.0 + +winexe +C# +.cs +C:\Users\סארט\source\repos\WpfApp1\WpfApp1\obj\Debug\net5.0-windows\ +WpfApp1 +none +false +TRACE;DEBUG;NET;NET5_0;NETCOREAPP +C:\Users\סארט\source\repos\WpfApp1\WpfApp1\App.xaml +11407045341 + +61346281805 +193-1891726104 +MainWindow.xaml; + +False + diff --git a/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/WpfApp1_MarkupCompile.lref b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/WpfApp1_MarkupCompile.lref new file mode 100644 index 0000000..61fc799 --- /dev/null +++ b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/WpfApp1_MarkupCompile.lref @@ -0,0 +1,4 @@ + + +FC:\Users\סארט\source\repos\WpfApp1\WpfApp1\MainWindow.xaml;; + diff --git a/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/desktop.ini b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/desktop.ini differ diff --git a/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/ref/desktop.ini b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/ref/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/WpfApp1/WpfApp1/obj/Debug/net5.0-windows/ref/desktop.ini differ diff --git a/WpfApp1/WpfApp1/obj/Release/desktop.ini b/WpfApp1/WpfApp1/obj/Release/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/WpfApp1/WpfApp1/obj/Release/desktop.ini differ diff --git a/WpfApp1/WpfApp1/obj/Release/net5.0-windows/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/WpfApp1/WpfApp1/obj/Release/net5.0-windows/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2f7e5ec --- /dev/null +++ b/WpfApp1/WpfApp1/obj/Release/net5.0-windows/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/WpfApp1/WpfApp1/obj/Release/net5.0-windows/App.g.cs b/WpfApp1/WpfApp1/obj/Release/net5.0-windows/App.g.cs new file mode 100644 index 0000000..87a4cc0 --- /dev/null +++ b/WpfApp1/WpfApp1/obj/Release/net5.0-windows/App.g.cs @@ -0,0 +1,71 @@ +#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "DCC59813AB95D23CF72F07367E2D9621042BF6D9" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Diagnostics; +using System.Windows; +using System.Windows.Automation; +using System.Windows.Controls; +using System.Windows.Controls.Primitives; +using System.Windows.Controls.Ribbon; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Ink; +using System.Windows.Input; +using System.Windows.Markup; +using System.Windows.Media; +using System.Windows.Media.Animation; +using System.Windows.Media.Effects; +using System.Windows.Media.Imaging; +using System.Windows.Media.Media3D; +using System.Windows.Media.TextFormatting; +using System.Windows.Navigation; +using System.Windows.Shapes; +using System.Windows.Shell; +using WpfApp1; + + +namespace WpfApp1 { + + + /// + /// App + /// + public partial class App : System.Windows.Application { + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.6.0")] + public void InitializeComponent() { + + #line 5 "..\..\..\App.xaml" + this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative); + + #line default + #line hidden + } + + /// + /// Application Entry Point. + /// + [System.STAThreadAttribute()] + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.6.0")] + public static void Main() { + WpfApp1.App app = new WpfApp1.App(); + app.InitializeComponent(); + app.Run(); + } + } +} + diff --git a/WpfApp1/WpfApp1/obj/Release/net5.0-windows/MainWindow.g.cs b/WpfApp1/WpfApp1/obj/Release/net5.0-windows/MainWindow.g.cs new file mode 100644 index 0000000..64dbad4 --- /dev/null +++ b/WpfApp1/WpfApp1/obj/Release/net5.0-windows/MainWindow.g.cs @@ -0,0 +1,76 @@ +#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "7FA5E26BFC15BF5CE7CC8E140A3B90C7EE25F21F" +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Diagnostics; +using System.Windows; +using System.Windows.Automation; +using System.Windows.Controls; +using System.Windows.Controls.Primitives; +using System.Windows.Controls.Ribbon; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Ink; +using System.Windows.Input; +using System.Windows.Markup; +using System.Windows.Media; +using System.Windows.Media.Animation; +using System.Windows.Media.Effects; +using System.Windows.Media.Imaging; +using System.Windows.Media.Media3D; +using System.Windows.Media.TextFormatting; +using System.Windows.Navigation; +using System.Windows.Shapes; +using System.Windows.Shell; +using WpfApp1; + + +namespace WpfApp1 { + + + /// + /// MainWindow + /// + public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { + + private bool _contentLoaded; + + /// + /// InitializeComponent + /// + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.6.0")] + public void InitializeComponent() { + if (_contentLoaded) { + return; + } + _contentLoaded = true; + System.Uri resourceLocater = new System.Uri("/WpfApp1;component/mainwindow.xaml", System.UriKind.Relative); + + #line 1 "..\..\..\MainWindow.xaml" + System.Windows.Application.LoadComponent(this, resourceLocater); + + #line default + #line hidden + } + + [System.Diagnostics.DebuggerNonUserCodeAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "5.0.6.0")] + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] + void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { + this._contentLoaded = true; + } + } +} + diff --git a/WpfApp1/WpfApp1/obj/Release/net5.0-windows/WpfApp1.AssemblyInfo.cs b/WpfApp1/WpfApp1/obj/Release/net5.0-windows/WpfApp1.AssemblyInfo.cs new file mode 100644 index 0000000..3cd97ab --- /dev/null +++ b/WpfApp1/WpfApp1/obj/Release/net5.0-windows/WpfApp1.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp1")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("WpfApp1")] +[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp1")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/WpfApp1/WpfApp1/obj/Release/net5.0-windows/WpfApp1.AssemblyInfoInputs.cache b/WpfApp1/WpfApp1/obj/Release/net5.0-windows/WpfApp1.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6a4b7c2 --- /dev/null +++ b/WpfApp1/WpfApp1/obj/Release/net5.0-windows/WpfApp1.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +55c32ee825546d994e0622750ebed5469861c178 diff --git a/WpfApp1/WpfApp1/obj/Release/net5.0-windows/WpfApp1.GeneratedMSBuildEditorConfig.editorconfig b/WpfApp1/WpfApp1/obj/Release/net5.0-windows/WpfApp1.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..7694274 --- /dev/null +++ b/WpfApp1/WpfApp1/obj/Release/net5.0-windows/WpfApp1.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,8 @@ +is_global = true +build_property.TargetFramework = net5.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.PublishSingleFile = +build_property.IncludeAllContentForSelfExtract = +build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows diff --git a/WpfApp1/WpfApp1/obj/Release/net5.0-windows/WpfApp1.assets.cache b/WpfApp1/WpfApp1/obj/Release/net5.0-windows/WpfApp1.assets.cache new file mode 100644 index 0000000..b462f0a Binary files /dev/null and b/WpfApp1/WpfApp1/obj/Release/net5.0-windows/WpfApp1.assets.cache differ diff --git a/WpfApp1/WpfApp1/obj/Release/net5.0-windows/WpfApp1.csproj.AssemblyReference.cache b/WpfApp1/WpfApp1/obj/Release/net5.0-windows/WpfApp1.csproj.AssemblyReference.cache new file mode 100644 index 0000000..5b33768 Binary files /dev/null and b/WpfApp1/WpfApp1/obj/Release/net5.0-windows/WpfApp1.csproj.AssemblyReference.cache differ diff --git a/WpfApp1/WpfApp1/obj/Release/net5.0-windows/WpfApp1_MarkupCompile.cache b/WpfApp1/WpfApp1/obj/Release/net5.0-windows/WpfApp1_MarkupCompile.cache new file mode 100644 index 0000000..37125db --- /dev/null +++ b/WpfApp1/WpfApp1/obj/Release/net5.0-windows/WpfApp1_MarkupCompile.cache @@ -0,0 +1,20 @@ +WpfApp1 + + +winexe +C# +.cs +C:\Users\סארט\source\repos\WpfApp1\WpfApp1\obj\Release\net5.0-windows\ +WpfApp1 +none +false +TRACE;RELEASE;NET;NET5_0;NETCOREAPP +C:\Users\סארט\source\repos\WpfApp1\WpfApp1\App.xaml +11407045341 + +41786600360 +193-1891726104 +MainWindow.xaml; + +True + diff --git a/WpfApp1/WpfApp1/obj/Release/net5.0-windows/WpfApp1_MarkupCompile.lref b/WpfApp1/WpfApp1/obj/Release/net5.0-windows/WpfApp1_MarkupCompile.lref new file mode 100644 index 0000000..61fc799 --- /dev/null +++ b/WpfApp1/WpfApp1/obj/Release/net5.0-windows/WpfApp1_MarkupCompile.lref @@ -0,0 +1,4 @@ + + +FC:\Users\סארט\source\repos\WpfApp1\WpfApp1\MainWindow.xaml;; + diff --git a/WpfApp1/WpfApp1/obj/Release/net5.0-windows/desktop.ini b/WpfApp1/WpfApp1/obj/Release/net5.0-windows/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/WpfApp1/WpfApp1/obj/Release/net5.0-windows/desktop.ini differ diff --git a/WpfApp1/WpfApp1/obj/Release/net5.0-windows/ref/desktop.ini b/WpfApp1/WpfApp1/obj/Release/net5.0-windows/ref/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/WpfApp1/WpfApp1/obj/Release/net5.0-windows/ref/desktop.ini differ diff --git a/WpfApp1/WpfApp1/obj/WpfApp1.csproj.nuget.dgspec.json b/WpfApp1/WpfApp1/obj/WpfApp1.csproj.nuget.dgspec.json new file mode 100644 index 0000000..665a4de --- /dev/null +++ b/WpfApp1/WpfApp1/obj/WpfApp1.csproj.nuget.dgspec.json @@ -0,0 +1,75 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\סארט\\source\\repos\\WpfApp1\\WpfApp1\\WpfApp1.csproj": {} + }, + "projects": { + "C:\\Users\\סארט\\source\\repos\\WpfApp1\\WpfApp1\\WpfApp1.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\סארט\\source\\repos\\WpfApp1\\WpfApp1\\WpfApp1.csproj", + "projectName": "WpfApp1", + "projectPath": "C:\\Users\\סארט\\source\\repos\\WpfApp1\\WpfApp1\\WpfApp1.csproj", + "packagesPath": "C:\\Users\\סארט\\.nuget\\packages\\", + "outputPath": "C:\\Users\\סארט\\source\\repos\\WpfApp1\\WpfApp1\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\סארט\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0-windows7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0-windows7.0": { + "targetAlias": "net5.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0-windows7.0": { + "targetAlias": "net5.0-windows", + "dependencies": { + "System.Net.NetworkInformation": { + "target": "Package", + "version": "[4.3.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WPF": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/WpfApp1/WpfApp1/obj/WpfApp1.csproj.nuget.g.props b/WpfApp1/WpfApp1/obj/WpfApp1.csproj.nuget.g.props new file mode 100644 index 0000000..1fef40e --- /dev/null +++ b/WpfApp1/WpfApp1/obj/WpfApp1.csproj.nuget.g.props @@ -0,0 +1,19 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\סארט\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 5.10.0 + + + + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/WpfApp1/WpfApp1/obj/WpfApp1.csproj.nuget.g.targets b/WpfApp1/WpfApp1/obj/WpfApp1.csproj.nuget.g.targets new file mode 100644 index 0000000..53cfaa1 --- /dev/null +++ b/WpfApp1/WpfApp1/obj/WpfApp1.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + \ No newline at end of file diff --git a/WpfApp1/WpfApp1/obj/desktop.ini b/WpfApp1/WpfApp1/obj/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/WpfApp1/WpfApp1/obj/desktop.ini differ diff --git a/WpfApp1/WpfApp1/obj/project.assets.json b/WpfApp1/WpfApp1/obj/project.assets.json new file mode 100644 index 0000000..5fded06 --- /dev/null +++ b/WpfApp1/WpfApp1/obj/project.assets.json @@ -0,0 +1,2267 @@ +{ + "version": 3, + "targets": { + "net5.0-windows7.0": { + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": {} + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": {} + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Net.NetworkInformation/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Principal.Windows": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Overlapped": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Thread": "4.3.0", + "System.Threading.ThreadPool": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.NetworkInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/linux/lib/netstandard1.3/System.Net.NetworkInformation.dll": { + "assetType": "runtime", + "rid": "linux" + }, + "runtimes/osx/lib/netstandard1.3/System.Net.NetworkInformation.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/win/lib/netstandard1.3/System.Net.NetworkInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": {} + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/_._": {} + } + }, + "System.Security.Claims/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Security.Principal": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Claims.dll": {} + } + }, + "System.Security.Principal/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Claims": "4.3.0", + "System.Security.Principal": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.ThreadPool.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.NETCore.Platforms/1.1.0": { + "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "type": "package", + "path": "microsoft.netcore.platforms/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.Win32.Primitives/4.3.0": { + "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "type": "package", + "path": "microsoft.win32.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.3.0.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "type": "package", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.3.0": { + "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "type": "package", + "path": "system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.3.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.FileSystem/4.3.0": { + "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "type": "package", + "path": "system.io.filesystem/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.3.0.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.Linq/4.3.0": { + "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Net.NetworkInformation/4.3.0": { + "sha512": "zNVmWVry0pAu7lcrRBhwwU96WUdbsrGL3azyzsbXmVNptae1+Za+UgOe9Z6s8iaWhPn7/l4wQqhC56HZWq7tkg==", + "type": "package", + "path": "system.net.networkinformation/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.NetworkInformation.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.NetworkInformation.dll", + "ref/netcore50/System.Net.NetworkInformation.dll", + "ref/netcore50/System.Net.NetworkInformation.xml", + "ref/netcore50/de/System.Net.NetworkInformation.xml", + "ref/netcore50/es/System.Net.NetworkInformation.xml", + "ref/netcore50/fr/System.Net.NetworkInformation.xml", + "ref/netcore50/it/System.Net.NetworkInformation.xml", + "ref/netcore50/ja/System.Net.NetworkInformation.xml", + "ref/netcore50/ko/System.Net.NetworkInformation.xml", + "ref/netcore50/ru/System.Net.NetworkInformation.xml", + "ref/netcore50/zh-hans/System.Net.NetworkInformation.xml", + "ref/netcore50/zh-hant/System.Net.NetworkInformation.xml", + "ref/netstandard1.0/System.Net.NetworkInformation.dll", + "ref/netstandard1.0/System.Net.NetworkInformation.xml", + "ref/netstandard1.0/de/System.Net.NetworkInformation.xml", + "ref/netstandard1.0/es/System.Net.NetworkInformation.xml", + "ref/netstandard1.0/fr/System.Net.NetworkInformation.xml", + "ref/netstandard1.0/it/System.Net.NetworkInformation.xml", + "ref/netstandard1.0/ja/System.Net.NetworkInformation.xml", + "ref/netstandard1.0/ko/System.Net.NetworkInformation.xml", + "ref/netstandard1.0/ru/System.Net.NetworkInformation.xml", + "ref/netstandard1.0/zh-hans/System.Net.NetworkInformation.xml", + "ref/netstandard1.0/zh-hant/System.Net.NetworkInformation.xml", + "ref/netstandard1.3/System.Net.NetworkInformation.dll", + "ref/netstandard1.3/System.Net.NetworkInformation.xml", + "ref/netstandard1.3/de/System.Net.NetworkInformation.xml", + "ref/netstandard1.3/es/System.Net.NetworkInformation.xml", + "ref/netstandard1.3/fr/System.Net.NetworkInformation.xml", + "ref/netstandard1.3/it/System.Net.NetworkInformation.xml", + "ref/netstandard1.3/ja/System.Net.NetworkInformation.xml", + "ref/netstandard1.3/ko/System.Net.NetworkInformation.xml", + "ref/netstandard1.3/ru/System.Net.NetworkInformation.xml", + "ref/netstandard1.3/zh-hans/System.Net.NetworkInformation.xml", + "ref/netstandard1.3/zh-hant/System.Net.NetworkInformation.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/linux/lib/netstandard1.3/System.Net.NetworkInformation.dll", + "runtimes/osx/lib/netstandard1.3/System.Net.NetworkInformation.dll", + "runtimes/win/lib/net46/System.Net.NetworkInformation.dll", + "runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll", + "runtimes/win/lib/netstandard1.3/System.Net.NetworkInformation.dll", + "system.net.networkinformation.4.3.0.nupkg.sha512", + "system.net.networkinformation.nuspec" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Sockets/4.3.0": { + "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "type": "package", + "path": "system.net.sockets/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.3.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Security.Claims/4.3.0": { + "sha512": "P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==", + "type": "package", + "path": "system.security.claims/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Claims.dll", + "lib/netstandard1.3/System.Security.Claims.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.dll", + "ref/netstandard1.3/System.Security.Claims.xml", + "ref/netstandard1.3/de/System.Security.Claims.xml", + "ref/netstandard1.3/es/System.Security.Claims.xml", + "ref/netstandard1.3/fr/System.Security.Claims.xml", + "ref/netstandard1.3/it/System.Security.Claims.xml", + "ref/netstandard1.3/ja/System.Security.Claims.xml", + "ref/netstandard1.3/ko/System.Security.Claims.xml", + "ref/netstandard1.3/ru/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hans/System.Security.Claims.xml", + "ref/netstandard1.3/zh-hant/System.Security.Claims.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.claims.4.3.0.nupkg.sha512", + "system.security.claims.nuspec" + ] + }, + "System.Security.Principal/4.3.0": { + "sha512": "I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==", + "type": "package", + "path": "system.security.principal/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/netstandard1.0/System.Security.Principal.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/netcore50/de/System.Security.Principal.xml", + "ref/netcore50/es/System.Security.Principal.xml", + "ref/netcore50/fr/System.Security.Principal.xml", + "ref/netcore50/it/System.Security.Principal.xml", + "ref/netcore50/ja/System.Security.Principal.xml", + "ref/netcore50/ko/System.Security.Principal.xml", + "ref/netcore50/ru/System.Security.Principal.xml", + "ref/netcore50/zh-hans/System.Security.Principal.xml", + "ref/netcore50/zh-hant/System.Security.Principal.xml", + "ref/netstandard1.0/System.Security.Principal.dll", + "ref/netstandard1.0/System.Security.Principal.xml", + "ref/netstandard1.0/de/System.Security.Principal.xml", + "ref/netstandard1.0/es/System.Security.Principal.xml", + "ref/netstandard1.0/fr/System.Security.Principal.xml", + "ref/netstandard1.0/it/System.Security.Principal.xml", + "ref/netstandard1.0/ja/System.Security.Principal.xml", + "ref/netstandard1.0/ko/System.Security.Principal.xml", + "ref/netstandard1.0/ru/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hans/System.Security.Principal.xml", + "ref/netstandard1.0/zh-hant/System.Security.Principal.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.principal.4.3.0.nupkg.sha512", + "system.security.principal.nuspec" + ] + }, + "System.Security.Principal.Windows/4.3.0": { + "sha512": "HVL1rvqYtnRCxFsYag/2le/ZfKLK4yMw79+s6FmKXbSCNN0JeAhrYxnRAHFoWRa0dEojsDcbBSpH3l22QxAVyw==", + "type": "package", + "path": "system.security.principal.windows/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Principal.Windows.dll", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "system.security.principal.windows.4.3.0.nupkg.sha512", + "system.security.principal.windows.nuspec" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Threading/4.3.0": { + "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.3.0": { + "sha512": "m3HQ2dPiX/DSTpf+yJt8B0c+SRvzfqAJKx+QDWi+VLhz8svLT23MVjEOHPF/KiSLeArKU/iHescrbLd3yVgyNg==", + "type": "package", + "path": "system.threading.overlapped/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Threading.Overlapped.dll", + "ref/net46/System.Threading.Overlapped.dll", + "ref/netstandard1.3/System.Threading.Overlapped.dll", + "ref/netstandard1.3/System.Threading.Overlapped.xml", + "ref/netstandard1.3/de/System.Threading.Overlapped.xml", + "ref/netstandard1.3/es/System.Threading.Overlapped.xml", + "ref/netstandard1.3/fr/System.Threading.Overlapped.xml", + "ref/netstandard1.3/it/System.Threading.Overlapped.xml", + "ref/netstandard1.3/ja/System.Threading.Overlapped.xml", + "ref/netstandard1.3/ko/System.Threading.Overlapped.xml", + "ref/netstandard1.3/ru/System.Threading.Overlapped.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Overlapped.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Overlapped.xml", + "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll", + "runtimes/win/lib/net46/System.Threading.Overlapped.dll", + "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll", + "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll", + "system.threading.overlapped.4.3.0.nupkg.sha512", + "system.threading.overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Thread/4.3.0": { + "sha512": "OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==", + "type": "package", + "path": "system.threading.thread/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.Thread.dll", + "lib/netcore50/_._", + "lib/netstandard1.3/System.Threading.Thread.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.Thread.dll", + "ref/netstandard1.3/System.Threading.Thread.dll", + "ref/netstandard1.3/System.Threading.Thread.xml", + "ref/netstandard1.3/de/System.Threading.Thread.xml", + "ref/netstandard1.3/es/System.Threading.Thread.xml", + "ref/netstandard1.3/fr/System.Threading.Thread.xml", + "ref/netstandard1.3/it/System.Threading.Thread.xml", + "ref/netstandard1.3/ja/System.Threading.Thread.xml", + "ref/netstandard1.3/ko/System.Threading.Thread.xml", + "ref/netstandard1.3/ru/System.Threading.Thread.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.thread.4.3.0.nupkg.sha512", + "system.threading.thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.3.0": { + "sha512": "k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==", + "type": "package", + "path": "system.threading.threadpool/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.ThreadPool.dll", + "lib/netcore50/_._", + "lib/netstandard1.3/System.Threading.ThreadPool.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.dll", + "ref/netstandard1.3/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/de/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/es/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/it/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml", + "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.threadpool.4.3.0.nupkg.sha512", + "system.threading.threadpool.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "net5.0-windows7.0": [ + "System.Net.NetworkInformation >= 4.3.0" + ] + }, + "packageFolders": { + "C:\\Users\\סארט\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\סארט\\source\\repos\\WpfApp1\\WpfApp1\\WpfApp1.csproj", + "projectName": "WpfApp1", + "projectPath": "C:\\Users\\סארט\\source\\repos\\WpfApp1\\WpfApp1\\WpfApp1.csproj", + "packagesPath": "C:\\Users\\סארט\\.nuget\\packages\\", + "outputPath": "C:\\Users\\סארט\\source\\repos\\WpfApp1\\WpfApp1\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\סארט\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net5.0-windows7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net5.0-windows7.0": { + "targetAlias": "net5.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net5.0-windows7.0": { + "targetAlias": "net5.0-windows", + "dependencies": { + "System.Net.NetworkInformation": { + "target": "Package", + "version": "[4.3.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + }, + "Microsoft.WindowsDesktop.App.WPF": { + "privateAssets": "none" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.301\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/WpfApp1/WpfApp1/obj/project.nuget.cache b/WpfApp1/WpfApp1/obj/project.nuget.cache new file mode 100644 index 0000000..ceaa43f --- /dev/null +++ b/WpfApp1/WpfApp1/obj/project.nuget.cache @@ -0,0 +1,40 @@ +{ + "version": 2, + "dgSpecHash": "YCYr11xaSZVz/CoG0Fx8oje81lx8lwLQtKPsfOLy2NWvSPmmRsoXWep2kWEU5mVyqscFs2vZk9XfzzFswAW8+g==", + "success": true, + "projectFilePath": "C:\\Users\\סארט\\source\\repos\\WpfApp1\\WpfApp1\\WpfApp1.csproj", + "expectedPackageFiles": [ + "C:\\Users\\סארט\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.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.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.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.tracing\\4.3.0\\system.diagnostics.tracing.4.3.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\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.net.networkinformation\\4.3.0\\system.net.networkinformation.4.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.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.primitives\\4.3.0\\system.reflection.primitives.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.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.claims\\4.3.0\\system.security.claims.4.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.security.principal\\4.3.0\\system.security.principal.4.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.security.principal.windows\\4.3.0\\system.security.principal.windows.4.3.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.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.threading.overlapped\\4.3.0\\system.threading.overlapped.4.3.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.thread\\4.3.0\\system.threading.thread.4.3.0.nupkg.sha512", + "C:\\Users\\סארט\\.nuget\\packages\\system.threading.threadpool\\4.3.0\\system.threading.threadpool.4.3.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/WpfApp1/desktop.ini b/WpfApp1/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/WpfApp1/desktop.ini differ diff --git a/choco b/choco new file mode 160000 index 0000000..af3e8c9 --- /dev/null +++ b/choco @@ -0,0 +1 @@ +Subproject commit af3e8c9577ed29d7572581418a8274fd6ce7709b diff --git a/debug.log b/debug.log new file mode 100644 index 0000000..97d32c5 --- /dev/null +++ b/debug.log @@ -0,0 +1,2 @@ +[0807/213559.414:ERROR:registration_protocol_win.cc(102)] CreateFile: The system cannot find the file specified. (0x2) +[0807/213600.022:ERROR:registration_protocol_win.cc(102)] CreateFile: The system cannot find the file specified. (0x2) diff --git a/desktop.ini b/desktop.ini new file mode 100644 index 0000000..757d3e7 Binary files /dev/null and b/desktop.ini differ