diff --git a/.vs/AutoPull/FileContentIndex/0aab4996-f123-4384-92fb-44ee0a2d0474.vsidx b/.vs/AutoPull/FileContentIndex/0aab4996-f123-4384-92fb-44ee0a2d0474.vsidx new file mode 100644 index 0000000..aea9990 Binary files /dev/null and b/.vs/AutoPull/FileContentIndex/0aab4996-f123-4384-92fb-44ee0a2d0474.vsidx differ diff --git a/.vs/AutoPull/FileContentIndex/59acde1b-e09f-470d-b588-c54364ccef82.vsidx b/.vs/AutoPull/FileContentIndex/59acde1b-e09f-470d-b588-c54364ccef82.vsidx new file mode 100644 index 0000000..e8de2dd Binary files /dev/null and b/.vs/AutoPull/FileContentIndex/59acde1b-e09f-470d-b588-c54364ccef82.vsidx differ diff --git a/.vs/AutoPull/FileContentIndex/688751b1-a371-46d6-88ac-41d38924c6ba.vsidx b/.vs/AutoPull/FileContentIndex/688751b1-a371-46d6-88ac-41d38924c6ba.vsidx new file mode 100644 index 0000000..b289daa Binary files /dev/null and b/.vs/AutoPull/FileContentIndex/688751b1-a371-46d6-88ac-41d38924c6ba.vsidx differ diff --git a/.vs/AutoPull/FileContentIndex/83d1f8e7-5996-4ff8-974f-9d49b43163ec.vsidx b/.vs/AutoPull/FileContentIndex/83d1f8e7-5996-4ff8-974f-9d49b43163ec.vsidx new file mode 100644 index 0000000..811c6c6 Binary files /dev/null and b/.vs/AutoPull/FileContentIndex/83d1f8e7-5996-4ff8-974f-9d49b43163ec.vsidx differ diff --git a/.vs/AutoPull/FileContentIndex/a6570c6e-f945-40dc-99db-b2f7936386b8.vsidx b/.vs/AutoPull/FileContentIndex/a6570c6e-f945-40dc-99db-b2f7936386b8.vsidx deleted file mode 100644 index 992ed0c..0000000 Binary files a/.vs/AutoPull/FileContentIndex/a6570c6e-f945-40dc-99db-b2f7936386b8.vsidx and /dev/null differ diff --git a/.vs/AutoPull/v17/.suo b/.vs/AutoPull/v17/.suo index 7a121ff..f9ef4ee 100644 Binary files a/.vs/AutoPull/v17/.suo and b/.vs/AutoPull/v17/.suo differ diff --git a/AutoPull.csproj b/AutoPull.csproj index 9f0ff82..ba64b70 100644 --- a/AutoPull.csproj +++ b/AutoPull.csproj @@ -9,6 +9,7 @@ + diff --git a/AutoPull.csproj.user b/AutoPull.csproj.user new file mode 100644 index 0000000..2e51418 --- /dev/null +++ b/AutoPull.csproj.user @@ -0,0 +1,6 @@ + + + + <_LastSelectedProfileId>D:\AutoPull\Properties\PublishProfiles\FolderProfile.pubxml + + \ No newline at end of file diff --git a/Config.cs b/Config.cs new file mode 100644 index 0000000..0835c5a --- /dev/null +++ b/Config.cs @@ -0,0 +1,31 @@ +using Newtonsoft.Json; +using System.Text; + +public class CfgInfo +{ + public int IntervalMinute; + public string GitCMD; + public string[] paths; +} + +public static class Config +{ + public static CfgInfo info; + public static bool LoadConfig() + { + try + { + StreamReader sr = new StreamReader(System.Environment.CurrentDirectory + "//config.cfg", Encoding.Default); + string cfgstr = sr.ReadToEnd(); + sr.Close(); + info = JsonConvert.DeserializeObject(cfgstr); + return true; + } + catch (Exception ex) + { + Console.WriteLine("配置文件异常:" + ex.ToString()); + return false; + } + } + +} \ No newline at end of file diff --git a/GitUtility.cs b/GitUtility.cs new file mode 100644 index 0000000..d8cafc5 --- /dev/null +++ b/GitUtility.cs @@ -0,0 +1,88 @@ +using System.Diagnostics; + +public class GitUtility +{ + /// + /// 获取环境git.ext的环境变量路径 + /// + private static string strEnvironmentVariable + { + get + { + string strPath = System.Environment.GetEnvironmentVariable("Path"); + if (string.IsNullOrEmpty(strPath)) + { + Console.WriteLine(">>>>>strEnvironmentVariable: enviromentVariable is not config!!!!"); + return null; + } + + string[] strResults = strPath.Split(';'); + for (int i = 0; i < strResults.Length; i++) + { + if (!strResults[i].Contains(@"Git\cmd")) + continue; + + strPath = strResults[i]; + } + + return strPath; + } + } + + /// + /// + /// git工作路径 + /// + private static string m_strWorkingDir; + public static string strWorkingDir + { + get { return m_strWorkingDir; } + set { m_strWorkingDir = value; } + } + + + /// + /// 执行git指令 + /// + public static void ExcuteGitCommand(string strCommnad, DataReceivedEventHandler call) + { + string strGitPath = System.IO.Path.Combine(strEnvironmentVariable, "git.exe"); + if (string.IsNullOrEmpty(strGitPath)) + { + Console.WriteLine(">>>>>strEnvironmentVariable: enviromentVariable is not config!!!!"); + return; + } + + Process p = new Process(); + p.StartInfo.FileName = strGitPath; + p.StartInfo.Arguments = strCommnad; + p.StartInfo.CreateNoWindow = true; + p.StartInfo.UseShellExecute = false; + p.StartInfo.RedirectStandardOutput = true; + p.StartInfo.WorkingDirectory = strWorkingDir; + + p.OutputDataReceived += call; + p.OutputDataReceived -= OnOutputDataReceived; + p.OutputDataReceived += OnOutputDataReceived; + + p.Start(); + p.BeginOutputReadLine(); + p.WaitForExit(); + } + + /// + /// 输出git指令执行结果 + /// + /// + /// + private static void OnOutputDataReceived(object sender, DataReceivedEventArgs e) + { + if (null == e || string.IsNullOrEmpty(e.Data)) + { + //Console.WriteLine("[Git]"+ e.Data); + return; + } + + Console.WriteLine("[Git]" + e.Data); + } +} \ No newline at end of file diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..7a3094a --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,11 @@ +DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE +Version 2, December 2004 + +Copyright (C) 2004 Sam Hocevar + +Everyone is permitted to copy and distribute verbatim or modified copies of this license document, and changing it is allowed as long as the name is changed. + +DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE +TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. You just DO WHAT THE FUCK YOU WANT TO. diff --git a/Program.cs b/Program.cs index 65131f7..8db942b 100644 --- a/Program.cs +++ b/Program.cs @@ -1,6 +1,38 @@ -// See https://aka.ms/new-console-template for more information -using System; -using System.Collections.ObjectModel; -using System.Diagnostics; +using System.Timers; -string str = "git status"; \ No newline at end of file +if (!Config.LoadConfig()) +{ + Console.WriteLine("配置异常,任意键结束……"); + Console.ReadLine(); + return; +} + +if (Config.info.paths.Length < 0) +{ + Console.WriteLine("配置目录为空,任意键结束……"); + return; +} + +Console.WriteLine($"载入成功,间隔->{Config.info.IntervalMinute}分钟,git命令->{Config.info.GitCMD},目录->共{Config.info.paths.Length}个"); +System.Timers.Timer taskTimer = new System.Timers.Timer(); +taskTimer.Interval = 1000f * 60f * Config.info.IntervalMinute; +taskTimer.Elapsed += TimeEvent; +taskTimer.AutoReset = true; +taskTimer.Enabled = true; +Console.WriteLine($"启动完毕……"); + +while (true) +{ + Console.ReadLine(); +} + + +static void TimeEvent(object source, ElapsedEventArgs e) +{ + for (int i = 0; i < Config.info.paths.Length; i++) + { + Console.WriteLine("开始执行工作目录:->"+ Config.info.paths[i] + " 命令:" + Config.info.GitCMD); + GitUtility.strWorkingDir = Config.info.paths[i]; + GitUtility.ExcuteGitCommand(Config.info.GitCMD, null); + } +} diff --git a/Properties/PublishProfiles/FolderProfile.pubxml b/Properties/PublishProfiles/FolderProfile.pubxml new file mode 100644 index 0000000..632fc2a --- /dev/null +++ b/Properties/PublishProfiles/FolderProfile.pubxml @@ -0,0 +1,18 @@ + + + + + Release + Any CPU + bin\Release\net7.0\publish\win-x86\ + FileSystem + <_TargetId>Folder + net7.0 + win-x86 + false + true + false + + \ No newline at end of file diff --git a/Properties/PublishProfiles/FolderProfile.pubxml.user b/Properties/PublishProfiles/FolderProfile.pubxml.user new file mode 100644 index 0000000..4cb902b --- /dev/null +++ b/Properties/PublishProfiles/FolderProfile.pubxml.user @@ -0,0 +1,10 @@ + + + + + True|2023-02-20T13:00:04.9349542Z;False|2023-02-20T20:59:21.3900234+08:00;False|2023-02-20T20:58:59.4063620+08:00;False|2023-02-20T20:58:47.6525679+08:00;True|2023-02-20T20:56:24.3373602+08:00;True|2023-02-20T20:53:23.5027837+08:00;True|2023-02-20T20:52:38.1161507+08:00; + + + \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..b1d002b --- /dev/null +++ b/README.md @@ -0,0 +1,24 @@ +# AutoPull + +自写定时执行git pull的工具 by axibug.com + +TODO: +补充Linux版本 + +dotNet 版本: .Net 7.0.2 + + +# 配置文件说明 + +同级目录下,创建config.cfg + +内容范例如下:若配置一个 每间隔30分钟 用git pull命令拉取一次,D:/ABC目录和D:/123目录: + + { + "IntervalMinute":30, + "GitCMD":"pull", + "paths":[ + "D:/ABC", + "D:/123", + ] + } diff --git a/obj/AutoPull.csproj.nuget.dgspec.json b/obj/AutoPull.csproj.nuget.dgspec.json index 9593566..12da25b 100644 --- a/obj/AutoPull.csproj.nuget.dgspec.json +++ b/obj/AutoPull.csproj.nuget.dgspec.json @@ -1,17 +1,17 @@ { "format": 1, "restore": { - "F:\\Sin365\\AutoPull\\AutoPull.csproj": {} + "D:\\AutoPull\\AutoPull.csproj": {} }, "projects": { - "F:\\Sin365\\AutoPull\\AutoPull.csproj": { + "D:\\AutoPull\\AutoPull.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "F:\\Sin365\\AutoPull\\AutoPull.csproj", + "projectUniqueName": "D:\\AutoPull\\AutoPull.csproj", "projectName": "AutoPull", - "projectPath": "F:\\Sin365\\AutoPull\\AutoPull.csproj", + "projectPath": "D:\\AutoPull\\AutoPull.csproj", "packagesPath": "C:\\Users\\35337\\.nuget\\packages\\", - "outputPath": "F:\\Sin365\\AutoPull\\obj\\", + "outputPath": "D:\\AutoPull\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ "C:\\Users\\35337\\AppData\\Roaming\\NuGet\\NuGet.Config", @@ -43,6 +43,10 @@ "Cake.Powershell": { "target": "Package", "version": "[2.0.0, )" + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.2, )" } }, "imports": [ @@ -61,7 +65,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.200\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.102\\RuntimeIdentifierGraph.json" } } } diff --git a/obj/Debug/net7.0/AutoPull.AssemblyInfo.cs b/obj/Debug/net7.0/AutoPull.AssemblyInfo.cs new file mode 100644 index 0000000..afdd766 --- /dev/null +++ b/obj/Debug/net7.0/AutoPull.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("AutoPull")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("AutoPull")] +[assembly: System.Reflection.AssemblyTitleAttribute("AutoPull")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net7.0/AutoPull.AssemblyInfoInputs.cache b/obj/Debug/net7.0/AutoPull.AssemblyInfoInputs.cache new file mode 100644 index 0000000..354af51 --- /dev/null +++ b/obj/Debug/net7.0/AutoPull.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +a6445e410766b1e9baa9d68cfa358ed72081b7fd diff --git a/obj/Debug/net7.0/AutoPull.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net7.0/AutoPull.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..c9aac74 --- /dev/null +++ b/obj/Debug/net7.0/AutoPull.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net7.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = AutoPull +build_property.ProjectDir = D:\AutoPull\ diff --git a/obj/Debug/net7.0/AutoPull.assets.cache b/obj/Debug/net7.0/AutoPull.assets.cache index 3653ecf..7d9a7c7 100644 Binary files a/obj/Debug/net7.0/AutoPull.assets.cache and b/obj/Debug/net7.0/AutoPull.assets.cache differ diff --git a/obj/Debug/net7.0/AutoPull.csproj.AssemblyReference.cache b/obj/Debug/net7.0/AutoPull.csproj.AssemblyReference.cache new file mode 100644 index 0000000..ac71a39 Binary files /dev/null and b/obj/Debug/net7.0/AutoPull.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net7.0/apphost.exe b/obj/Debug/net7.0/apphost.exe index f108fc3..575f8f8 100644 Binary files a/obj/Debug/net7.0/apphost.exe and b/obj/Debug/net7.0/apphost.exe differ diff --git a/obj/Release/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/obj/Release/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs new file mode 100644 index 0000000..4257f4b --- /dev/null +++ b/obj/Release/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/obj/Release/net7.0/AutoPull.AssemblyInfo.cs b/obj/Release/net7.0/AutoPull.AssemblyInfo.cs new file mode 100644 index 0000000..6e31316 --- /dev/null +++ b/obj/Release/net7.0/AutoPull.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("AutoPull")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("AutoPull")] +[assembly: System.Reflection.AssemblyTitleAttribute("AutoPull")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Release/net7.0/AutoPull.AssemblyInfoInputs.cache b/obj/Release/net7.0/AutoPull.AssemblyInfoInputs.cache new file mode 100644 index 0000000..dd96853 --- /dev/null +++ b/obj/Release/net7.0/AutoPull.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +e29fcb5ff662ce3780e0f0e0f5c860446abf2f56 diff --git a/obj/Release/net7.0/AutoPull.GeneratedMSBuildEditorConfig.editorconfig b/obj/Release/net7.0/AutoPull.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..c9aac74 --- /dev/null +++ b/obj/Release/net7.0/AutoPull.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net7.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = AutoPull +build_property.ProjectDir = D:\AutoPull\ diff --git a/obj/Release/net7.0/AutoPull.GlobalUsings.g.cs b/obj/Release/net7.0/AutoPull.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/obj/Release/net7.0/AutoPull.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/obj/Release/net7.0/AutoPull.assets.cache b/obj/Release/net7.0/AutoPull.assets.cache new file mode 100644 index 0000000..3755af7 Binary files /dev/null and b/obj/Release/net7.0/AutoPull.assets.cache differ diff --git a/obj/Release/net7.0/AutoPull.csproj.AssemblyReference.cache b/obj/Release/net7.0/AutoPull.csproj.AssemblyReference.cache new file mode 100644 index 0000000..ac71a39 Binary files /dev/null and b/obj/Release/net7.0/AutoPull.csproj.AssemblyReference.cache differ diff --git a/obj/Release/net7.0/AutoPull.csproj.CopyComplete b/obj/Release/net7.0/AutoPull.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/obj/Release/net7.0/AutoPull.csproj.CoreCompileInputs.cache b/obj/Release/net7.0/AutoPull.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..3c1abc9 --- /dev/null +++ b/obj/Release/net7.0/AutoPull.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +7037155fdefc96493506244fc399362409067421 diff --git a/obj/Release/net7.0/AutoPull.csproj.FileListAbsolute.txt b/obj/Release/net7.0/AutoPull.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..373cf5d --- /dev/null +++ b/obj/Release/net7.0/AutoPull.csproj.FileListAbsolute.txt @@ -0,0 +1,242 @@ +D:\AutoPull\bin\Release\net7.0\AutoPull.exe +D:\AutoPull\bin\Release\net7.0\AutoPull.deps.json +D:\AutoPull\bin\Release\net7.0\AutoPull.runtimeconfig.json +D:\AutoPull\bin\Release\net7.0\AutoPull.dll +D:\AutoPull\bin\Release\net7.0\AutoPull.pdb +D:\AutoPull\bin\Release\net7.0\Cake.Powershell.dll +D:\AutoPull\bin\Release\net7.0\Markdig.Signed.dll +D:\AutoPull\bin\Release\net7.0\Microsoft.ApplicationInsights.dll +D:\AutoPull\bin\Release\net7.0\Microsoft.Bcl.AsyncInterfaces.dll +D:\AutoPull\bin\Release\net7.0\Microsoft.CodeAnalysis.dll +D:\AutoPull\bin\Release\net7.0\Microsoft.CodeAnalysis.CSharp.dll +D:\AutoPull\bin\Release\net7.0\Microsoft.Extensions.ObjectPool.dll +D:\AutoPull\bin\Release\net7.0\Microsoft.PowerShell.MarkdownRender.dll +D:\AutoPull\bin\Release\net7.0\Microsoft.Win32.Registry.AccessControl.dll +D:\AutoPull\bin\Release\net7.0\Microsoft.Win32.SystemEvents.dll +D:\AutoPull\bin\Release\net7.0\Namotion.Reflection.dll +D:\AutoPull\bin\Release\net7.0\Newtonsoft.Json.dll +D:\AutoPull\bin\Release\net7.0\NJsonSchema.dll +D:\AutoPull\bin\Release\net7.0\System.CodeDom.dll +D:\AutoPull\bin\Release\net7.0\System.ComponentModel.Composition.dll +D:\AutoPull\bin\Release\net7.0\System.ComponentModel.Composition.Registration.dll +D:\AutoPull\bin\Release\net7.0\System.Configuration.ConfigurationManager.dll +D:\AutoPull\bin\Release\net7.0\System.Data.Odbc.dll +D:\AutoPull\bin\Release\net7.0\System.Data.OleDb.dll +D:\AutoPull\bin\Release\net7.0\System.Data.SqlClient.dll +D:\AutoPull\bin\Release\net7.0\System.Diagnostics.EventLog.dll +D:\AutoPull\bin\Release\net7.0\System.Diagnostics.PerformanceCounter.dll +D:\AutoPull\bin\Release\net7.0\System.DirectoryServices.dll +D:\AutoPull\bin\Release\net7.0\System.DirectoryServices.AccountManagement.dll +D:\AutoPull\bin\Release\net7.0\System.DirectoryServices.Protocols.dll +D:\AutoPull\bin\Release\net7.0\System.Drawing.Common.dll +D:\AutoPull\bin\Release\net7.0\System.IO.Packaging.dll +D:\AutoPull\bin\Release\net7.0\System.IO.Ports.dll +D:\AutoPull\bin\Release\net7.0\System.Management.dll +D:\AutoPull\bin\Release\net7.0\System.Net.Http.WinHttpHandler.dll +D:\AutoPull\bin\Release\net7.0\System.Private.ServiceModel.dll +D:\AutoPull\bin\Release\net7.0\System.Reflection.Context.dll +D:\AutoPull\bin\Release\net7.0\System.Runtime.Caching.dll +D:\AutoPull\bin\Release\net7.0\System.Security.Cryptography.Pkcs.dll +D:\AutoPull\bin\Release\net7.0\System.Security.Cryptography.ProtectedData.dll +D:\AutoPull\bin\Release\net7.0\System.Security.Cryptography.Xml.dll +D:\AutoPull\bin\Release\net7.0\System.Security.Permissions.dll +D:\AutoPull\bin\Release\net7.0\System.ServiceModel.Duplex.dll +D:\AutoPull\bin\Release\net7.0\System.ServiceModel.Http.dll +D:\AutoPull\bin\Release\net7.0\System.ServiceModel.NetTcp.dll +D:\AutoPull\bin\Release\net7.0\System.ServiceModel.Primitives.dll +D:\AutoPull\bin\Release\net7.0\System.ServiceModel.dll +D:\AutoPull\bin\Release\net7.0\System.ServiceModel.Security.dll +D:\AutoPull\bin\Release\net7.0\System.ServiceModel.Syndication.dll +D:\AutoPull\bin\Release\net7.0\System.ServiceProcess.ServiceController.dll +D:\AutoPull\bin\Release\net7.0\System.Speech.dll +D:\AutoPull\bin\Release\net7.0\System.Threading.AccessControl.dll +D:\AutoPull\bin\Release\net7.0\System.Web.Services.Description.dll +D:\AutoPull\bin\Release\net7.0\System.Windows.Extensions.dll +D:\AutoPull\bin\Release\net7.0\cs\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\de\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\es\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\fr\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\it\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\ja\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\ko\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\pl\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\pt-BR\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\ru\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\tr\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\cs\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\de\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\es\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\fr\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\it\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\ja\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\ko\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\pl\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\pt-BR\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\ru\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\tr\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\zh-Hans\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\zh-Hant\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\cs\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\de\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\es\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\fr\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\it\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\ja\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\ko\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\pl\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\pt-BR\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\ru\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\tr\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\zh-Hans\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\zh-Hant\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\Microsoft.Management.Infrastructure.CimCmdlets.dll +D:\AutoPull\bin\Release\net7.0\runtimes\unix\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win-arm\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win-arm\native\mi.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win-arm\native\miutils.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win-arm64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win-arm64\native\mi.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win-arm64\native\miutils.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win10-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win10-x64\native\mi.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win10-x64\native\miutils.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win10-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win10-x86\native\mi.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win10-x86\native\miutils.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win7-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win7-x64\native\mi.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win7-x64\native\miutils.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win7-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win7-x86\native\mi.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win7-x86\native\miutils.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win8-x64\native\mi.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win8-x64\native\miutils.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win8-x86\native\mi.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win8-x86\native\miutils.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win81-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win81-x64\native\mi.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win81-x64\native\miutils.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win81-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win81-x86\native\mi.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win81-x86\native\miutils.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Diagnostics.dll +D:\AutoPull\bin\Release\net7.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll +D:\AutoPull\bin\Release\net7.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll +D:\AutoPull\bin\Release\net7.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.CoreCLR.Eventing.dll +D:\AutoPull\bin\Release\net7.0\runtimes\linux-arm\native\libpsl-native.so +D:\AutoPull\bin\Release\net7.0\runtimes\linux-arm64\native\libpsl-native.so +D:\AutoPull\bin\Release\net7.0\runtimes\linux-musl-x64\native\libpsl-native.so +D:\AutoPull\bin\Release\net7.0\runtimes\linux-x64\native\libmi.so +D:\AutoPull\bin\Release\net7.0\runtimes\linux-x64\native\libpsl-native.so +D:\AutoPull\bin\Release\net7.0\runtimes\linux-x64\native\libpsrpclient.so +D:\AutoPull\bin\Release\net7.0\runtimes\osx\native\libmi.dylib +D:\AutoPull\bin\Release\net7.0\runtimes\osx\native\libpsl-native.dylib +D:\AutoPull\bin\Release\net7.0\runtimes\osx\native\libpsrpclient.dylib +D:\AutoPull\bin\Release\net7.0\runtimes\win-arm\native\PowerShell.Core.Instrumentation.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win-arm\native\pwrshplugin.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win-arm64\native\PowerShell.Core.Instrumentation.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win-arm64\native\pwrshplugin.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win-x64\native\PowerShell.Core.Instrumentation.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win-x64\native\pwrshplugin.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win-x86\native\PowerShell.Core.Instrumentation.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win-x86\native\pwrshplugin.dll +D:\AutoPull\bin\Release\net7.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.SDK.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.SDK.dll +D:\AutoPull\bin\Release\net7.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Security.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Security.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\Microsoft.Win32.Registry.AccessControl.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\Microsoft.WSMan.Management.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\Microsoft.WSMan.Runtime.dll +D:\AutoPull\bin\Release\net7.0\runtimes\linux-arm\native\libSystem.IO.Ports.Native.so +D:\AutoPull\bin\Release\net7.0\runtimes\linux-arm64\native\libSystem.IO.Ports.Native.so +D:\AutoPull\bin\Release\net7.0\runtimes\linux-x64\native\libSystem.IO.Ports.Native.so +D:\AutoPull\bin\Release\net7.0\runtimes\osx-arm64\native\libSystem.IO.Ports.Native.dylib +D:\AutoPull\bin\Release\net7.0\runtimes\osx-x64\native\libSystem.IO.Ports.Native.dylib +D:\AutoPull\bin\Release\net7.0\runtimes\win-arm64\native\sni.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win-x64\native\sni.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win-x86\native\sni.dll +D:\AutoPull\bin\Release\net7.0\runtimes\freebsd\lib\net6.0\System.Data.Odbc.dll +D:\AutoPull\bin\Release\net7.0\runtimes\illumos\lib\net6.0\System.Data.Odbc.dll +D:\AutoPull\bin\Release\net7.0\runtimes\ios\lib\net6.0\System.Data.Odbc.dll +D:\AutoPull\bin\Release\net7.0\runtimes\linux\lib\net6.0\System.Data.Odbc.dll +D:\AutoPull\bin\Release\net7.0\runtimes\osx\lib\net6.0\System.Data.Odbc.dll +D:\AutoPull\bin\Release\net7.0\runtimes\solaris\lib\net6.0\System.Data.Odbc.dll +D:\AutoPull\bin\Release\net7.0\runtimes\tvos\lib\net6.0\System.Data.Odbc.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Data.Odbc.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Data.OleDb.dll +D:\AutoPull\bin\Release\net7.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.Messages.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Diagnostics.PerformanceCounter.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.DirectoryServices.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.DirectoryServices.AccountManagement.dll +D:\AutoPull\bin\Release\net7.0\runtimes\linux\lib\net6.0\System.DirectoryServices.Protocols.dll +D:\AutoPull\bin\Release\net7.0\runtimes\osx\lib\net6.0\System.DirectoryServices.Protocols.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.DirectoryServices.Protocols.dll +D:\AutoPull\bin\Release\net7.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll +D:\AutoPull\bin\Release\net7.0\runtimes\unix\lib\net6.0\System.IO.Ports.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.IO.Ports.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Management.dll +D:\AutoPull\bin\Release\net7.0\runtimes\unix\lib\net6.0\System.Management.Automation.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Management.Automation.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Net.Http.WinHttpHandler.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Runtime.Caching.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Security.Cryptography.Pkcs.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.ServiceProcess.ServiceController.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Speech.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Threading.AccessControl.dll +D:\AutoPull\bin\Release\net7.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll +D:\AutoPull\obj\Release\net7.0\AutoPull.csproj.AssemblyReference.cache +D:\AutoPull\obj\Release\net7.0\AutoPull.GeneratedMSBuildEditorConfig.editorconfig +D:\AutoPull\obj\Release\net7.0\AutoPull.AssemblyInfoInputs.cache +D:\AutoPull\obj\Release\net7.0\AutoPull.AssemblyInfo.cs +D:\AutoPull\obj\Release\net7.0\AutoPull.csproj.CoreCompileInputs.cache +D:\AutoPull\obj\Release\net7.0\AutoPull.csproj.CopyComplete +D:\AutoPull\obj\Release\net7.0\AutoPull.dll +D:\AutoPull\obj\Release\net7.0\refint\AutoPull.dll +D:\AutoPull\obj\Release\net7.0\AutoPull.pdb +D:\AutoPull\obj\Release\net7.0\AutoPull.genruntimeconfig.cache +D:\AutoPull\obj\Release\net7.0\ref\AutoPull.dll diff --git a/obj/Release/net7.0/AutoPull.dll b/obj/Release/net7.0/AutoPull.dll new file mode 100644 index 0000000..5d10fe6 Binary files /dev/null and b/obj/Release/net7.0/AutoPull.dll differ diff --git a/obj/Release/net7.0/AutoPull.genruntimeconfig.cache b/obj/Release/net7.0/AutoPull.genruntimeconfig.cache new file mode 100644 index 0000000..7c05f87 --- /dev/null +++ b/obj/Release/net7.0/AutoPull.genruntimeconfig.cache @@ -0,0 +1 @@ +0c7414ec237dafcccf11f74415fc6b9a06ac2958 diff --git a/obj/Release/net7.0/AutoPull.pdb b/obj/Release/net7.0/AutoPull.pdb new file mode 100644 index 0000000..d5eb280 Binary files /dev/null and b/obj/Release/net7.0/AutoPull.pdb differ diff --git a/obj/Release/net7.0/PublishOutputs.5d3a1404da.txt b/obj/Release/net7.0/PublishOutputs.5d3a1404da.txt new file mode 100644 index 0000000..ad18f4d --- /dev/null +++ b/obj/Release/net7.0/PublishOutputs.5d3a1404da.txt @@ -0,0 +1,231 @@ +D:\AutoPull\bin\Release\net7.0\publish\AutoPull.exe +D:\AutoPull\bin\Release\net7.0\publish\AutoPull.dll +D:\AutoPull\bin\Release\net7.0\publish\AutoPull.deps.json +D:\AutoPull\bin\Release\net7.0\publish\AutoPull.runtimeconfig.json +D:\AutoPull\bin\Release\net7.0\publish\AutoPull.pdb +D:\AutoPull\bin\Release\net7.0\publish\Cake.Powershell.dll +D:\AutoPull\bin\Release\net7.0\publish\Markdig.Signed.dll +D:\AutoPull\bin\Release\net7.0\publish\Microsoft.ApplicationInsights.dll +D:\AutoPull\bin\Release\net7.0\publish\Microsoft.Bcl.AsyncInterfaces.dll +D:\AutoPull\bin\Release\net7.0\publish\Microsoft.CodeAnalysis.dll +D:\AutoPull\bin\Release\net7.0\publish\Microsoft.CodeAnalysis.CSharp.dll +D:\AutoPull\bin\Release\net7.0\publish\Microsoft.Extensions.ObjectPool.dll +D:\AutoPull\bin\Release\net7.0\publish\Microsoft.PowerShell.MarkdownRender.dll +D:\AutoPull\bin\Release\net7.0\publish\Microsoft.Win32.Registry.AccessControl.dll +D:\AutoPull\bin\Release\net7.0\publish\Microsoft.Win32.SystemEvents.dll +D:\AutoPull\bin\Release\net7.0\publish\Namotion.Reflection.dll +D:\AutoPull\bin\Release\net7.0\publish\Newtonsoft.Json.dll +D:\AutoPull\bin\Release\net7.0\publish\NJsonSchema.dll +D:\AutoPull\bin\Release\net7.0\publish\System.CodeDom.dll +D:\AutoPull\bin\Release\net7.0\publish\System.ComponentModel.Composition.dll +D:\AutoPull\bin\Release\net7.0\publish\System.ComponentModel.Composition.Registration.dll +D:\AutoPull\bin\Release\net7.0\publish\System.Configuration.ConfigurationManager.dll +D:\AutoPull\bin\Release\net7.0\publish\System.Data.Odbc.dll +D:\AutoPull\bin\Release\net7.0\publish\System.Data.OleDb.dll +D:\AutoPull\bin\Release\net7.0\publish\System.Data.SqlClient.dll +D:\AutoPull\bin\Release\net7.0\publish\System.Diagnostics.EventLog.dll +D:\AutoPull\bin\Release\net7.0\publish\System.Diagnostics.PerformanceCounter.dll +D:\AutoPull\bin\Release\net7.0\publish\System.DirectoryServices.dll +D:\AutoPull\bin\Release\net7.0\publish\System.DirectoryServices.AccountManagement.dll +D:\AutoPull\bin\Release\net7.0\publish\System.DirectoryServices.Protocols.dll +D:\AutoPull\bin\Release\net7.0\publish\System.Drawing.Common.dll +D:\AutoPull\bin\Release\net7.0\publish\System.IO.Packaging.dll +D:\AutoPull\bin\Release\net7.0\publish\System.IO.Ports.dll +D:\AutoPull\bin\Release\net7.0\publish\System.Management.dll +D:\AutoPull\bin\Release\net7.0\publish\System.Net.Http.WinHttpHandler.dll +D:\AutoPull\bin\Release\net7.0\publish\System.Private.ServiceModel.dll +D:\AutoPull\bin\Release\net7.0\publish\System.Reflection.Context.dll +D:\AutoPull\bin\Release\net7.0\publish\System.Runtime.Caching.dll +D:\AutoPull\bin\Release\net7.0\publish\System.Security.Cryptography.Pkcs.dll +D:\AutoPull\bin\Release\net7.0\publish\System.Security.Cryptography.ProtectedData.dll +D:\AutoPull\bin\Release\net7.0\publish\System.Security.Cryptography.Xml.dll +D:\AutoPull\bin\Release\net7.0\publish\System.Security.Permissions.dll +D:\AutoPull\bin\Release\net7.0\publish\System.ServiceModel.Duplex.dll +D:\AutoPull\bin\Release\net7.0\publish\System.ServiceModel.Http.dll +D:\AutoPull\bin\Release\net7.0\publish\System.ServiceModel.NetTcp.dll +D:\AutoPull\bin\Release\net7.0\publish\System.ServiceModel.Primitives.dll +D:\AutoPull\bin\Release\net7.0\publish\System.ServiceModel.dll +D:\AutoPull\bin\Release\net7.0\publish\System.ServiceModel.Security.dll +D:\AutoPull\bin\Release\net7.0\publish\System.ServiceModel.Syndication.dll +D:\AutoPull\bin\Release\net7.0\publish\System.ServiceProcess.ServiceController.dll +D:\AutoPull\bin\Release\net7.0\publish\System.Speech.dll +D:\AutoPull\bin\Release\net7.0\publish\System.Threading.AccessControl.dll +D:\AutoPull\bin\Release\net7.0\publish\System.Web.Services.Description.dll +D:\AutoPull\bin\Release\net7.0\publish\System.Windows.Extensions.dll +D:\AutoPull\bin\Release\net7.0\publish\cs\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\de\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\es\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\fr\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\it\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\ja\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\ko\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\pl\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\pt-BR\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\ru\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\tr\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\zh-Hans\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\zh-Hant\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\cs\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\de\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\es\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\fr\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\it\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\ja\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\ko\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\pl\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\ru\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\tr\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\cs\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\de\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\es\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\fr\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\it\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\ja\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\ko\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\pl\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\pt-BR\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\ru\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\tr\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\zh-Hans\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\zh-Hant\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\cs\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\de\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\es\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\fr\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\it\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\ja\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\ko\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\pl\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\pt-BR\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\ru\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\tr\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\zh-Hans\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\zh-Hant\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\Microsoft.Management.Infrastructure.CimCmdlets.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\unix\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-arm\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-arm\native\mi.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-arm\native\miutils.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-arm64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-arm64\native\mi.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-arm64\native\miutils.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win10-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win10-x64\native\mi.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win10-x64\native\miutils.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win10-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win10-x86\native\mi.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win10-x86\native\miutils.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win7-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win7-x64\native\mi.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win7-x64\native\miutils.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win7-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win7-x86\native\mi.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win7-x86\native\miutils.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win8-x64\native\mi.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win8-x64\native\miutils.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win8-x86\native\mi.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win8-x86\native\miutils.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win81-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win81-x64\native\mi.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win81-x64\native\miutils.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win81-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win81-x86\native\mi.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win81-x86\native\miutils.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Diagnostics.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\unix\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\Microsoft.PowerShell.CoreCLR.Eventing.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\linux-arm\native\libpsl-native.so +D:\AutoPull\bin\Release\net7.0\publish\runtimes\linux-arm64\native\libpsl-native.so +D:\AutoPull\bin\Release\net7.0\publish\runtimes\linux-musl-x64\native\libpsl-native.so +D:\AutoPull\bin\Release\net7.0\publish\runtimes\linux-x64\native\libmi.so +D:\AutoPull\bin\Release\net7.0\publish\runtimes\linux-x64\native\libpsl-native.so +D:\AutoPull\bin\Release\net7.0\publish\runtimes\linux-x64\native\libpsrpclient.so +D:\AutoPull\bin\Release\net7.0\publish\runtimes\osx\native\libmi.dylib +D:\AutoPull\bin\Release\net7.0\publish\runtimes\osx\native\libpsl-native.dylib +D:\AutoPull\bin\Release\net7.0\publish\runtimes\osx\native\libpsrpclient.dylib +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-arm\native\PowerShell.Core.Instrumentation.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-arm\native\pwrshplugin.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-arm64\native\PowerShell.Core.Instrumentation.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-arm64\native\pwrshplugin.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-x64\native\PowerShell.Core.Instrumentation.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-x64\native\pwrshplugin.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-x86\native\PowerShell.Core.Instrumentation.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-x86\native\pwrshplugin.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\unix\lib\net6.0\Microsoft.PowerShell.SDK.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\Microsoft.PowerShell.SDK.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Security.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\Microsoft.PowerShell.Security.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\Microsoft.Win32.Registry.AccessControl.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\Microsoft.WSMan.Management.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\Microsoft.WSMan.Runtime.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\linux-arm\native\libSystem.IO.Ports.Native.so +D:\AutoPull\bin\Release\net7.0\publish\runtimes\linux-arm64\native\libSystem.IO.Ports.Native.so +D:\AutoPull\bin\Release\net7.0\publish\runtimes\linux-x64\native\libSystem.IO.Ports.Native.so +D:\AutoPull\bin\Release\net7.0\publish\runtimes\osx-arm64\native\libSystem.IO.Ports.Native.dylib +D:\AutoPull\bin\Release\net7.0\publish\runtimes\osx-x64\native\libSystem.IO.Ports.Native.dylib +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-arm64\native\sni.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-x64\native\sni.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win-x86\native\sni.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\freebsd\lib\net6.0\System.Data.Odbc.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\illumos\lib\net6.0\System.Data.Odbc.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\ios\lib\net6.0\System.Data.Odbc.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\linux\lib\net6.0\System.Data.Odbc.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\osx\lib\net6.0\System.Data.Odbc.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\solaris\lib\net6.0\System.Data.Odbc.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\tvos\lib\net6.0\System.Data.Odbc.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.Data.Odbc.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.Data.OleDb.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.Messages.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.Diagnostics.PerformanceCounter.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.DirectoryServices.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.DirectoryServices.AccountManagement.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\linux\lib\net6.0\System.DirectoryServices.Protocols.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\osx\lib\net6.0\System.DirectoryServices.Protocols.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.DirectoryServices.Protocols.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\unix\lib\net6.0\System.Drawing.Common.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.Drawing.Common.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\unix\lib\net6.0\System.IO.Ports.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.IO.Ports.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.Management.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\unix\lib\net6.0\System.Management.Automation.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.Management.Automation.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.Net.Http.WinHttpHandler.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.Runtime.Caching.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.Security.Cryptography.Pkcs.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.ServiceProcess.ServiceController.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.Speech.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.Threading.AccessControl.dll +D:\AutoPull\bin\Release\net7.0\publish\runtimes\win\lib\net6.0\System.Windows.Extensions.dll diff --git a/obj/Release/net7.0/apphost.exe b/obj/Release/net7.0/apphost.exe new file mode 100644 index 0000000..575f8f8 Binary files /dev/null and b/obj/Release/net7.0/apphost.exe differ diff --git a/obj/Release/net7.0/ref/AutoPull.dll b/obj/Release/net7.0/ref/AutoPull.dll new file mode 100644 index 0000000..31272d3 Binary files /dev/null and b/obj/Release/net7.0/ref/AutoPull.dll differ diff --git a/obj/Release/net7.0/refint/AutoPull.dll b/obj/Release/net7.0/refint/AutoPull.dll new file mode 100644 index 0000000..31272d3 Binary files /dev/null and b/obj/Release/net7.0/refint/AutoPull.dll differ diff --git a/obj/Release/net7.0/win-x86/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/obj/Release/net7.0/win-x86/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs new file mode 100644 index 0000000..4257f4b --- /dev/null +++ b/obj/Release/net7.0/win-x86/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/obj/Release/net7.0/win-x86/AutoPull.AssemblyInfo.cs b/obj/Release/net7.0/win-x86/AutoPull.AssemblyInfo.cs new file mode 100644 index 0000000..6e31316 --- /dev/null +++ b/obj/Release/net7.0/win-x86/AutoPull.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("AutoPull")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("AutoPull")] +[assembly: System.Reflection.AssemblyTitleAttribute("AutoPull")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Release/net7.0/win-x86/AutoPull.AssemblyInfoInputs.cache b/obj/Release/net7.0/win-x86/AutoPull.AssemblyInfoInputs.cache new file mode 100644 index 0000000..dd96853 --- /dev/null +++ b/obj/Release/net7.0/win-x86/AutoPull.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +e29fcb5ff662ce3780e0f0e0f5c860446abf2f56 diff --git a/obj/Release/net7.0/win-x86/AutoPull.GeneratedMSBuildEditorConfig.editorconfig b/obj/Release/net7.0/win-x86/AutoPull.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b4f74c6 --- /dev/null +++ b/obj/Release/net7.0/win-x86/AutoPull.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,15 @@ +is_global = true +build_property.TargetFramework = net7.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.EnableAotAnalyzer = +build_property.EnableSingleFileAnalyzer = true +build_property.EnableTrimAnalyzer = +build_property.IncludeAllContentForSelfExtract = +build_property.RootNamespace = AutoPull +build_property.ProjectDir = D:\AutoPull\ diff --git a/obj/Release/net7.0/win-x86/AutoPull.GlobalUsings.g.cs b/obj/Release/net7.0/win-x86/AutoPull.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/obj/Release/net7.0/win-x86/AutoPull.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/obj/Release/net7.0/win-x86/AutoPull.assets.cache b/obj/Release/net7.0/win-x86/AutoPull.assets.cache new file mode 100644 index 0000000..7140d04 Binary files /dev/null and b/obj/Release/net7.0/win-x86/AutoPull.assets.cache differ diff --git a/obj/Release/net7.0/win-x86/AutoPull.csproj.AssemblyReference.cache b/obj/Release/net7.0/win-x86/AutoPull.csproj.AssemblyReference.cache new file mode 100644 index 0000000..ac71a39 Binary files /dev/null and b/obj/Release/net7.0/win-x86/AutoPull.csproj.AssemblyReference.cache differ diff --git a/obj/Release/net7.0/win-x86/AutoPull.csproj.CopyComplete b/obj/Release/net7.0/win-x86/AutoPull.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/obj/Release/net7.0/win-x86/AutoPull.csproj.CoreCompileInputs.cache b/obj/Release/net7.0/win-x86/AutoPull.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..e787d1f --- /dev/null +++ b/obj/Release/net7.0/win-x86/AutoPull.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +d9b6f2e78578bd19efa8b414901d36169bb2c56f diff --git a/obj/Release/net7.0/win-x86/AutoPull.csproj.FileListAbsolute.txt b/obj/Release/net7.0/win-x86/AutoPull.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..2a74510 --- /dev/null +++ b/obj/Release/net7.0/win-x86/AutoPull.csproj.FileListAbsolute.txt @@ -0,0 +1,132 @@ +D:\AutoPull\bin\Release\net7.0\win-x86\AutoPull.exe +D:\AutoPull\bin\Release\net7.0\win-x86\AutoPull.deps.json +D:\AutoPull\bin\Release\net7.0\win-x86\AutoPull.runtimeconfig.json +D:\AutoPull\bin\Release\net7.0\win-x86\AutoPull.dll +D:\AutoPull\bin\Release\net7.0\win-x86\AutoPull.pdb +D:\AutoPull\bin\Release\net7.0\win-x86\Cake.Powershell.dll +D:\AutoPull\bin\Release\net7.0\win-x86\Markdig.Signed.dll +D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.ApplicationInsights.dll +D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.Bcl.AsyncInterfaces.dll +D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.CodeAnalysis.dll +D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.CodeAnalysis.CSharp.dll +D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.Extensions.ObjectPool.dll +D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.Management.Infrastructure.CimCmdlets.dll +D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.PowerShell.Commands.Diagnostics.dll +D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.PowerShell.Commands.Management.dll +D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.PowerShell.Commands.Utility.dll +D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.PowerShell.ConsoleHost.dll +D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.PowerShell.CoreCLR.Eventing.dll +D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.PowerShell.MarkdownRender.dll +D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.PowerShell.SDK.dll +D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.PowerShell.Security.dll +D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.Win32.Registry.AccessControl.dll +D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.Win32.SystemEvents.dll +D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.WSMan.Management.dll +D:\AutoPull\bin\Release\net7.0\win-x86\Microsoft.WSMan.Runtime.dll +D:\AutoPull\bin\Release\net7.0\win-x86\Namotion.Reflection.dll +D:\AutoPull\bin\Release\net7.0\win-x86\Newtonsoft.Json.dll +D:\AutoPull\bin\Release\net7.0\win-x86\NJsonSchema.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.CodeDom.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.ComponentModel.Composition.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.ComponentModel.Composition.Registration.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.Configuration.ConfigurationManager.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.Data.Odbc.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.Data.OleDb.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.Data.SqlClient.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.Diagnostics.EventLog.Messages.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.Diagnostics.EventLog.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.Diagnostics.PerformanceCounter.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.DirectoryServices.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.DirectoryServices.AccountManagement.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.DirectoryServices.Protocols.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.Drawing.Common.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.IO.Packaging.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.IO.Ports.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.Management.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.Management.Automation.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.Net.Http.WinHttpHandler.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.Private.ServiceModel.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.Reflection.Context.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.Runtime.Caching.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.Security.Cryptography.Pkcs.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.Security.Cryptography.ProtectedData.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.Security.Cryptography.Xml.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.Security.Permissions.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.ServiceModel.Duplex.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.ServiceModel.Http.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.ServiceModel.NetTcp.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.ServiceModel.Primitives.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.ServiceModel.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.ServiceModel.Security.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.ServiceModel.Syndication.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.ServiceProcess.ServiceController.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.Speech.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.Threading.AccessControl.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.Web.Services.Description.dll +D:\AutoPull\bin\Release\net7.0\win-x86\System.Windows.Extensions.dll +D:\AutoPull\bin\Release\net7.0\win-x86\cs\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\de\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\es\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\fr\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\it\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\ja\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\ko\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\pl\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\pt-BR\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\ru\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\tr\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\zh-Hans\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\zh-Hant\Microsoft.CodeAnalysis.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\cs\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\de\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\es\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\fr\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\it\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\ja\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\ko\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\pl\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\ru\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\tr\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\cs\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\de\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\es\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\fr\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\it\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\ja\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\ko\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\pl\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\pt-BR\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\ru\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\tr\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\zh-Hans\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\zh-Hant\System.Private.ServiceModel.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\cs\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\de\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\es\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\fr\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\it\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\ja\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\ko\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\pl\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\pt-BR\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\ru\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\tr\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\zh-Hans\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\zh-Hant\System.Web.Services.Description.resources.dll +D:\AutoPull\bin\Release\net7.0\win-x86\PowerShell.Core.Instrumentation.dll +D:\AutoPull\bin\Release\net7.0\win-x86\pwrshplugin.dll +D:\AutoPull\bin\Release\net7.0\win-x86\sni.dll +D:\AutoPull\obj\Release\net7.0\win-x86\AutoPull.csproj.AssemblyReference.cache +D:\AutoPull\obj\Release\net7.0\win-x86\AutoPull.GeneratedMSBuildEditorConfig.editorconfig +D:\AutoPull\obj\Release\net7.0\win-x86\AutoPull.AssemblyInfoInputs.cache +D:\AutoPull\obj\Release\net7.0\win-x86\AutoPull.AssemblyInfo.cs +D:\AutoPull\obj\Release\net7.0\win-x86\AutoPull.csproj.CoreCompileInputs.cache +D:\AutoPull\obj\Release\net7.0\win-x86\AutoPull.csproj.CopyComplete +D:\AutoPull\obj\Release\net7.0\win-x86\AutoPull.dll +D:\AutoPull\obj\Release\net7.0\win-x86\refint\AutoPull.dll +D:\AutoPull\obj\Release\net7.0\win-x86\AutoPull.pdb +D:\AutoPull\obj\Release\net7.0\win-x86\AutoPull.genruntimeconfig.cache +D:\AutoPull\obj\Release\net7.0\win-x86\ref\AutoPull.dll diff --git a/obj/Release/net7.0/win-x86/AutoPull.dll b/obj/Release/net7.0/win-x86/AutoPull.dll new file mode 100644 index 0000000..644b4ac Binary files /dev/null and b/obj/Release/net7.0/win-x86/AutoPull.dll differ diff --git a/obj/Release/net7.0/win-x86/AutoPull.genruntimeconfig.cache b/obj/Release/net7.0/win-x86/AutoPull.genruntimeconfig.cache new file mode 100644 index 0000000..0180e17 --- /dev/null +++ b/obj/Release/net7.0/win-x86/AutoPull.genruntimeconfig.cache @@ -0,0 +1 @@ +d4c8dedbe182c866d3bb910617a21759abd65850 diff --git a/obj/Release/net7.0/win-x86/AutoPull.pdb b/obj/Release/net7.0/win-x86/AutoPull.pdb new file mode 100644 index 0000000..18f9c23 Binary files /dev/null and b/obj/Release/net7.0/win-x86/AutoPull.pdb differ diff --git a/obj/Release/net7.0/win-x86/PublishOutputs.8521b664d4.txt b/obj/Release/net7.0/win-x86/PublishOutputs.8521b664d4.txt new file mode 100644 index 0000000..93d43ca --- /dev/null +++ b/obj/Release/net7.0/win-x86/PublishOutputs.8521b664d4.txt @@ -0,0 +1,5 @@ +D:\AutoPull\bin\Release\net7.0\publish\win-x86\AutoPull.pdb +D:\AutoPull\bin\Release\net7.0\publish\win-x86\PowerShell.Core.Instrumentation.dll +D:\AutoPull\bin\Release\net7.0\publish\win-x86\pwrshplugin.dll +D:\AutoPull\bin\Release\net7.0\publish\win-x86\sni.dll +D:\AutoPull\bin\Release\net7.0\publish\win-x86\AutoPull.exe diff --git a/obj/Release/net7.0/win-x86/apphost.exe b/obj/Release/net7.0/win-x86/apphost.exe new file mode 100644 index 0000000..93ad482 Binary files /dev/null and b/obj/Release/net7.0/win-x86/apphost.exe differ diff --git a/obj/Release/net7.0/win-x86/ref/AutoPull.dll b/obj/Release/net7.0/win-x86/ref/AutoPull.dll new file mode 100644 index 0000000..e467cf2 Binary files /dev/null and b/obj/Release/net7.0/win-x86/ref/AutoPull.dll differ diff --git a/obj/Release/net7.0/win-x86/refint/AutoPull.dll b/obj/Release/net7.0/win-x86/refint/AutoPull.dll new file mode 100644 index 0000000..e467cf2 Binary files /dev/null and b/obj/Release/net7.0/win-x86/refint/AutoPull.dll differ diff --git a/obj/project.assets.json b/obj/project.assets.json index d194672..3843df3 100644 --- a/obj/project.assets.json +++ b/obj/project.assets.json @@ -915,15 +915,15 @@ } } }, - "Newtonsoft.Json/13.0.1": { + "Newtonsoft.Json/13.0.2": { "type": "package", "compile": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { + "lib/net6.0/Newtonsoft.Json.dll": { "related": ".xml" } }, "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { + "lib/net6.0/Newtonsoft.Json.dll": { "related": ".xml" } } @@ -3541,14 +3541,15 @@ "namotion.reflection.nuspec" ] }, - "Newtonsoft.Json/13.0.1": { - "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "Newtonsoft.Json/13.0.2": { + "sha512": "R2pZ3B0UjeyHShm9vG+Tu0EBb2lC8b0dFzV9gVn50ofHXh9Smjk6kTn7A/FdAsC8B5cKib1OnGYOXxRBz5XQDg==", "type": "package", - "path": "newtonsoft.json/13.0.1", + "path": "newtonsoft.json/13.0.2", "files": [ ".nupkg.metadata", ".signature.p7s", "LICENSE.md", + "README.md", "lib/net20/Newtonsoft.Json.dll", "lib/net20/Newtonsoft.Json.xml", "lib/net35/Newtonsoft.Json.dll", @@ -3557,13 +3558,15 @@ "lib/net40/Newtonsoft.Json.xml", "lib/net45/Newtonsoft.Json.dll", "lib/net45/Newtonsoft.Json.xml", + "lib/net6.0/Newtonsoft.Json.dll", + "lib/net6.0/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.13.0.2.nupkg.sha512", "newtonsoft.json.nuspec", "packageIcon.png" ] @@ -6934,7 +6937,8 @@ }, "projectFileDependencyGroups": { "net7.0": [ - "Cake.Powershell >= 2.0.0" + "Cake.Powershell >= 2.0.0", + "Newtonsoft.Json >= 13.0.2" ] }, "packageFolders": { @@ -6943,11 +6947,11 @@ "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "F:\\Sin365\\AutoPull\\AutoPull.csproj", + "projectUniqueName": "D:\\AutoPull\\AutoPull.csproj", "projectName": "AutoPull", - "projectPath": "F:\\Sin365\\AutoPull\\AutoPull.csproj", + "projectPath": "D:\\AutoPull\\AutoPull.csproj", "packagesPath": "C:\\Users\\35337\\.nuget\\packages\\", - "outputPath": "F:\\Sin365\\AutoPull\\obj\\", + "outputPath": "D:\\AutoPull\\obj\\", "projectStyle": "PackageReference", "configFilePaths": [ "C:\\Users\\35337\\AppData\\Roaming\\NuGet\\NuGet.Config", @@ -6979,6 +6983,10 @@ "Cake.Powershell": { "target": "Package", "version": "[2.0.0, )" + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.2, )" } }, "imports": [ @@ -6997,7 +7005,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.200\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.102\\RuntimeIdentifierGraph.json" } } } diff --git a/obj/publish/win-x86/AutoPull.csproj.nuget.dgspec.json b/obj/publish/win-x86/AutoPull.csproj.nuget.dgspec.json new file mode 100644 index 0000000..a57515d --- /dev/null +++ b/obj/publish/win-x86/AutoPull.csproj.nuget.dgspec.json @@ -0,0 +1,78 @@ +{ + "format": 1, + "restore": { + "D:\\AutoPull\\AutoPull.csproj": {} + }, + "projects": { + "D:\\AutoPull\\AutoPull.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\AutoPull\\AutoPull.csproj", + "projectName": "AutoPull", + "projectPath": "D:\\AutoPull\\AutoPull.csproj", + "packagesPath": "C:\\Users\\35337\\.nuget\\packages\\", + "outputPath": "D:\\AutoPull\\obj\\publish\\win-x86\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\35337\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "Cake.Powershell": { + "target": "Package", + "version": "[2.0.0, )" + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.2, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.102\\RuntimeIdentifierGraph.json" + } + }, + "runtimes": { + "win-x86": { + "#import": [] + } + } + } + } +} \ No newline at end of file diff --git a/obj/publish/win-x86/AutoPull.csproj.nuget.g.props b/obj/publish/win-x86/AutoPull.csproj.nuget.g.props new file mode 100644 index 0000000..d2c9e87 --- /dev/null +++ b/obj/publish/win-x86/AutoPull.csproj.nuget.g.props @@ -0,0 +1,18 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\35337\.nuget\packages\ + PackageReference + 6.4.0 + + + + + + C:\Users\35337\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.2 + + \ No newline at end of file diff --git a/obj/publish/win-x86/AutoPull.csproj.nuget.g.targets b/obj/publish/win-x86/AutoPull.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/obj/publish/win-x86/AutoPull.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/obj/publish/win-x86/project.assets.json b/obj/publish/win-x86/project.assets.json new file mode 100644 index 0000000..94d71a0 --- /dev/null +++ b/obj/publish/win-x86/project.assets.json @@ -0,0 +1,9468 @@ +{ + "version": 3, + "targets": { + "net7.0": { + "Cake.Powershell/2.0.0": { + "type": "package", + "dependencies": { + "Microsoft.PowerShell.SDK": "7.2.1" + }, + "compile": { + "lib/net6.0/Cake.Powershell.dll": { + "related": ".deps.json;.pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Cake.Powershell.dll": { + "related": ".deps.json;.pdb;.xml" + } + } + }, + "Markdig.Signed/0.22.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/Markdig.Signed.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Markdig.Signed.dll": { + "related": ".xml" + } + } + }, + "Microsoft.ApplicationInsights/2.18.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.DiagnosticSource": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": { + "type": "package", + "build": { + "build/_._": {} + } + }, + "Microsoft.CodeAnalysis.Common/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.2", + "System.Collections.Immutable": "5.0.0", + "System.Memory": "4.5.4", + "System.Reflection.Metadata": "5.0.0", + "System.Runtime.CompilerServices.Unsafe": "5.0.0", + "System.Text.Encoding.CodePages": "4.5.1", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { + "related": ".pdb;.xml" + } + }, + "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/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[4.0.1]" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { + "related": ".pdb;.xml" + } + }, + "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": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Extensions.ObjectPool/5.0.10": { + "type": "package", + "compile": { + "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": { + "related": ".xml" + } + } + }, + "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.2.1": { + "type": "package", + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.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/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.NETCore.Windows.ApiSets/1.0.1": { + "type": "package" + }, + "Microsoft.PowerShell.Commands.Diagnostics/7.2.1": { + "type": "package", + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.PowerShell.Commands.Management/7.2.1": { + "type": "package", + "dependencies": { + "Microsoft.PowerShell.Security": "7.2.1", + "System.ServiceProcess.ServiceController": "6.0.0" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.PowerShell.Commands.Utility/7.2.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "4.0.1", + "Microsoft.PowerShell.MarkdownRender": "7.2.0", + "NJsonSchema": "10.5.2", + "System.Drawing.Common": "6.0.0", + "System.Management.Automation": "7.2.1", + "System.Threading.AccessControl": "6.0.0" + }, + "compile": { + "ref/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.PowerShell.ConsoleHost/7.2.1": { + "type": "package", + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "compile": { + "ref/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.PowerShell.CoreCLR.Eventing/7.2.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.EventLog": "6.0.0" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.PowerShell.MarkdownRender/7.2.0": { + "type": "package", + "dependencies": { + "Markdig.Signed": "0.22.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll": {} + } + }, + "Microsoft.PowerShell.Native/7.2.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.2.1": { + "type": "package", + "dependencies": { + "Microsoft.Management.Infrastructure.CimCmdlets": "7.2.1", + "Microsoft.NETCore.Windows.ApiSets": "1.0.1", + "Microsoft.PowerShell.Commands.Diagnostics": "7.2.1", + "Microsoft.PowerShell.Commands.Management": "7.2.1", + "Microsoft.PowerShell.Commands.Utility": "7.2.1", + "Microsoft.PowerShell.ConsoleHost": "7.2.1", + "Microsoft.PowerShell.Security": "7.2.1", + "Microsoft.WSMan.Management": "7.2.1", + "Microsoft.Windows.Compatibility": "6.0.0", + "System.Data.SqlClient": "4.8.3", + "System.IO.Packaging": "6.0.0", + "System.Management.Automation": "7.2.1", + "System.Net.Http.WinHttpHandler": "6.0.0", + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Duplex": "4.9.0", + "System.ServiceModel.Http": "4.9.0", + "System.ServiceModel.NetTcp": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0", + "System.ServiceModel.Security": "4.9.0", + "System.Text.Encodings.Web": "6.0.0" + }, + "compile": { + "ref/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { + "related": ".xml" + }, + "ref/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { + "related": ".xml" + }, + "ref/net6.0/System.Management.Automation.dll": { + "related": ".xml" + } + }, + "contentFiles": { + "contentFiles/any/any/_._": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": false + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.PowerShell.Security/7.2.1": { + "type": "package", + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.Registry.AccessControl/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Windows.Compatibility/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry.AccessControl": "6.0.0", + "Microsoft.Win32.SystemEvents": "6.0.0", + "System.CodeDom": "6.0.0", + "System.ComponentModel.Composition": "6.0.0", + "System.ComponentModel.Composition.Registration": "6.0.0", + "System.Configuration.ConfigurationManager": "6.0.0", + "System.Data.Odbc": "6.0.0", + "System.Data.OleDb": "6.0.0", + "System.Data.SqlClient": "4.8.3", + "System.Diagnostics.EventLog": "6.0.0", + "System.Diagnostics.PerformanceCounter": "6.0.0", + "System.DirectoryServices": "6.0.0", + "System.DirectoryServices.AccountManagement": "6.0.0", + "System.DirectoryServices.Protocols": "6.0.0", + "System.Drawing.Common": "6.0.0", + "System.IO.Packaging": "6.0.0", + "System.IO.Ports": "6.0.0", + "System.Management": "6.0.0", + "System.Reflection.Context": "6.0.0", + "System.Runtime.Caching": "6.0.0", + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.0", + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Cryptography.Xml": "6.0.0", + "System.Security.Permissions": "6.0.0", + "System.ServiceModel.Duplex": "4.9.0", + "System.ServiceModel.Http": "4.9.0", + "System.ServiceModel.NetTcp": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0", + "System.ServiceModel.Security": "4.9.0", + "System.ServiceModel.Syndication": "6.0.0", + "System.ServiceProcess.ServiceController": "6.0.0", + "System.Speech": "6.0.0", + "System.Text.Encoding.CodePages": "6.0.0", + "System.Threading.AccessControl": "6.0.0", + "System.Web.Services.Description": "4.9.0" + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.WSMan.Management/7.2.1": { + "type": "package", + "dependencies": { + "Microsoft.WSMan.Runtime": "7.2.1", + "System.Management.Automation": "7.2.1", + "System.ServiceProcess.ServiceController": "6.0.0" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.WSMan.Runtime/7.2.1": { + "type": "package", + "compile": { + "ref/net6.0/System.Management.Automation.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Namotion.Reflection/2.0.3": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.3.0" + }, + "compile": { + "lib/netstandard2.0/Namotion.Reflection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Namotion.Reflection.dll": { + "related": ".xml" + } + } + }, + "Newtonsoft.Json/13.0.2": { + "type": "package", + "compile": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "NJsonSchema/10.5.2": { + "type": "package", + "dependencies": { + "Namotion.Reflection": "2.0.3", + "Newtonsoft.Json": "9.0.1" + }, + "compile": { + "lib/netstandard2.0/NJsonSchema.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/NJsonSchema.dll": { + "related": ".xml" + } + } + }, + "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": { + "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/6.0.0": { + "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/6.0.0": { + "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/6.0.0": { + "type": "package", + "dependencies": { + "runtime.linux-arm.runtime.native.System.IO.Ports": "6.0.0", + "runtime.linux-arm64.runtime.native.System.IO.Ports": "6.0.0", + "runtime.linux-x64.runtime.native.System.IO.Ports": "6.0.0", + "runtime.osx-arm64.runtime.native.System.IO.Ports": "6.0.0", + "runtime.osx-x64.runtime.native.System.IO.Ports": "6.0.0" + } + }, + "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib": { + "assetType": "native", + "rid": "osx-arm64" + } + } + }, + "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": { + "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/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "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/_._": { + "related": ".xml" + } + } + }, + "System.Collections.Immutable/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Collections.Immutable.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Collections.Immutable.dll": { + "related": ".xml" + } + } + }, + "System.ComponentModel.Composition/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.ComponentModel.Composition.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.ComponentModel.Composition.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.ComponentModel.Composition.Registration/6.0.0": { + "type": "package", + "dependencies": { + "System.ComponentModel.Composition": "6.0.0", + "System.Reflection.Context": "6.0.0" + }, + "compile": { + "lib/net6.0/System.ComponentModel.Composition.Registration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.ComponentModel.Composition.Registration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Configuration.ConfigurationManager/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Data.Odbc/6.0.0": { + "type": "package", + "dependencies": { + "System.Text.Encoding.CodePages": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Data.Odbc.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Data.Odbc.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "freebsd" + }, + "runtimes/illumos/lib/net6.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "illumos" + }, + "runtimes/ios/lib/net6.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "ios" + }, + "runtimes/linux/lib/net6.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "linux" + }, + "runtimes/osx/lib/net6.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/solaris/lib/net6.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "solaris" + }, + "runtimes/tvos/lib/net6.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "tvos" + }, + "runtimes/win/lib/net6.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Data.OleDb/6.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0", + "System.Diagnostics.PerformanceCounter": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Data.OleDb.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Data.OleDb.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Data.OleDb.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Data.SqlClient/4.8.3": { + "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": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "related": ".xml" + } + }, + "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/_._": { + "related": ".xml" + } + } + }, + "System.Diagnostics.DiagnosticSource/5.0.0": { + "type": "package", + "compile": { + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + } + }, + "System.Diagnostics.EventLog/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll": { + "assetType": "runtime", + "rid": "win" + }, + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.PerformanceCounter/6.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.DirectoryServices.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.DirectoryServices.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.DirectoryServices.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices.AccountManagement/6.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0", + "System.DirectoryServices": "6.0.0", + "System.DirectoryServices.Protocols": "6.0.0", + "System.Security.AccessControl": "6.0.0" + }, + "compile": { + "lib/net6.0/System.DirectoryServices.AccountManagement.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.DirectoryServices.AccountManagement.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices.Protocols/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.DirectoryServices.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.DirectoryServices.Protocols.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "linux" + }, + "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.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": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Formats.Asn1/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Formats.Asn1.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Formats.Asn1.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "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/_._": { + "related": ".xml" + } + } + }, + "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": { + "related": ".xml" + } + } + }, + "System.IO.Packaging/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.IO.Packaging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.IO.Packaging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.IO.Ports/6.0.0": { + "type": "package", + "dependencies": { + "runtime.native.System.IO.Ports": "6.0.0" + }, + "compile": { + "lib/net6.0/System.IO.Ports.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.IO.Ports.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.IO.Ports.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.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/_._": { + "related": ".xml" + } + }, + "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": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Management/6.0.0": { + "type": "package", + "dependencies": { + "System.CodeDom": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Management.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Management.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Management.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Management.Automation/7.2.1": { + "type": "package", + "dependencies": { + "Microsoft.ApplicationInsights": "2.18.0", + "Microsoft.Management.Infrastructure": "2.0.0", + "Microsoft.PowerShell.CoreCLR.Eventing": "7.2.1", + "Microsoft.PowerShell.Native": "7.2.0", + "Microsoft.Win32.Registry.AccessControl": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "System.Configuration.ConfigurationManager": "6.0.0", + "System.DirectoryServices": "6.0.0", + "System.Management": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.0", + "System.Security.Permissions": "6.0.0", + "System.Text.Encoding.CodePages": "6.0.0" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Management.Automation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.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/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Net.Http.WinHttpHandler.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Net.Http.WinHttpHandler.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "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": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Private.ServiceModel/4.9.0": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "5.0.0", + "Microsoft.Extensions.ObjectPool": "5.0.10", + "System.Numerics.Vectors": "4.5.0", + "System.Reflection.DispatchProxy": "4.7.1", + "System.Security.Cryptography.Xml": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Private.ServiceModel.dll": { + "related": ".pdb" + } + }, + "resource": { + "lib/netstandard2.0/cs/System.Private.ServiceModel.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/System.Private.ServiceModel.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/System.Private.ServiceModel.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/System.Private.ServiceModel.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/System.Private.ServiceModel.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/System.Private.ServiceModel.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/System.Private.ServiceModel.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/System.Private.ServiceModel.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/System.Private.ServiceModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/System.Private.ServiceModel.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/System.Private.ServiceModel.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/System.Private.ServiceModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/System.Private.ServiceModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "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": { + "related": ".xml" + } + } + }, + "System.Reflection.Context/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Reflection.Context.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Reflection.Context.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Reflection.DispatchProxy/4.7.1": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Reflection.DispatchProxy.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.0/System.Reflection.DispatchProxy.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "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/_._": { + "related": ".xml" + } + } + }, + "System.Reflection.Metadata/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": { + "related": ".xml" + } + } + }, + "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": { + "related": ".xml" + } + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + }, + "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/_._": { + "related": ".xml" + } + } + }, + "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": { + "related": ".xml" + } + } + }, + "System.Runtime.Caching/6.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Runtime.Caching.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Runtime.Caching.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "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/_._": { + "related": ".xml" + } + } + }, + "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/_._": { + "related": ".xml" + } + } + }, + "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/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Pkcs/6.0.0": { + "type": "package", + "dependencies": { + "System.Formats.Asn1": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Xml/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Security.Cryptography.Xml.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Xml.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "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.9.0": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "compile": { + "ref/net6.0/System.ServiceModel.Duplex.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Duplex.dll": { + "related": ".pdb" + } + } + }, + "System.ServiceModel.Http/4.9.0": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "compile": { + "ref/net6.0/System.ServiceModel.Http.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Http.dll": { + "related": ".pdb" + } + } + }, + "System.ServiceModel.NetTcp/4.9.0": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "compile": { + "ref/net6.0/System.ServiceModel.NetTcp.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceModel.NetTcp.dll": { + "related": ".pdb" + } + } + }, + "System.ServiceModel.Primitives/4.9.0": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.9.0" + }, + "compile": { + "ref/net6.0/System.ServiceModel.Primitives.dll": {}, + "ref/net6.0/System.ServiceModel.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Primitives.dll": { + "related": ".pdb" + }, + "lib/net6.0/System.ServiceModel.dll": { + "related": ".Primitives.pdb" + } + } + }, + "System.ServiceModel.Security/4.9.0": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "compile": { + "ref/net6.0/System.ServiceModel.Security.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Security.dll": { + "related": ".pdb" + } + } + }, + "System.ServiceModel.Syndication/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.ServiceModel.Syndication.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Syndication.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.ServiceProcess.ServiceController/6.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.EventLog": "6.0.0" + }, + "compile": { + "lib/net6.0/System.ServiceProcess.ServiceController.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.ServiceProcess.ServiceController.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Speech/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Speech.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Speech.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Speech.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": { + "related": ".xml" + } + } + }, + "System.Text.Encoding.CodePages/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Encoding.CodePages.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Text.Encoding.CodePages.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.AccessControl/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Threading.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Threading.AccessControl.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.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": { + "related": ".xml" + } + } + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Web.Services.Description/4.9.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Web.Services.Description.dll": { + "related": ".pdb" + } + }, + "runtime": { + "lib/netstandard2.0/System.Web.Services.Description.dll": { + "related": ".pdb" + } + }, + "resource": { + "lib/netstandard2.0/cs/System.Web.Services.Description.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/System.Web.Services.Description.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/System.Web.Services.Description.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/System.Web.Services.Description.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/System.Web.Services.Description.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/System.Web.Services.Description.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/System.Web.Services.Description.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/System.Web.Services.Description.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/System.Web.Services.Description.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/System.Web.Services.Description.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/System.Web.Services.Description.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/System.Web.Services.Description.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/System.Web.Services.Description.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + } + }, + "net7.0/win-x86": { + "Cake.Powershell/2.0.0": { + "type": "package", + "dependencies": { + "Microsoft.PowerShell.SDK": "7.2.1" + }, + "compile": { + "lib/net6.0/Cake.Powershell.dll": { + "related": ".deps.json;.pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Cake.Powershell.dll": { + "related": ".deps.json;.pdb;.xml" + } + } + }, + "Markdig.Signed/0.22.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/Markdig.Signed.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Markdig.Signed.dll": { + "related": ".xml" + } + } + }, + "Microsoft.ApplicationInsights/2.18.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.DiagnosticSource": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": { + "type": "package", + "build": { + "build/_._": {} + } + }, + "Microsoft.CodeAnalysis.Common/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.2", + "System.Collections.Immutable": "5.0.0", + "System.Memory": "4.5.4", + "System.Reflection.Metadata": "5.0.0", + "System.Runtime.CompilerServices.Unsafe": "5.0.0", + "System.Text.Encoding.CodePages": "4.5.1", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { + "related": ".pdb;.xml" + } + }, + "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/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[4.0.1]" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { + "related": ".pdb;.xml" + } + }, + "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": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Extensions.ObjectPool/5.0.10": { + "type": "package", + "compile": { + "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": { + "related": ".xml" + } + } + }, + "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.2.1": { + "type": "package", + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll": {} + } + }, + "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { + "type": "package" + }, + "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { + "type": "package" + }, + "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.NETCore.Windows.ApiSets/1.0.1": { + "type": "package" + }, + "Microsoft.PowerShell.Commands.Diagnostics/7.2.1": { + "type": "package", + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll": {} + } + }, + "Microsoft.PowerShell.Commands.Management/7.2.1": { + "type": "package", + "dependencies": { + "Microsoft.PowerShell.Security": "7.2.1", + "System.ServiceProcess.ServiceController": "6.0.0" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll": {} + } + }, + "Microsoft.PowerShell.Commands.Utility/7.2.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "4.0.1", + "Microsoft.PowerShell.MarkdownRender": "7.2.0", + "NJsonSchema": "10.5.2", + "System.Drawing.Common": "6.0.0", + "System.Management.Automation": "7.2.1", + "System.Threading.AccessControl": "6.0.0" + }, + "compile": { + "ref/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll": {} + } + }, + "Microsoft.PowerShell.ConsoleHost/7.2.1": { + "type": "package", + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "compile": { + "ref/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll": {} + } + }, + "Microsoft.PowerShell.CoreCLR.Eventing/7.2.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.EventLog": "6.0.0" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll": {} + } + }, + "Microsoft.PowerShell.MarkdownRender/7.2.0": { + "type": "package", + "dependencies": { + "Markdig.Signed": "0.22.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll": {} + } + }, + "Microsoft.PowerShell.Native/7.2.0": { + "type": "package", + "native": { + "runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll": {}, + "runtimes/win-x86/native/pwrshplugin.dll": {} + } + }, + "Microsoft.PowerShell.SDK/7.2.1": { + "type": "package", + "dependencies": { + "Microsoft.Management.Infrastructure.CimCmdlets": "7.2.1", + "Microsoft.NETCore.Windows.ApiSets": "1.0.1", + "Microsoft.PowerShell.Commands.Diagnostics": "7.2.1", + "Microsoft.PowerShell.Commands.Management": "7.2.1", + "Microsoft.PowerShell.Commands.Utility": "7.2.1", + "Microsoft.PowerShell.ConsoleHost": "7.2.1", + "Microsoft.PowerShell.Security": "7.2.1", + "Microsoft.WSMan.Management": "7.2.1", + "Microsoft.Windows.Compatibility": "6.0.0", + "System.Data.SqlClient": "4.8.3", + "System.IO.Packaging": "6.0.0", + "System.Management.Automation": "7.2.1", + "System.Net.Http.WinHttpHandler": "6.0.0", + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Duplex": "4.9.0", + "System.ServiceModel.Http": "4.9.0", + "System.ServiceModel.NetTcp": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0", + "System.ServiceModel.Security": "4.9.0", + "System.Text.Encodings.Web": "6.0.0" + }, + "compile": { + "ref/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { + "related": ".xml" + }, + "ref/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { + "related": ".xml" + }, + "ref/net6.0/System.Management.Automation.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll": {} + }, + "contentFiles": { + "contentFiles/any/any/_._": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": false + } + } + }, + "Microsoft.PowerShell.Security/7.2.1": { + "type": "package", + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll": {} + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Win32.Registry.AccessControl/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Windows.Compatibility/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry.AccessControl": "6.0.0", + "Microsoft.Win32.SystemEvents": "6.0.0", + "System.CodeDom": "6.0.0", + "System.ComponentModel.Composition": "6.0.0", + "System.ComponentModel.Composition.Registration": "6.0.0", + "System.Configuration.ConfigurationManager": "6.0.0", + "System.Data.Odbc": "6.0.0", + "System.Data.OleDb": "6.0.0", + "System.Data.SqlClient": "4.8.3", + "System.Diagnostics.EventLog": "6.0.0", + "System.Diagnostics.PerformanceCounter": "6.0.0", + "System.DirectoryServices": "6.0.0", + "System.DirectoryServices.AccountManagement": "6.0.0", + "System.DirectoryServices.Protocols": "6.0.0", + "System.Drawing.Common": "6.0.0", + "System.IO.Packaging": "6.0.0", + "System.IO.Ports": "6.0.0", + "System.Management": "6.0.0", + "System.Reflection.Context": "6.0.0", + "System.Runtime.Caching": "6.0.0", + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.0", + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Cryptography.Xml": "6.0.0", + "System.Security.Permissions": "6.0.0", + "System.ServiceModel.Duplex": "4.9.0", + "System.ServiceModel.Http": "4.9.0", + "System.ServiceModel.NetTcp": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0", + "System.ServiceModel.Security": "4.9.0", + "System.ServiceModel.Syndication": "6.0.0", + "System.ServiceProcess.ServiceController": "6.0.0", + "System.Speech": "6.0.0", + "System.Text.Encoding.CodePages": "6.0.0", + "System.Threading.AccessControl": "6.0.0", + "System.Web.Services.Description": "4.9.0" + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.WSMan.Management/7.2.1": { + "type": "package", + "dependencies": { + "Microsoft.WSMan.Runtime": "7.2.1", + "System.Management.Automation": "7.2.1", + "System.ServiceProcess.ServiceController": "6.0.0" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll": {} + } + }, + "Microsoft.WSMan.Runtime/7.2.1": { + "type": "package", + "compile": { + "ref/net6.0/System.Management.Automation.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll": {} + } + }, + "Namotion.Reflection/2.0.3": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.3.0" + }, + "compile": { + "lib/netstandard2.0/Namotion.Reflection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Namotion.Reflection.dll": { + "related": ".xml" + } + } + }, + "Newtonsoft.Json/13.0.2": { + "type": "package", + "compile": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "NJsonSchema/10.5.2": { + "type": "package", + "dependencies": { + "Namotion.Reflection": "2.0.3", + "Newtonsoft.Json": "9.0.1" + }, + "compile": { + "lib/netstandard2.0/NJsonSchema.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/NJsonSchema.dll": { + "related": ".xml" + } + } + }, + "runtime.any.System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.dll": {} + } + }, + "runtime.any.System.Globalization/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Globalization.dll": {} + } + }, + "runtime.any.System.IO/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.IO.dll": {} + } + }, + "runtime.any.System.Reflection/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.dll": {} + } + }, + "runtime.any.System.Reflection.Extensions/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Extensions.dll": {} + } + }, + "runtime.any.System.Reflection.Primitives/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Primitives.dll": {} + } + }, + "runtime.any.System.Resources.ResourceManager/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Resources.ResourceManager.dll": {} + } + }, + "runtime.any.System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Runtime.dll": {} + } + }, + "runtime.any.System.Runtime.Handles/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "runtime.any.System.Runtime.InteropServices/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Runtime.InteropServices.dll": {} + } + }, + "runtime.any.System.Text.Encoding/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "runtime.any.System.Threading.Tasks/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": { + "type": "package" + }, + "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package" + }, + "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package" + }, + "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/6.0.0": { + "type": "package", + "dependencies": { + "runtime.linux-arm.runtime.native.System.IO.Ports": "6.0.0", + "runtime.linux-arm64.runtime.native.System.IO.Ports": "6.0.0", + "runtime.linux-x64.runtime.native.System.IO.Ports": "6.0.0", + "runtime.osx-arm64.runtime.native.System.IO.Ports": "6.0.0", + "runtime.osx-x64.runtime.native.System.IO.Ports": "6.0.0" + } + }, + "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package" + }, + "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package" + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package" + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package" + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "native": { + "runtimes/win-x86/native/sni.dll": {} + } + }, + "runtime.win.System.Diagnostics.Debug/4.3.0": { + "type": "package", + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "runtime.win.System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.3.0" + }, + "compile": { + "ref/netstandard/_._": {} + }, + "runtime": { + "runtimes/win/lib/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "System.CodeDom/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "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", + "runtime.any.System.Collections": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.Collections.Immutable/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Collections.Immutable.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Collections.Immutable.dll": { + "related": ".xml" + } + } + }, + "System.ComponentModel.Composition/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.ComponentModel.Composition.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.ComponentModel.Composition.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.ComponentModel.Composition.Registration/6.0.0": { + "type": "package", + "dependencies": { + "System.ComponentModel.Composition": "6.0.0", + "System.Reflection.Context": "6.0.0" + }, + "compile": { + "lib/net6.0/System.ComponentModel.Composition.Registration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.ComponentModel.Composition.Registration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Configuration.ConfigurationManager/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Data.Odbc/6.0.0": { + "type": "package", + "dependencies": { + "System.Text.Encoding.CodePages": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Data.Odbc.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/System.Data.Odbc.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Data.OleDb/6.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0", + "System.Diagnostics.PerformanceCounter": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Data.OleDb.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/System.Data.OleDb.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Data.SqlClient/4.8.3": { + "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": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "related": ".xml" + } + } + }, + "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", + "runtime.win.System.Diagnostics.Debug": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.Diagnostics.DiagnosticSource/5.0.0": { + "type": "package", + "compile": { + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + } + }, + "System.Diagnostics.EventLog/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll": {}, + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Diagnostics.PerformanceCounter/6.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.DirectoryServices/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.DirectoryServices.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/System.DirectoryServices.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.DirectoryServices.AccountManagement/6.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0", + "System.DirectoryServices": "6.0.0", + "System.DirectoryServices.Protocols": "6.0.0", + "System.Security.AccessControl": "6.0.0" + }, + "compile": { + "lib/net6.0/System.DirectoryServices.AccountManagement.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.DirectoryServices.Protocols/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.DirectoryServices.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "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": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Formats.Asn1/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Formats.Asn1.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Formats.Asn1.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "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", + "runtime.any.System.Globalization": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "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", + "runtime.any.System.IO": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": { + "related": ".xml" + } + } + }, + "System.IO.Packaging/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.IO.Packaging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.IO.Packaging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.IO.Ports/6.0.0": { + "type": "package", + "dependencies": { + "runtime.native.System.IO.Ports": "6.0.0" + }, + "compile": { + "lib/net6.0/System.IO.Ports.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/System.IO.Ports.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "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/_._": { + "related": ".xml" + } + }, + "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": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Management/6.0.0": { + "type": "package", + "dependencies": { + "System.CodeDom": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Management.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/System.Management.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Management.Automation/7.2.1": { + "type": "package", + "dependencies": { + "Microsoft.ApplicationInsights": "2.18.0", + "Microsoft.Management.Infrastructure": "2.0.0", + "Microsoft.PowerShell.CoreCLR.Eventing": "7.2.1", + "Microsoft.PowerShell.Native": "7.2.0", + "Microsoft.Win32.Registry.AccessControl": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "System.Configuration.ConfigurationManager": "6.0.0", + "System.DirectoryServices": "6.0.0", + "System.Management": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.0", + "System.Security.Permissions": "6.0.0", + "System.Text.Encoding.CodePages": "6.0.0" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/System.Management.Automation.dll": {} + } + }, + "System.Memory/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Net.Http.WinHttpHandler/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Net.Http.WinHttpHandler.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "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": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Private.ServiceModel/4.9.0": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "5.0.0", + "Microsoft.Extensions.ObjectPool": "5.0.10", + "System.Numerics.Vectors": "4.5.0", + "System.Reflection.DispatchProxy": "4.7.1", + "System.Security.Cryptography.Xml": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Private.ServiceModel.dll": { + "related": ".pdb" + } + }, + "resource": { + "lib/netstandard2.0/cs/System.Private.ServiceModel.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/System.Private.ServiceModel.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/System.Private.ServiceModel.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/System.Private.ServiceModel.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/System.Private.ServiceModel.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/System.Private.ServiceModel.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/System.Private.ServiceModel.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/System.Private.ServiceModel.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/System.Private.ServiceModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/System.Private.ServiceModel.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/System.Private.ServiceModel.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/System.Private.ServiceModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/System.Private.ServiceModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Private.Uri/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard/_._": {} + } + }, + "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", + "runtime.any.System.Reflection": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.Context/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Reflection.Context.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Reflection.Context.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Reflection.DispatchProxy/4.7.1": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Reflection.DispatchProxy.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.0/System.Reflection.DispatchProxy.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "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", + "runtime.any.System.Reflection.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + } + }, + "System.Reflection.Metadata/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": { + "related": ".xml" + } + } + }, + "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", + "runtime.any.System.Reflection.Primitives": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + }, + "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", + "runtime.any.System.Resources.ResourceManager": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "runtime.any.System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.Caching/6.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Runtime.Caching.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "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", + "runtime.win.System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + } + }, + "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", + "runtime.any.System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "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", + "runtime.any.System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/_._": {} + } + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.Cryptography.Pkcs/6.0.0": { + "type": "package", + "dependencies": { + "System.Formats.Asn1": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.Cryptography.Xml/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Security.Cryptography.Xml.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Xml.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + } + }, + "System.ServiceModel.Duplex/4.9.0": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "compile": { + "ref/net6.0/System.ServiceModel.Duplex.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Duplex.dll": { + "related": ".pdb" + } + } + }, + "System.ServiceModel.Http/4.9.0": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "compile": { + "ref/net6.0/System.ServiceModel.Http.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Http.dll": { + "related": ".pdb" + } + } + }, + "System.ServiceModel.NetTcp/4.9.0": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "compile": { + "ref/net6.0/System.ServiceModel.NetTcp.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceModel.NetTcp.dll": { + "related": ".pdb" + } + } + }, + "System.ServiceModel.Primitives/4.9.0": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.9.0" + }, + "compile": { + "ref/net6.0/System.ServiceModel.Primitives.dll": {}, + "ref/net6.0/System.ServiceModel.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Primitives.dll": { + "related": ".pdb" + }, + "lib/net6.0/System.ServiceModel.dll": { + "related": ".Primitives.pdb" + } + } + }, + "System.ServiceModel.Security/4.9.0": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "compile": { + "ref/net6.0/System.ServiceModel.Security.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Security.dll": { + "related": ".pdb" + } + } + }, + "System.ServiceModel.Syndication/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.ServiceModel.Syndication.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Syndication.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.ServiceProcess.ServiceController/6.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.EventLog": "6.0.0" + }, + "compile": { + "lib/net6.0/System.ServiceProcess.ServiceController.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Speech/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Speech.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/System.Speech.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "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", + "runtime.any.System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encoding.CodePages/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Encoding.CodePages.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.AccessControl/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Threading.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/System.Threading.AccessControl.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "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", + "runtime.any.System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": { + "related": ".xml" + } + } + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Web.Services.Description/4.9.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Web.Services.Description.dll": { + "related": ".pdb" + } + }, + "runtime": { + "lib/netstandard2.0/System.Web.Services.Description.dll": { + "related": ".pdb" + } + }, + "resource": { + "lib/netstandard2.0/cs/System.Web.Services.Description.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/System.Web.Services.Description.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/System.Web.Services.Description.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/System.Web.Services.Description.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/System.Web.Services.Description.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/System.Web.Services.Description.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/System.Web.Services.Description.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/System.Web.Services.Description.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/System.Web.Services.Description.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/System.Web.Services.Description.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/System.Web.Services.Description.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/System.Web.Services.Description.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/System.Web.Services.Description.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + } + } + } + }, + "libraries": { + "Cake.Powershell/2.0.0": { + "sha512": "65NCW9XtzleMrw89D/vCWCHh//jCctUDtdMyFo2cvLIrkkDl4Ldkpcf+ynpWpiltmS7bqIiHW8C7Q1gTTx5GbQ==", + "type": "package", + "path": "cake.powershell/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "cake.powershell.2.0.0.nupkg.sha512", + "cake.powershell.nuspec", + "lib/net5.0/Cake.Powershell.deps.json", + "lib/net5.0/Cake.Powershell.dll", + "lib/net5.0/Cake.Powershell.pdb", + "lib/net5.0/Cake.Powershell.xml", + "lib/net6.0/Cake.Powershell.deps.json", + "lib/net6.0/Cake.Powershell.dll", + "lib/net6.0/Cake.Powershell.pdb", + "lib/net6.0/Cake.Powershell.xml", + "lib/netcoreapp3.1/Cake.Powershell.deps.json", + "lib/netcoreapp3.1/Cake.Powershell.dll", + "lib/netcoreapp3.1/Cake.Powershell.pdb", + "lib/netcoreapp3.1/Cake.Powershell.xml" + ] + }, + "Markdig.Signed/0.22.0": { + "sha512": "7x3FqS3wk8DXyQLuflD47tBs6+ly6k4VtoDCzlDWfy7XHVsBIi7eGYEM15sPAcwSCQjOksNWE8U5r2v0Sk5FzQ==", + "type": "package", + "path": "markdig.signed/0.22.0", + "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.22.0.nupkg.sha512", + "markdig.signed.nuspec" + ] + }, + "Microsoft.ApplicationInsights/2.18.0": { + "sha512": "milJB3VOCoC4EWmpE/Co9cOJ7SV6Ji6VqV4Rf5UlqL9QCg+rAX1y+3Y+j1Gu/j4IExYiPq7SEKqkP2BFnEu6Vw==", + "type": "package", + "path": "microsoft.applicationinsights/2.18.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.18.0.nupkg.sha512", + "microsoft.applicationinsights.nuspec" + ] + }, + "Microsoft.Bcl.AsyncInterfaces/5.0.0": { + "sha512": "W8DPQjkMScOMTtJbPwmPyj9c3zYSFGawDW3jwlBOOsnY+EzZFLgNQ/UMkK35JmkNOVPdCyPr2Tw7Vv9N+KA3ZQ==", + "type": "package", + "path": "microsoft.bcl.asyncinterfaces/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", + "microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512", + "microsoft.bcl.asyncinterfaces.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": { + "sha512": "7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA==", + "type": "package", + "path": "microsoft.codeanalysis.analyzers/3.3.2", + "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", + "build/config/AnalysisLevel_2_9_8_AllDisabledByDefault.editorconfig", + "build/config/AnalysisLevel_2_9_8_AllEnabledByDefault.editorconfig", + "build/config/AnalysisLevel_2_9_8_Default.editorconfig", + "build/config/AnalysisLevel_3_3_AllDisabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_3_AllEnabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_3_Default.editorconfig", + "build/config/AnalysisLevel_3_AllDisabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_AllEnabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_Default.editorconfig", + "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.3.2.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/4.0.1": { + "sha512": "SMREwaVD5SzatlWhh9aahQAtSWdb63NcE//f+bQzgHSECU6xtDtaxk0kwV+asdFfr6HtW38UeO6jvqdfzudg3w==", + "type": "package", + "path": "microsoft.codeanalysis.common/4.0.1", + "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.4.0.1.nupkg.sha512", + "microsoft.codeanalysis.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp/4.0.1": { + "sha512": "Q9RxxydPpUElj/x1/qykDTUGsRoKbJG8H5XUSeMGmMu54fBiuX1xyanom9caa1oQfh5JIW1BgLxobSaWs4WyHQ==", + "type": "package", + "path": "microsoft.codeanalysis.csharp/4.0.1", + "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.4.0.1.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.Extensions.ObjectPool/5.0.10": { + "sha512": "pp9tbGqIhdEXL6Q1yJl+zevAJSq4BsxqhS1GXzBvEsEz9DDNu9GLNzgUy2xyFc4YjB4m4Ff2YEWTnvQvVYdkvQ==", + "type": "package", + "path": "microsoft.extensions.objectpool/5.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.ObjectPool.dll", + "lib/net461/Microsoft.Extensions.ObjectPool.xml", + "lib/net5.0/Microsoft.Extensions.ObjectPool.dll", + "lib/net5.0/Microsoft.Extensions.ObjectPool.xml", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml", + "microsoft.extensions.objectpool.5.0.10.nupkg.sha512", + "microsoft.extensions.objectpool.nuspec" + ] + }, + "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.2.1": { + "sha512": "xe1x237SCyrjpmW1mP1T69/OOc/gtU66P8wVC+b4/u7Hz7fIO6B8P5yVQQfb79rAe1GocruIpQlX4KXTFQf09w==", + "type": "package", + "path": "microsoft.management.infrastructure.cimcmdlets/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.management.infrastructure.cimcmdlets.7.2.1.nupkg.sha512", + "microsoft.management.infrastructure.cimcmdlets.nuspec", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/win/lib/net6.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/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.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.2.1": { + "sha512": "Bgw4Egv7cnYUTWAy6koxg+0+/8K6rqUdlAiAxuJby9FeDPZQFfqCHQqlyP9JDa6lvbtmeBx1btFDx6Kh8bxdwQ==", + "type": "package", + "path": "microsoft.powershell.commands.diagnostics/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.powershell.commands.diagnostics.7.2.1.nupkg.sha512", + "microsoft.powershell.commands.diagnostics.nuspec", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll" + ] + }, + "Microsoft.PowerShell.Commands.Management/7.2.1": { + "sha512": "YAMrGDF2QTg6Gwz07+m1+BnmcYsPyywfY4J8nOpImfXZLLNhD7zQQP0orNHu9WPPV3/+E33qUyPj5J3ugCMk6A==", + "type": "package", + "path": "microsoft.powershell.commands.management/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.powershell.commands.management.7.2.1.nupkg.sha512", + "microsoft.powershell.commands.management.nuspec", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll", + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll" + ] + }, + "Microsoft.PowerShell.Commands.Utility/7.2.1": { + "sha512": "PU15IxUJd7nSacTstlxqJoEeGlI+BH6cUKTppkkIIxEj7EfwC5nD1qTL41xye63BFeZmOFeqAhMI6LtJUd875g==", + "type": "package", + "path": "microsoft.powershell.commands.utility/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.powershell.commands.utility.7.2.1.nupkg.sha512", + "microsoft.powershell.commands.utility.nuspec", + "ref/net6.0/Microsoft.PowerShell.Commands.Utility.dll", + "ref/net6.0/Microsoft.PowerShell.Commands.Utility.xml", + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll", + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll" + ] + }, + "Microsoft.PowerShell.ConsoleHost/7.2.1": { + "sha512": "uAPSsTmkOa7na1+OAPF87yBRwD1Ka/qXThoyrlvP9ihzMWfHM52k3MuKVEGi04VP3Wdi7U4Rzkr3svxDDmkHgA==", + "type": "package", + "path": "microsoft.powershell.consolehost/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.powershell.consolehost.7.2.1.nupkg.sha512", + "microsoft.powershell.consolehost.nuspec", + "ref/net6.0/Microsoft.PowerShell.ConsoleHost.dll", + "ref/net6.0/Microsoft.PowerShell.ConsoleHost.xml", + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll", + "runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll" + ] + }, + "Microsoft.PowerShell.CoreCLR.Eventing/7.2.1": { + "sha512": "fUz7InjavqKtslkQN828nWbZLnmmJRL9rn4b3e/XXdx0BcN+65x/pSgMnehwDVGIoqUPUMXN54eDo4HRVcLA5g==", + "type": "package", + "path": "microsoft.powershell.coreclr.eventing/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.powershell.coreclr.eventing.7.2.1.nupkg.sha512", + "microsoft.powershell.coreclr.eventing.nuspec", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll" + ] + }, + "Microsoft.PowerShell.MarkdownRender/7.2.0": { + "sha512": "1vqDtdX9RCGsMWCbzp0CIxZW3slWgq8mYHDfUlUKzmkV57fMAn4m0Gy2OtsqopZzrOiVJci+QCWx5FB7BVpMlw==", + "type": "package", + "path": "microsoft.powershell.markdownrender/7.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll", + "microsoft.powershell.markdownrender.7.2.0.nupkg.sha512", + "microsoft.powershell.markdownrender.nuspec" + ] + }, + "Microsoft.PowerShell.Native/7.2.0": { + "sha512": "TauOu3bYr4DRh9HpH3+fgaL+y2GY47KLsgU6qX1NDLqHshdEaCCjiF0N5sDEgCEhSb38FwWhpdFTIQvoOcYCXQ==", + "type": "package", + "path": "microsoft.powershell.native/7.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "PSRP_version.txt", + "Powershell_black_64.png", + "microsoft.powershell.native.7.2.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.2.1": { + "sha512": "UufIcywqI/22p0oqC5qg+yDoW39U2JAQyaHxy2Tr/h0hdWuFimtmhxp/FDXTxszgOdobtjcrCkSzqcoNmu/vQQ==", + "type": "package", + "path": "microsoft.powershell.sdk/7.2.1", + "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/Microsoft.Win32.Registry.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.AccessControl.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.AccessControl.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.AccessControl.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.Cng.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.OpenSsl.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.Windows.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.Encodings.Web.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/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1", + "contentFiles/any/any/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1", + "contentFiles/any/any/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1", + "contentFiles/any/any/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/CimCmdlets/CimCmdlets.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psm1", + "microsoft.powershell.sdk.7.2.1.nupkg.sha512", + "microsoft.powershell.sdk.nuspec", + "ref/net6.0/Microsoft.PowerShell.Commands.Utility.dll", + "ref/net6.0/Microsoft.PowerShell.Commands.Utility.xml", + "ref/net6.0/Microsoft.PowerShell.ConsoleHost.dll", + "ref/net6.0/Microsoft.PowerShell.ConsoleHost.xml", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll", + "runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll" + ] + }, + "Microsoft.PowerShell.Security/7.2.1": { + "sha512": "GV3RuuOmXHAaEjeBcyixdzUIAQvHW6xgoWwafzTe97DbhI+N1sg4fa/FQ9pd8lqG+kkWxGwTy1VgudXX6rhUkg==", + "type": "package", + "path": "microsoft.powershell.security/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.powershell.security.7.2.1.nupkg.sha512", + "microsoft.powershell.security.nuspec", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll", + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll" + ] + }, + "Microsoft.Win32.Registry/4.7.0": { + "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "type": "package", + "path": "microsoft.win32.registry/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.4.7.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/net472/Microsoft.Win32.Registry.dll", + "ref/net472/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/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/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/6.0.0": { + "sha512": "UoE+eeuBKL+GFHxHV3FjHlY5K8Wr/IR7Ee/a2oDNqFodF1iMqyt5hIs0U9Z217AbWrHrNle4750kD03hv1IMZw==", + "type": "package", + "path": "microsoft.win32.registry.accesscontrol/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.Registry.AccessControl.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Win32.Registry.AccessControl.dll", + "lib/net461/Microsoft.Win32.Registry.AccessControl.xml", + "lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll", + "lib/net6.0/Microsoft.Win32.Registry.AccessControl.xml", + "lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.xml", + "microsoft.win32.registry.accesscontrol.6.0.0.nupkg.sha512", + "microsoft.win32.registry.accesscontrol.nuspec", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.AccessControl.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.AccessControl.xml", + "runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.xml", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.xml", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "type": "package", + "path": "microsoft.win32.systemevents/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Windows.Compatibility/6.0.0": { + "sha512": "9esuK5JqnjkDgO9/AHesyJSG0aKwpfLVzTw6nIGYhqE91VLxZyv3HKulNoPVy/NOuyAaf1kE4FKtdZDzdd/SLw==", + "type": "package", + "path": "microsoft.windows.compatibility/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Windows.Compatibility.targets", + "buildTransitive/netcoreapp3.1/_._", + "microsoft.windows.compatibility.6.0.0.nupkg.sha512", + "microsoft.windows.compatibility.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.WSMan.Management/7.2.1": { + "sha512": "vMOJMof4eLql180G4PmTurN8h8+VmPaf1l/Tqq+GI7HYyNv140iY3/Z18MiZA4dRG14qghLNo5JxtTolY7b4og==", + "type": "package", + "path": "microsoft.wsman.management/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.wsman.management.7.2.1.nupkg.sha512", + "microsoft.wsman.management.nuspec", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll" + ] + }, + "Microsoft.WSMan.Runtime/7.2.1": { + "sha512": "v14vzUXIg7opXoQI8Eb82dvsRwBNylZ44lvyXOBSRCiVfvMhyTqE8bpPWbwwmQ5JZRnG/dP5/aOYuu9l163fyQ==", + "type": "package", + "path": "microsoft.wsman.runtime/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.wsman.runtime.7.2.1.nupkg.sha512", + "microsoft.wsman.runtime.nuspec", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll" + ] + }, + "Namotion.Reflection/2.0.3": { + "sha512": "tZCe/UrSBAMW8A4TjD/SlpRHaWjnHlSWdyRuOXhf3yrE0OX+4fXg0uzj7mwFDclXznfCGRAZbP+akPt4G/mclw==", + "type": "package", + "path": "namotion.reflection/2.0.3", + "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.2.0.3.nupkg.sha512", + "namotion.reflection.nuspec" + ] + }, + "Newtonsoft.Json/13.0.2": { + "sha512": "R2pZ3B0UjeyHShm9vG+Tu0EBb2lC8b0dFzV9gVn50ofHXh9Smjk6kTn7A/FdAsC8B5cKib1OnGYOXxRBz5XQDg==", + "type": "package", + "path": "newtonsoft.json/13.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.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/net6.0/Newtonsoft.Json.dll", + "lib/net6.0/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.2.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "NJsonSchema/10.5.2": { + "sha512": "Vr2CbySuXh74TQFU0rGJYZOS492xOE64cPXdB7a0cfXJb/N45Bf4v7sd4LOla0jNhgc5V/B61Ko3qecriL195w==", + "type": "package", + "path": "njsonschema/10.5.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "NuGetIcon.png", + "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.5.2.nupkg.sha512", + "njsonschema.nuspec" + ] + }, + "runtime.any.System.Collections/4.3.0": { + "sha512": "23g6rqftKmovn2cLeGsuHUYm0FD7pdutb0uQMJpZ3qTvq+zHkgmt6J65VtRry4WDGYlmkMa4xDACtaQ94alNag==", + "type": "package", + "path": "runtime.any.system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.dll", + "lib/netstandard1.3/System.Collections.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.collections.4.3.0.nupkg.sha512", + "runtime.any.system.collections.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Globalization/4.3.0": { + "sha512": "sMDBnad4rp4t7GY442Jux0MCUuKL4otn5BK6Ni0ARTXTSpRNBzZ7hpMfKSvnVSED5kYJm96YOWsqV0JH0d2uuw==", + "type": "package", + "path": "runtime.any.system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Globalization.dll", + "lib/netstandard1.3/System.Globalization.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.globalization.4.3.0.nupkg.sha512", + "runtime.any.system.globalization.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.IO/4.3.0": { + "sha512": "SDZ5AD1DtyRoxYtEcqQ3HDlcrorMYXZeCt7ZhG9US9I5Vva+gpIWDGMkcwa5XiKL0ceQKRZIX2x0XEjLX7PDzQ==", + "type": "package", + "path": "runtime.any.system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.IO.dll", + "lib/netstandard1.5/System.IO.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.io.4.3.0.nupkg.sha512", + "runtime.any.system.io.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Reflection/4.3.0": { + "sha512": "hLC3A3rI8jipR5d9k7+f0MgRCW6texsAp0MWkN/ci18FMtQ9KH7E2vDn/DH2LkxsszlpJpOn9qy6Z6/69rH6eQ==", + "type": "package", + "path": "runtime.any.system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.dll", + "lib/netstandard1.5/System.Reflection.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.4.3.0.nupkg.sha512", + "runtime.any.system.reflection.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Reflection.Extensions/4.3.0": { + "sha512": "cPhT+Vqu52+cQQrDai/V91gubXUnDKNRvlBnH+hOgtGyHdC17aQIU64EaehwAQymd7kJA5rSrVRNfDYrbhnzyA==", + "type": "package", + "path": "runtime.any.system.reflection.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/netstandard1.3/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.extensions.4.3.0.nupkg.sha512", + "runtime.any.system.reflection.extensions.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Reflection.Primitives/4.3.0": { + "sha512": "Nrm1p3armp6TTf2xuvaa+jGTTmncALWFq22CpmwRvhDf6dE9ZmH40EbOswD4GnFLrMRS0Ki6Kx5aUPmKK/hZBg==", + "type": "package", + "path": "runtime.any.system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/netstandard1.3/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512", + "runtime.any.system.reflection.primitives.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Resources.ResourceManager/4.3.0": { + "sha512": "Lxb89SMvf8w9p9+keBLyL6H6x/TEmc6QVsIIA0T36IuyOY3kNvIdyGddA2qt35cRamzxF8K5p0Opq4G4HjNbhQ==", + "type": "package", + "path": "runtime.any.system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/netstandard1.3/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512", + "runtime.any.system.resources.resourcemanager.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Runtime/4.3.0": { + "sha512": "fRS7zJgaG9NkifaAxGGclDDoRn9HC7hXACl52Or06a/fxdzDajWb5wov3c6a+gVSlekRoexfjwQSK9sh5um5LQ==", + "type": "package", + "path": "runtime.any.system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.dll", + "lib/netstandard1.5/System.Runtime.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.4.3.0.nupkg.sha512", + "runtime.any.system.runtime.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Runtime.Handles/4.3.0": { + "sha512": "GG84X6vufoEzqx8PbeBKheE4srOhimv+yLtGb/JkR3Y2FmoqmueLNFU4Xx8Y67plFpltQSdK74x0qlEhIpv/CQ==", + "type": "package", + "path": "runtime.any.system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netstandard1.3/System.Runtime.Handles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.handles.4.3.0.nupkg.sha512", + "runtime.any.system.runtime.handles.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Runtime.InteropServices/4.3.0": { + "sha512": "lBoFeQfxe/4eqjPi46E0LU/YaCMdNkQ8B4MZu/mkzdIAZh8RQ1NYZSj0egrQKdgdvlPFtP4STtob40r4o2DBAw==", + "type": "package", + "path": "runtime.any.system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "lib/netstandard1.5/System.Runtime.InteropServices.dll", + "lib/netstandard1.6/System.Runtime.InteropServices.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512", + "runtime.any.system.runtime.interopservices.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Text.Encoding/4.3.0": { + "sha512": "+ihI5VaXFCMVPJNstG4O4eo1CfbrByLxRrQQTqOTp1ttK0kUKDqOdBSTaCB2IBk/QtjDrs6+x4xuezyMXdm0HQ==", + "type": "package", + "path": "runtime.any.system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Text.Encoding.dll", + "lib/netstandard1.3/System.Text.Encoding.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.text.encoding.4.3.0.nupkg.sha512", + "runtime.any.system.text.encoding.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.any.System.Threading.Tasks/4.3.0": { + "sha512": "OhBAVBQG5kFj1S+hCEQ3TUHBAEtZ3fbEMgZMRNdN8A0Pj4x+5nTELEqL59DU0TjKVE6II3dqKw4Dklb3szT65w==", + "type": "package", + "path": "runtime.any.system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "lib/netstandard1.3/System.Threading.Tasks.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/netstandard/_._", + "runtime.any.system.threading.tasks.4.3.0.nupkg.sha512", + "runtime.any.system.threading.tasks.nuspec", + "runtimes/aot/lib/netcore50/_._" + ] + }, + "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": { + "sha512": "75q52H7CSpgIoIDwXb9o833EvBZIXJ0mdPhz1E6jSisEXUBlSCPalC29cj3EXsjpuDwr0dj1LRXZepIQH/oL4Q==", + "type": "package", + "path": "runtime.linux-arm.runtime.native.system.io.ports/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.linux-arm.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "runtime.linux-arm.runtime.native.system.io.ports.nuspec", + "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so", + "useSharedDesignerContext.txt" + ] + }, + "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": { + "sha512": "xn2bMThmXr3CsvOYmS8ex2Yz1xo+kcnhVg2iVhS9PlmqjZPAkrEo/I40wjrBZH/tU4kvH0s1AE8opAvQ3KIS8g==", + "type": "package", + "path": "runtime.linux-arm64.runtime.native.system.io.ports/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.linux-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "runtime.linux-arm64.runtime.native.system.io.ports.nuspec", + "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so", + "useSharedDesignerContext.txt" + ] + }, + "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": { + "sha512": "16nbNXwv0sC+gLGIuecri0skjuh6R1maIJggsaNP7MQBcbVcEfWFUOkEnsnvoLEjy0XerfibuRptfQ8AmdIcWA==", + "type": "package", + "path": "runtime.linux-x64.runtime.native.system.io.ports/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.linux-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "runtime.linux-x64.runtime.native.system.io.ports.nuspec", + "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so", + "useSharedDesignerContext.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/6.0.0": { + "sha512": "KaaXlpOcuZjMdmyF5wzzx3b+PRKIzt6A5Ax9dKenPDQbVJAFpev+casD0BIig1pBcbs3zx7CqWemzUJKAeHdSQ==", + "type": "package", + "path": "runtime.native.system.io.ports/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "runtime.native.system.io.ports.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": { + "sha512": "fXG12NodG1QrCdoaeSQ1gVnk/koi4WYY4jZtarMkZeQMyReBm1nZlSRoPnUjLr2ZR36TiMjpcGnQfxymieUe7w==", + "type": "package", + "path": "runtime.osx-arm64.runtime.native.system.io.ports/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.osx-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "runtime.osx-arm64.runtime.native.system.io.ports.nuspec", + "runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib", + "useSharedDesignerContext.txt" + ] + }, + "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": { + "sha512": "/As+zPY49+dSUXkh+fTUbyPhqrdGN//evLxo4Vue88pfh1BHZgF7q4kMblTkxYvwR6Vi03zSYxysSFktO8/SDQ==", + "type": "package", + "path": "runtime.osx-x64.runtime.native.system.io.ports/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.osx-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "runtime.osx-x64.runtime.native.system.io.ports.nuspec", + "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib", + "useSharedDesignerContext.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" + ] + }, + "runtime.win.System.Diagnostics.Debug/4.3.0": { + "sha512": "hHHP0WCStene2jjeYcuDkETozUYF/3sHVRHAEOgS3L15hlip24ssqCTnJC28Z03Wpo078oMcJd0H4egD2aJI8g==", + "type": "package", + "path": "runtime.win.system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.win.system.diagnostics.debug.4.3.0.nupkg.sha512", + "runtime.win.system.diagnostics.debug.nuspec", + "runtimes/aot/lib/netcore50/System.Diagnostics.Debug.dll", + "runtimes/win/lib/net45/_._", + "runtimes/win/lib/netcore50/System.Diagnostics.Debug.dll", + "runtimes/win/lib/netstandard1.3/System.Diagnostics.Debug.dll", + "runtimes/win/lib/win8/_._", + "runtimes/win/lib/wp80/_._", + "runtimes/win/lib/wpa81/_._" + ] + }, + "runtime.win.System.Runtime.Extensions/4.3.0": { + "sha512": "RkgHVhUPvzZxuUubiZe8yr/6CypRVXj0VBzaR8hsqQ8f+rUo7e4PWrHTLOCjd8fBMGWCrY//fi7Ku3qXD7oHRw==", + "type": "package", + "path": "runtime.win.system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "runtime.win.system.runtime.extensions.4.3.0.nupkg.sha512", + "runtime.win.system.runtime.extensions.nuspec", + "runtimes/aot/lib/netcore50/System.Runtime.Extensions.dll", + "runtimes/win/lib/net/_._", + "runtimes/win/lib/netcore50/System.Runtime.Extensions.dll", + "runtimes/win/lib/netstandard1.5/System.Runtime.Extensions.dll" + ] + }, + "System.CodeDom/6.0.0": { + "sha512": "CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "type": "package", + "path": "system.codedom/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.CodeDom.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.CodeDom.dll", + "lib/net461/System.CodeDom.xml", + "lib/net6.0/System.CodeDom.dll", + "lib/net6.0/System.CodeDom.xml", + "lib/netstandard2.0/System.CodeDom.dll", + "lib/netstandard2.0/System.CodeDom.xml", + "system.codedom.6.0.0.nupkg.sha512", + "system.codedom.nuspec", + "useSharedDesignerContext.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/5.0.0": { + "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", + "type": "package", + "path": "system.collections.immutable/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Collections.Immutable.dll", + "lib/net461/System.Collections.Immutable.xml", + "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.5.0.0.nupkg.sha512", + "system.collections.immutable.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ComponentModel.Composition/6.0.0": { + "sha512": "60Qv+F7oxomOjJeTDA5Z4iCyFbQ0B/2Mi5HT+13pxxq0lVnu2ipbWMzFB+RWKr3wWKA8BSncXr9PH/fECwMX5Q==", + "type": "package", + "path": "system.componentmodel.composition/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.ComponentModel.Composition.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.ComponentModel.Composition.dll", + "lib/net6.0/System.ComponentModel.Composition.xml", + "lib/netcoreapp3.1/System.ComponentModel.Composition.dll", + "lib/netcoreapp3.1/System.ComponentModel.Composition.xml", + "lib/netstandard2.0/System.ComponentModel.Composition.dll", + "lib/netstandard2.0/System.ComponentModel.Composition.xml", + "system.componentmodel.composition.6.0.0.nupkg.sha512", + "system.componentmodel.composition.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.ComponentModel.Composition.Registration/6.0.0": { + "sha512": "+i3RLlOgTsf15VeADBPpzPyRiXq71aLSuzdHeNtmq9f6BwpF3OWhB76p0WDUNCa3Z+SLD4dJbBM9yAep7kQCGA==", + "type": "package", + "path": "system.componentmodel.composition.registration/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.ComponentModel.Composition.Registration.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.ComponentModel.Composition.Registration.dll", + "lib/net6.0/System.ComponentModel.Composition.Registration.xml", + "lib/netstandard2.1/System.ComponentModel.Composition.Registration.dll", + "lib/netstandard2.1/System.ComponentModel.Composition.Registration.xml", + "system.componentmodel.composition.registration.6.0.0.nupkg.sha512", + "system.componentmodel.composition.registration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Configuration.ConfigurationManager/6.0.0": { + "sha512": "7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", + "type": "package", + "path": "system.configuration.configurationmanager/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/net461/System.Configuration.ConfigurationManager.xml", + "lib/net6.0/System.Configuration.ConfigurationManager.dll", + "lib/net6.0/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll", + "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.6.0.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Data.Odbc/6.0.0": { + "sha512": "pnZjwe0Qwr1Rnp7NExd5zz4YwXJrYuAbWNKjEQpTzCEg6f/L5DYJS7w3hG3vgSj1t/r79UL390YzXIklf1VuQQ==", + "type": "package", + "path": "system.data.odbc/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Data.Odbc.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Data.Odbc.dll", + "lib/net461/System.Data.Odbc.xml", + "lib/net6.0/System.Data.Odbc.dll", + "lib/net6.0/System.Data.Odbc.xml", + "lib/netcoreapp3.1/System.Data.Odbc.dll", + "lib/netcoreapp3.1/System.Data.Odbc.xml", + "lib/netstandard2.0/System.Data.Odbc.dll", + "lib/netstandard2.0/System.Data.Odbc.xml", + "runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll", + "runtimes/freebsd/lib/net6.0/System.Data.Odbc.xml", + "runtimes/freebsd/lib/netcoreapp3.1/System.Data.Odbc.dll", + "runtimes/freebsd/lib/netcoreapp3.1/System.Data.Odbc.xml", + "runtimes/illumos/lib/net6.0/System.Data.Odbc.dll", + "runtimes/illumos/lib/net6.0/System.Data.Odbc.xml", + "runtimes/ios/lib/net6.0/System.Data.Odbc.dll", + "runtimes/ios/lib/net6.0/System.Data.Odbc.xml", + "runtimes/linux/lib/net6.0/System.Data.Odbc.dll", + "runtimes/linux/lib/net6.0/System.Data.Odbc.xml", + "runtimes/linux/lib/netcoreapp3.1/System.Data.Odbc.dll", + "runtimes/linux/lib/netcoreapp3.1/System.Data.Odbc.xml", + "runtimes/osx/lib/net6.0/System.Data.Odbc.dll", + "runtimes/osx/lib/net6.0/System.Data.Odbc.xml", + "runtimes/osx/lib/netcoreapp3.1/System.Data.Odbc.dll", + "runtimes/osx/lib/netcoreapp3.1/System.Data.Odbc.xml", + "runtimes/solaris/lib/net6.0/System.Data.Odbc.dll", + "runtimes/solaris/lib/net6.0/System.Data.Odbc.xml", + "runtimes/tvos/lib/net6.0/System.Data.Odbc.dll", + "runtimes/tvos/lib/net6.0/System.Data.Odbc.xml", + "runtimes/win/lib/net461/System.Data.Odbc.dll", + "runtimes/win/lib/net461/System.Data.Odbc.xml", + "runtimes/win/lib/net6.0/System.Data.Odbc.dll", + "runtimes/win/lib/net6.0/System.Data.Odbc.xml", + "runtimes/win/lib/netcoreapp3.1/System.Data.Odbc.dll", + "runtimes/win/lib/netcoreapp3.1/System.Data.Odbc.xml", + "system.data.odbc.6.0.0.nupkg.sha512", + "system.data.odbc.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Data.OleDb/6.0.0": { + "sha512": "LQ8PjTIF1LtrrlGiyiTVjAkQtTWKm9GSNnygIlWjhN9y88s7xhy6DUNDDkmQQ9f6ex7mA4k0Tl97lz/CklaiLg==", + "type": "package", + "path": "system.data.oledb/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Data.OleDb.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Data.OleDb.dll", + "lib/net461/System.Data.OleDb.xml", + "lib/net6.0/System.Data.OleDb.dll", + "lib/net6.0/System.Data.OleDb.xml", + "lib/netstandard2.0/System.Data.OleDb.dll", + "lib/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/net6.0/System.Data.OleDb.dll", + "runtimes/win/lib/net6.0/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.6.0.0.nupkg.sha512", + "system.data.oledb.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Data.SqlClient/4.8.3": { + "sha512": "yERfVLXAY0QbylAgaGLByYN0hFxX28aeEQ0hUgJO+Ntn1AfmWl5HHUoYJA0Yl9HhIUUJHVaS/Sw/RLZr5aaC+A==", + "type": "package", + "path": "system.data.sqlclient/4.8.3", + "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.3.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/5.0.0": { + "sha512": "tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "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/net5.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net5.0/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.5.0.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.EventLog/6.0.0": { + "sha512": "lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", + "type": "package", + "path": "system.diagnostics.eventlog/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Diagnostics.EventLog.dll", + "lib/net461/System.Diagnostics.EventLog.xml", + "lib/net6.0/System.Diagnostics.EventLog.dll", + "lib/net6.0/System.Diagnostics.EventLog.xml", + "lib/netcoreapp3.1/System.Diagnostics.EventLog.dll", + "lib/netcoreapp3.1/System.Diagnostics.EventLog.xml", + "lib/netstandard2.0/System.Diagnostics.EventLog.dll", + "lib/netstandard2.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.xml", + "system.diagnostics.eventlog.6.0.0.nupkg.sha512", + "system.diagnostics.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.PerformanceCounter/6.0.0": { + "sha512": "gbeE5tNp/oB7O8kTTLh3wPPJCxpNOphXPTWVs1BsYuFOYapFijWuh0LYw1qnDo4gwDUYPXOmpTIhvtxisGsYOQ==", + "type": "package", + "path": "system.diagnostics.performancecounter/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Diagnostics.PerformanceCounter.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Diagnostics.PerformanceCounter.dll", + "lib/net461/System.Diagnostics.PerformanceCounter.xml", + "lib/net6.0/System.Diagnostics.PerformanceCounter.dll", + "lib/net6.0/System.Diagnostics.PerformanceCounter.xml", + "lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.dll", + "lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.xml", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml", + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.xml", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.dll", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.xml", + "system.diagnostics.performancecounter.6.0.0.nupkg.sha512", + "system.diagnostics.performancecounter.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.DirectoryServices/6.0.0": { + "sha512": "kp/Op0nxDVGlElDKh8TsXO0GKXftQgAB6sJk0wUetZK1Rr0Pbd86Tn7AllLLlROFZa4BTl/LVHakljtGELFzCg==", + "type": "package", + "path": "system.directoryservices/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.DirectoryServices.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.DirectoryServices.dll", + "lib/net6.0/System.DirectoryServices.xml", + "lib/netcoreapp3.1/System.DirectoryServices.dll", + "lib/netcoreapp3.1/System.DirectoryServices.xml", + "lib/netstandard2.0/System.DirectoryServices.dll", + "lib/netstandard2.0/System.DirectoryServices.xml", + "runtimes/win/lib/net6.0/System.DirectoryServices.dll", + "runtimes/win/lib/net6.0/System.DirectoryServices.xml", + "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.dll", + "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.xml", + "system.directoryservices.6.0.0.nupkg.sha512", + "system.directoryservices.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.DirectoryServices.AccountManagement/6.0.0": { + "sha512": "2iKkY6VC4WX6H13N8WhH2SRUfWCwg2KZR5w9JIS9cw9N8cZhT7VXxHX0L6OX6Po419aSu2LWrJE9tu6b+cUnPA==", + "type": "package", + "path": "system.directoryservices.accountmanagement/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.DirectoryServices.AccountManagement.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.DirectoryServices.AccountManagement.dll", + "lib/net6.0/System.DirectoryServices.AccountManagement.xml", + "lib/netcoreapp3.1/System.DirectoryServices.AccountManagement.dll", + "lib/netcoreapp3.1/System.DirectoryServices.AccountManagement.xml", + "lib/netstandard2.0/System.DirectoryServices.AccountManagement.dll", + "lib/netstandard2.0/System.DirectoryServices.AccountManagement.xml", + "runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll", + "runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.xml", + "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.AccountManagement.dll", + "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.AccountManagement.xml", + "system.directoryservices.accountmanagement.6.0.0.nupkg.sha512", + "system.directoryservices.accountmanagement.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.DirectoryServices.Protocols/6.0.0": { + "sha512": "++WKU7HQPo/FJdhywWw+q2lLjcVAGVw5XLH9kRCV+4DvkhVAcHCksh0ezIqwNROmaU9LMJN0d/LAdeWXu3pi6Q==", + "type": "package", + "path": "system.directoryservices.protocols/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.DirectoryServices.Protocols.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.DirectoryServices.Protocols.dll", + "lib/net6.0/System.DirectoryServices.Protocols.xml", + "lib/netcoreapp3.1/System.DirectoryServices.Protocols.dll", + "lib/netcoreapp3.1/System.DirectoryServices.Protocols.xml", + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll", + "lib/netstandard2.0/System.DirectoryServices.Protocols.xml", + "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll", + "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.xml", + "runtimes/linux/lib/netcoreapp3.1/System.DirectoryServices.Protocols.dll", + "runtimes/linux/lib/netcoreapp3.1/System.DirectoryServices.Protocols.xml", + "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll", + "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.xml", + "runtimes/osx/lib/netcoreapp3.1/System.DirectoryServices.Protocols.dll", + "runtimes/osx/lib/netcoreapp3.1/System.DirectoryServices.Protocols.xml", + "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll", + "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.xml", + "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.Protocols.dll", + "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.Protocols.xml", + "system.directoryservices.protocols.6.0.0.nupkg.sha512", + "system.directoryservices.protocols.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Drawing.Common/6.0.0": { + "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "type": "package", + "path": "system.drawing.common/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/net461/System.Drawing.Common.xml", + "lib/net6.0/System.Drawing.Common.dll", + "lib/net6.0/System.Drawing.Common.xml", + "lib/netcoreapp3.1/System.Drawing.Common.dll", + "lib/netcoreapp3.1/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll", + "runtimes/unix/lib/net6.0/System.Drawing.Common.xml", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml", + "runtimes/win/lib/net6.0/System.Drawing.Common.dll", + "runtimes/win/lib/net6.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml", + "system.drawing.common.6.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.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/6.0.0": { + "sha512": "T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA==", + "type": "package", + "path": "system.formats.asn1/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Formats.Asn1.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Formats.Asn1.dll", + "lib/net461/System.Formats.Asn1.xml", + "lib/net6.0/System.Formats.Asn1.dll", + "lib/net6.0/System.Formats.Asn1.xml", + "lib/netstandard2.0/System.Formats.Asn1.dll", + "lib/netstandard2.0/System.Formats.Asn1.xml", + "system.formats.asn1.6.0.0.nupkg.sha512", + "system.formats.asn1.nuspec", + "useSharedDesignerContext.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.Packaging/6.0.0": { + "sha512": "C7OkTRIjqIjAKu6ef/fuj8ynCZTPcTYZnvHaq48bniACgXXJogmEoIc56YCDNTc14xhsbLmgpS3KP+evbsUa2g==", + "type": "package", + "path": "system.io.packaging/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.IO.Packaging.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.IO.Packaging.dll", + "lib/net461/System.IO.Packaging.xml", + "lib/net6.0/System.IO.Packaging.dll", + "lib/net6.0/System.IO.Packaging.xml", + "lib/netstandard2.0/System.IO.Packaging.dll", + "lib/netstandard2.0/System.IO.Packaging.xml", + "system.io.packaging.6.0.0.nupkg.sha512", + "system.io.packaging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.IO.Ports/6.0.0": { + "sha512": "dRyGI7fUESar5ZLIpiBOaaNLW7YyOBGftjj5Of+xcduC/Rjl7RjhEnWDvvNBmHuF3d0tdXoqdVI/yrVA8f00XA==", + "type": "package", + "path": "system.io.ports/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.IO.Ports.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.IO.Ports.dll", + "lib/net461/System.IO.Ports.xml", + "lib/net6.0/System.IO.Ports.dll", + "lib/net6.0/System.IO.Ports.xml", + "lib/netstandard2.0/System.IO.Ports.dll", + "lib/netstandard2.0/System.IO.Ports.xml", + "runtimes/unix/lib/net6.0/System.IO.Ports.dll", + "runtimes/unix/lib/net6.0/System.IO.Ports.xml", + "runtimes/unix/lib/netstandard2.0/System.IO.Ports.dll", + "runtimes/unix/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/net6.0/System.IO.Ports.dll", + "runtimes/win/lib/net6.0/System.IO.Ports.xml", + "runtimes/win/lib/netstandard2.0/System.IO.Ports.dll", + "runtimes/win/lib/netstandard2.0/System.IO.Ports.xml", + "system.io.ports.6.0.0.nupkg.sha512", + "system.io.ports.nuspec", + "useSharedDesignerContext.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/6.0.0": { + "sha512": "sHsESYMmPDhQuOC66h6AEOs/XowzKsbT9srMbX71TCXP58hkpn1BqBjdmKj1+DCA/WlBETX1K5WjQHwmV0Txrg==", + "type": "package", + "path": "system.management/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Management.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.Management.dll", + "lib/net6.0/System.Management.xml", + "lib/netcoreapp3.1/System.Management.dll", + "lib/netcoreapp3.1/System.Management.xml", + "lib/netstandard2.0/System.Management.dll", + "lib/netstandard2.0/System.Management.xml", + "runtimes/win/lib/net6.0/System.Management.dll", + "runtimes/win/lib/net6.0/System.Management.xml", + "runtimes/win/lib/netcoreapp3.1/System.Management.dll", + "runtimes/win/lib/netcoreapp3.1/System.Management.xml", + "system.management.6.0.0.nupkg.sha512", + "system.management.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Management.Automation/7.2.1": { + "sha512": "YlTE+q14vQ1YU//A5+/Jwl5+L5r6uOVIWuB4D/T9r80AaCeUAZMMvTKjgvIr9lwkovwQflVL+1JfBAi9f0q0KA==", + "type": "package", + "path": "system.management.automation/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/unix/lib/net6.0/System.Management.Automation.dll", + "runtimes/win/lib/net6.0/System.Management.Automation.dll", + "system.management.automation.7.2.1.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/6.0.0": { + "sha512": "jubNN9jH4NzVrvEf4fGwESLBsfH8whWNbHMhgM6IwA8UCt6+/M19bbOHc21JhigvC2HQKCl8HKGZMcBtIpzqIg==", + "type": "package", + "path": "system.net.http.winhttphandler/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Net.Http.WinHttpHandler.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Net.Http.WinHttpHandler.dll", + "lib/net461/System.Net.Http.WinHttpHandler.xml", + "lib/net6.0/System.Net.Http.WinHttpHandler.dll", + "lib/net6.0/System.Net.Http.WinHttpHandler.xml", + "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll", + "lib/netstandard2.0/System.Net.Http.WinHttpHandler.xml", + "lib/netstandard2.1/System.Net.Http.WinHttpHandler.dll", + "lib/netstandard2.1/System.Net.Http.WinHttpHandler.xml", + "runtimes/win/lib/net461/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/net461/System.Net.Http.WinHttpHandler.xml", + "runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.xml", + "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.xml", + "runtimes/win/lib/netstandard2.1/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/netstandard2.1/System.Net.Http.WinHttpHandler.xml", + "system.net.http.winhttphandler.6.0.0.nupkg.sha512", + "system.net.http.winhttphandler.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Numerics.Vectors/4.5.0": { + "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "type": "package", + "path": "system.numerics.vectors/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Numerics.Vectors.dll", + "lib/net46/System.Numerics.Vectors.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.Numerics.Vectors.dll", + "lib/netstandard1.0/System.Numerics.Vectors.xml", + "lib/netstandard2.0/System.Numerics.Vectors.dll", + "lib/netstandard2.0/System.Numerics.Vectors.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.Numerics.Vectors.dll", + "ref/net45/System.Numerics.Vectors.xml", + "ref/net46/System.Numerics.Vectors.dll", + "ref/net46/System.Numerics.Vectors.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/System.Numerics.Vectors.dll", + "ref/netstandard1.0/System.Numerics.Vectors.xml", + "ref/netstandard2.0/System.Numerics.Vectors.dll", + "ref/netstandard2.0/System.Numerics.Vectors.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.numerics.vectors.4.5.0.nupkg.sha512", + "system.numerics.vectors.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.9.0": { + "sha512": "d3RjkrtpjUQ63PzFmm/SZ4aOXeJNP+8YW5QeP0lCJy8iX4xlHdlNLWTF9sRn9SmrFTK757kQXT9Op/R4l858uw==", + "type": "package", + "path": "system.private.servicemodel/4.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard2.0/System.Private.ServiceModel.dll", + "lib/netstandard2.0/System.Private.ServiceModel.pdb", + "lib/netstandard2.0/cs/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/de/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/es/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/fr/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/it/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/ja/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/ko/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/pl/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/pt-BR/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/ru/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/tr/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/zh-Hans/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/zh-Hant/System.Private.ServiceModel.resources.dll", + "ref/netstandard2.0/_._", + "system.private.servicemodel.4.9.0.nupkg.sha512", + "system.private.servicemodel.nuspec" + ] + }, + "System.Private.Uri/4.3.0": { + "sha512": "I4SwANiUGho1esj4V4oSlPllXjzCZDE+5XXso2P03LW2vOda2Enzh8DWOxwN6hnrJyp314c7KuVu31QYhRzOGg==", + "type": "package", + "path": "system.private.uri/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "ref/netstandard/_._", + "system.private.uri.4.3.0.nupkg.sha512", + "system.private.uri.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/6.0.0": { + "sha512": "Vi+Gb41oyOYie7uLSsjRmfRg3bryUg5DssJvj3gDUl0D8z6ipSm6/yi/XNx2rcS5iVMvHcwRUHjcx7ixv0K3/w==", + "type": "package", + "path": "system.reflection.context/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Reflection.Context.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.Reflection.Context.dll", + "lib/net6.0/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", + "system.reflection.context.6.0.0.nupkg.sha512", + "system.reflection.context.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Reflection.DispatchProxy/4.7.1": { + "sha512": "C1sMLwIG6ILQ2bmOT4gh62V6oJlyF4BlHcVMrOoor49p0Ji2tA8QAoqyMcIhAdH6OHKJ8m7BU+r4LK2CUEOKqw==", + "type": "package", + "path": "system.reflection.dispatchproxy/4.7.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Reflection.DispatchProxy.dll", + "lib/net461/System.Reflection.DispatchProxy.xml", + "lib/netcoreapp2.0/System.Reflection.DispatchProxy.dll", + "lib/netcoreapp2.0/System.Reflection.DispatchProxy.xml", + "lib/netstandard1.3/System.Reflection.DispatchProxy.dll", + "lib/netstandard2.0/System.Reflection.DispatchProxy.dll", + "lib/netstandard2.0/System.Reflection.DispatchProxy.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Reflection.DispatchProxy.dll", + "ref/net461/System.Reflection.DispatchProxy.xml", + "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/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.7.1.nupkg.sha512", + "system.reflection.dispatchproxy.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Emit/4.3.0": { + "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "type": "package", + "path": "system.reflection.emit/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "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/xamarinmac20/_._", + "system.reflection.emit.4.3.0.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "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/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "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/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "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/5.0.0": { + "sha512": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==", + "type": "package", + "path": "system.reflection.metadata/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Reflection.Metadata.dll", + "lib/net461/System.Reflection.Metadata.xml", + "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.5.0.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/6.0.0": { + "sha512": "E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==", + "type": "package", + "path": "system.runtime.caching/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Runtime.Caching.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/_._", + "lib/net6.0/System.Runtime.Caching.dll", + "lib/net6.0/System.Runtime.Caching.xml", + "lib/netcoreapp3.1/System.Runtime.Caching.dll", + "lib/netcoreapp3.1/System.Runtime.Caching.xml", + "lib/netstandard2.0/System.Runtime.Caching.dll", + "lib/netstandard2.0/System.Runtime.Caching.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net461/_._", + "runtimes/win/lib/net6.0/System.Runtime.Caching.dll", + "runtimes/win/lib/net6.0/System.Runtime.Caching.xml", + "runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.dll", + "runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.xml", + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll", + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml", + "system.runtime.caching.6.0.0.nupkg.sha512", + "system.runtime.caching.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.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/6.0.0": { + "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "type": "package", + "path": "system.security.accesscontrol/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/net6.0/System.Security.AccessControl.dll", + "lib/net6.0/System.Security.AccessControl.xml", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll", + "runtimes/win/lib/net6.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml", + "system.security.accesscontrol.6.0.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.Pkcs/6.0.0": { + "sha512": "elM3x+xSRhzQysiqo85SbidJJ2YbZlnvmh+53TuSZHsD7dNuuEWser+9EFtY+rYupBwkq2avc6ZCO3/6qACgmg==", + "type": "package", + "path": "system.security.cryptography.pkcs/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Pkcs.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.Cryptography.Pkcs.dll", + "lib/net461/System.Security.Cryptography.Pkcs.xml", + "lib/net6.0/System.Security.Cryptography.Pkcs.dll", + "lib/net6.0/System.Security.Cryptography.Pkcs.xml", + "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll", + "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml", + "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", + "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml", + "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.6.0.0.nupkg.sha512", + "system.security.cryptography.pkcs.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "type": "package", + "path": "system.security.cryptography.protecteddata/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.xml", + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.Xml/6.0.0": { + "sha512": "puJ4UCh9JVRwOCyCIcq71JY6Axr8Sp8E2GjTIU1Fj8hm4+oX6NEoyGFGa/+pBG8SrVxbQPSj7hvtaREyTHHsmw==", + "type": "package", + "path": "system.security.cryptography.xml/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Xml.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.Cryptography.Xml.dll", + "lib/net461/System.Security.Cryptography.Xml.xml", + "lib/net6.0/System.Security.Cryptography.Xml.dll", + "lib/net6.0/System.Security.Cryptography.Xml.xml", + "lib/netstandard2.0/System.Security.Cryptography.Xml.dll", + "lib/netstandard2.0/System.Security.Cryptography.Xml.xml", + "runtimes/win/lib/net461/System.Security.Cryptography.Xml.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Xml.xml", + "system.security.cryptography.xml.6.0.0.nupkg.sha512", + "system.security.cryptography.xml.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Permissions/6.0.0": { + "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "type": "package", + "path": "system.security.permissions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets", + "buildTransitive/netcoreapp3.1/_._", + "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/net6.0/System.Security.Permissions.dll", + "lib/net6.0/System.Security.Permissions.xml", + "lib/netcoreapp3.1/System.Security.Permissions.dll", + "lib/netcoreapp3.1/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "runtimes/win/lib/net461/System.Security.Permissions.dll", + "runtimes/win/lib/net461/System.Security.Permissions.xml", + "system.security.permissions.6.0.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.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.9.0": { + "sha512": "Yb8MFiJxBBtm2JnfS/5SxYzm2HqkEmHu5xeaVIHXy83sNpty9wc30JifH2xgda821D6nr1UctbwbdZqN4LBUKQ==", + "type": "package", + "path": "system.servicemodel.duplex/4.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "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/net6.0/System.ServiceModel.Duplex.dll", + "lib/net6.0/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/net6.0/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.9.0.nupkg.sha512", + "system.servicemodel.duplex.nuspec" + ] + }, + "System.ServiceModel.Http/4.9.0": { + "sha512": "Z+s3RkLNzJ31fDXAjqXdXp67FqsNG4V3Md3r7FOrzMkHmg61gY8faEfTFPBLxU9tax1HPWt6IHVAquXBKySJaw==", + "type": "package", + "path": "system.servicemodel.http/4.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "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/net6.0/System.ServiceModel.Http.dll", + "lib/net6.0/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/net6.0/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.9.0.nupkg.sha512", + "system.servicemodel.http.nuspec" + ] + }, + "System.ServiceModel.NetTcp/4.9.0": { + "sha512": "nXgnnkrZERUF/KwmoLwZPkc7fqgiq94DXkmUZBvDNh/LdZquDvjy2NbhJLElpApOa5x8zEoQoBZyJ2PqNC39qg==", + "type": "package", + "path": "system.servicemodel.nettcp/4.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "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/net6.0/System.ServiceModel.NetTcp.dll", + "lib/net6.0/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/net6.0/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.9.0.nupkg.sha512", + "system.servicemodel.nettcp.nuspec" + ] + }, + "System.ServiceModel.Primitives/4.9.0": { + "sha512": "LTFPVdS8Nf76xg/wRZkDa+2Q+GnjTOmwkTlwuoetwX37mAfYnGkf7p8ydhpDwVmomNljpUOhUUGxfjQyd5YcOg==", + "type": "package", + "path": "system.servicemodel.primitives/4.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "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/net6.0/System.ServiceModel.Primitives.dll", + "lib/net6.0/System.ServiceModel.Primitives.pdb", + "lib/net6.0/System.ServiceModel.dll", + "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/net6.0/System.ServiceModel.Primitives.dll", + "ref/net6.0/System.ServiceModel.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.9.0.nupkg.sha512", + "system.servicemodel.primitives.nuspec" + ] + }, + "System.ServiceModel.Security/4.9.0": { + "sha512": "iurpbSmPgotHps94VQ6acvL6hU2gjiuBmQI7PwLLN76jsbSpUcahT0PglccKIAwoMujATk/LWtAapBHpwCFn2g==", + "type": "package", + "path": "system.servicemodel.security/4.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "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/net6.0/System.ServiceModel.Security.dll", + "lib/net6.0/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/net6.0/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.9.0.nupkg.sha512", + "system.servicemodel.security.nuspec" + ] + }, + "System.ServiceModel.Syndication/6.0.0": { + "sha512": "cp1mMNG87iJtE0oHXFtfWT6cfski2JNo5iU0siTPi/uN2k1CIJI6FE4jr4v3got2dzt7wBq17fSy44btun9GiA==", + "type": "package", + "path": "system.servicemodel.syndication/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.ServiceModel.Syndication.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.ServiceModel.Syndication.dll", + "lib/net461/System.ServiceModel.Syndication.xml", + "lib/net6.0/System.ServiceModel.Syndication.dll", + "lib/net6.0/System.ServiceModel.Syndication.xml", + "lib/netcoreapp3.1/System.ServiceModel.Syndication.dll", + "lib/netcoreapp3.1/System.ServiceModel.Syndication.xml", + "lib/netstandard2.0/System.ServiceModel.Syndication.dll", + "lib/netstandard2.0/System.ServiceModel.Syndication.xml", + "system.servicemodel.syndication.6.0.0.nupkg.sha512", + "system.servicemodel.syndication.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.ServiceProcess.ServiceController/6.0.0": { + "sha512": "qMBvG8ZFbkXoe0Z5/D7FAAadfPkH2v7vSuh2xsLf3U6jNoejpIdeV18A0htiASsLK1CCAc/p59kaLXlt2yB1gw==", + "type": "package", + "path": "system.serviceprocess.servicecontroller/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.ServiceProcess.ServiceController.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.ServiceProcess.ServiceController.dll", + "lib/net461/System.ServiceProcess.ServiceController.xml", + "lib/net6.0/System.ServiceProcess.ServiceController.dll", + "lib/net6.0/System.ServiceProcess.ServiceController.xml", + "lib/netcoreapp3.1/System.ServiceProcess.ServiceController.dll", + "lib/netcoreapp3.1/System.ServiceProcess.ServiceController.xml", + "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll", + "lib/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/net6.0/System.ServiceProcess.ServiceController.dll", + "runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.xml", + "runtimes/win/lib/netcoreapp3.1/System.ServiceProcess.ServiceController.dll", + "runtimes/win/lib/netcoreapp3.1/System.ServiceProcess.ServiceController.xml", + "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.dll", + "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.xml", + "system.serviceprocess.servicecontroller.6.0.0.nupkg.sha512", + "system.serviceprocess.servicecontroller.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Speech/6.0.0": { + "sha512": "GQovERMrNP0Vbtgk8LzH4PlFS6lqHgsL9WkUmv8Kkxa0m0vNakitytpHZlfJ9WR7n9WKLXh68nn2kyL9mflnLg==", + "type": "package", + "path": "system.speech/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Speech.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.Speech.dll", + "lib/net6.0/System.Speech.xml", + "lib/netcoreapp3.1/System.Speech.dll", + "lib/netcoreapp3.1/System.Speech.xml", + "lib/netstandard2.0/System.Speech.dll", + "lib/netstandard2.0/System.Speech.xml", + "runtimes/win/lib/net6.0/System.Speech.dll", + "runtimes/win/lib/net6.0/System.Speech.xml", + "runtimes/win/lib/netcoreapp3.1/System.Speech.dll", + "runtimes/win/lib/netcoreapp3.1/System.Speech.xml", + "system.speech.6.0.0.nupkg.sha512", + "system.speech.nuspec", + "useSharedDesignerContext.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/6.0.0": { + "sha512": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", + "type": "package", + "path": "system.text.encoding.codepages/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.xml", + "lib/net6.0/System.Text.Encoding.CodePages.dll", + "lib/net6.0/System.Text.Encoding.CodePages.xml", + "lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll", + "lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "system.text.encoding.codepages.6.0.0.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Encodings.Web/6.0.0": { + "sha512": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "type": "package", + "path": "system.text.encodings.web/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Text.Encodings.Web.dll", + "lib/net461/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/netcoreapp3.1/System.Text.Encodings.Web.dll", + "lib/netcoreapp3.1/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.6.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.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/6.0.0": { + "sha512": "2258mqWesMch/xCpcnjJBgJP33yhpZLGLbEOm01qwq0efG4b+NG8c9sxYOWNxmDQ82swXrnQRl1Yp2wC1NrfZA==", + "type": "package", + "path": "system.threading.accesscontrol/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Threading.AccessControl.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Threading.AccessControl.dll", + "lib/net461/System.Threading.AccessControl.xml", + "lib/net6.0/System.Threading.AccessControl.dll", + "lib/net6.0/System.Threading.AccessControl.xml", + "lib/netstandard2.0/System.Threading.AccessControl.dll", + "lib/netstandard2.0/System.Threading.AccessControl.xml", + "runtimes/win/lib/net461/System.Threading.AccessControl.dll", + "runtimes/win/lib/net461/System.Threading.AccessControl.xml", + "runtimes/win/lib/net6.0/System.Threading.AccessControl.dll", + "runtimes/win/lib/net6.0/System.Threading.AccessControl.xml", + "runtimes/win/lib/netstandard2.0/System.Threading.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.Threading.AccessControl.xml", + "system.threading.accesscontrol.6.0.0.nupkg.sha512", + "system.threading.accesscontrol.nuspec", + "useSharedDesignerContext.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.4": { + "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Threading.Tasks.Extensions.dll", + "lib/net461/System.Threading.Tasks.Extensions.xml", + "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.4.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Web.Services.Description/4.9.0": { + "sha512": "d20B3upsWddwSG5xF3eQLs0cAV3tXDsBNqP4kh02ylfgZwqfpf4f/9KiZVIGIoxULt2cKqxWs+U4AdNAJ7L8cQ==", + "type": "package", + "path": "system.web.services.description/4.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Web.Services.Description.dll", + "lib/net461/System.Web.Services.Description.pdb", + "lib/netstandard2.0/System.Web.Services.Description.dll", + "lib/netstandard2.0/System.Web.Services.Description.pdb", + "lib/netstandard2.0/cs/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/de/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/es/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/fr/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/it/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/ja/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/ko/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/pl/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/pt-BR/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/ru/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/tr/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/zh-Hans/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/zh-Hant/System.Web.Services.Description.resources.dll", + "system.web.services.description.4.9.0.nupkg.sha512", + "system.web.services.description.nuspec" + ] + }, + "System.Windows.Extensions/6.0.0": { + "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "type": "package", + "path": "system.windows.extensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/System.Windows.Extensions.dll", + "lib/net6.0/System.Windows.Extensions.xml", + "lib/netcoreapp3.1/System.Windows.Extensions.dll", + "lib/netcoreapp3.1/System.Windows.Extensions.xml", + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net6.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml", + "system.windows.extensions.6.0.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt" + ] + } + }, + "projectFileDependencyGroups": { + "net7.0": [ + "Cake.Powershell >= 2.0.0", + "Newtonsoft.Json >= 13.0.2" + ] + }, + "packageFolders": { + "C:\\Users\\35337\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\AutoPull\\AutoPull.csproj", + "projectName": "AutoPull", + "projectPath": "D:\\AutoPull\\AutoPull.csproj", + "packagesPath": "C:\\Users\\35337\\.nuget\\packages\\", + "outputPath": "D:\\AutoPull\\obj\\publish\\win-x86\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\35337\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "Cake.Powershell": { + "target": "Package", + "version": "[2.0.0, )" + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[13.0.2, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.102\\RuntimeIdentifierGraph.json" + } + }, + "runtimes": { + "win-x86": { + "#import": [] + } + } + } +} \ No newline at end of file diff --git a/obj/publish/win-x86/project.nuget.cache b/obj/publish/win-x86/project.nuget.cache new file mode 100644 index 0000000..ff8da3e --- /dev/null +++ b/obj/publish/win-x86/project.nuget.cache @@ -0,0 +1,140 @@ +{ + "version": 2, + "dgSpecHash": "WeQ+3G6SYAIxF3MILeRNe5frGmXsLoeONsn1lyuk/zaJ3XsXs8Ozc+N7xCmgpMA8/7Fp9iCa0EALQqo9M+mE0w==", + "success": true, + "projectFilePath": "D:\\AutoPull\\AutoPull.csproj", + "expectedPackageFiles": [ + "C:\\Users\\35337\\.nuget\\packages\\cake.powershell\\2.0.0\\cake.powershell.2.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\markdig.signed\\0.22.0\\markdig.signed.0.22.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\microsoft.applicationinsights\\2.18.0\\microsoft.applicationinsights.2.18.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\5.0.0\\microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.2\\microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\microsoft.codeanalysis.common\\4.0.1\\microsoft.codeanalysis.common.4.0.1.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.0.1\\microsoft.codeanalysis.csharp.4.0.1.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\microsoft.csharp\\4.3.0\\microsoft.csharp.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\microsoft.extensions.objectpool\\5.0.10\\microsoft.extensions.objectpool.5.0.10.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\microsoft.management.infrastructure\\2.0.0\\microsoft.management.infrastructure.2.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\microsoft.management.infrastructure.cimcmdlets\\7.2.1\\microsoft.management.infrastructure.cimcmdlets.7.2.1.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\microsoft.management.infrastructure.runtime.unix\\2.0.0\\microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\microsoft.management.infrastructure.runtime.win\\2.0.0\\microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\microsoft.netcore.windows.apisets\\1.0.1\\microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\microsoft.powershell.commands.diagnostics\\7.2.1\\microsoft.powershell.commands.diagnostics.7.2.1.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\microsoft.powershell.commands.management\\7.2.1\\microsoft.powershell.commands.management.7.2.1.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\microsoft.powershell.commands.utility\\7.2.1\\microsoft.powershell.commands.utility.7.2.1.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\microsoft.powershell.consolehost\\7.2.1\\microsoft.powershell.consolehost.7.2.1.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\microsoft.powershell.coreclr.eventing\\7.2.1\\microsoft.powershell.coreclr.eventing.7.2.1.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\microsoft.powershell.markdownrender\\7.2.0\\microsoft.powershell.markdownrender.7.2.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\microsoft.powershell.native\\7.2.0\\microsoft.powershell.native.7.2.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\microsoft.powershell.sdk\\7.2.1\\microsoft.powershell.sdk.7.2.1.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\microsoft.powershell.security\\7.2.1\\microsoft.powershell.security.7.2.1.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\microsoft.win32.registry.accesscontrol\\6.0.0\\microsoft.win32.registry.accesscontrol.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\microsoft.windows.compatibility\\6.0.0\\microsoft.windows.compatibility.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\microsoft.wsman.management\\7.2.1\\microsoft.wsman.management.7.2.1.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\microsoft.wsman.runtime\\7.2.1\\microsoft.wsman.runtime.7.2.1.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\namotion.reflection\\2.0.3\\namotion.reflection.2.0.3.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\newtonsoft.json\\13.0.2\\newtonsoft.json.13.0.2.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\njsonschema\\10.5.2\\njsonschema.10.5.2.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\runtime.any.system.collections\\4.3.0\\runtime.any.system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\runtime.any.system.globalization\\4.3.0\\runtime.any.system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\runtime.any.system.io\\4.3.0\\runtime.any.system.io.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\runtime.any.system.reflection\\4.3.0\\runtime.any.system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\runtime.any.system.reflection.extensions\\4.3.0\\runtime.any.system.reflection.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\runtime.any.system.reflection.primitives\\4.3.0\\runtime.any.system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\runtime.any.system.resources.resourcemanager\\4.3.0\\runtime.any.system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\runtime.any.system.runtime\\4.3.0\\runtime.any.system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\runtime.any.system.runtime.handles\\4.3.0\\runtime.any.system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\runtime.any.system.runtime.interopservices\\4.3.0\\runtime.any.system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\runtime.any.system.text.encoding\\4.3.0\\runtime.any.system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\runtime.any.system.threading.tasks\\4.3.0\\runtime.any.system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\runtime.linux-arm.runtime.native.system.io.ports\\6.0.0\\runtime.linux-arm.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\runtime.linux-arm64.runtime.native.system.io.ports\\6.0.0\\runtime.linux-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\runtime.linux-x64.runtime.native.system.io.ports\\6.0.0\\runtime.linux-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.7.0\\runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\runtime.native.system.io.ports\\6.0.0\\runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\runtime.osx-arm64.runtime.native.system.io.ports\\6.0.0\\runtime.osx-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\runtime.osx-x64.runtime.native.system.io.ports\\6.0.0\\runtime.osx-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.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\\35337\\.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\\35337\\.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\\35337\\.nuget\\packages\\runtime.win.system.diagnostics.debug\\4.3.0\\runtime.win.system.diagnostics.debug.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\runtime.win.system.runtime.extensions\\4.3.0\\runtime.win.system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.codedom\\6.0.0\\system.codedom.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.componentmodel.composition\\6.0.0\\system.componentmodel.composition.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.componentmodel.composition.registration\\6.0.0\\system.componentmodel.composition.registration.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.0\\system.configuration.configurationmanager.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.data.odbc\\6.0.0\\system.data.odbc.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.data.oledb\\6.0.0\\system.data.oledb.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.data.sqlclient\\4.8.3\\system.data.sqlclient.4.8.3.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.diagnostics.diagnosticsource\\5.0.0\\system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.diagnostics.eventlog\\6.0.0\\system.diagnostics.eventlog.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.diagnostics.performancecounter\\6.0.0\\system.diagnostics.performancecounter.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.directoryservices\\6.0.0\\system.directoryservices.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.directoryservices.accountmanagement\\6.0.0\\system.directoryservices.accountmanagement.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.directoryservices.protocols\\6.0.0\\system.directoryservices.protocols.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.formats.asn1\\6.0.0\\system.formats.asn1.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.io.packaging\\6.0.0\\system.io.packaging.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.io.ports\\6.0.0\\system.io.ports.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.management\\6.0.0\\system.management.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.management.automation\\7.2.1\\system.management.automation.7.2.1.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.net.http.winhttphandler\\6.0.0\\system.net.http.winhttphandler.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.private.servicemodel\\4.9.0\\system.private.servicemodel.4.9.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.private.uri\\4.3.0\\system.private.uri.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.reflection.context\\6.0.0\\system.reflection.context.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.reflection.dispatchproxy\\4.7.1\\system.reflection.dispatchproxy.4.7.1.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.reflection.metadata\\5.0.0\\system.reflection.metadata.5.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.runtime.caching\\6.0.0\\system.runtime.caching.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.security.cryptography.pkcs\\6.0.0\\system.security.cryptography.pkcs.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.security.cryptography.protecteddata\\6.0.0\\system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.security.cryptography.xml\\6.0.0\\system.security.cryptography.xml.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.servicemodel.duplex\\4.9.0\\system.servicemodel.duplex.4.9.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.servicemodel.http\\4.9.0\\system.servicemodel.http.4.9.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.servicemodel.nettcp\\4.9.0\\system.servicemodel.nettcp.4.9.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.servicemodel.primitives\\4.9.0\\system.servicemodel.primitives.4.9.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.servicemodel.security\\4.9.0\\system.servicemodel.security.4.9.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.servicemodel.syndication\\6.0.0\\system.servicemodel.syndication.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.serviceprocess.servicecontroller\\6.0.0\\system.serviceprocess.servicecontroller.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.speech\\6.0.0\\system.speech.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.text.encoding.codepages\\6.0.0\\system.text.encoding.codepages.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.text.encodings.web\\6.0.0\\system.text.encodings.web.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.threading.accesscontrol\\6.0.0\\system.threading.accesscontrol.6.0.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.web.services.description\\4.9.0\\system.web.services.description.4.9.0.nupkg.sha512", + "C:\\Users\\35337\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file