diff --git a/linguard/.idea/.idea.Linguard/.idea/.gitignore b/Linguard/.idea/.idea.Linguard/.idea/.gitignore similarity index 100% rename from linguard/.idea/.idea.Linguard/.idea/.gitignore rename to Linguard/.idea/.idea.Linguard/.idea/.gitignore diff --git a/linguard/.idea/.idea.Linguard/.idea/encodings.xml b/Linguard/.idea/.idea.Linguard/.idea/encodings.xml similarity index 100% rename from linguard/.idea/.idea.Linguard/.idea/encodings.xml rename to Linguard/.idea/.idea.Linguard/.idea/encodings.xml diff --git a/linguard/.idea/.idea.Linguard/.idea/indexLayout.xml b/Linguard/.idea/.idea.Linguard/.idea/indexLayout.xml similarity index 100% rename from linguard/.idea/.idea.Linguard/.idea/indexLayout.xml rename to Linguard/.idea/.idea.Linguard/.idea/indexLayout.xml diff --git a/linguard/.idea/.idea.Linguard/.idea/vcs.xml b/Linguard/.idea/.idea.Linguard/.idea/vcs.xml similarity index 100% rename from linguard/.idea/.idea.Linguard/.idea/vcs.xml rename to Linguard/.idea/.idea.Linguard/.idea/vcs.xml diff --git a/linguard/Auth/Auth.csproj b/Linguard/Auth/Auth.csproj similarity index 100% rename from linguard/Auth/Auth.csproj rename to Linguard/Auth/Auth.csproj diff --git a/linguard/Auth/Models/Credentials.cs b/Linguard/Auth/Models/Credentials.cs similarity index 100% rename from linguard/Auth/Models/Credentials.cs rename to Linguard/Auth/Models/Credentials.cs diff --git a/linguard/Auth/Models/ICredentials.cs b/Linguard/Auth/Models/ICredentials.cs similarity index 100% rename from linguard/Auth/Models/ICredentials.cs rename to Linguard/Auth/Models/ICredentials.cs diff --git a/linguard/Auth/Models/IToken.cs b/Linguard/Auth/Models/IToken.cs similarity index 100% rename from linguard/Auth/Models/IToken.cs rename to Linguard/Auth/Models/IToken.cs diff --git a/linguard/Auth/Models/Token.cs b/Linguard/Auth/Models/Token.cs similarity index 100% rename from linguard/Auth/Models/Token.cs rename to Linguard/Auth/Models/Token.cs diff --git a/linguard/Auth/Services/IAuthService.cs b/Linguard/Auth/Services/IAuthService.cs similarity index 100% rename from linguard/Auth/Services/IAuthService.cs rename to Linguard/Auth/Services/IAuthService.cs diff --git a/linguard/Cli.Test/AddPeerCommandShould.cs b/Linguard/Cli.Test/AddClientCommandShould.cs similarity index 86% rename from linguard/Cli.Test/AddPeerCommandShould.cs rename to Linguard/Cli.Test/AddClientCommandShould.cs index 801615b..764b213 100644 --- a/linguard/Cli.Test/AddPeerCommandShould.cs +++ b/Linguard/Cli.Test/AddClientCommandShould.cs @@ -13,12 +13,12 @@ namespace Cli.Test; -public class AddPeerCommandShould { +public class AddClientCommandShould { private static readonly Mock WireguardServiceMock = new(); [Fact] - public async Task CreateRandomPeer() { + public async Task CreateRandomClient() { var command = typeof(AddClientCommand); var commandName = command.GetAttribute().Name!; var app = Utils.BuildTestApp(command); @@ -34,7 +34,7 @@ public async Task CreateRandomPeer() { } [Fact] - public async Task CreatePeerWithName() { + public async Task CreateClientWithName() { var command = typeof(AddClientCommand); var commandName = command.GetAttribute().Name!; var app = Utils.BuildTestApp(command); @@ -52,7 +52,7 @@ public async Task CreatePeerWithName() { } [Fact] - public async Task CreatePeerWithEndpoint() { + public async Task CreateClientWithEndpoint() { var command = typeof(AddClientCommand); var commandName = command.GetAttribute().Name!; var app = Utils.BuildTestApp(command); @@ -70,7 +70,7 @@ public async Task CreatePeerWithEndpoint() { } [Fact] - public async Task CreatePeerWithIPs() { + public async Task CreateClientWithIPs() { var command = typeof(AddClientCommand); var commandName = command.GetAttribute().Name!; var app = Utils.BuildTestApp(command); @@ -86,13 +86,13 @@ public async Task CreatePeerWithIPs() { var errors = app.Error.GetString(); errors.Should().BeEmpty(); iface.Clients.Should().NotBeEmpty(); - var peer = iface.Clients.First(); - peer.IPv6Address!.ToString().Should().Be(ipv6); - peer.IPv4Address!.ToString().Should().Be(ipv4); + var client = iface.Clients.First(); + client.IPv6Address!.ToString().Should().Be(ipv6); + client.IPv4Address!.ToString().Should().Be(ipv4); } [Fact] - public async Task CreatePeerWithDns() { + public async Task CreateClientWithDns() { var command = typeof(AddClientCommand); var commandName = command.GetAttribute().Name!; var app = Utils.BuildTestApp(command); @@ -106,13 +106,13 @@ public async Task CreatePeerWithDns() { var errors = app.Error.GetString(); errors.Should().BeEmpty(); iface.Clients.Should().NotBeEmpty(); - var peer = iface.Clients.First(); - peer.PrimaryDns.ToString().Should().Be(dns); - peer.SecondaryDns.Should().NotBeNull(); + var client = iface.Clients.First(); + client.PrimaryDns.ToString().Should().Be(dns); + client.SecondaryDns.Should().NotBeNull(); } [Fact] - public async Task CreatePeerWithTwoDns() { + public async Task CreateClientWithTwoDns() { var command = typeof(AddClientCommand); var commandName = command.GetAttribute().Name!; var app = Utils.BuildTestApp(command); @@ -127,13 +127,13 @@ public async Task CreatePeerWithTwoDns() { var errors = app.Error.GetString(); errors.Should().BeEmpty(); iface.Clients.Should().NotBeEmpty(); - var peer = iface.Clients.First(); - peer.PrimaryDns.ToString().Should().Be(dns1); - peer.SecondaryDns!.ToString().Should().Be(dns2); + var client = iface.Clients.First(); + client.PrimaryDns.ToString().Should().Be(dns1); + client.SecondaryDns!.ToString().Should().Be(dns2); } [Fact] - public async Task CreatePeerWithAllowedIPs() { + public async Task CreateClientWithAllowedIPs() { var command = typeof(AddClientCommand); var commandName = command.GetAttribute().Name!; var app = Utils.BuildTestApp(command); diff --git a/linguard/Cli.Test/AddInterfaceCommandShould.cs b/Linguard/Cli.Test/AddInterfaceCommandShould.cs similarity index 100% rename from linguard/Cli.Test/AddInterfaceCommandShould.cs rename to Linguard/Cli.Test/AddInterfaceCommandShould.cs diff --git a/linguard/Cli.Test/AddInterfaceCommandShouldNot.cs b/Linguard/Cli.Test/AddInterfaceCommandShouldNot.cs similarity index 100% rename from linguard/Cli.Test/AddInterfaceCommandShouldNot.cs rename to Linguard/Cli.Test/AddInterfaceCommandShouldNot.cs diff --git a/linguard/Cli.Test/Cli.Test.csproj b/Linguard/Cli.Test/Cli.Test.csproj similarity index 100% rename from linguard/Cli.Test/Cli.Test.csproj rename to Linguard/Cli.Test/Cli.Test.csproj diff --git a/linguard/Cli.Test/ListPeersCommandShould.cs b/Linguard/Cli.Test/ListClientsCommandShould.cs similarity index 85% rename from linguard/Cli.Test/ListPeersCommandShould.cs rename to Linguard/Cli.Test/ListClientsCommandShould.cs index f9da031..25f0763 100644 --- a/linguard/Cli.Test/ListPeersCommandShould.cs +++ b/Linguard/Cli.Test/ListClientsCommandShould.cs @@ -12,7 +12,7 @@ namespace Cli.Test; -public class ListPeersCommandShould { +public class ListClientsCommandShould { private static readonly Mock WireguardServiceMock = new(); @@ -23,7 +23,7 @@ public async Task ListOnePeer() { var app = Utils.BuildTestApp(command); var iface = GenerateInterface(app.ConfigurationManager); app.ConfigurationManager.Configuration.Wireguard.Interfaces.Add(iface); - var peer = GeneratePeer(iface); + var peer = GeneratePeer(app.ConfigurationManager, iface); iface.Clients.Add(peer); var commandLine = $"{commandName}"; @@ -46,9 +46,9 @@ public async Task ListPeersForSpecificInterface() { app.ConfigurationManager.Configuration.Wireguard.Interfaces.Add(iface1); var iface2 = GenerateInterface(app.ConfigurationManager); app.ConfigurationManager.Configuration.Wireguard.Interfaces.Add(iface2); - var peer = GeneratePeer(iface1); + var peer = GeneratePeer(app.ConfigurationManager, iface1); iface1.Clients.Add(peer); - iface2.Clients.Add(GeneratePeer(iface2)); + iface2.Clients.Add(GeneratePeer(app.ConfigurationManager, iface2)); var commandLine = $"{commandName} --interface {iface1.Name}"; @@ -64,7 +64,7 @@ private Interface GenerateInterface(IConfigurationManager configuration) { return new DefaultInterfaceGenerator(configuration, WireguardServiceMock.Object).Generate(); } - private Client GeneratePeer(Interface iface) { - return new DefaultClientGenerator(WireguardServiceMock.Object).Generate(iface); + private Client GeneratePeer(IConfigurationManager configuration, Interface iface) { + return new DefaultClientGenerator(WireguardServiceMock.Object, configuration).Generate(iface); } } \ No newline at end of file diff --git a/linguard/Cli.Test/ListInterfacesCommandShould.cs b/Linguard/Cli.Test/ListInterfacesCommandShould.cs similarity index 100% rename from linguard/Cli.Test/ListInterfacesCommandShould.cs rename to Linguard/Cli.Test/ListInterfacesCommandShould.cs diff --git a/linguard/Cli.Test/ShowInterfaceCommandShould.cs b/Linguard/Cli.Test/ShowInterfaceCommandShould.cs similarity index 100% rename from linguard/Cli.Test/ShowInterfaceCommandShould.cs rename to Linguard/Cli.Test/ShowInterfaceCommandShould.cs diff --git a/linguard/Cli.Test/Utils.cs b/Linguard/Cli.Test/Utils.cs similarity index 100% rename from linguard/Cli.Test/Utils.cs rename to Linguard/Cli.Test/Utils.cs diff --git a/linguard/Cli/Cli.csproj b/Linguard/Cli/Cli.csproj similarity index 100% rename from linguard/Cli/Cli.csproj rename to Linguard/Cli/Cli.csproj diff --git a/linguard/Cli/CliStartup.cs b/Linguard/Cli/CliStartup.cs similarity index 100% rename from linguard/Cli/CliStartup.cs rename to Linguard/Cli/CliStartup.cs diff --git a/linguard/Cli/Commands/AddClientCommand.cs b/Linguard/Cli/Commands/AddClientCommand.cs similarity index 95% rename from linguard/Cli/Commands/AddClientCommand.cs rename to Linguard/Cli/Commands/AddClientCommand.cs index 964df48..a1d976f 100644 --- a/linguard/Cli/Commands/AddClientCommand.cs +++ b/Linguard/Cli/Commands/AddClientCommand.cs @@ -82,15 +82,15 @@ public ValueTask ExecuteAsync(IConsole console) { console.Error.WriteLine(Validation.InterfaceNotFound); return ValueTask.CompletedTask; } - var peer = _generator.Generate(iface); - ApplyParametersSetByUser(peer); - if (!Validate(peer, console)) { + var client = _generator.Generate(iface); + ApplyParametersSetByUser(client); + if (!Validate(client, console)) { return ValueTask.CompletedTask; } - iface.Clients.Add(peer); + iface.Clients.Add(client); _configurationManager.Save(); - var msg = $"Added peer '{peer.Name}' to interface '{iface.Name}'."; + var msg = $"Added peer '{client.Name}' to interface '{iface.Name}'."; _logger.Info(msg); console.Output.WriteLine(msg); return ValueTask.CompletedTask; diff --git a/linguard/Cli/Commands/AddInterfaceCommand.cs b/Linguard/Cli/Commands/AddInterfaceCommand.cs similarity index 100% rename from linguard/Cli/Commands/AddInterfaceCommand.cs rename to Linguard/Cli/Commands/AddInterfaceCommand.cs diff --git a/linguard/Cli/Commands/EditClientCommand.cs b/Linguard/Cli/Commands/EditClientCommand.cs similarity index 100% rename from linguard/Cli/Commands/EditClientCommand.cs rename to Linguard/Cli/Commands/EditClientCommand.cs diff --git a/linguard/Cli/Commands/EditInterfaceCommand.cs b/Linguard/Cli/Commands/EditInterfaceCommand.cs similarity index 100% rename from linguard/Cli/Commands/EditInterfaceCommand.cs rename to Linguard/Cli/Commands/EditInterfaceCommand.cs diff --git a/linguard/Cli/Commands/ListClientsCommand.cs b/Linguard/Cli/Commands/ListClientsCommand.cs similarity index 100% rename from linguard/Cli/Commands/ListClientsCommand.cs rename to Linguard/Cli/Commands/ListClientsCommand.cs diff --git a/linguard/Cli/Commands/ListInterfacesCommand.cs b/Linguard/Cli/Commands/ListInterfacesCommand.cs similarity index 100% rename from linguard/Cli/Commands/ListInterfacesCommand.cs rename to Linguard/Cli/Commands/ListInterfacesCommand.cs diff --git a/linguard/Cli/Commands/ShowClientCommand.cs b/Linguard/Cli/Commands/ShowClientCommand.cs similarity index 100% rename from linguard/Cli/Commands/ShowClientCommand.cs rename to Linguard/Cli/Commands/ShowClientCommand.cs diff --git a/linguard/Cli/Commands/ShowInterfaceCommand.cs b/Linguard/Cli/Commands/ShowInterfaceCommand.cs similarity index 100% rename from linguard/Cli/Commands/ShowInterfaceCommand.cs rename to Linguard/Cli/Commands/ShowInterfaceCommand.cs diff --git a/linguard/Cli/Middlewares/ConfigurationSetupMiddleware.cs b/Linguard/Cli/Middlewares/ConfigurationSetupMiddleware.cs similarity index 100% rename from linguard/Cli/Middlewares/ConfigurationSetupMiddleware.cs rename to Linguard/Cli/Middlewares/ConfigurationSetupMiddleware.cs diff --git a/linguard/Cli.Test/bin/Debug/net6.0/NLog.config b/Linguard/Cli/NLog.config similarity index 100% rename from linguard/Cli.Test/bin/Debug/net6.0/NLog.config rename to Linguard/Cli/NLog.config diff --git a/linguard/Cli/Program.cs b/Linguard/Cli/Program.cs similarity index 100% rename from linguard/Cli/Program.cs rename to Linguard/Cli/Program.cs diff --git a/linguard/Cli/TypeConverters/IPAddressCidrCollectionTypeConverter.cs b/Linguard/Cli/TypeConverters/IPAddressCidrCollectionTypeConverter.cs similarity index 100% rename from linguard/Cli/TypeConverters/IPAddressCidrCollectionTypeConverter.cs rename to Linguard/Cli/TypeConverters/IPAddressCidrCollectionTypeConverter.cs diff --git a/linguard/Cli/TypeConverters/IPAddressCidrTypeConverter.cs b/Linguard/Cli/TypeConverters/IPAddressCidrTypeConverter.cs similarity index 100% rename from linguard/Cli/TypeConverters/IPAddressCidrTypeConverter.cs rename to Linguard/Cli/TypeConverters/IPAddressCidrTypeConverter.cs diff --git a/linguard/Cli/TypeConverters/NetworkInterfaceTypeConverter.cs b/Linguard/Cli/TypeConverters/NetworkInterfaceTypeConverter.cs similarity index 100% rename from linguard/Cli/TypeConverters/NetworkInterfaceTypeConverter.cs rename to Linguard/Cli/TypeConverters/NetworkInterfaceTypeConverter.cs diff --git a/linguard/Cli/TypeConverters/UriTypeConverter.cs b/Linguard/Cli/TypeConverters/UriTypeConverter.cs similarity index 100% rename from linguard/Cli/TypeConverters/UriTypeConverter.cs rename to Linguard/Cli/TypeConverters/UriTypeConverter.cs diff --git a/linguard/Core.Test/ClientShould.cs b/Linguard/Core.Test/ClientShould.cs similarity index 100% rename from linguard/Core.Test/ClientShould.cs rename to Linguard/Core.Test/ClientShould.cs diff --git a/linguard/Core.Test/CommandRunnerShould.cs b/Linguard/Core.Test/CommandRunnerShould.cs similarity index 100% rename from linguard/Core.Test/CommandRunnerShould.cs rename to Linguard/Core.Test/CommandRunnerShould.cs diff --git a/linguard/Core.Test/Core.Test.csproj b/Linguard/Core.Test/Core.Test.csproj similarity index 100% rename from linguard/Core.Test/Core.Test.csproj rename to Linguard/Core.Test/Core.Test.csproj diff --git a/linguard/Core.Test/DefaultClientGeneratorShould.cs b/Linguard/Core.Test/DefaultClientGeneratorShould.cs similarity index 92% rename from linguard/Core.Test/DefaultClientGeneratorShould.cs rename to Linguard/Core.Test/DefaultClientGeneratorShould.cs index 70e9415..41246b5 100644 --- a/linguard/Core.Test/DefaultClientGeneratorShould.cs +++ b/Linguard/Core.Test/DefaultClientGeneratorShould.cs @@ -17,7 +17,7 @@ public class DefaultClientGeneratorShould { private static IInterfaceGenerator InterfaceGenerator => new DefaultInterfaceGenerator(ConfigurationManagerMock.Object, WireguardServiceMock.Object); private static IClientGenerator ClientGenerator => - new DefaultClientGenerator(WireguardServiceMock.Object); + new DefaultClientGenerator(WireguardServiceMock.Object, ConfigurationManagerMock.Object); private static AbstractValidator Validator => new ClientValidator(ConfigurationManagerMock.Object); [Fact] diff --git a/linguard/Core.Test/DefaultInterfaceGeneratorShould.cs b/Linguard/Core.Test/DefaultInterfaceGeneratorShould.cs similarity index 100% rename from linguard/Core.Test/DefaultInterfaceGeneratorShould.cs rename to Linguard/Core.Test/DefaultInterfaceGeneratorShould.cs diff --git a/linguard/Core.Test/InterfaceShould.cs b/Linguard/Core.Test/InterfaceShould.cs similarity index 100% rename from linguard/Core.Test/InterfaceShould.cs rename to Linguard/Core.Test/InterfaceShould.cs diff --git a/linguard/Core.Test/Mocks/DefaultConfiguration.cs b/Linguard/Core.Test/Mocks/DefaultConfiguration.cs similarity index 100% rename from linguard/Core.Test/Mocks/DefaultConfiguration.cs rename to Linguard/Core.Test/Mocks/DefaultConfiguration.cs diff --git a/linguard/Core.Test/Mocks/DefaultConfigurationManager.cs b/Linguard/Core.Test/Mocks/DefaultConfigurationManager.cs similarity index 100% rename from linguard/Core.Test/Mocks/DefaultConfigurationManager.cs rename to Linguard/Core.Test/Mocks/DefaultConfigurationManager.cs diff --git a/linguard/Core.Test/WireguardDumpParserShould.cs b/Linguard/Core.Test/WireguardDumpParserShould.cs similarity index 100% rename from linguard/Core.Test/WireguardDumpParserShould.cs rename to Linguard/Core.Test/WireguardDumpParserShould.cs diff --git a/linguard/Core.Test/YamlConfigurationSerializerShould.cs b/Linguard/Core.Test/YamlConfigurationSerializerShould.cs similarity index 100% rename from linguard/Core.Test/YamlConfigurationSerializerShould.cs rename to Linguard/Core.Test/YamlConfigurationSerializerShould.cs diff --git a/linguard/core/Configuration/Configuration.cs b/Linguard/Core/Configuration/Configuration.cs similarity index 100% rename from linguard/core/Configuration/Configuration.cs rename to Linguard/Core/Configuration/Configuration.cs diff --git a/linguard/core/Configuration/Exceptions/ConfigurationNotLoadedError.cs b/Linguard/Core/Configuration/Exceptions/ConfigurationNotLoadedError.cs similarity index 100% rename from linguard/core/Configuration/Exceptions/ConfigurationNotLoadedError.cs rename to Linguard/Core/Configuration/Exceptions/ConfigurationNotLoadedError.cs diff --git a/linguard/core/Configuration/Exceptions/ConfigurationNotSavedError.cs b/Linguard/Core/Configuration/Exceptions/ConfigurationNotSavedError.cs similarity index 100% rename from linguard/core/Configuration/Exceptions/ConfigurationNotSavedError.cs rename to Linguard/Core/Configuration/Exceptions/ConfigurationNotSavedError.cs diff --git a/linguard/core/Configuration/IConfiguration.cs b/Linguard/Core/Configuration/IConfiguration.cs similarity index 100% rename from linguard/core/Configuration/IConfiguration.cs rename to Linguard/Core/Configuration/IConfiguration.cs diff --git a/linguard/core/Configuration/ILoggingConfiguration.cs b/Linguard/Core/Configuration/ILoggingConfiguration.cs similarity index 100% rename from linguard/core/Configuration/ILoggingConfiguration.cs rename to Linguard/Core/Configuration/ILoggingConfiguration.cs diff --git a/linguard/core/Configuration/ITrafficConfiguration.cs b/Linguard/Core/Configuration/ITrafficConfiguration.cs similarity index 100% rename from linguard/core/Configuration/ITrafficConfiguration.cs rename to Linguard/Core/Configuration/ITrafficConfiguration.cs diff --git a/linguard/core/Configuration/IWebConfiguration.cs b/Linguard/Core/Configuration/IWebConfiguration.cs similarity index 100% rename from linguard/core/Configuration/IWebConfiguration.cs rename to Linguard/Core/Configuration/IWebConfiguration.cs diff --git a/linguard/core/Configuration/IWireguardConfiguration.cs b/Linguard/Core/Configuration/IWireguardConfiguration.cs similarity index 100% rename from linguard/core/Configuration/IWireguardConfiguration.cs rename to Linguard/Core/Configuration/IWireguardConfiguration.cs diff --git a/linguard/core/Configuration/IWorkingDirectory.cs b/Linguard/Core/Configuration/IWorkingDirectory.cs similarity index 100% rename from linguard/core/Configuration/IWorkingDirectory.cs rename to Linguard/Core/Configuration/IWorkingDirectory.cs diff --git a/linguard/core/Configuration/LoggingConfiguration.cs b/Linguard/Core/Configuration/LoggingConfiguration.cs similarity index 80% rename from linguard/core/Configuration/LoggingConfiguration.cs rename to Linguard/Core/Configuration/LoggingConfiguration.cs index 67854e9..bbb8505 100644 --- a/linguard/core/Configuration/LoggingConfiguration.cs +++ b/Linguard/Core/Configuration/LoggingConfiguration.cs @@ -3,7 +3,7 @@ namespace Linguard.Core.Configuration; public class LoggingConfiguration : ILoggingConfiguration{ - public LogLevel Level { get; set; } = LogLevel.Info; + public LogLevel Level { get; set; } public bool Overwrite { get; set; } public object Clone() { diff --git a/linguard/core/Configuration/Serialization/IConfigurationSerializer.cs b/Linguard/Core/Configuration/Serialization/IConfigurationSerializer.cs similarity index 100% rename from linguard/core/Configuration/Serialization/IConfigurationSerializer.cs rename to Linguard/Core/Configuration/Serialization/IConfigurationSerializer.cs diff --git a/linguard/core/Configuration/Serialization/IPAddressCidrTypeConverter.cs b/Linguard/Core/Configuration/Serialization/IPAddressCidrTypeConverter.cs similarity index 100% rename from linguard/core/Configuration/Serialization/IPAddressCidrTypeConverter.cs rename to Linguard/Core/Configuration/Serialization/IPAddressCidrTypeConverter.cs diff --git a/linguard/core/Configuration/Serialization/NetworkInterfaceTypeConverter.cs b/Linguard/Core/Configuration/Serialization/NetworkInterfaceTypeConverter.cs similarity index 100% rename from linguard/core/Configuration/Serialization/NetworkInterfaceTypeConverter.cs rename to Linguard/Core/Configuration/Serialization/NetworkInterfaceTypeConverter.cs diff --git a/linguard/core/Configuration/Serialization/StyleTypeConverter.cs b/Linguard/Core/Configuration/Serialization/StyleTypeConverter.cs similarity index 100% rename from linguard/core/Configuration/Serialization/StyleTypeConverter.cs rename to Linguard/Core/Configuration/Serialization/StyleTypeConverter.cs diff --git a/linguard/core/Configuration/Serialization/UriTypeConverter.cs b/Linguard/Core/Configuration/Serialization/UriTypeConverter.cs similarity index 100% rename from linguard/core/Configuration/Serialization/UriTypeConverter.cs rename to Linguard/Core/Configuration/Serialization/UriTypeConverter.cs diff --git a/linguard/core/Configuration/Serialization/YamlConfigurationSerializer.cs b/Linguard/Core/Configuration/Serialization/YamlConfigurationSerializer.cs similarity index 100% rename from linguard/core/Configuration/Serialization/YamlConfigurationSerializer.cs rename to Linguard/Core/Configuration/Serialization/YamlConfigurationSerializer.cs diff --git a/linguard/core/Configuration/TrafficConfiguration.cs b/Linguard/Core/Configuration/TrafficConfiguration.cs similarity index 60% rename from linguard/core/Configuration/TrafficConfiguration.cs rename to Linguard/Core/Configuration/TrafficConfiguration.cs index 7461c0b..fd995e2 100644 --- a/linguard/core/Configuration/TrafficConfiguration.cs +++ b/Linguard/Core/Configuration/TrafficConfiguration.cs @@ -3,8 +3,8 @@ namespace Linguard.Core.Configuration; public class TrafficConfiguration : ITrafficConfiguration { - public bool Enabled { get; set; } = true; - public ITrafficStorageDriver StorageDriver { get; set; } = new JsonTrafficStorageDriver(); + public bool Enabled { get; set; } + public ITrafficStorageDriver StorageDriver { get; set; } public object Clone() { return MemberwiseClone(); } diff --git a/linguard/core/Configuration/WebConfiguration.cs b/Linguard/Core/Configuration/WebConfiguration.cs similarity index 68% rename from linguard/core/Configuration/WebConfiguration.cs rename to Linguard/Core/Configuration/WebConfiguration.cs index eb3a9e7..73143b1 100644 --- a/linguard/core/Configuration/WebConfiguration.cs +++ b/Linguard/Core/Configuration/WebConfiguration.cs @@ -3,8 +3,8 @@ namespace Linguard.Core.Configuration; public class WebConfiguration : IWebConfiguration { - public int LoginAttempts { get; set; } = 10; - public string SecretKey { get; set; } = string.Empty; + public int LoginAttempts { get; set; } + public string SecretKey { get; set; } public Style Style { get; set; } public object Clone() { diff --git a/Linguard/Core/Configuration/WireguardConfiguration.cs b/Linguard/Core/Configuration/WireguardConfiguration.cs new file mode 100644 index 0000000..86a6e51 --- /dev/null +++ b/Linguard/Core/Configuration/WireguardConfiguration.cs @@ -0,0 +1,17 @@ +using Linguard.Core.Models.Wireguard; + +namespace Linguard.Core.Configuration; + +public class WireguardConfiguration : IWireguardConfiguration { + public HashSet Interfaces { get; set; } + public string IptablesBin { get; set; } + public string WireguardBin { get; set; } + public string WireguardQuickBin { get; set; } + public Uri? PrimaryDns { get; set; } + public Uri? SecondaryDns { get; set; } + public Uri? Endpoint { get; set; } + + public object Clone() { + return MemberwiseClone(); + } +} \ No newline at end of file diff --git a/linguard/core/Configuration/WorkingDirectory.cs b/Linguard/Core/Configuration/WorkingDirectory.cs similarity index 100% rename from linguard/core/Configuration/WorkingDirectory.cs rename to Linguard/Core/Configuration/WorkingDirectory.cs diff --git a/linguard/core/Core.csproj b/Linguard/Core/Core.csproj similarity index 100% rename from linguard/core/Core.csproj rename to Linguard/Core/Core.csproj diff --git a/linguard/core/drivers/TrafficStorage/ITrafficStorageDriver.cs b/Linguard/Core/Drivers/TrafficStorage/ITrafficStorageDriver.cs similarity index 100% rename from linguard/core/drivers/TrafficStorage/ITrafficStorageDriver.cs rename to Linguard/Core/Drivers/TrafficStorage/ITrafficStorageDriver.cs diff --git a/linguard/core/drivers/TrafficStorage/JsonTrafficStorageDriver.cs b/Linguard/Core/Drivers/TrafficStorage/JsonTrafficStorageDriver.cs similarity index 100% rename from linguard/core/drivers/TrafficStorage/JsonTrafficStorageDriver.cs rename to Linguard/Core/Drivers/TrafficStorage/JsonTrafficStorageDriver.cs diff --git a/linguard/core/IPAddressCidr.cs b/Linguard/Core/IPAddressCidr.cs similarity index 100% rename from linguard/core/IPAddressCidr.cs rename to Linguard/Core/IPAddressCidr.cs diff --git a/linguard/core/managers/FileConfigurationManager.cs b/Linguard/Core/Managers/FileConfigurationManager.cs similarity index 100% rename from linguard/core/managers/FileConfigurationManager.cs rename to Linguard/Core/Managers/FileConfigurationManager.cs diff --git a/linguard/core/managers/IConfigurationManager.cs b/Linguard/Core/Managers/IConfigurationManager.cs similarity index 100% rename from linguard/core/managers/IConfigurationManager.cs rename to Linguard/Core/Managers/IConfigurationManager.cs diff --git a/Linguard/Core/Managers/YamlConfigurationManager.cs b/Linguard/Core/Managers/YamlConfigurationManager.cs new file mode 100644 index 0000000..fb656c4 --- /dev/null +++ b/Linguard/Core/Managers/YamlConfigurationManager.cs @@ -0,0 +1,71 @@ +using System.Net; +using Linguard.Core.Configuration; +using Linguard.Core.Configuration.Serialization; +using Linguard.Core.Drivers.TrafficStorage; +using Linguard.Core.Models; +using Linguard.Core.Models.Wireguard; +using Linguard.Core.OS; +using Linguard.Core.Utils; +using Linguard.Log; + +namespace Linguard.Core.Managers; + +public class YamlConfigurationManager : FileConfigurationManager { + private static readonly string[] SupportedExtensions = {"yaml", "yml"}; + + private FileInfo? _configurationFile; + protected sealed override FileInfo ConfigurationFile { + get { + if (_configurationFile != default) return _configurationFile; + var filename = Path.Combine(WorkingDirectory.BaseDirectory.FullName, AssemblyInfo.Product.ToLower()); + var tries = 0; + while (tries < SupportedExtensions.Length && _configurationFile is not { Exists: true }) { + var filepath = Path.ChangeExtension(filename, SupportedExtensions[tries]); + _configurationFile = new FileInfo(filepath); + tries++; + } + return _configurationFile!; + } + } + + public override async void LoadDefaults() { + LoadWebDefaults(); + LoadLoggingDefaults(); + LoadTrafficDefaults(); + await LoadWireguardDefaults(); + } + + private void LoadWebDefaults() { + Configuration.Web.Style = Style.Default; + Configuration.Web.LoginAttempts = 10; + Configuration.Web.SecretKey = ""; + } + private void LoadLoggingDefaults() { + Configuration.Logging.Level = LogLevel.Info; + Configuration.Logging.Overwrite = false; + } + private void LoadTrafficDefaults() { + Configuration.Traffic.Enabled = true; + Configuration.Traffic.StorageDriver = new JsonTrafficStorageDriver(); + } + private async Task LoadWireguardDefaults() { + Configuration.Wireguard.Interfaces = new HashSet(); + Configuration.Wireguard.IptablesBin = new CommandRunner() + .Run("whereis iptables | tr ' ' '\n' | grep bin").Stdout; + Configuration.Wireguard.WireguardBin = new CommandRunner() + .Run("whereis wg | tr ' ' '\n' | grep bin").Stdout; + Configuration.Wireguard.WireguardQuickBin = new CommandRunner() + .Run("whereis wg-quick | tr ' ' '\n' | grep bin").Stdout; + Configuration.Wireguard.Interfaces = new(); + Configuration.Wireguard.PrimaryDns = new("8.8.8.8", UriKind.RelativeOrAbsolute); + Configuration.Wireguard.SecondaryDns = new("8.8.4.4", UriKind.RelativeOrAbsolute); + var publicIp = Network.GetPublicIPAddress(); + Configuration.Wireguard.Endpoint = publicIp == default + ? default + : new(publicIp.ToString(), UriKind.RelativeOrAbsolute); + } + + public YamlConfigurationManager(IConfiguration configuration, IWorkingDirectory workingDirectory) + : base(configuration, workingDirectory, new YamlConfigurationSerializer()) { + } +} \ No newline at end of file diff --git a/linguard/core/Models/ITrafficData.cs b/Linguard/Core/Models/ITrafficData.cs similarity index 100% rename from linguard/core/Models/ITrafficData.cs rename to Linguard/Core/Models/ITrafficData.cs diff --git a/linguard/core/Models/Style.cs b/Linguard/Core/Models/Style.cs similarity index 100% rename from linguard/core/Models/Style.cs rename to Linguard/Core/Models/Style.cs diff --git a/linguard/core/Models/TrafficData.cs b/Linguard/Core/Models/TrafficData.cs similarity index 100% rename from linguard/core/Models/TrafficData.cs rename to Linguard/Core/Models/TrafficData.cs diff --git a/linguard/core/Models/User.cs b/Linguard/Core/Models/User.cs similarity index 100% rename from linguard/core/Models/User.cs rename to Linguard/Core/Models/User.cs diff --git a/linguard/core/Models/Wireguard/Client.cs b/Linguard/Core/Models/Wireguard/Client.cs similarity index 100% rename from linguard/core/Models/Wireguard/Client.cs rename to Linguard/Core/Models/Wireguard/Client.cs diff --git a/linguard/core/Models/Wireguard/IWireguardPeer.cs b/Linguard/Core/Models/Wireguard/IWireguardPeer.cs similarity index 100% rename from linguard/core/Models/Wireguard/IWireguardPeer.cs rename to Linguard/Core/Models/Wireguard/IWireguardPeer.cs diff --git a/linguard/core/Models/Wireguard/Interface.cs b/Linguard/Core/Models/Wireguard/Interface.cs similarity index 100% rename from linguard/core/Models/Wireguard/Interface.cs rename to Linguard/Core/Models/Wireguard/Interface.cs diff --git a/linguard/core/Models/Wireguard/Validators/ClientValidator.cs b/Linguard/Core/Models/Wireguard/Validators/ClientValidator.cs similarity index 100% rename from linguard/core/Models/Wireguard/Validators/ClientValidator.cs rename to Linguard/Core/Models/Wireguard/Validators/ClientValidator.cs diff --git a/linguard/core/Models/Wireguard/Validators/InterfaceValidator.cs b/Linguard/Core/Models/Wireguard/Validators/InterfaceValidator.cs similarity index 100% rename from linguard/core/Models/Wireguard/Validators/InterfaceValidator.cs rename to Linguard/Core/Models/Wireguard/Validators/InterfaceValidator.cs diff --git a/linguard/core/Models/Wireguard/WireguardPeerBase.cs b/Linguard/Core/Models/Wireguard/WireguardPeerBase.cs similarity index 100% rename from linguard/core/Models/Wireguard/WireguardPeerBase.cs rename to Linguard/Core/Models/Wireguard/WireguardPeerBase.cs diff --git a/linguard/core/OS/CommandResult.cs b/Linguard/Core/OS/CommandResult.cs similarity index 100% rename from linguard/core/OS/CommandResult.cs rename to Linguard/Core/OS/CommandResult.cs diff --git a/linguard/core/OS/CommandRunner.cs b/Linguard/Core/OS/CommandRunner.cs similarity index 100% rename from linguard/core/OS/CommandRunner.cs rename to Linguard/Core/OS/CommandRunner.cs diff --git a/linguard/core/OS/ICommandResult.cs b/Linguard/Core/OS/ICommandResult.cs similarity index 100% rename from linguard/core/OS/ICommandResult.cs rename to Linguard/Core/OS/ICommandResult.cs diff --git a/linguard/core/OS/ICommandRunner.cs b/Linguard/Core/OS/ICommandRunner.cs similarity index 100% rename from linguard/core/OS/ICommandRunner.cs rename to Linguard/Core/OS/ICommandRunner.cs diff --git a/linguard/core/Services/DefaultClientGenerator.cs b/Linguard/Core/Services/DefaultClientGenerator.cs similarity index 62% rename from linguard/core/Services/DefaultClientGenerator.cs rename to Linguard/Core/Services/DefaultClientGenerator.cs index e97aca9..1cbb7a3 100644 --- a/linguard/core/Services/DefaultClientGenerator.cs +++ b/Linguard/Core/Services/DefaultClientGenerator.cs @@ -1,22 +1,26 @@ using System.Net; using Bogus; +using Linguard.Core.Configuration; +using Linguard.Core.Managers; using Linguard.Core.Models.Wireguard; +using Linguard.Core.Utils; namespace Linguard.Core.Services; public class DefaultClientGenerator : IClientGenerator { + private IWireguardConfiguration Configuration => _configurationManager.Configuration.Wireguard; + private readonly IConfigurationManager _configurationManager; private readonly IWireguardService _wireguard; - public DefaultClientGenerator(IWireguardService wireguard) { + public DefaultClientGenerator(IWireguardService wireguard, IConfigurationManager configurationManager) { _wireguard = wireguard; + _configurationManager = configurationManager; } public Client Generate(Interface iface) { return new Faker() .RuleFor(c => c.Nat, false) .RuleFor(c => c.Description, f => f.Lorem.Sentence()) - .RuleFor(c => c.PrimaryDns, new Uri("8.8.8.8", UriKind.RelativeOrAbsolute)) - .RuleFor(c => c.SecondaryDns, new Uri("8.8.4.4", UriKind.RelativeOrAbsolute)) .RuleFor(c => c.Name, f => f.Person.FullName) .RuleFor(c => c.Endpoint, new Uri("vpn.example.com", UriKind.RelativeOrAbsolute)) .RuleFor(c => c.PrivateKey, _wireguard.GenerateWireguardPrivateKey()) @@ -40,6 +44,16 @@ public Client Generate(Interface iface) { if (p.IPv6Address != default) ips.Add(IPAddressCidr.Parse("::0/0")); return ips; }) + .RuleFor(c => c.Endpoint, iface.Endpoint + ?? Configuration.Endpoint + ?? new(Network.GetPublicIPAddress()?.ToString() ?? string.Empty, + UriKind.RelativeOrAbsolute)) + .RuleFor(c => c.PrimaryDns, iface.PrimaryDns + ?? Configuration.PrimaryDns + ?? new Uri("8.8.8.8", UriKind.RelativeOrAbsolute)) + .RuleFor(c => c.SecondaryDns, iface.SecondaryDns + ?? Configuration.SecondaryDns + ?? new Uri("8.8.4.4", UriKind.RelativeOrAbsolute)) .Generate(); } } \ No newline at end of file diff --git a/linguard/core/Services/DefaultInterfaceGenerator.cs b/Linguard/Core/Services/DefaultInterfaceGenerator.cs similarity index 95% rename from linguard/core/Services/DefaultInterfaceGenerator.cs rename to Linguard/Core/Services/DefaultInterfaceGenerator.cs index aa0c1f1..f6b2381 100644 --- a/linguard/core/Services/DefaultInterfaceGenerator.cs +++ b/Linguard/Core/Services/DefaultInterfaceGenerator.cs @@ -84,6 +84,9 @@ public Interface Generate() { } return default; }) + .RuleFor(i => i.Endpoint, Configuration.Endpoint) + .RuleFor(i => i.PrimaryDns, Configuration.PrimaryDns) + .RuleFor(i => i.SecondaryDns, Configuration.SecondaryDns) .Generate(); } } \ No newline at end of file diff --git a/linguard/core/Services/IClientGenerator.cs b/Linguard/Core/Services/IClientGenerator.cs similarity index 100% rename from linguard/core/Services/IClientGenerator.cs rename to Linguard/Core/Services/IClientGenerator.cs diff --git a/linguard/core/Services/IEncryptionService.cs b/Linguard/Core/Services/IEncryptionService.cs similarity index 100% rename from linguard/core/Services/IEncryptionService.cs rename to Linguard/Core/Services/IEncryptionService.cs diff --git a/linguard/core/Services/IInterfaceGenerator.cs b/Linguard/Core/Services/IInterfaceGenerator.cs similarity index 100% rename from linguard/core/Services/IInterfaceGenerator.cs rename to Linguard/Core/Services/IInterfaceGenerator.cs diff --git a/linguard/core/Services/IWireguardService.cs b/Linguard/Core/Services/IWireguardService.cs similarity index 93% rename from linguard/core/Services/IWireguardService.cs rename to Linguard/Core/Services/IWireguardService.cs index be0599c..3000dce 100644 --- a/linguard/core/Services/IWireguardService.cs +++ b/Linguard/Core/Services/IWireguardService.cs @@ -15,6 +15,6 @@ public interface IWireguardService { string GenerateWireguardConfiguration(IWireguardPeer peer); DateTime GetLastHandshake(Client client); IEnumerable GetTrafficData(); - IEnumerable GetTrafficData(Client client); IEnumerable GetTrafficData(Interface iface); + TrafficData? GetTrafficData(Client client); } \ No newline at end of file diff --git a/linguard/core/Services/WireguardService.cs b/Linguard/Core/Services/WireguardService.cs similarity index 98% rename from linguard/core/Services/WireguardService.cs rename to Linguard/Core/Services/WireguardService.cs index 8d7b685..60386dc 100644 --- a/linguard/core/Services/WireguardService.cs +++ b/Linguard/Core/Services/WireguardService.cs @@ -94,11 +94,11 @@ public IEnumerable GetTrafficData() { return data; } - public IEnumerable GetTrafficData(Client client) { + public TrafficData? GetTrafficData(Client client) { var data = GetTrafficData(GetInterface(client)); - return data.Where(e => e.Peer is not Interface); + return data.SingleOrDefault(e => e.Peer.Equals(client)); } - + public IEnumerable GetTrafficData(Interface iface) { var rawData = _commandRunner .Run($"{Configuration.WireguardBin} show {iface.Name} dump") diff --git a/linguard/core/utils/AssemblyInfo.cs b/Linguard/Core/Utils/AssemblyInfo.cs similarity index 100% rename from linguard/core/utils/AssemblyInfo.cs rename to Linguard/Core/Utils/AssemblyInfo.cs diff --git a/linguard/core/utils/Comparers/NetworkInterfaceNameComparer.cs b/Linguard/Core/Utils/Comparers/NetworkInterfaceNameComparer.cs similarity index 100% rename from linguard/core/utils/Comparers/NetworkInterfaceNameComparer.cs rename to Linguard/Core/Utils/Comparers/NetworkInterfaceNameComparer.cs diff --git a/linguard/core/utils/Extensions/StringExtensions.cs b/Linguard/Core/Utils/Extensions/StringExtensions.cs similarity index 100% rename from linguard/core/utils/Extensions/StringExtensions.cs rename to Linguard/Core/Utils/Extensions/StringExtensions.cs diff --git a/Linguard/Core/Utils/Network.cs b/Linguard/Core/Utils/Network.cs new file mode 100644 index 0000000..573eb2a --- /dev/null +++ b/Linguard/Core/Utils/Network.cs @@ -0,0 +1,14 @@ +using System.Net; + +namespace Linguard.Core.Utils; + +public static class Network { + public static IPAddress? GetPublicIPAddress() { + const string url = "https://api.ipify.org/"; + var response = new HttpClient() + .Send(new HttpRequestMessage(HttpMethod.Get, url)) + .Content + .ReadAsStringAsync().Result; + return IPAddress.TryParse(response, out var ipAddress) ? ipAddress : default; + } +} \ No newline at end of file diff --git a/linguard/core/utils/WireguardDumpParser.cs b/Linguard/Core/Utils/WireguardDumpParser.cs similarity index 100% rename from linguard/core/utils/WireguardDumpParser.cs rename to Linguard/Core/Utils/WireguardDumpParser.cs diff --git a/linguard/core/Validation.Designer.cs b/Linguard/Core/Validation.Designer.cs similarity index 100% rename from linguard/core/Validation.Designer.cs rename to Linguard/Core/Validation.Designer.cs diff --git a/linguard/core/Validation.resx b/Linguard/Core/Validation.resx similarity index 100% rename from linguard/core/Validation.resx rename to Linguard/Core/Validation.resx diff --git a/linguard/Linguard.sln b/Linguard/Linguard.sln similarity index 100% rename from linguard/Linguard.sln rename to Linguard/Linguard.sln diff --git a/linguard/Linguard.sln.DotSettings b/Linguard/Linguard.sln.DotSettings similarity index 100% rename from linguard/Linguard.sln.DotSettings rename to Linguard/Linguard.sln.DotSettings diff --git a/linguard/Log.NLog/Log.NLog.csproj b/Linguard/Log.NLog/Log.NLog.csproj similarity index 100% rename from linguard/Log.NLog/Log.NLog.csproj rename to Linguard/Log.NLog/Log.NLog.csproj diff --git a/linguard/Log/ILogger.cs b/Linguard/Log/ILogger.cs similarity index 100% rename from linguard/Log/ILogger.cs rename to Linguard/Log/ILogger.cs diff --git a/linguard/Log/Log.csproj b/Linguard/Log/Log.csproj similarity index 100% rename from linguard/Log/Log.csproj rename to Linguard/Log/Log.csproj diff --git a/linguard/Log/LogLevel.cs b/Linguard/Log/LogLevel.cs similarity index 100% rename from linguard/Log/LogLevel.cs rename to Linguard/Log/LogLevel.cs diff --git a/linguard/Log/LoggerBase.cs b/Linguard/Log/LoggerBase.cs similarity index 100% rename from linguard/Log/LoggerBase.cs rename to Linguard/Log/LoggerBase.cs diff --git a/linguard/Log/NLogLogger.cs b/Linguard/Log/NLogLogger.cs similarity index 100% rename from linguard/Log/NLogLogger.cs rename to Linguard/Log/NLogLogger.cs diff --git a/linguard/web/App.razor b/Linguard/Web/App.razor similarity index 100% rename from linguard/web/App.razor rename to Linguard/Web/App.razor diff --git a/linguard/web/Middlewares/ConfigurationSetupMiddleware.cs b/Linguard/Web/Middlewares/ConfigurationSetupMiddleware.cs similarity index 100% rename from linguard/web/Middlewares/ConfigurationSetupMiddleware.cs rename to Linguard/Web/Middlewares/ConfigurationSetupMiddleware.cs diff --git a/linguard/web/NLog.config b/Linguard/Web/NLog.config similarity index 100% rename from linguard/web/NLog.config rename to Linguard/Web/NLog.config diff --git a/linguard/web/Pages/About.razor b/Linguard/Web/Pages/About.razor similarity index 100% rename from linguard/web/Pages/About.razor rename to Linguard/Web/Pages/About.razor diff --git a/Linguard/Web/Pages/AddClient.razor b/Linguard/Web/Pages/AddClient.razor new file mode 100644 index 0000000..8431926 --- /dev/null +++ b/Linguard/Web/Pages/AddClient.razor @@ -0,0 +1,60 @@ +@page "/interface/{interfaceId:guid}/add-client" + +@using Linguard.Core.Utils +@using Linguard.Core.Managers +@using Linguard.Core.Models.Wireguard +@using Linguard.Core.Services +@using Linguard.Core.Configuration +@using FluentValidation + +@($"{AssemblyInfo.Product} | {Title}") + + + +@if (Interface == default) { +

Oops, it looks like the interface you want to create a client for does not exist.

+ return; +} + + + + + + + +@inject IConfigurationManager _configurationManager +@inject IWireguardService _wireguardService +@inject NotificationService _notificationService +@inject DialogService _dialogService +@inject NavigationManager _navigationManager +@inject IJSRuntime _js +@inject AbstractValidator _validator +@inject IClientGenerator _generator + + +@code { + const string Title = "Add client"; + + [Parameter] + public Guid InterfaceId { get; set; } + + IConfiguration Configuration => _configurationManager.Configuration; + private Interface? Interface { get; set; } + private Client Client { get; set; } + + protected override void OnInitialized() { + Interface = Configuration.Wireguard.Interfaces + .SingleOrDefault(i => i.Id.Equals(InterfaceId)); + if (Interface == default) return; + Client = _generator.Generate(Interface); + } + + private void Submit(Client client) { + var result = _validator.Validate(client); + if (result.IsValid) { + Interface!.Clients.Add(client); + _configurationManager.Save(); + _navigationManager.NavigateTo("wireguard"); + } + } +} diff --git a/linguard/web/Pages/AddInterface.razor b/Linguard/Web/Pages/AddInterface.razor similarity index 100% rename from linguard/web/Pages/AddInterface.razor rename to Linguard/Web/Pages/AddInterface.razor diff --git a/linguard/web/Pages/Dashboard.razor b/Linguard/Web/Pages/Dashboard.razor similarity index 60% rename from linguard/web/Pages/Dashboard.razor rename to Linguard/Web/Pages/Dashboard.razor index 53e25ae..73d5fe5 100644 --- a/linguard/web/Pages/Dashboard.razor +++ b/Linguard/Web/Pages/Dashboard.razor @@ -8,8 +8,4 @@ @($"{AssemblyInfo.Product} | {Title}") - - -Welcome to your new app. - - \ No newline at end of file + \ No newline at end of file diff --git a/Linguard/Web/Pages/EditClient.razor b/Linguard/Web/Pages/EditClient.razor new file mode 100644 index 0000000..41801be --- /dev/null +++ b/Linguard/Web/Pages/EditClient.razor @@ -0,0 +1,61 @@ +@page "/client/{id:guid}" +@using Linguard.Core.Utils +@using Linguard.Core.Managers +@using Linguard.Core.Models.Wireguard +@using Linguard.Core.Services +@using Linguard.Core.Configuration + +@inject IConfigurationManager _configurationManager +@inject IWireguardService _wireguardService +@inject NotificationService _notificationService +@inject DialogService _dialogService +@inject NavigationManager _navigationManager +@inject IJSRuntime _js + + +@code { + const string Title = "Client"; + [Parameter] + public Guid Id { get; set; } + + IConfiguration Configuration => _configurationManager.Configuration; + Client? Client => Configuration.Wireguard.Interfaces + .SelectMany(i => i.Clients) + .SingleOrDefault(i => i.Id == Id); +} + +@($"{AssemblyInfo.Product} | {Title}") + +@if (Client == default) { +

Oops, it looks like the client you are looking for does not exist.

+ return; +} + + + + + + + + + + + + + + + + + + + + + + + + +@code { + private void Submit(Client args) { + throw new NotImplementedException(); + } +} diff --git a/Linguard/Web/Pages/EditInterface.razor b/Linguard/Web/Pages/EditInterface.razor new file mode 100644 index 0000000..7239673 --- /dev/null +++ b/Linguard/Web/Pages/EditInterface.razor @@ -0,0 +1,192 @@ +@page "/interface/{id:guid}" +@using Linguard.Core.Utils +@using Linguard.Core.Models.Wireguard +@using Linguard.Core.Services +@using Linguard.Core.Managers +@using Linguard.Core.Configuration +@using System.Net.NetworkInformation +@using FluentValidation +@using Linguard.Web.Services + +@inject IConfigurationManager _configurationManager +@inject IWireguardService _wireguardService +@inject IWebService _webService; +@inject NotificationService _notificationService +@inject DialogService _dialogService +@inject NavigationManager _navigationManager +@inject IJSRuntime _js +@inject AbstractValidator _validator + +@code { + const string Title = "Interface"; + [Parameter] + public Guid Id { get; set; } + + IConfiguration Configuration => _configurationManager.Configuration; + Interface? Iface => Configuration.Wireguard.Interfaces.SingleOrDefault(i => i.Id == Id); + +} +@($"{AssemblyInfo.Product} | {Title}") + +@if (Iface == default) { +

Oops, it looks like the interface you are looking for does not exist.

+ return; +} + +
+
+

+ @Title + @if (InterfaceNames.Contains(Iface.Name)) { + + } + else { + + } +

+
+
+ + + + + + + + + + + + + + + + + + + + + + Total: @Iface.Clients.Count + + + + + + + + + + + + + + + + + + + + + + + + + +@code { + + void Submit(Interface args) { + var result = _validator.Validate(args); + if (result.IsValid) { + _configurationManager.Save(); + _navigationManager.NavigateTo("wireguard"); + return; + } + } + + void EditWireguardClient(Client client) { + _navigationManager.NavigateTo($"{nameof(Client).ToLower()}/{client.Id}"); + } + + async void ConfirmRemoveWireguardPeer(IWireguardPeer peer) { + var peerType = peer.GetType().Name.ToLower(); + var remove = await _dialogService.Confirm( + $"Are you sure you want to delete {peer.Name}? This cannot be undone.", + $"Delete {peerType} {peer.Name}", + new ConfirmOptions { + OkButtonText = "Yes", + CancelButtonText = "No", + CloseDialogOnOverlayClick = true, + }); + if (remove == default || !remove.Value) return; + try { + RemoveWireguardPeer(peer); + _configurationManager.Save(); + } + catch (Exception e) { + _notificationService.Notify(new NotificationMessage { + Severity = NotificationSeverity.Error, + Summary = $"Unable to remove {peerType} {peer.Name}", + Detail = e.Message + }); + } + } + + void RemoveWireguardPeer(IWireguardPeer peer) { + _webService.RemoveWireguardModel(peer); + switch (peer) { + case Client: + _clientsGrid.Reload(); + break; + case Interface: + _navigationManager.NavigateTo("wireguard"); + break; + } + } + + IEnumerable InterfaceNames => NetworkInterface.GetAllNetworkInterfaces() + .Select(i => i.Name) + //.Concat(Configuration.Interfaces.Select(i => i.Name)) + //.Distinct() + .OrderBy(n => n); + + RadzenDataGrid _clientsGrid; + + void AddClient() { + _navigationManager.NavigateTo( + $"/{nameof(Interface)}/{Iface.Id}/add-{nameof(Client).ToLower()}"); + } + + async void ShowQrCode(IWireguardPeer peer) { + var qr = $"data:image/png;base64, {Convert.ToBase64String(_webService.GetQrCode(peer))}" ; + await _dialogService.OpenAsync($"Configuration of {peer.Name}", ds => + @
+
+
+ +
+
+
, + new DialogOptions { + Style = "min-height:auto;min-width:auto;width:auto" + } + ); + } +} \ No newline at end of file diff --git a/linguard/web/Pages/Error.cshtml b/Linguard/Web/Pages/Error.cshtml similarity index 100% rename from linguard/web/Pages/Error.cshtml rename to Linguard/Web/Pages/Error.cshtml diff --git a/linguard/web/Pages/Error.cshtml.cs b/Linguard/Web/Pages/Error.cshtml.cs similarity index 100% rename from linguard/web/Pages/Error.cshtml.cs rename to Linguard/Web/Pages/Error.cshtml.cs diff --git a/linguard/web/Pages/Network.razor b/Linguard/Web/Pages/Network.razor similarity index 100% rename from linguard/web/Pages/Network.razor rename to Linguard/Web/Pages/Network.razor diff --git a/linguard/web/Pages/Settings.razor b/Linguard/Web/Pages/Settings.razor similarity index 100% rename from linguard/web/Pages/Settings.razor rename to Linguard/Web/Pages/Settings.razor diff --git a/linguard/web/Pages/Wireguard.razor b/Linguard/Web/Pages/Wireguard.razor similarity index 51% rename from linguard/web/Pages/Wireguard.razor rename to Linguard/Web/Pages/Wireguard.razor index 09d7399..6bfce2c 100644 --- a/linguard/web/Pages/Wireguard.razor +++ b/Linguard/Web/Pages/Wireguard.razor @@ -20,50 +20,46 @@

Interfaces

-@if (!_wireguardInterfaces.Any()) { -

It looks like there are no interfaces yet. Why don't you add one?

-} -else { - - - - - - Total: @_wireguardInterfaces.Count - - - - - - - - - - - + + + + + + Total: @_wireguardInterfaces.Count + + + + + + + + + + +@if (_wireguardInterfaces.Any()) {
@@ -72,48 +68,50 @@ else {
} -

Clients

-@if (!_clients.Any()) { -

It looks like there are no clients yet. Why don't you add one?

-} -else { - - - - - - Total: @_clients.Count - - - - - - - - - - - - - -} +

Clients

+ + + @foreach (var iface in Configuration.Wireguard.Interfaces) { + + } + + + + + + + Total: @_clients.Count + + + + + + + + + + + + + @code { const string Title = "Wireguard"; @@ -188,11 +186,21 @@ else { var modelType = peer.GetType().Name.ToLower(); _navigationManager.NavigateTo($"{modelType}/{peer.Id}"); } - - void AddClient() { - _navigationManager.NavigateTo($"/add-{nameof(Client).ToLower()}"); - } + void AddClient(RadzenSplitButtonItem? item) { + if (item == default || string.IsNullOrEmpty(item.Value)) { + _notificationService.Notify(new NotificationMessage { + Severity = NotificationSeverity.Error, + Summary = "Unable to add client", + Detail = "You need to specify the interface for the new client" + }); + return; + } + var iface = Configuration.Wireguard.Interfaces.Single(i => i.Name.Equals(item.Value)); + _navigationManager.NavigateTo($"/{nameof(Interface).ToLower()}/{iface.Id}/add-{nameof(Client).ToLower()}"); + + } + void AddInterface() { _navigationManager.NavigateTo($"/add-{nameof(Interface).ToLower()}"); } diff --git a/linguard/web/Pages/_Host.cshtml b/Linguard/Web/Pages/_Host.cshtml similarity index 100% rename from linguard/web/Pages/_Host.cshtml rename to Linguard/Web/Pages/_Host.cshtml diff --git a/linguard/web/Pages/_Host.cshtml.cs b/Linguard/Web/Pages/_Host.cshtml.cs similarity index 100% rename from linguard/web/Pages/_Host.cshtml.cs rename to Linguard/Web/Pages/_Host.cshtml.cs diff --git a/linguard/web/Pages/_Layout.cshtml b/Linguard/Web/Pages/_Layout.cshtml similarity index 100% rename from linguard/web/Pages/_Layout.cshtml rename to Linguard/Web/Pages/_Layout.cshtml diff --git a/linguard/web/Program.cs b/Linguard/Web/Program.cs similarity index 100% rename from linguard/web/Program.cs rename to Linguard/Web/Program.cs diff --git a/linguard/web/Properties/launchSettings.json b/Linguard/Web/Properties/launchSettings.json similarity index 100% rename from linguard/web/Properties/launchSettings.json rename to Linguard/Web/Properties/launchSettings.json diff --git a/linguard/web/Services/IWebService.cs b/Linguard/Web/Services/IWebService.cs similarity index 100% rename from linguard/web/Services/IWebService.cs rename to Linguard/Web/Services/IWebService.cs diff --git a/linguard/web/Services/WebService.cs b/Linguard/Web/Services/WebService.cs similarity index 96% rename from linguard/web/Services/WebService.cs rename to Linguard/Web/Services/WebService.cs index 0e6ac75..e574484 100644 --- a/linguard/web/Services/WebService.cs +++ b/Linguard/Web/Services/WebService.cs @@ -43,7 +43,7 @@ public void DownloadWireguardModel(IWireguardPeer peer) { public void RemoveWireguardModel(IWireguardPeer peer) { switch (peer) { case Client client: - RemovePeer(client); + RemoveClient(client); break; case Interface iface: RemoveInterface(iface); @@ -57,7 +57,7 @@ public byte[] GetQrCode(IWireguardPeer peer) { return new PngByteQRCode(qrCodeData).GetGraphic(20); } - private void RemovePeer(Client client) { + private void RemoveClient(Client client) { WireguardService.GetInterface(client)?.Clients.Remove(client); ConfigurationManager.Save(); } diff --git a/Linguard/Web/Shared/ClientConfigurationForm.razor b/Linguard/Web/Shared/ClientConfigurationForm.razor new file mode 100644 index 0000000..9f9571d --- /dev/null +++ b/Linguard/Web/Shared/ClientConfigurationForm.razor @@ -0,0 +1,209 @@ +@using Linguard.Core.Models.Wireguard +@using Linguard.Core.Services +@using Linguard.Core.Managers +@using Linguard.Core.Configuration +@namespace Linguard.Web.Shared + +
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ + +
+
+
+
+
+
+
+
+ +
+
+
+
+ +
+
+
+
+
+
+
+
+ +
+
+
+
+ +
+
+
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+ +
+
+
+
+
+
+ +
+
+
+
+ +
+
+
+
+ + @if (ShowWireguardKeys) { +
+
+
+
+ +
+
+
+
+ +
+
+
+
+
+
+ +
+
+
+
+ +
+
+
+
+ } + +
+
+
+
+

Nat

+
+
+
+
+ +
+
+
+
+ +
+
+ +
+
+
+ +@inject IConfigurationManager _configurationManager +@inject IWireguardService _wireguardService + +@code { + [Parameter] + public Client Client { get; set; } + + [Parameter] + public bool ShowWireguardKeys { get; set; } + + [Parameter] + public string SubmitText { get; set; } = "Save"; + + [Parameter] + public string SubmitIcon { get; set; } = "save"; + + [Parameter] + public Interface? Interface { get; set; } + + private IConfiguration Configuration => _configurationManager.Configuration; + + protected override void OnInitialized() { + base.OnInitialized(); + if (Interface == default) { + Interface = _wireguardService.GetInterface(Client); + } + } + +} \ No newline at end of file diff --git a/linguard/web/Shared/Footer.razor b/Linguard/Web/Shared/Footer.razor similarity index 100% rename from linguard/web/Shared/Footer.razor rename to Linguard/Web/Shared/Footer.razor diff --git a/linguard/web/Shared/EditInterfaceConfigurationForm.razor b/Linguard/Web/Shared/InterfaceConfigurationForm.razor similarity index 86% rename from linguard/web/Shared/EditInterfaceConfigurationForm.razor rename to Linguard/Web/Shared/InterfaceConfigurationForm.razor index 5320c35..04ca848 100644 --- a/linguard/web/Shared/EditInterfaceConfigurationForm.razor +++ b/Linguard/Web/Shared/InterfaceConfigurationForm.razor @@ -1,8 +1,5 @@ @using Linguard.Core.Models.Wireguard @using Linguard.Core.Models.Wireguard.Validators -@using Linguard.Core.Services -@using Linguard.Web.Services -@using Linguard.Core.Managers @using System.Net.NetworkInformation @namespace Linguard.Web.Shared @@ -139,34 +136,36 @@ -
-
-
-
- + @if (ShowWireguardKeys) { +
+
+
+
+ +
-
-
-
- +
+
+ +
-
-
-
-
- +
+
+
+ +
-
-
-
- +
+
+ +
-
+ }
@@ -248,21 +247,25 @@
- +
- - +
+
+

Auto

+
+
+
+
+ +
+
- +
-
@@ -272,6 +275,15 @@ [Parameter] public Interface Iface { get; set; } + [Parameter] + public bool ShowWireguardKeys { get; set; } + + [Parameter] + public string SubmitText { get; set; } = "Save"; + + [Parameter] + public string SubmitIcon { get; set; } = "save"; + RadzenDataGrid _onUpGrid; RadzenDataGrid _onDownGrid; @@ -282,7 +294,7 @@ .OrderBy(n => n); void OnGatewayChanged(object gatewayName) { - Iface!.Gateway = NetworkInterface.GetAllNetworkInterfaces() + Iface.Gateway = NetworkInterface.GetAllNetworkInterfaces() .SingleOrDefault(i => i.Name.Equals(gatewayName))!; } } \ No newline at end of file diff --git a/linguard/web/Shared/LoggingSettings.razor b/Linguard/Web/Shared/LoggingSettings.razor similarity index 100% rename from linguard/web/Shared/LoggingSettings.razor rename to Linguard/Web/Shared/LoggingSettings.razor diff --git a/linguard/web/Shared/MainLayout.razor b/Linguard/Web/Shared/MainLayout.razor similarity index 100% rename from linguard/web/Shared/MainLayout.razor rename to Linguard/Web/Shared/MainLayout.razor diff --git a/Linguard/Web/Shared/PeerActions.razor b/Linguard/Web/Shared/PeerActions.razor new file mode 100644 index 0000000..f0009b6 --- /dev/null +++ b/Linguard/Web/Shared/PeerActions.razor @@ -0,0 +1,123 @@ +@using Linguard.Core.Models.Wireguard +@using Linguard.Core.Services +@using Linguard.Web.Services +@using Linguard.Core.Managers +@using System.Net.NetworkInformation + +
+
+ @if (Peer is Interface) { + @if (InterfaceNames.Contains(Peer.Name)) { + + } + else { + + } + } + + + +
+
+ +@inject IConfigurationManager _configurationManager +@inject IWireguardService _wireguardService +@inject IWebService _webService; +@inject NotificationService _notificationService +@inject DialogService _dialogService +@inject NavigationManager _navigationManager + +@code { + + [Parameter] + public IWireguardPeer Peer { get; set; } + + IEnumerable InterfaceNames => NetworkInterface.GetAllNetworkInterfaces() + .Select(i => i.Name) + //.Concat(Configuration.Interfaces.Select(i => i.Name)) + //.Distinct() + .OrderBy(n => n); + + #region Interface only methods + + void StartInterface() { + try { + _wireguardService.StartInterface((Interface) Peer); + } + catch (Exception e) { + _notificationService.Notify(new NotificationMessage { + Severity = NotificationSeverity.Error, + Summary = "Unable to start interface", + Detail = e.Message + }); + } + } + + void StopInterface() { + try { + _wireguardService.StopInterface((Interface) Peer); + } + catch (Exception e) { + _notificationService.Notify(new NotificationMessage { + Severity = NotificationSeverity.Error, + Summary = "Unable to stop interface", + Detail = e.Message + }); + } + } + + #endregion + + async void ShowQrCode(IWireguardPeer peer) { + var qr = $"data:image/png;base64, {Convert.ToBase64String(_webService.GetQrCode(peer))}" ; + await _dialogService.OpenAsync($"Configuration of {peer.Name}", ds => + @
+
+
+ +
+
+
, + new DialogOptions { + Style = "min-height:auto;min-width:auto;width:auto" + } + ); + } + + async void ConfirmRemoveWireguardPeer(IWireguardPeer peer) { + var peerType = peer.GetType().Name.ToLower(); + var remove = await _dialogService.Confirm( + $"Are you sure you want to delete {peer.Name}? This cannot be undone.", + $"Delete {peerType} {peer.Name}", + new ConfirmOptions { + OkButtonText = "Yes", + CancelButtonText = "No", + CloseDialogOnOverlayClick = true, + }); + if (remove == default || !remove.Value) return; + RemovePeer(); + + void RemovePeer() { + try { + _webService.RemoveWireguardModel(peer); + _navigationManager.NavigateTo("wireguard"); + } + catch (Exception e) { + _notificationService.Notify(new NotificationMessage { + Severity = NotificationSeverity.Error, + Summary = $"Unable to remove {peerType} {peer.Name}", + Detail = e.Message + }); + } + } + } + +} \ No newline at end of file diff --git a/linguard/web/Shared/ProfileMenu.razor b/Linguard/Web/Shared/ProfileMenu.razor similarity index 100% rename from linguard/web/Shared/ProfileMenu.razor rename to Linguard/Web/Shared/ProfileMenu.razor diff --git a/linguard/web/Shared/Sidebar.razor b/Linguard/Web/Shared/Sidebar.razor similarity index 100% rename from linguard/web/Shared/Sidebar.razor rename to Linguard/Web/Shared/Sidebar.razor diff --git a/linguard/web/Shared/SimpleAlert.razor b/Linguard/Web/Shared/SimpleAlert.razor similarity index 100% rename from linguard/web/Shared/SimpleAlert.razor rename to Linguard/Web/Shared/SimpleAlert.razor diff --git a/Linguard/Web/Shared/TrafficInfo.razor b/Linguard/Web/Shared/TrafficInfo.razor new file mode 100644 index 0000000..1cf9ede --- /dev/null +++ b/Linguard/Web/Shared/TrafficInfo.razor @@ -0,0 +1,83 @@ +@using Linguard.Core.Models +@using Linguard.Core.Models.Wireguard +@using Linguard.Web.Utils +@using ByteSizeLib +@using Linguard.Core.Configuration +@using Linguard.Core.Managers +@using Linguard.Core.Services + +
+ +
+ +

Real time

+ @if (_realTimeTraffic == default || _realTimeChartData.All(d => d.Value == default)) { +

There is no data yet.

+ } + else { + + + + @data.ToString() + + + + } +
+
+ +
+ +

History

+ @if (!Configuration.Traffic.Enabled) { +

+ It looks like traffic data storage is disabled. + Enable it to get more statistics. +

+ } + +

There is no data yet.

+
+
+
+ +@inject IConfigurationManager _configurationManager +@inject IWireguardService _wireguardService + +@code { + IConfiguration Configuration => _configurationManager.Configuration; + + [Parameter] + public IWireguardPeer Peer { get; set; } + + TrafficData? _realTimeTraffic; + + IEnumerable _realTimeChartData => new List { + new() { + Key = "Received", + Value = _realTimeTraffic?.ReceivedData ?? ByteSize.FromBytes(0) + }, + new() { + Key = "Transmitted", + Value = _realTimeTraffic?.SentData ?? ByteSize.FromBytes(0) + } + }; + + protected override void OnInitialized() { + base.OnInitialized(); + _realTimeTraffic = GetRealTimeTraffic(); + } + + private TrafficData? GetRealTimeTraffic() { + switch (Peer) { + case Client client: + return _wireguardService.GetTrafficData(client); + case Interface iface: + return _wireguardService.GetTrafficData(iface).SingleOrDefault(e => e.Peer is Interface); + default: + throw new NotSupportedException($"Peer type not supported: {Peer.GetType()}"); + } + } + +} \ No newline at end of file diff --git a/linguard/web/Shared/WebSettings.razor b/Linguard/Web/Shared/WebSettings.razor similarity index 100% rename from linguard/web/Shared/WebSettings.razor rename to Linguard/Web/Shared/WebSettings.razor diff --git a/linguard/web/Shared/WireguardSettings.razor b/Linguard/Web/Shared/WireguardSettings.razor similarity index 100% rename from linguard/web/Shared/WireguardSettings.razor rename to Linguard/Web/Shared/WireguardSettings.razor diff --git a/linguard/web/Utils/ChartTrafficData.cs b/Linguard/Web/Utils/ChartTrafficData.cs similarity index 100% rename from linguard/web/Utils/ChartTrafficData.cs rename to Linguard/Web/Utils/ChartTrafficData.cs diff --git a/linguard/web/Web.csproj b/Linguard/Web/Web.csproj similarity index 100% rename from linguard/web/Web.csproj rename to Linguard/Web/Web.csproj diff --git a/linguard/web/_Imports.razor b/Linguard/Web/_Imports.razor similarity index 100% rename from linguard/web/_Imports.razor rename to Linguard/Web/_Imports.razor diff --git a/linguard/web/appsettings.Development.json b/Linguard/Web/appsettings.Development.json similarity index 100% rename from linguard/web/appsettings.Development.json rename to Linguard/Web/appsettings.Development.json diff --git a/linguard/web/appsettings.json b/Linguard/Web/appsettings.json similarity index 100% rename from linguard/web/appsettings.json rename to Linguard/Web/appsettings.json diff --git a/linguard/web/wwwroot/css/bootstrap/bootstrap.min.css b/Linguard/Web/wwwroot/css/bootstrap/bootstrap.min.css similarity index 100% rename from linguard/web/wwwroot/css/bootstrap/bootstrap.min.css rename to Linguard/Web/wwwroot/css/bootstrap/bootstrap.min.css diff --git a/linguard/web/wwwroot/css/bootstrap/bootstrap.min.css.map b/Linguard/Web/wwwroot/css/bootstrap/bootstrap.min.css.map similarity index 100% rename from linguard/web/wwwroot/css/bootstrap/bootstrap.min.css.map rename to Linguard/Web/wwwroot/css/bootstrap/bootstrap.min.css.map diff --git a/linguard/web/wwwroot/css/site.css b/Linguard/Web/wwwroot/css/site.css similarity index 100% rename from linguard/web/wwwroot/css/site.css rename to Linguard/Web/wwwroot/css/site.css diff --git a/linguard/web/wwwroot/favicon.ico b/Linguard/Web/wwwroot/favicon.ico similarity index 100% rename from linguard/web/wwwroot/favicon.ico rename to Linguard/Web/wwwroot/favicon.ico diff --git a/linguard/web/wwwroot/js/helper.js b/Linguard/Web/wwwroot/js/helper.js similarity index 100% rename from linguard/web/wwwroot/js/helper.js rename to Linguard/Web/wwwroot/js/helper.js diff --git a/build.sh b/build.sh old mode 100755 new mode 100644 diff --git a/docs/make.bat b/docs/make.bat index 6fcf05b..061f32f 100644 --- a/docs/make.bat +++ b/docs/make.bat @@ -1,35 +1,35 @@ -@ECHO OFF - -pushd %~dp0 - -REM Command file for Sphinx documentation - -if "%SPHINXBUILD%" == "" ( - set SPHINXBUILD=sphinx-build -) -set SOURCEDIR=source -set BUILDDIR=build - -if "%1" == "" goto help - -%SPHINXBUILD% >NUL 2>NUL -if errorlevel 9009 ( - echo. - echo.The 'sphinx-build' command was not found. Make sure you have Sphinx - echo.installed, then set the SPHINXBUILD environment variable to point - echo.to the full path of the 'sphinx-build' executable. Alternatively you - echo.may add the Sphinx directory to PATH. - echo. - echo.If you don't have Sphinx installed, grab it from - echo.https://www.sphinx-doc.org/ - exit /b 1 -) - -%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% -goto end - -:help -%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% - -:end -popd +@ECHO OFF + +pushd %~dp0 + +REM Command file for Sphinx documentation + +if "%SPHINXBUILD%" == "" ( + set SPHINXBUILD=sphinx-build +) +set SOURCEDIR=source +set BUILDDIR=build + +if "%1" == "" goto help + +%SPHINXBUILD% >NUL 2>NUL +if errorlevel 9009 ( + echo. + echo.The 'sphinx-build' command was not found. Make sure you have Sphinx + echo.installed, then set the SPHINXBUILD environment variable to point + echo.to the full path of the 'sphinx-build' executable. Alternatively you + echo.may add the Sphinx directory to PATH. + echo. + echo.If you don't have Sphinx installed, grab it from + echo.https://www.sphinx-doc.org/ + exit /b 1 +) + +%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% +goto end + +:help +%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% + +:end +popd diff --git a/linguard/Auth/bin/Debug/net6.0/Auth.deps.json b/linguard/Auth/bin/Debug/net6.0/Auth.deps.json deleted file mode 100644 index b2e5d1b..0000000 --- a/linguard/Auth/bin/Debug/net6.0/Auth.deps.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v6.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v6.0": { - "Auth/1.0.0": { - "runtime": { - "Auth.dll": {} - } - } - } - }, - "libraries": { - "Auth/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/linguard/Auth/bin/Debug/net6.0/Auth.dll b/linguard/Auth/bin/Debug/net6.0/Auth.dll deleted file mode 100644 index 24c140f..0000000 Binary files a/linguard/Auth/bin/Debug/net6.0/Auth.dll and /dev/null differ diff --git a/linguard/Auth/bin/Debug/net6.0/Auth.pdb b/linguard/Auth/bin/Debug/net6.0/Auth.pdb deleted file mode 100644 index 4f17528..0000000 Binary files a/linguard/Auth/bin/Debug/net6.0/Auth.pdb and /dev/null differ diff --git a/linguard/Auth/bin/Debug/net6.0/ref/Auth.dll b/linguard/Auth/bin/Debug/net6.0/ref/Auth.dll deleted file mode 100644 index 1f5f6df..0000000 Binary files a/linguard/Auth/bin/Debug/net6.0/ref/Auth.dll and /dev/null differ diff --git a/linguard/Auth/obj/Auth.csproj.nuget.dgspec.json b/linguard/Auth/obj/Auth.csproj.nuget.dgspec.json deleted file mode 100644 index c4f4e6e..0000000 --- a/linguard/Auth/obj/Auth.csproj.nuget.dgspec.json +++ /dev/null @@ -1,60 +0,0 @@ -{ - "format": 1, - "restore": { - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Auth\\Auth.csproj": {} - }, - "projects": { - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Auth\\Auth.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Auth\\Auth.csproj", - "projectName": "Auth", - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Auth\\Auth.csproj", - "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Auth\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/linguard/Auth/obj/Auth.csproj.nuget.g.props b/linguard/Auth/obj/Auth.csproj.nuget.g.props deleted file mode 100644 index df348a1..0000000 --- a/linguard/Auth/obj/Auth.csproj.nuget.g.props +++ /dev/null @@ -1,15 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\theyu\.nuget\packages\ - PackageReference - 6.0.0 - - - - - \ No newline at end of file diff --git a/linguard/Auth/obj/Auth.csproj.nuget.g.targets b/linguard/Auth/obj/Auth.csproj.nuget.g.targets deleted file mode 100644 index 3dc06ef..0000000 --- a/linguard/Auth/obj/Auth.csproj.nuget.g.targets +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/linguard/Auth/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/linguard/Auth/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs deleted file mode 100644 index 36203c7..0000000 --- a/linguard/Auth/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/linguard/Auth/obj/Debug/net6.0/Auth.AssemblyInfo.cs b/linguard/Auth/obj/Debug/net6.0/Auth.AssemblyInfo.cs deleted file mode 100644 index 0968c94..0000000 --- a/linguard/Auth/obj/Debug/net6.0/Auth.AssemblyInfo.cs +++ /dev/null @@ -1,22 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("Auth")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("Auth")] -[assembly: System.Reflection.AssemblyTitleAttribute("Auth")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generado por la clase WriteCodeFragment de MSBuild. - diff --git a/linguard/Auth/obj/Debug/net6.0/Auth.AssemblyInfoInputs.cache b/linguard/Auth/obj/Debug/net6.0/Auth.AssemblyInfoInputs.cache deleted file mode 100644 index fdd7ced..0000000 --- a/linguard/Auth/obj/Debug/net6.0/Auth.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -0d31ac86cc99b983cef71f0084ee961c117b2e81 diff --git a/linguard/Auth/obj/Debug/net6.0/Auth.GeneratedMSBuildEditorConfig.editorconfig b/linguard/Auth/obj/Debug/net6.0/Auth.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 6073df6..0000000 --- a/linguard/Auth/obj/Debug/net6.0/Auth.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,10 +0,0 @@ -is_global = true -build_property.TargetFramework = net6.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = Auth -build_property.ProjectDir = C:\Users\theyu\repos\linguard\Linguard\Auth\ diff --git a/linguard/Auth/obj/Debug/net6.0/Auth.GlobalUsings.g.cs b/linguard/Auth/obj/Debug/net6.0/Auth.GlobalUsings.g.cs deleted file mode 100644 index 8578f3d..0000000 --- a/linguard/Auth/obj/Debug/net6.0/Auth.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -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/linguard/Auth/obj/Debug/net6.0/Auth.assets.cache b/linguard/Auth/obj/Debug/net6.0/Auth.assets.cache deleted file mode 100644 index 0daa43b..0000000 Binary files a/linguard/Auth/obj/Debug/net6.0/Auth.assets.cache and /dev/null differ diff --git a/linguard/Auth/obj/Debug/net6.0/Auth.csproj.AssemblyReference.cache b/linguard/Auth/obj/Debug/net6.0/Auth.csproj.AssemblyReference.cache deleted file mode 100644 index 204fdef..0000000 Binary files a/linguard/Auth/obj/Debug/net6.0/Auth.csproj.AssemblyReference.cache and /dev/null differ diff --git a/linguard/Auth/obj/Debug/net6.0/Auth.csproj.CoreCompileInputs.cache b/linguard/Auth/obj/Debug/net6.0/Auth.csproj.CoreCompileInputs.cache deleted file mode 100644 index 18c217e..0000000 --- a/linguard/Auth/obj/Debug/net6.0/Auth.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -0800bade65a3452077bc3c8d6c38143f224d1261 diff --git a/linguard/Auth/obj/Debug/net6.0/Auth.csproj.FileListAbsolute.txt b/linguard/Auth/obj/Debug/net6.0/Auth.csproj.FileListAbsolute.txt deleted file mode 100644 index 87e207b..0000000 --- a/linguard/Auth/obj/Debug/net6.0/Auth.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,24 +0,0 @@ -C:\Users\theyu\repos\linguard-dotnet\Linguard\Auth\bin\Debug\net6.0\Auth.deps.json -C:\Users\theyu\repos\linguard-dotnet\Linguard\Auth\bin\Debug\net6.0\Auth.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Auth\bin\Debug\net6.0\ref\Auth.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Auth\bin\Debug\net6.0\Auth.pdb -C:\Users\theyu\repos\linguard-dotnet\Linguard\Auth\obj\Debug\net6.0\Auth.csproj.AssemblyReference.cache -C:\Users\theyu\repos\linguard-dotnet\Linguard\Auth\obj\Debug\net6.0\Auth.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\theyu\repos\linguard-dotnet\Linguard\Auth\obj\Debug\net6.0\Auth.AssemblyInfoInputs.cache -C:\Users\theyu\repos\linguard-dotnet\Linguard\Auth\obj\Debug\net6.0\Auth.AssemblyInfo.cs -C:\Users\theyu\repos\linguard-dotnet\Linguard\Auth\obj\Debug\net6.0\Auth.csproj.CoreCompileInputs.cache -C:\Users\theyu\repos\linguard-dotnet\Linguard\Auth\obj\Debug\net6.0\Auth.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Auth\obj\Debug\net6.0\ref\Auth.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Auth\obj\Debug\net6.0\Auth.pdb -C:\Users\theyu\repos\linguard\Linguard\Auth\bin\Debug\net6.0\Auth.deps.json -C:\Users\theyu\repos\linguard\Linguard\Auth\bin\Debug\net6.0\Auth.dll -C:\Users\theyu\repos\linguard\Linguard\Auth\bin\Debug\net6.0\ref\Auth.dll -C:\Users\theyu\repos\linguard\Linguard\Auth\bin\Debug\net6.0\Auth.pdb -C:\Users\theyu\repos\linguard\Linguard\Auth\obj\Debug\net6.0\Auth.csproj.AssemblyReference.cache -C:\Users\theyu\repos\linguard\Linguard\Auth\obj\Debug\net6.0\Auth.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\theyu\repos\linguard\Linguard\Auth\obj\Debug\net6.0\Auth.AssemblyInfoInputs.cache -C:\Users\theyu\repos\linguard\Linguard\Auth\obj\Debug\net6.0\Auth.AssemblyInfo.cs -C:\Users\theyu\repos\linguard\Linguard\Auth\obj\Debug\net6.0\Auth.csproj.CoreCompileInputs.cache -C:\Users\theyu\repos\linguard\Linguard\Auth\obj\Debug\net6.0\Auth.dll -C:\Users\theyu\repos\linguard\Linguard\Auth\obj\Debug\net6.0\ref\Auth.dll -C:\Users\theyu\repos\linguard\Linguard\Auth\obj\Debug\net6.0\Auth.pdb diff --git a/linguard/Auth/obj/Debug/net6.0/Auth.dll b/linguard/Auth/obj/Debug/net6.0/Auth.dll deleted file mode 100644 index 24c140f..0000000 Binary files a/linguard/Auth/obj/Debug/net6.0/Auth.dll and /dev/null differ diff --git a/linguard/Auth/obj/Debug/net6.0/Auth.pdb b/linguard/Auth/obj/Debug/net6.0/Auth.pdb deleted file mode 100644 index 4f17528..0000000 Binary files a/linguard/Auth/obj/Debug/net6.0/Auth.pdb and /dev/null differ diff --git a/linguard/Auth/obj/Debug/net6.0/ref/Auth.dll b/linguard/Auth/obj/Debug/net6.0/ref/Auth.dll deleted file mode 100644 index 1f5f6df..0000000 Binary files a/linguard/Auth/obj/Debug/net6.0/ref/Auth.dll and /dev/null differ diff --git a/linguard/Auth/obj/project.assets.json b/linguard/Auth/obj/project.assets.json deleted file mode 100644 index 0f39767..0000000 --- a/linguard/Auth/obj/project.assets.json +++ /dev/null @@ -1,65 +0,0 @@ -{ - "version": 3, - "targets": { - "net6.0": {} - }, - "libraries": {}, - "projectFileDependencyGroups": { - "net6.0": [] - }, - "packageFolders": { - "C:\\Users\\theyu\\.nuget\\packages\\": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Auth\\Auth.csproj", - "projectName": "Auth", - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Auth\\Auth.csproj", - "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Auth\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/linguard/Auth/obj/project.nuget.cache b/linguard/Auth/obj/project.nuget.cache deleted file mode 100644 index cc72c46..0000000 --- a/linguard/Auth/obj/project.nuget.cache +++ /dev/null @@ -1,8 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "rJlhMfQ2n/uZlDT92iNdih+6kyhhekP4gchaCI+kWBcOdQHz9aLtC+j17sbJNzvZwLFntCFzQ8ztRlAMbly3Nw==", - "success": true, - "projectFilePath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Auth\\Auth.csproj", - "expectedPackageFiles": [], - "logs": [] -} \ No newline at end of file diff --git a/linguard/Auth/obj/project.packagespec.json b/linguard/Auth/obj/project.packagespec.json deleted file mode 100644 index 8dfa4a7..0000000 --- a/linguard/Auth/obj/project.packagespec.json +++ /dev/null @@ -1 +0,0 @@ -"restore":{"projectUniqueName":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Auth\\Auth.csproj","projectName":"Auth","projectPath":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Auth\\Auth.csproj","outputPath":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Auth\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net6.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net6.0":{"targetAlias":"net6.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net6.0":{"targetAlias":"net6.0","imports":["net461","net462","net47","net471","net472","net48"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/linguard/Auth/obj/rider.project.restore.info b/linguard/Auth/obj/rider.project.restore.info deleted file mode 100644 index 85d1deb..0000000 --- a/linguard/Auth/obj/rider.project.restore.info +++ /dev/null @@ -1 +0,0 @@ -16454671674094552 \ No newline at end of file diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Bogus.dll b/linguard/Cli.Test/bin/Debug/net6.0/Bogus.dll deleted file mode 100644 index 84e6073..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Bogus.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Castle.Core.dll b/linguard/Cli.Test/bin/Debug/net6.0/Castle.Core.dll deleted file mode 100644 index 527172e..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Castle.Core.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Cli.Test.deps.json b/linguard/Cli.Test/bin/Debug/net6.0/Cli.Test.deps.json deleted file mode 100644 index d2ea86d..0000000 --- a/linguard/Cli.Test/bin/Debug/net6.0/Cli.Test.deps.json +++ /dev/null @@ -1,4469 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v6.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v6.0": { - "Cli.Test/1.0.0": { - "dependencies": { - "Core.Test": "1.0.0", - "FluentAssertions": "6.4.0", - "Linguard.Cli": "2.0.0", - "Microsoft.NET.Test.Sdk": "16.11.0", - "Moq": "4.16.1", - "coverlet.msbuild": "3.1.2", - "xunit": "2.4.1", - "xunit.runner.visualstudio": "2.4.3" - }, - "runtime": { - "Cli.Test.dll": {} - } - }, - "Bogus/34.0.1": { - "runtime": { - "lib/net6.0/Bogus.dll": { - "assemblyVersion": "34.0.1.0", - "fileVersion": "34.0.1.0" - } - } - }, - "ByteSize/2.1.1": { - "runtime": { - "lib/net5.0/ByteSize.dll": { - "assemblyVersion": "2.1.1.0", - "fileVersion": "2.1.1.0" - } - } - }, - "Castle.Core/4.4.0": { - "dependencies": { - "NETStandard.Library": "1.6.1", - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel": "4.3.0", - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Diagnostics.TraceSource": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, - "runtime": { - "lib/netstandard1.5/Castle.Core.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.4.0.0" - } - } - }, - "CommandLineParser/2.8.0": { - "runtime": { - "lib/netstandard2.0/CommandLine.dll": { - "assemblyVersion": "2.8.0.0", - "fileVersion": "2.8.0.0" - } - } - }, - "coverlet.msbuild/3.1.2": {}, - "FluentAssertions/6.4.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "runtime": { - "lib/netcoreapp3.0/FluentAssertions.dll": { - "assemblyVersion": "6.4.0.0", - "fileVersion": "6.4.0.0" - } - } - }, - "FluentValidation/10.3.6": { - "runtime": { - "lib/net6.0/FluentValidation.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "10.3.6.0" - } - } - }, - "IPNetwork2/2.5.386": { - "runtime": { - "lib/net5.0/System.Net.IPNetwork.dll": { - "assemblyVersion": "2.5.386.0", - "fileVersion": "2.5.386.0" - } - } - }, - "Markdig.Signed/0.22.0": { - "runtime": { - "lib/netcoreapp3.1/Markdig.Signed.dll": { - "assemblyVersion": "0.22.0.0", - "fileVersion": "0.22.0.0" - } - } - }, - "Microsoft.ApplicationInsights/2.18.0": { - "dependencies": { - "System.Diagnostics.DiagnosticSource": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": { - "assemblyVersion": "2.18.0.315", - "fileVersion": "2.18.0.315" - } - } - }, - "Microsoft.Bcl.AsyncInterfaces/5.0.0": { - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.CodeAnalysis.Analyzers/3.3.2": {}, - "Microsoft.CodeAnalysis.Common/4.0.1": { - "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": "6.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.0.121.55815" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp/4.0.1": { - "dependencies": { - "Microsoft.CodeAnalysis.Common": "4.0.1" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.0.121.55815" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeCoverage/16.11.0": { - "runtime": { - "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "16.1000.21.27002" - } - } - }, - "Microsoft.CSharp/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "Microsoft.Extensions.DependencyInjection/6.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "runtime": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Logging/6.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "System.Diagnostics.DiagnosticSource": "6.0.0" - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/6.0.0": { - "runtime": { - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Logging.Debug/6.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.ObjectPool/5.0.10": { - "runtime": { - "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.1021.41022" - } - } - }, - "Microsoft.Extensions.Options/6.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Management.Infrastructure/2.0.0": { - "dependencies": { - "Microsoft.Management.Infrastructure.Runtime.Unix": "2.0.0", - "Microsoft.Management.Infrastructure.Runtime.Win": "2.0.0" - } - }, - "Microsoft.Management.Infrastructure.CimCmdlets/7.2.1": { - "dependencies": { - "System.Management.Automation": "7.2.1" - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.0.0.0" - } - } - }, - "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { - "runtimeTargets": { - "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win-arm", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win-arm", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win-arm64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win-arm64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win10-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win10-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win10-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win10-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win7-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win7-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win7-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win7-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win8-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win8-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win8-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win8-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win81-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win81-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win81-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win81-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm/native/mi.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm/native/miutils.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/native/mi.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/native/miutils.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win10-x64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/native/mi.dll": { - "rid": "win10-x64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/native/miutils.dll": { - "rid": "win10-x64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win10-x86", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/native/mi.dll": { - "rid": "win10-x86", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/native/miutils.dll": { - "rid": "win10-x86", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win7-x64", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x64/native/mi.dll": { - "rid": "win7-x64", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x64/native/miutils.dll": { - "rid": "win7-x64", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win7-x86", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x86/native/mi.dll": { - "rid": "win7-x86", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x86/native/miutils.dll": { - "rid": "win7-x86", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win8-x64/native/mi.dll": { - "rid": "win8-x64", - "assetType": "native", - "fileVersion": "6.2.9200.22812" - }, - "runtimes/win8-x64/native/miutils.dll": { - "rid": "win8-x64", - "assetType": "native", - "fileVersion": "6.2.9200.22812" - }, - "runtimes/win8-x86/native/mi.dll": { - "rid": "win8-x86", - "assetType": "native", - "fileVersion": "6.2.9200.22812" - }, - "runtimes/win8-x86/native/miutils.dll": { - "rid": "win8-x86", - "assetType": "native", - "fileVersion": "6.2.9200.22812" - }, - "runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win81-x64", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x64/native/mi.dll": { - "rid": "win81-x64", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x64/native/miutils.dll": { - "rid": "win81-x64", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win81-x86", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x86/native/mi.dll": { - "rid": "win81-x86", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x86/native/miutils.dll": { - "rid": "win81-x86", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - } - } - }, - "Microsoft.NET.Test.Sdk/16.11.0": { - "dependencies": { - "Microsoft.CodeCoverage": "16.11.0", - "Microsoft.TestPlatform.TestHost": "16.11.0" - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "Microsoft.NETCore.Windows.ApiSets/1.0.1": {}, - "Microsoft.PowerShell.Commands.Diagnostics/7.2.1": { - "dependencies": { - "System.Management.Automation": "7.2.1" - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.Commands.Management/7.2.1": { - "dependencies": { - "Microsoft.PowerShell.Security": "7.2.1", - "System.ServiceProcess.ServiceController": "6.0.0" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.Commands.Utility/7.2.1": { - "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" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.ConsoleHost/7.2.1": { - "dependencies": { - "System.Management.Automation": "7.2.1" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.CoreCLR.Eventing/7.2.1": { - "dependencies": { - "System.Diagnostics.EventLog": "6.0.0" - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.MarkdownRender/7.2.0": { - "dependencies": { - "Markdig.Signed": "0.22.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll": { - "assemblyVersion": "7.2.0.0", - "fileVersion": "7.2.0.0" - } - } - }, - "Microsoft.PowerShell.Native/7.2.0": { - "runtimeTargets": { - "runtimes/linux-arm/native/libpsl-native.so": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm64/native/libpsl-native.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libpsl-native.so": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libmi.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libpsl-native.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libpsrpclient.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libmi.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libpsl-native.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libpsrpclient.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-arm/native/pwrshplugin.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-arm64/native/pwrshplugin.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-x64/native/pwrshplugin.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-x86/native/pwrshplugin.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - } - } - }, - "Microsoft.PowerShell.SDK/7.2.1": { - "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" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.Security/7.2.1": { - "dependencies": { - "System.Management.Automation": "7.2.1" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.TestPlatform.ObjectModel/16.11.0": { - "dependencies": { - "NuGet.Frameworks": "5.0.0", - "System.Reflection.Metadata": "5.0.0" - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - } - }, - "resources": { - "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.TestPlatform.TestHost/16.11.0": { - "dependencies": { - "Microsoft.TestPlatform.ObjectModel": "16.11.0", - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netcoreapp2.1/testhost.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - } - }, - "resources": { - "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.Win32.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "Microsoft.Win32.Registry/4.7.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Security.Principal.Windows": "5.0.0" - } - }, - "Microsoft.Win32.Registry.AccessControl/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "runtime": { - "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Windows.Compatibility/6.0.0": { - "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" - } - }, - "Microsoft.WSMan.Management/7.2.1": { - "dependencies": { - "Microsoft.WSMan.Runtime": "7.2.1", - "System.Management.Automation": "7.2.1", - "System.ServiceProcess.ServiceController": "6.0.0" - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.WSMan.Runtime/7.2.1": { - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Moq/4.16.1": { - "dependencies": { - "Castle.Core": "4.4.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.1/Moq.dll": { - "assemblyVersion": "4.16.0.0", - "fileVersion": "4.16.1.0" - } - } - }, - "Namotion.Reflection/2.0.3": { - "dependencies": { - "Microsoft.CSharp": "4.3.0" - }, - "runtime": { - "lib/netstandard2.0/Namotion.Reflection.dll": { - "assemblyVersion": "2.0.3.0", - "fileVersion": "2.0.3.0" - } - } - }, - "NETStandard.Library/1.6.1": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.Compression.ZipFile": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Net.Sockets": "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.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Timer": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0" - } - }, - "Newtonsoft.Json/13.0.1": { - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.1.25517" - } - } - }, - "NJsonSchema/10.5.2": { - "dependencies": { - "Namotion.Reflection": "2.0.3", - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/netstandard2.0/NJsonSchema.dll": { - "assemblyVersion": "10.5.2.0", - "fileVersion": "10.5.2.0" - } - } - }, - "NLog/4.7.13": { - "runtime": { - "lib/netstandard2.0/NLog.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.7.13.493" - } - } - }, - "NuGet.Frameworks/5.0.0": { - "runtime": { - "lib/netstandard2.0/NuGet.Frameworks.dll": { - "assemblyVersion": "5.0.0.6", - "fileVersion": "5.0.0.5923" - } - } - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": { - "runtimeTargets": { - "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": { - "runtimeTargets": { - "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": { - "runtimeTargets": { - "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.native.System/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Data.SqlClient.sni/4.7.0": { - "dependencies": { - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" - } - }, - "runtime.native.System.IO.Compression/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.IO.Ports/6.0.0": { - "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.native.System.Net.Http/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "dependencies": { - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": { - "runtimeTargets": { - "runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib": { - "rid": "osx-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": { - "runtimeTargets": { - "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "runtimeTargets": { - "runtimes/win-arm64/native/sni.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "4.6.25512.1" - } - } - }, - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "runtimeTargets": { - "runtimes/win-x64/native/sni.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "4.6.25512.1" - } - } - }, - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "runtimeTargets": { - "runtimes/win-x86/native/sni.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "4.6.25512.1" - } - } - }, - "System.AppContext/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Buffers/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.CodeDom/6.0.0": { - "runtime": { - "lib/net6.0/System.CodeDom.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Collections.Concurrent/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Collections.Immutable/5.0.0": {}, - "System.Collections.NonGeneric/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Collections.Specialized/4.3.0": { - "dependencies": { - "System.Collections.NonGeneric": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.ComponentModel/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.ComponentModel.Composition/6.0.0": { - "runtime": { - "lib/net6.0/System.ComponentModel.Composition.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.ComponentModel.Composition.Registration/6.0.0": { - "dependencies": { - "System.ComponentModel.Composition": "6.0.0", - "System.Reflection.Context": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.ComponentModel.Composition.Registration.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.ComponentModel.Primitives/4.3.0": { - "dependencies": { - "System.ComponentModel": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.NonGeneric": "4.3.0", - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel": "4.3.0", - "System.ComponentModel.Primitives": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "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.Threading": "4.3.0" - } - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "dependencies": { - "System.Security.Cryptography.ProtectedData": "6.0.0", - "System.Security.Permissions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Configuration.ConfigurationManager.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Console/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Data.Odbc/6.0.0": { - "dependencies": { - "System.Text.Encoding.CodePages": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Data.Odbc.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll": { - "rid": "freebsd", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/illumos/lib/net6.0/System.Data.Odbc.dll": { - "rid": "illumos", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/ios/lib/net6.0/System.Data.Odbc.dll": { - "rid": "ios", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/linux/lib/net6.0/System.Data.Odbc.dll": { - "rid": "linux", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/osx/lib/net6.0/System.Data.Odbc.dll": { - "rid": "osx", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/solaris/lib/net6.0/System.Data.Odbc.dll": { - "rid": "solaris", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/tvos/lib/net6.0/System.Data.Odbc.dll": { - "rid": "tvos", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.Data.Odbc.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Data.OleDb/6.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0", - "System.Diagnostics.PerformanceCounter": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Data.OleDb.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Data.OleDb.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Data.SqlClient/4.8.3": { - "dependencies": { - "Microsoft.Win32.Registry": "4.7.0", - "System.Security.Principal.Windows": "5.0.0", - "runtime.native.System.Data.SqlClient.sni": "4.7.0" - }, - "runtime": { - "lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "assemblyVersion": "4.6.1.3", - "fileVersion": "4.700.21.41603" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "4.6.1.3", - "fileVersion": "4.700.21.41603" - }, - "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.6.1.3", - "fileVersion": "4.700.21.41603" - } - } - }, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.DiagnosticSource/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Diagnostics.EventLog/6.0.0": { - "runtime": { - "lib/net6.0/System.Diagnostics.EventLog.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "0.0.0.0" - }, - "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Diagnostics.PerformanceCounter/6.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Diagnostics.Tools/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.TraceSource/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "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", - "runtime.native.System": "4.3.0" - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.DirectoryServices/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Security.Permissions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.DirectoryServices.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.DirectoryServices.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.DirectoryServices.AccountManagement/6.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0", - "System.DirectoryServices": "6.0.0", - "System.DirectoryServices.Protocols": "6.0.0", - "System.Security.AccessControl": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.DirectoryServices.AccountManagement.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.DirectoryServices.Protocols/6.0.0": { - "runtime": { - "lib/net6.0/System.DirectoryServices.Protocols.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll": { - "rid": "linux", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll": { - "rid": "osx", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Drawing.Common/6.0.0": { - "dependencies": { - "Microsoft.Win32.SystemEvents": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Drawing.Common.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Dynamic.Runtime/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.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" - } - }, - "System.Formats.Asn1/6.0.0": {}, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Calendars/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Globalization": "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.IO/4.3.0": { - "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" - } - }, - "System.IO.Compression/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Buffers": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.IO.Compression": "4.3.0" - } - }, - "System.IO.Compression.ZipFile/4.3.0": { - "dependencies": { - "System.Buffers": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.IO.FileSystem/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.IO.Packaging/6.0.0": { - "runtime": { - "lib/net6.0/System.IO.Packaging.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.IO.Ports/6.0.0": { - "dependencies": { - "runtime.native.System.IO.Ports": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.IO.Ports.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.IO.Ports.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.IO.Ports.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Linq.Expressions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.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" - } - }, - "System.Management/6.0.0": { - "dependencies": { - "System.CodeDom": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Management.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Management.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Management.Automation/7.2.1": { - "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" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.Management.Automation.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/System.Management.Automation.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "System.Memory/4.5.4": {}, - "System.Net.Http/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "6.0.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Net.Http.WinHttpHandler/6.0.0": { - "runtime": { - "lib/net6.0/System.Net.Http.WinHttpHandler.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Net.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Net.Sockets/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Numerics.Vectors/4.5.0": {}, - "System.ObjectModel/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Private.ServiceModel/4.9.0": { - "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": "6.0.0", - "System.Security.Principal.Windows": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Private.ServiceModel.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - }, - "resources": { - "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": { - "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" - } - }, - "System.Reflection.Context/6.0.0": { - "runtime": { - "lib/net6.0/System.Reflection.Context.dll": { - "assemblyVersion": "4.0.3.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Reflection.DispatchProxy/4.7.1": {}, - "System.Reflection.Emit/4.3.0": { - "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" - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Metadata/5.0.0": {}, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.Caching/6.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Runtime.Caching.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "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" - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - } - }, - "System.Runtime.Numerics/4.3.0": { - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Security.AccessControl/6.0.0": {}, - "System.Security.Cryptography.Algorithms/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.Apple": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.Cng/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Security.Cryptography.Csp/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.Pkcs/6.0.0": { - "dependencies": { - "System.Formats.Asn1": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Security.Cryptography.Pkcs.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "runtime": { - "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "4.3.0", - "System.Security.Cryptography.Csp": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.Xml/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Security.Cryptography.Pkcs": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Security.Cryptography.Xml.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Permissions/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Windows.Extensions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Security.Permissions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Principal.Windows/5.0.0": {}, - "System.ServiceModel.Duplex/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0", - "System.ServiceModel.Primitives": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.Duplex.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.Http/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0", - "System.ServiceModel.Primitives": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.Http.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.NetTcp/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0", - "System.ServiceModel.Primitives": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.NetTcp.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.Primitives/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.Primitives.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - }, - "lib/net6.0/System.ServiceModel.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.Security/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0", - "System.ServiceModel.Primitives": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.Security.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.Syndication/6.0.0": { - "runtime": { - "lib/net6.0/System.ServiceModel.Syndication.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.ServiceProcess.ServiceController/6.0.0": { - "dependencies": { - "System.Diagnostics.EventLog": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.ServiceProcess.ServiceController.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Speech/6.0.0": { - "runtime": { - "lib/net6.0/System.Speech.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Speech.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding.CodePages/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "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.Text.Encodings.Web/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Text.RegularExpressions/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.AccessControl/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Threading.AccessControl.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Threading.AccessControl.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks.Extensions/4.5.4": {}, - "System.Threading.Timer/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Web.Services.Description/4.9.0": { - "runtime": { - "lib/netstandard2.0/System.Web.Services.Description.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - }, - "resources": { - "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": { - "dependencies": { - "System.Drawing.Common": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Windows.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "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.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.5.4" - } - }, - "System.Xml.XDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - }, - "System.Xml.XmlDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - }, - "Typin/3.1.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "6.0.0", - "Microsoft.Extensions.Logging.Debug": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "Typin.Core": "3.1.0" - }, - "runtime": { - "lib/net6.0/Typin.dll": { - "assemblyVersion": "3.1.0.0", - "fileVersion": "3.1.0.0" - } - } - }, - "Typin.Core/3.1.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "6.0.0" - }, - "runtime": { - "lib/net6.0/Typin.Core.dll": { - "assemblyVersion": "3.1.0.0", - "fileVersion": "3.1.0.0" - } - } - }, - "xunit/2.4.1": { - "dependencies": { - "xunit.analyzers": "0.10.0", - "xunit.assert": "2.4.1", - "xunit.core": "2.4.1" - } - }, - "xunit.abstractions/2.0.3": { - "runtime": { - "lib/netstandard2.0/xunit.abstractions.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.0.0.0" - } - } - }, - "xunit.analyzers/0.10.0": {}, - "xunit.assert/2.4.1": { - "dependencies": { - "NETStandard.Library": "1.6.1" - }, - "runtime": { - "lib/netstandard1.1/xunit.assert.dll": { - "assemblyVersion": "2.4.1.0", - "fileVersion": "2.4.1.0" - } - } - }, - "xunit.core/2.4.1": { - "dependencies": { - "xunit.extensibility.core": "2.4.1", - "xunit.extensibility.execution": "2.4.1" - } - }, - "xunit.extensibility.core/2.4.1": { - "dependencies": { - "NETStandard.Library": "1.6.1", - "xunit.abstractions": "2.0.3" - }, - "runtime": { - "lib/netstandard1.1/xunit.core.dll": { - "assemblyVersion": "2.4.1.0", - "fileVersion": "2.4.1.0" - } - } - }, - "xunit.extensibility.execution/2.4.1": { - "dependencies": { - "NETStandard.Library": "1.6.1", - "xunit.extensibility.core": "2.4.1" - }, - "runtime": { - "lib/netstandard1.1/xunit.execution.dotnet.dll": { - "assemblyVersion": "2.4.1.0", - "fileVersion": "2.4.1.0" - } - } - }, - "xunit.runner.visualstudio/2.4.3": {}, - "YamlDotNet/11.2.1": { - "runtime": { - "lib/netstandard2.1/YamlDotNet.dll": { - "assemblyVersion": "11.0.0.0", - "fileVersion": "11.2.1.0" - } - } - }, - "Core.Test/1.0.0": { - "dependencies": { - "FluentAssertions": "6.4.0", - "FluentValidation": "10.3.6", - "IPNetwork2": "2.5.386", - "Linguard.Core": "2.0.0", - "Microsoft.NET.Test.Sdk": "16.11.0", - "Moq": "4.16.1", - "xunit": "2.4.1" - }, - "runtime": { - "Core.Test.dll": {} - } - }, - "Linguard.Cli/2.0.0": { - "dependencies": { - "CommandLineParser": "2.8.0", - "FluentValidation": "10.3.6", - "Linguard.Core": "2.0.0", - "Typin": "3.1.0" - }, - "runtime": { - "Linguard.Cli.dll": {} - } - }, - "Linguard.Core/2.0.0": { - "dependencies": { - "Bogus": "34.0.1", - "ByteSize": "2.1.1", - "FluentValidation": "10.3.6", - "IPNetwork2": "2.5.386", - "Linguard.Log": "2.0.0", - "Microsoft.PowerShell.SDK": "7.2.1", - "System.Management.Automation": "7.2.1", - "YamlDotNet": "11.2.1" - }, - "runtime": { - "Linguard.Core.dll": {} - } - }, - "Linguard.Log/2.0.0": { - "dependencies": { - "NLog": "4.7.13" - }, - "runtime": { - "Linguard.Log.dll": {} - } - } - } - }, - "libraries": { - "Cli.Test/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Bogus/34.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-49iq7QrD0wb7V4/FcK8p3dWdJxNUbojaqK9L6KRvdikIuRjt38EsNp7QXICcYdbYw01K8BHUdxlnTNn/YX3qDA==", - "path": "bogus/34.0.1", - "hashPath": "bogus.34.0.1.nupkg.sha512" - }, - "ByteSize/2.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-D+Y3NpbHrW21vZwwegeWf/8iAg2Mr0s7n1su8Ysho+O9dctJ5/EkWUi19QVxc6+nZl080gGTXBP/Nz0twSI3dA==", - "path": "bytesize/2.1.1", - "hashPath": "bytesize.2.1.1.nupkg.sha512" - }, - "Castle.Core/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", - "path": "castle.core/4.4.0", - "hashPath": "castle.core.4.4.0.nupkg.sha512" - }, - "CommandLineParser/2.8.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eco2HlKQBY4Joz9odHigzGpVzv6pjsXnY5lziioMveQxr+i2Z7xYcIOMeZTgYiqnMtMAbXMXsVhrNfWO5vJS8Q==", - "path": "commandlineparser/2.8.0", - "hashPath": "commandlineparser.2.8.0.nupkg.sha512" - }, - "coverlet.msbuild/3.1.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QhM0fnDtmIMImY7oxyQ/kh1VYtRxPyRVeLwRUGuUvI6Xp83pSYG9gerK8WgJj4TzUl7ISziADUGtIWKhtlbkbQ==", - "path": "coverlet.msbuild/3.1.2", - "hashPath": "coverlet.msbuild.3.1.2.nupkg.sha512" - }, - "FluentAssertions/6.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KOJE1UD7ndxoZAdmOraiUFLdcdGTArGQW8WYN+vwrC3mdt2G/B7gmsMOozgXKiNSh3fpD/Xp/0mhonRh8vrZKw==", - "path": "fluentassertions/6.4.0", - "hashPath": "fluentassertions.6.4.0.nupkg.sha512" - }, - "FluentValidation/10.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iMd370ZDx6ydm8t7bIFdRbSKX0e42lpvCtifUSbTSXOk5iKjmgl7HU0PXBhIWQAyIRi3gCwfMI9luj8H6K+byw==", - "path": "fluentvalidation/10.3.6", - "hashPath": "fluentvalidation.10.3.6.nupkg.sha512" - }, - "IPNetwork2/2.5.386": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6ihnNm82vyJsUYYfR2BRTziY/mQ5UGLsQZuhdSYPeTlbQLhBW/4BC9hBz3h5bFDn8PkVw9dP0cpv9brIBmk4Fw==", - "path": "ipnetwork2/2.5.386", - "hashPath": "ipnetwork2.2.5.386.nupkg.sha512" - }, - "Markdig.Signed/0.22.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7x3FqS3wk8DXyQLuflD47tBs6+ly6k4VtoDCzlDWfy7XHVsBIi7eGYEM15sPAcwSCQjOksNWE8U5r2v0Sk5FzQ==", - "path": "markdig.signed/0.22.0", - "hashPath": "markdig.signed.0.22.0.nupkg.sha512" - }, - "Microsoft.ApplicationInsights/2.18.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-milJB3VOCoC4EWmpE/Co9cOJ7SV6Ji6VqV4Rf5UlqL9QCg+rAX1y+3Y+j1Gu/j4IExYiPq7SEKqkP2BFnEu6Vw==", - "path": "microsoft.applicationinsights/2.18.0", - "hashPath": "microsoft.applicationinsights.2.18.0.nupkg.sha512" - }, - "Microsoft.Bcl.AsyncInterfaces/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W8DPQjkMScOMTtJbPwmPyj9c3zYSFGawDW3jwlBOOsnY+EzZFLgNQ/UMkK35JmkNOVPdCyPr2Tw7Vv9N+KA3ZQ==", - "path": "microsoft.bcl.asyncinterfaces/5.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Analyzers/3.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA==", - "path": "microsoft.codeanalysis.analyzers/3.3.2", - "hashPath": "microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Common/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SMREwaVD5SzatlWhh9aahQAtSWdb63NcE//f+bQzgHSECU6xtDtaxk0kwV+asdFfr6HtW38UeO6jvqdfzudg3w==", - "path": "microsoft.codeanalysis.common/4.0.1", - "hashPath": "microsoft.codeanalysis.common.4.0.1.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Q9RxxydPpUElj/x1/qykDTUGsRoKbJG8H5XUSeMGmMu54fBiuX1xyanom9caa1oQfh5JIW1BgLxobSaWs4WyHQ==", - "path": "microsoft.codeanalysis.csharp/4.0.1", - "hashPath": "microsoft.codeanalysis.csharp.4.0.1.nupkg.sha512" - }, - "Microsoft.CodeCoverage/16.11.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wf6lpAeCqP0KFfbDVtfL50lr7jY1gq0+0oSphyksfLOEygMDXqnaxHK5LPFtMEhYSEtgXdNyXNnEddOqQQUdlQ==", - "path": "microsoft.codecoverage/16.11.0", - "hashPath": "microsoft.codecoverage.16.11.0.nupkg.sha512" - }, - "Microsoft.CSharp/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==", - "path": "microsoft.csharp/4.3.0", - "hashPath": "microsoft.csharp.4.3.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", - "path": "microsoft.extensions.dependencyinjection/6.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", - "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", - "path": "microsoft.extensions.logging/6.0.0", - "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", - "path": "microsoft.extensions.logging.abstractions/6.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Debug/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-M9g/JixseSZATJE9tcMn9uzoD4+DbSglivFqVx8YkRJ7VVPmnvCEbOZ0AAaxsL1EKyI4cz07DXOOJExxNsUOHw==", - "path": "microsoft.extensions.logging.debug/6.0.0", - "hashPath": "microsoft.extensions.logging.debug.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.ObjectPool/5.0.10": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pp9tbGqIhdEXL6Q1yJl+zevAJSq4BsxqhS1GXzBvEsEz9DDNu9GLNzgUy2xyFc4YjB4m4Ff2YEWTnvQvVYdkvQ==", - "path": "microsoft.extensions.objectpool/5.0.10", - "hashPath": "microsoft.extensions.objectpool.5.0.10.nupkg.sha512" - }, - "Microsoft.Extensions.Options/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", - "path": "microsoft.extensions.options/6.0.0", - "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", - "path": "microsoft.extensions.primitives/6.0.0", - "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" - }, - "Microsoft.Management.Infrastructure/2.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IaKZRNBBv3sdrmBWd+aqwHq8cVHk/3WgWFAN/dt40MRY9rbtHiDfTTmaEN0tGTmQqGCGDo/ncntA8MvFMvcsRw==", - "path": "microsoft.management.infrastructure/2.0.0", - "hashPath": "microsoft.management.infrastructure.2.0.0.nupkg.sha512" - }, - "Microsoft.Management.Infrastructure.CimCmdlets/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xe1x237SCyrjpmW1mP1T69/OOc/gtU66P8wVC+b4/u7Hz7fIO6B8P5yVQQfb79rAe1GocruIpQlX4KXTFQf09w==", - "path": "microsoft.management.infrastructure.cimcmdlets/7.2.1", - "hashPath": "microsoft.management.infrastructure.cimcmdlets.7.2.1.nupkg.sha512" - }, - "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-p0lslMX5bdWLxO2P7ao+rjAMOB0LEwPYpzvdCQ2OEYgX2NxFpQ8ILvqPGnYlTAb53rT8gu5DyIol1HboHFYfxQ==", - "path": "microsoft.management.infrastructure.runtime.unix/2.0.0", - "hashPath": "microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512" - }, - "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vjBWQeDOjgernkrOdbEgn7M70SF7hof7ORdKPSlL06Uc15+oYdth5dZju9KsgUoti/cwnkZTiwtDx/lRtay0sA==", - "path": "microsoft.management.infrastructure.runtime.win/2.0.0", - "hashPath": "microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512" - }, - "Microsoft.NET.Test.Sdk/16.11.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-f4mbG1SUSkNWF5p7B3Y8ZxMsvKhxCmpZhdl+w6tMtLSUGE7Izi1syU6TkmKOvB2BV66pdbENConFAISOix4ohQ==", - "path": "microsoft.net.test.sdk/16.11.0", - "hashPath": "microsoft.net.test.sdk.16.11.0.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Windows.ApiSets/1.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==", - "path": "microsoft.netcore.windows.apisets/1.0.1", - "hashPath": "microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512" - }, - "Microsoft.PowerShell.Commands.Diagnostics/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Bgw4Egv7cnYUTWAy6koxg+0+/8K6rqUdlAiAxuJby9FeDPZQFfqCHQqlyP9JDa6lvbtmeBx1btFDx6Kh8bxdwQ==", - "path": "microsoft.powershell.commands.diagnostics/7.2.1", - "hashPath": "microsoft.powershell.commands.diagnostics.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.Commands.Management/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YAMrGDF2QTg6Gwz07+m1+BnmcYsPyywfY4J8nOpImfXZLLNhD7zQQP0orNHu9WPPV3/+E33qUyPj5J3ugCMk6A==", - "path": "microsoft.powershell.commands.management/7.2.1", - "hashPath": "microsoft.powershell.commands.management.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.Commands.Utility/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PU15IxUJd7nSacTstlxqJoEeGlI+BH6cUKTppkkIIxEj7EfwC5nD1qTL41xye63BFeZmOFeqAhMI6LtJUd875g==", - "path": "microsoft.powershell.commands.utility/7.2.1", - "hashPath": "microsoft.powershell.commands.utility.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.ConsoleHost/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uAPSsTmkOa7na1+OAPF87yBRwD1Ka/qXThoyrlvP9ihzMWfHM52k3MuKVEGi04VP3Wdi7U4Rzkr3svxDDmkHgA==", - "path": "microsoft.powershell.consolehost/7.2.1", - "hashPath": "microsoft.powershell.consolehost.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.CoreCLR.Eventing/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fUz7InjavqKtslkQN828nWbZLnmmJRL9rn4b3e/XXdx0BcN+65x/pSgMnehwDVGIoqUPUMXN54eDo4HRVcLA5g==", - "path": "microsoft.powershell.coreclr.eventing/7.2.1", - "hashPath": "microsoft.powershell.coreclr.eventing.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.MarkdownRender/7.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1vqDtdX9RCGsMWCbzp0CIxZW3slWgq8mYHDfUlUKzmkV57fMAn4m0Gy2OtsqopZzrOiVJci+QCWx5FB7BVpMlw==", - "path": "microsoft.powershell.markdownrender/7.2.0", - "hashPath": "microsoft.powershell.markdownrender.7.2.0.nupkg.sha512" - }, - "Microsoft.PowerShell.Native/7.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TauOu3bYr4DRh9HpH3+fgaL+y2GY47KLsgU6qX1NDLqHshdEaCCjiF0N5sDEgCEhSb38FwWhpdFTIQvoOcYCXQ==", - "path": "microsoft.powershell.native/7.2.0", - "hashPath": "microsoft.powershell.native.7.2.0.nupkg.sha512" - }, - "Microsoft.PowerShell.SDK/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UufIcywqI/22p0oqC5qg+yDoW39U2JAQyaHxy2Tr/h0hdWuFimtmhxp/FDXTxszgOdobtjcrCkSzqcoNmu/vQQ==", - "path": "microsoft.powershell.sdk/7.2.1", - "hashPath": "microsoft.powershell.sdk.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.Security/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GV3RuuOmXHAaEjeBcyixdzUIAQvHW6xgoWwafzTe97DbhI+N1sg4fa/FQ9pd8lqG+kkWxGwTy1VgudXX6rhUkg==", - "path": "microsoft.powershell.security/7.2.1", - "hashPath": "microsoft.powershell.security.7.2.1.nupkg.sha512" - }, - "Microsoft.TestPlatform.ObjectModel/16.11.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EiknJx9N9Z30gs7R+HHhki7fA8EiiM3pwD1vkw3bFsBC8kdVq/O7mHf1hrg5aJp+ASO6BoOzQueD2ysfTOy/Bg==", - "path": "microsoft.testplatform.objectmodel/16.11.0", - "hashPath": "microsoft.testplatform.objectmodel.16.11.0.nupkg.sha512" - }, - "Microsoft.TestPlatform.TestHost/16.11.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/Q+R0EcCJE8JaYCk+bGReicw/xrB0HhecrYrUcLbn95BnAlaTJrZhoLkUhvtKTAVtqX/AIKWXYtutiU/Q6QUgg==", - "path": "microsoft.testplatform.testhost/16.11.0", - "hashPath": "microsoft.testplatform.testhost.16.11.0.nupkg.sha512" - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", - "path": "microsoft.win32.primitives/4.3.0", - "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", - "path": "microsoft.win32.registry/4.7.0", - "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry.AccessControl/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UoE+eeuBKL+GFHxHV3FjHlY5K8Wr/IR7Ee/a2oDNqFodF1iMqyt5hIs0U9Z217AbWrHrNle4750kD03hv1IMZw==", - "path": "microsoft.win32.registry.accesscontrol/6.0.0", - "hashPath": "microsoft.win32.registry.accesscontrol.6.0.0.nupkg.sha512" - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", - "path": "microsoft.win32.systemevents/6.0.0", - "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" - }, - "Microsoft.Windows.Compatibility/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9esuK5JqnjkDgO9/AHesyJSG0aKwpfLVzTw6nIGYhqE91VLxZyv3HKulNoPVy/NOuyAaf1kE4FKtdZDzdd/SLw==", - "path": "microsoft.windows.compatibility/6.0.0", - "hashPath": "microsoft.windows.compatibility.6.0.0.nupkg.sha512" - }, - "Microsoft.WSMan.Management/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vMOJMof4eLql180G4PmTurN8h8+VmPaf1l/Tqq+GI7HYyNv140iY3/Z18MiZA4dRG14qghLNo5JxtTolY7b4og==", - "path": "microsoft.wsman.management/7.2.1", - "hashPath": "microsoft.wsman.management.7.2.1.nupkg.sha512" - }, - "Microsoft.WSMan.Runtime/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v14vzUXIg7opXoQI8Eb82dvsRwBNylZ44lvyXOBSRCiVfvMhyTqE8bpPWbwwmQ5JZRnG/dP5/aOYuu9l163fyQ==", - "path": "microsoft.wsman.runtime/7.2.1", - "hashPath": "microsoft.wsman.runtime.7.2.1.nupkg.sha512" - }, - "Moq/4.16.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bw3R9q8cVNhWXNpnvWb0OGP4HadS4zvClq+T1zf7AF+tLY1haZ2AvbHidQekf4PDv1T40c6brZeT/V0IBq7cEQ==", - "path": "moq/4.16.1", - "hashPath": "moq.4.16.1.nupkg.sha512" - }, - "Namotion.Reflection/2.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tZCe/UrSBAMW8A4TjD/SlpRHaWjnHlSWdyRuOXhf3yrE0OX+4fXg0uzj7mwFDclXznfCGRAZbP+akPt4G/mclw==", - "path": "namotion.reflection/2.0.3", - "hashPath": "namotion.reflection.2.0.3.nupkg.sha512" - }, - "NETStandard.Library/1.6.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", - "path": "netstandard.library/1.6.1", - "hashPath": "netstandard.library.1.6.1.nupkg.sha512" - }, - "Newtonsoft.Json/13.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", - "path": "newtonsoft.json/13.0.1", - "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" - }, - "NJsonSchema/10.5.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vr2CbySuXh74TQFU0rGJYZOS492xOE64cPXdB7a0cfXJb/N45Bf4v7sd4LOla0jNhgc5V/B61Ko3qecriL195w==", - "path": "njsonschema/10.5.2", - "hashPath": "njsonschema.10.5.2.nupkg.sha512" - }, - "NLog/4.7.13": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AvoGpCuq36B+0wY313XA6gC+YeMvk24rqF8P+HS9fInBGOjCzPjpXp2ln9ATZjPOJtXgHfc8zNmTjyswFGLxvg==", - "path": "nlog/4.7.13", - "hashPath": "nlog.4.7.13.nupkg.sha512" - }, - "NuGet.Frameworks/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c5JVjuVAm4f7E9Vj+v09Z9s2ZsqFDjBpcsyS3M9xRo0bEdm/LVZSzLxxNvfvAwRiiE8nwe1h2G4OwiwlzFKXlA==", - "path": "nuget.frameworks/5.0.0", - "hashPath": "nuget.frameworks.5.0.0.nupkg.sha512" - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", - "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", - "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", - "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-75q52H7CSpgIoIDwXb9o833EvBZIXJ0mdPhz1E6jSisEXUBlSCPalC29cj3EXsjpuDwr0dj1LRXZepIQH/oL4Q==", - "path": "runtime.linux-arm.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.linux-arm.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xn2bMThmXr3CsvOYmS8ex2Yz1xo+kcnhVg2iVhS9PlmqjZPAkrEo/I40wjrBZH/tU4kvH0s1AE8opAvQ3KIS8g==", - "path": "runtime.linux-arm64.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.linux-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-16nbNXwv0sC+gLGIuecri0skjuh6R1maIJggsaNP7MQBcbVcEfWFUOkEnsnvoLEjy0XerfibuRptfQ8AmdIcWA==", - "path": "runtime.linux-x64.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.linux-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.native.System/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "path": "runtime.native.system/4.3.0", - "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Data.SqlClient.sni/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", - "path": "runtime.native.system.data.sqlclient.sni/4.7.0", - "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512" - }, - "runtime.native.System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", - "path": "runtime.native.system.io.compression/4.3.0", - "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" - }, - "runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KaaXlpOcuZjMdmyF5wzzx3b+PRKIzt6A5Ax9dKenPDQbVJAFpev+casD0BIig1pBcbs3zx7CqWemzUJKAeHdSQ==", - "path": "runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.native.System.Net.Http/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", - "path": "runtime.native.system.net.http/4.3.0", - "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", - "path": "runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", - "path": "runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", - "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", - "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fXG12NodG1QrCdoaeSQ1gVnk/koi4WYY4jZtarMkZeQMyReBm1nZlSRoPnUjLr2ZR36TiMjpcGnQfxymieUe7w==", - "path": "runtime.osx-arm64.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.osx-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/As+zPY49+dSUXkh+fTUbyPhqrdGN//evLxo4Vue88pfh1BHZgF7q4kMblTkxYvwR6Vi03zSYxysSFktO8/SDQ==", - "path": "runtime.osx-x64.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.osx-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", - "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", - "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", - "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", - "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", - "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", - "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" - }, - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", - "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", - "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" - }, - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", - "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", - "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" - }, - "System.AppContext/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", - "path": "system.appcontext/4.3.0", - "hashPath": "system.appcontext.4.3.0.nupkg.sha512" - }, - "System.Buffers/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", - "path": "system.buffers/4.3.0", - "hashPath": "system.buffers.4.3.0.nupkg.sha512" - }, - "System.CodeDom/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", - "path": "system.codedom/6.0.0", - "hashPath": "system.codedom.6.0.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", - "path": "system.collections.concurrent/4.3.0", - "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" - }, - "System.Collections.Immutable/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", - "path": "system.collections.immutable/5.0.0", - "hashPath": "system.collections.immutable.5.0.0.nupkg.sha512" - }, - "System.Collections.NonGeneric/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", - "path": "system.collections.nongeneric/4.3.0", - "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" - }, - "System.Collections.Specialized/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", - "path": "system.collections.specialized/4.3.0", - "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" - }, - "System.ComponentModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", - "path": "system.componentmodel/4.3.0", - "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.Composition/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-60Qv+F7oxomOjJeTDA5Z4iCyFbQ0B/2Mi5HT+13pxxq0lVnu2ipbWMzFB+RWKr3wWKA8BSncXr9PH/fECwMX5Q==", - "path": "system.componentmodel.composition/6.0.0", - "hashPath": "system.componentmodel.composition.6.0.0.nupkg.sha512" - }, - "System.ComponentModel.Composition.Registration/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+i3RLlOgTsf15VeADBPpzPyRiXq71aLSuzdHeNtmq9f6BwpF3OWhB76p0WDUNCa3Z+SLD4dJbBM9yAep7kQCGA==", - "path": "system.componentmodel.composition.registration/6.0.0", - "hashPath": "system.componentmodel.composition.registration.6.0.0.nupkg.sha512" - }, - "System.ComponentModel.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", - "path": "system.componentmodel.primitives/4.3.0", - "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", - "path": "system.componentmodel.typeconverter/4.3.0", - "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", - "path": "system.configuration.configurationmanager/6.0.0", - "hashPath": "system.configuration.configurationmanager.6.0.0.nupkg.sha512" - }, - "System.Console/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", - "path": "system.console/4.3.0", - "hashPath": "system.console.4.3.0.nupkg.sha512" - }, - "System.Data.Odbc/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pnZjwe0Qwr1Rnp7NExd5zz4YwXJrYuAbWNKjEQpTzCEg6f/L5DYJS7w3hG3vgSj1t/r79UL390YzXIklf1VuQQ==", - "path": "system.data.odbc/6.0.0", - "hashPath": "system.data.odbc.6.0.0.nupkg.sha512" - }, - "System.Data.OleDb/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LQ8PjTIF1LtrrlGiyiTVjAkQtTWKm9GSNnygIlWjhN9y88s7xhy6DUNDDkmQQ9f6ex7mA4k0Tl97lz/CklaiLg==", - "path": "system.data.oledb/6.0.0", - "hashPath": "system.data.oledb.6.0.0.nupkg.sha512" - }, - "System.Data.SqlClient/4.8.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yERfVLXAY0QbylAgaGLByYN0hFxX28aeEQ0hUgJO+Ntn1AfmWl5HHUoYJA0Yl9HhIUUJHVaS/Sw/RLZr5aaC+A==", - "path": "system.data.sqlclient/4.8.3", - "hashPath": "system.data.sqlclient.4.8.3.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", - "path": "system.diagnostics.diagnosticsource/6.0.0", - "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" - }, - "System.Diagnostics.EventLog/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", - "path": "system.diagnostics.eventlog/6.0.0", - "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512" - }, - "System.Diagnostics.PerformanceCounter/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-gbeE5tNp/oB7O8kTTLh3wPPJCxpNOphXPTWVs1BsYuFOYapFijWuh0LYw1qnDo4gwDUYPXOmpTIhvtxisGsYOQ==", - "path": "system.diagnostics.performancecounter/6.0.0", - "hashPath": "system.diagnostics.performancecounter.6.0.0.nupkg.sha512" - }, - "System.Diagnostics.Tools/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", - "path": "system.diagnostics.tools/4.3.0", - "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.TraceSource/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", - "path": "system.diagnostics.tracesource/4.3.0", - "hashPath": "system.diagnostics.tracesource.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", - "path": "system.diagnostics.tracing/4.3.0", - "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" - }, - "System.DirectoryServices/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kp/Op0nxDVGlElDKh8TsXO0GKXftQgAB6sJk0wUetZK1Rr0Pbd86Tn7AllLLlROFZa4BTl/LVHakljtGELFzCg==", - "path": "system.directoryservices/6.0.0", - "hashPath": "system.directoryservices.6.0.0.nupkg.sha512" - }, - "System.DirectoryServices.AccountManagement/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2iKkY6VC4WX6H13N8WhH2SRUfWCwg2KZR5w9JIS9cw9N8cZhT7VXxHX0L6OX6Po419aSu2LWrJE9tu6b+cUnPA==", - "path": "system.directoryservices.accountmanagement/6.0.0", - "hashPath": "system.directoryservices.accountmanagement.6.0.0.nupkg.sha512" - }, - "System.DirectoryServices.Protocols/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-++WKU7HQPo/FJdhywWw+q2lLjcVAGVw5XLH9kRCV+4DvkhVAcHCksh0ezIqwNROmaU9LMJN0d/LAdeWXu3pi6Q==", - "path": "system.directoryservices.protocols/6.0.0", - "hashPath": "system.directoryservices.protocols.6.0.0.nupkg.sha512" - }, - "System.Drawing.Common/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", - "path": "system.drawing.common/6.0.0", - "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" - }, - "System.Dynamic.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", - "path": "system.dynamic.runtime/4.3.0", - "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" - }, - "System.Formats.Asn1/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA==", - "path": "system.formats.asn1/6.0.0", - "hashPath": "system.formats.asn1.6.0.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", - "path": "system.globalization.calendars/4.3.0", - "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", - "path": "system.globalization.extensions/4.3.0", - "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", - "path": "system.io.compression/4.3.0", - "hashPath": "system.io.compression.4.3.0.nupkg.sha512" - }, - "System.IO.Compression.ZipFile/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", - "path": "system.io.compression.zipfile/4.3.0", - "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "path": "system.io.filesystem/4.3.0", - "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "path": "system.io.filesystem.primitives/4.3.0", - "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" - }, - "System.IO.Packaging/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-C7OkTRIjqIjAKu6ef/fuj8ynCZTPcTYZnvHaq48bniACgXXJogmEoIc56YCDNTc14xhsbLmgpS3KP+evbsUa2g==", - "path": "system.io.packaging/6.0.0", - "hashPath": "system.io.packaging.6.0.0.nupkg.sha512" - }, - "System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dRyGI7fUESar5ZLIpiBOaaNLW7YyOBGftjj5Of+xcduC/Rjl7RjhEnWDvvNBmHuF3d0tdXoqdVI/yrVA8f00XA==", - "path": "system.io.ports/6.0.0", - "hashPath": "system.io.ports.6.0.0.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "path": "system.linq.expressions/4.3.0", - "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" - }, - "System.Management/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sHsESYMmPDhQuOC66h6AEOs/XowzKsbT9srMbX71TCXP58hkpn1BqBjdmKj1+DCA/WlBETX1K5WjQHwmV0Txrg==", - "path": "system.management/6.0.0", - "hashPath": "system.management.6.0.0.nupkg.sha512" - }, - "System.Management.Automation/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YlTE+q14vQ1YU//A5+/Jwl5+L5r6uOVIWuB4D/T9r80AaCeUAZMMvTKjgvIr9lwkovwQflVL+1JfBAi9f0q0KA==", - "path": "system.management.automation/7.2.1", - "hashPath": "system.management.automation.7.2.1.nupkg.sha512" - }, - "System.Memory/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", - "path": "system.memory/4.5.4", - "hashPath": "system.memory.4.5.4.nupkg.sha512" - }, - "System.Net.Http/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", - "path": "system.net.http/4.3.0", - "hashPath": "system.net.http.4.3.0.nupkg.sha512" - }, - "System.Net.Http.WinHttpHandler/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jubNN9jH4NzVrvEf4fGwESLBsfH8whWNbHMhgM6IwA8UCt6+/M19bbOHc21JhigvC2HQKCl8HKGZMcBtIpzqIg==", - "path": "system.net.http.winhttphandler/6.0.0", - "hashPath": "system.net.http.winhttphandler.6.0.0.nupkg.sha512" - }, - "System.Net.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", - "path": "system.net.primitives/4.3.0", - "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" - }, - "System.Net.Sockets/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", - "path": "system.net.sockets/4.3.0", - "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" - }, - "System.Numerics.Vectors/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", - "path": "system.numerics.vectors/4.5.0", - "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "path": "system.objectmodel/4.3.0", - "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" - }, - "System.Private.ServiceModel/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d3RjkrtpjUQ63PzFmm/SZ4aOXeJNP+8YW5QeP0lCJy8iX4xlHdlNLWTF9sRn9SmrFTK757kQXT9Op/R4l858uw==", - "path": "system.private.servicemodel/4.9.0", - "hashPath": "system.private.servicemodel.4.9.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Context/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vi+Gb41oyOYie7uLSsjRmfRg3bryUg5DssJvj3gDUl0D8z6ipSm6/yi/XNx2rcS5iVMvHcwRUHjcx7ixv0K3/w==", - "path": "system.reflection.context/6.0.0", - "hashPath": "system.reflection.context.6.0.0.nupkg.sha512" - }, - "System.Reflection.DispatchProxy/4.7.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-C1sMLwIG6ILQ2bmOT4gh62V6oJlyF4BlHcVMrOoor49p0Ji2tA8QAoqyMcIhAdH6OHKJ8m7BU+r4LK2CUEOKqw==", - "path": "system.reflection.dispatchproxy/4.7.1", - "hashPath": "system.reflection.dispatchproxy.4.7.1.nupkg.sha512" - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "path": "system.reflection.emit/4.3.0", - "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "path": "system.reflection.emit.lightweight/4.3.0", - "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Metadata/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==", - "path": "system.reflection.metadata/5.0.0", - "hashPath": "system.reflection.metadata.5.0.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.Caching/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==", - "path": "system.runtime.caching/6.0.0", - "hashPath": "system.runtime.caching.6.0.0.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", - "path": "system.runtime.interopservices.runtimeinformation/4.3.0", - "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", - "path": "system.runtime.numerics/4.3.0", - "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" - }, - "System.Security.AccessControl/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", - "path": "system.security.accesscontrol/6.0.0", - "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", - "path": "system.security.cryptography.algorithms/4.3.0", - "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Cng/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", - "path": "system.security.cryptography.cng/4.3.0", - "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Csp/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", - "path": "system.security.cryptography.csp/4.3.0", - "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", - "path": "system.security.cryptography.encoding/4.3.0", - "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", - "path": "system.security.cryptography.openssl/4.3.0", - "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Pkcs/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-elM3x+xSRhzQysiqo85SbidJJ2YbZlnvmh+53TuSZHsD7dNuuEWser+9EFtY+rYupBwkq2avc6ZCO3/6qACgmg==", - "path": "system.security.cryptography.pkcs/6.0.0", - "hashPath": "system.security.cryptography.pkcs.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", - "path": "system.security.cryptography.primitives/4.3.0", - "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", - "path": "system.security.cryptography.protecteddata/6.0.0", - "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", - "path": "system.security.cryptography.x509certificates/4.3.0", - "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Xml/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-puJ4UCh9JVRwOCyCIcq71JY6Axr8Sp8E2GjTIU1Fj8hm4+oX6NEoyGFGa/+pBG8SrVxbQPSj7hvtaREyTHHsmw==", - "path": "system.security.cryptography.xml/6.0.0", - "hashPath": "system.security.cryptography.xml.6.0.0.nupkg.sha512" - }, - "System.Security.Permissions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", - "path": "system.security.permissions/6.0.0", - "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" - }, - "System.Security.Principal.Windows/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", - "path": "system.security.principal.windows/5.0.0", - "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" - }, - "System.ServiceModel.Duplex/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Yb8MFiJxBBtm2JnfS/5SxYzm2HqkEmHu5xeaVIHXy83sNpty9wc30JifH2xgda821D6nr1UctbwbdZqN4LBUKQ==", - "path": "system.servicemodel.duplex/4.9.0", - "hashPath": "system.servicemodel.duplex.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.Http/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z+s3RkLNzJ31fDXAjqXdXp67FqsNG4V3Md3r7FOrzMkHmg61gY8faEfTFPBLxU9tax1HPWt6IHVAquXBKySJaw==", - "path": "system.servicemodel.http/4.9.0", - "hashPath": "system.servicemodel.http.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.NetTcp/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nXgnnkrZERUF/KwmoLwZPkc7fqgiq94DXkmUZBvDNh/LdZquDvjy2NbhJLElpApOa5x8zEoQoBZyJ2PqNC39qg==", - "path": "system.servicemodel.nettcp/4.9.0", - "hashPath": "system.servicemodel.nettcp.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.Primitives/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LTFPVdS8Nf76xg/wRZkDa+2Q+GnjTOmwkTlwuoetwX37mAfYnGkf7p8ydhpDwVmomNljpUOhUUGxfjQyd5YcOg==", - "path": "system.servicemodel.primitives/4.9.0", - "hashPath": "system.servicemodel.primitives.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.Security/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iurpbSmPgotHps94VQ6acvL6hU2gjiuBmQI7PwLLN76jsbSpUcahT0PglccKIAwoMujATk/LWtAapBHpwCFn2g==", - "path": "system.servicemodel.security/4.9.0", - "hashPath": "system.servicemodel.security.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.Syndication/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cp1mMNG87iJtE0oHXFtfWT6cfski2JNo5iU0siTPi/uN2k1CIJI6FE4jr4v3got2dzt7wBq17fSy44btun9GiA==", - "path": "system.servicemodel.syndication/6.0.0", - "hashPath": "system.servicemodel.syndication.6.0.0.nupkg.sha512" - }, - "System.ServiceProcess.ServiceController/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qMBvG8ZFbkXoe0Z5/D7FAAadfPkH2v7vSuh2xsLf3U6jNoejpIdeV18A0htiASsLK1CCAc/p59kaLXlt2yB1gw==", - "path": "system.serviceprocess.servicecontroller/6.0.0", - "hashPath": "system.serviceprocess.servicecontroller.6.0.0.nupkg.sha512" - }, - "System.Speech/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GQovERMrNP0Vbtgk8LzH4PlFS6lqHgsL9WkUmv8Kkxa0m0vNakitytpHZlfJ9WR7n9WKLXh68nn2kyL9mflnLg==", - "path": "system.speech/6.0.0", - "hashPath": "system.speech.6.0.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.CodePages/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "path": "system.text.encoding.codepages/6.0.0", - "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512" - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "path": "system.text.encoding.extensions/4.3.0", - "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" - }, - "System.Text.Encodings.Web/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", - "path": "system.text.encodings.web/6.0.0", - "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "path": "system.text.regularexpressions/4.3.0", - "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.AccessControl/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2258mqWesMch/xCpcnjJBgJP33yhpZLGLbEOm01qwq0efG4b+NG8c9sxYOWNxmDQ82swXrnQRl1Yp2wC1NrfZA==", - "path": "system.threading.accesscontrol/6.0.0", - "hashPath": "system.threading.accesscontrol.6.0.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", - "path": "system.threading.tasks.extensions/4.5.4", - "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" - }, - "System.Threading.Timer/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", - "path": "system.threading.timer/4.3.0", - "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" - }, - "System.Web.Services.Description/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d20B3upsWddwSG5xF3eQLs0cAV3tXDsBNqP4kh02ylfgZwqfpf4f/9KiZVIGIoxULt2cKqxWs+U4AdNAJ7L8cQ==", - "path": "system.web.services.description/4.9.0", - "hashPath": "system.web.services.description.4.9.0.nupkg.sha512" - }, - "System.Windows.Extensions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", - "path": "system.windows.extensions/6.0.0", - "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "path": "system.xml.readerwriter/4.3.0", - "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", - "path": "system.xml.xdocument/4.3.0", - "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" - }, - "System.Xml.XmlDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", - "path": "system.xml.xmldocument/4.3.0", - "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" - }, - "Typin/3.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BV/TvL7a2c8FHBFc3YiWEzQua2NitFY5JnE30zJxo2nQrHeZuJYruZ7H+sT+/cnBLjsDr/mUpYtIS1HRTJQ3xg==", - "path": "typin/3.1.0", - "hashPath": "typin.3.1.0.nupkg.sha512" - }, - "Typin.Core/3.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0M44paHjcQuVTMCyfySqklbfVcQ38GfFGBkeKz0E+zhXdV0wD9tI5GwZdjUPOGlqhOmP7CHh452JSgJK2hc57A==", - "path": "typin.core/3.1.0", - "hashPath": "typin.core.3.1.0.nupkg.sha512" - }, - "xunit/2.4.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XNR3Yz9QTtec16O0aKcO6+baVNpXmOnPUxDkCY97J+8krUYxPvXT1szYYEUdKk4sB8GOI2YbAjRIOm8ZnXRfzQ==", - "path": "xunit/2.4.1", - "hashPath": "xunit.2.4.1.nupkg.sha512" - }, - "xunit.abstractions/2.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", - "path": "xunit.abstractions/2.0.3", - "hashPath": "xunit.abstractions.2.0.3.nupkg.sha512" - }, - "xunit.analyzers/0.10.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4/IDFCJfIeg6bix9apmUtIMwvOsiwqdEexeO/R2D4GReIGPLIRODTpId/l4LRSrAJk9lEO3Zx1H0Zx6uohJDNg==", - "path": "xunit.analyzers/0.10.0", - "hashPath": "xunit.analyzers.0.10.0.nupkg.sha512" - }, - "xunit.assert/2.4.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-O/Oe0BS5RmSsM+LQOb041TzuPo5MdH2Rov+qXGS37X+KFG1Hxz7kopYklM5+1Y+tRGeXrOx5+Xne1RuqLFQoyQ==", - "path": "xunit.assert/2.4.1", - "hashPath": "xunit.assert.2.4.1.nupkg.sha512" - }, - "xunit.core/2.4.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Zsj5OMU6JasNGERXZy8s72+pcheG6Q15atS5XpZXqAtULuyQiQ6XNnUsp1gyfC6WgqScqMvySiEHmHcOG6Eg0Q==", - "path": "xunit.core/2.4.1", - "hashPath": "xunit.core.2.4.1.nupkg.sha512" - }, - "xunit.extensibility.core/2.4.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yKZKm/8QNZnBnGZFD9SewkllHBiK0DThybQD/G4PiAmQjKtEZyHi6ET70QPU9KtSMJGRYS6Syk7EyR2EVDU4Kg==", - "path": "xunit.extensibility.core/2.4.1", - "hashPath": "xunit.extensibility.core.2.4.1.nupkg.sha512" - }, - "xunit.extensibility.execution/2.4.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7e/1jqBpcb7frLkB6XDrHCGXAbKN4Rtdb88epYxCSRQuZDRW8UtTfdTEVpdTl8s4T56e07hOBVd4G0OdCxIY2A==", - "path": "xunit.extensibility.execution/2.4.1", - "hashPath": "xunit.extensibility.execution.2.4.1.nupkg.sha512" - }, - "xunit.runner.visualstudio/2.4.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kZZSmOmKA8OBlAJaquPXnJJLM9RwQ27H7BMVqfMLUcTi9xHinWGJiWksa3D4NEtz0wZ/nxd2mogObvBgJKCRhQ==", - "path": "xunit.runner.visualstudio/2.4.3", - "hashPath": "xunit.runner.visualstudio.2.4.3.nupkg.sha512" - }, - "YamlDotNet/11.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tBt8K+korVfrjH9wyDEhiLKxbs8qoLCLIFwvYgkSUuMC9//w3z0cFQ8LQAI/5MCKq+BMil0cfRTRvPeE7eXhQw==", - "path": "yamldotnet/11.2.1", - "hashPath": "yamldotnet.11.2.1.nupkg.sha512" - }, - "Core.Test/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Linguard.Cli/2.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Linguard.Core/2.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Linguard.Log/2.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Cli.Test.dll b/linguard/Cli.Test/bin/Debug/net6.0/Cli.Test.dll deleted file mode 100644 index b349c74..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Cli.Test.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Cli.Test.pdb b/linguard/Cli.Test/bin/Debug/net6.0/Cli.Test.pdb deleted file mode 100644 index 79e23dc..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Cli.Test.pdb and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Cli.Test.runtimeconfig.json b/linguard/Cli.Test/bin/Debug/net6.0/Cli.Test.runtimeconfig.json deleted file mode 100644 index 4986d16..0000000 --- a/linguard/Cli.Test/bin/Debug/net6.0/Cli.Test.runtimeconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net6.0", - "framework": { - "name": "Microsoft.NETCore.App", - "version": "6.0.0" - } - } -} \ No newline at end of file diff --git a/linguard/Cli.Test/bin/Debug/net6.0/CommandLine.dll b/linguard/Cli.Test/bin/Debug/net6.0/CommandLine.dll deleted file mode 100644 index af18229..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/CommandLine.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Core.Test.deps.json b/linguard/Cli.Test/bin/Debug/net6.0/Core.Test.deps.json deleted file mode 100644 index f65452c..0000000 --- a/linguard/Cli.Test/bin/Debug/net6.0/Core.Test.deps.json +++ /dev/null @@ -1,4249 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v6.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v6.0": { - "Core.Test/1.0.0": { - "dependencies": { - "FluentAssertions": "6.4.0", - "FluentValidation": "10.3.6", - "IPNetwork2": "2.5.386", - "Linguard.Core": "2.0.0", - "Microsoft.NET.Test.Sdk": "16.11.0", - "Moq": "4.16.1", - "coverlet.msbuild": "3.1.2", - "xunit": "2.4.1", - "xunit.runner.visualstudio": "2.4.3" - }, - "runtime": { - "Core.Test.dll": {} - } - }, - "Bogus/34.0.1": { - "runtime": { - "lib/net6.0/Bogus.dll": { - "assemblyVersion": "34.0.1.0", - "fileVersion": "34.0.1.0" - } - } - }, - "ByteSize/2.1.1": { - "runtime": { - "lib/net5.0/ByteSize.dll": { - "assemblyVersion": "2.1.1.0", - "fileVersion": "2.1.1.0" - } - } - }, - "Castle.Core/4.4.0": { - "dependencies": { - "NETStandard.Library": "1.6.1", - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel": "4.3.0", - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Diagnostics.TraceSource": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, - "runtime": { - "lib/netstandard1.5/Castle.Core.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.4.0.0" - } - } - }, - "coverlet.msbuild/3.1.2": {}, - "FluentAssertions/6.4.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "runtime": { - "lib/netcoreapp3.0/FluentAssertions.dll": { - "assemblyVersion": "6.4.0.0", - "fileVersion": "6.4.0.0" - } - } - }, - "FluentValidation/10.3.6": { - "runtime": { - "lib/net6.0/FluentValidation.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "10.3.6.0" - } - } - }, - "IPNetwork2/2.5.386": { - "runtime": { - "lib/net5.0/System.Net.IPNetwork.dll": { - "assemblyVersion": "2.5.386.0", - "fileVersion": "2.5.386.0" - } - } - }, - "Markdig.Signed/0.22.0": { - "runtime": { - "lib/netcoreapp3.1/Markdig.Signed.dll": { - "assemblyVersion": "0.22.0.0", - "fileVersion": "0.22.0.0" - } - } - }, - "Microsoft.ApplicationInsights/2.18.0": { - "dependencies": { - "System.Diagnostics.DiagnosticSource": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": { - "assemblyVersion": "2.18.0.315", - "fileVersion": "2.18.0.315" - } - } - }, - "Microsoft.Bcl.AsyncInterfaces/5.0.0": { - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.CodeAnalysis.Analyzers/3.3.2": {}, - "Microsoft.CodeAnalysis.Common/4.0.1": { - "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": "6.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.0.121.55815" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp/4.0.1": { - "dependencies": { - "Microsoft.CodeAnalysis.Common": "4.0.1" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.0.121.55815" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeCoverage/16.11.0": { - "runtime": { - "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "16.1000.21.27002" - } - } - }, - "Microsoft.CSharp/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "Microsoft.Extensions.ObjectPool/5.0.10": { - "runtime": { - "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.1021.41022" - } - } - }, - "Microsoft.Management.Infrastructure/2.0.0": { - "dependencies": { - "Microsoft.Management.Infrastructure.Runtime.Unix": "2.0.0", - "Microsoft.Management.Infrastructure.Runtime.Win": "2.0.0" - } - }, - "Microsoft.Management.Infrastructure.CimCmdlets/7.2.1": { - "dependencies": { - "System.Management.Automation": "7.2.1" - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.0.0.0" - } - } - }, - "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { - "runtimeTargets": { - "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win-arm", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win-arm", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win-arm64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win-arm64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win10-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win10-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win10-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win10-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win7-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win7-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win7-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win7-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win8-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win8-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win8-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win8-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win81-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win81-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win81-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win81-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm/native/mi.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm/native/miutils.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/native/mi.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/native/miutils.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win10-x64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/native/mi.dll": { - "rid": "win10-x64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/native/miutils.dll": { - "rid": "win10-x64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win10-x86", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/native/mi.dll": { - "rid": "win10-x86", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/native/miutils.dll": { - "rid": "win10-x86", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win7-x64", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x64/native/mi.dll": { - "rid": "win7-x64", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x64/native/miutils.dll": { - "rid": "win7-x64", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win7-x86", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x86/native/mi.dll": { - "rid": "win7-x86", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x86/native/miutils.dll": { - "rid": "win7-x86", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win8-x64/native/mi.dll": { - "rid": "win8-x64", - "assetType": "native", - "fileVersion": "6.2.9200.22812" - }, - "runtimes/win8-x64/native/miutils.dll": { - "rid": "win8-x64", - "assetType": "native", - "fileVersion": "6.2.9200.22812" - }, - "runtimes/win8-x86/native/mi.dll": { - "rid": "win8-x86", - "assetType": "native", - "fileVersion": "6.2.9200.22812" - }, - "runtimes/win8-x86/native/miutils.dll": { - "rid": "win8-x86", - "assetType": "native", - "fileVersion": "6.2.9200.22812" - }, - "runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win81-x64", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x64/native/mi.dll": { - "rid": "win81-x64", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x64/native/miutils.dll": { - "rid": "win81-x64", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win81-x86", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x86/native/mi.dll": { - "rid": "win81-x86", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x86/native/miutils.dll": { - "rid": "win81-x86", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - } - } - }, - "Microsoft.NET.Test.Sdk/16.11.0": { - "dependencies": { - "Microsoft.CodeCoverage": "16.11.0", - "Microsoft.TestPlatform.TestHost": "16.11.0" - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "Microsoft.NETCore.Windows.ApiSets/1.0.1": {}, - "Microsoft.PowerShell.Commands.Diagnostics/7.2.1": { - "dependencies": { - "System.Management.Automation": "7.2.1" - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.Commands.Management/7.2.1": { - "dependencies": { - "Microsoft.PowerShell.Security": "7.2.1", - "System.ServiceProcess.ServiceController": "6.0.0" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.Commands.Utility/7.2.1": { - "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" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.ConsoleHost/7.2.1": { - "dependencies": { - "System.Management.Automation": "7.2.1" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.CoreCLR.Eventing/7.2.1": { - "dependencies": { - "System.Diagnostics.EventLog": "6.0.0" - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.MarkdownRender/7.2.0": { - "dependencies": { - "Markdig.Signed": "0.22.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll": { - "assemblyVersion": "7.2.0.0", - "fileVersion": "7.2.0.0" - } - } - }, - "Microsoft.PowerShell.Native/7.2.0": { - "runtimeTargets": { - "runtimes/linux-arm/native/libpsl-native.so": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm64/native/libpsl-native.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libpsl-native.so": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libmi.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libpsl-native.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libpsrpclient.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libmi.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libpsl-native.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libpsrpclient.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-arm/native/pwrshplugin.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-arm64/native/pwrshplugin.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-x64/native/pwrshplugin.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-x86/native/pwrshplugin.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - } - } - }, - "Microsoft.PowerShell.SDK/7.2.1": { - "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" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.Security/7.2.1": { - "dependencies": { - "System.Management.Automation": "7.2.1" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.TestPlatform.ObjectModel/16.11.0": { - "dependencies": { - "NuGet.Frameworks": "5.0.0", - "System.Reflection.Metadata": "5.0.0" - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - } - }, - "resources": { - "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.TestPlatform.TestHost/16.11.0": { - "dependencies": { - "Microsoft.TestPlatform.ObjectModel": "16.11.0", - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netcoreapp2.1/testhost.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - } - }, - "resources": { - "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.Win32.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "Microsoft.Win32.Registry/4.7.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Security.Principal.Windows": "5.0.0" - } - }, - "Microsoft.Win32.Registry.AccessControl/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "runtime": { - "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Windows.Compatibility/6.0.0": { - "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" - } - }, - "Microsoft.WSMan.Management/7.2.1": { - "dependencies": { - "Microsoft.WSMan.Runtime": "7.2.1", - "System.Management.Automation": "7.2.1", - "System.ServiceProcess.ServiceController": "6.0.0" - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.WSMan.Runtime/7.2.1": { - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Moq/4.16.1": { - "dependencies": { - "Castle.Core": "4.4.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.1/Moq.dll": { - "assemblyVersion": "4.16.0.0", - "fileVersion": "4.16.1.0" - } - } - }, - "Namotion.Reflection/2.0.3": { - "dependencies": { - "Microsoft.CSharp": "4.3.0" - }, - "runtime": { - "lib/netstandard2.0/Namotion.Reflection.dll": { - "assemblyVersion": "2.0.3.0", - "fileVersion": "2.0.3.0" - } - } - }, - "NETStandard.Library/1.6.1": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.Compression.ZipFile": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Net.Sockets": "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.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Timer": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0" - } - }, - "Newtonsoft.Json/13.0.1": { - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.1.25517" - } - } - }, - "NJsonSchema/10.5.2": { - "dependencies": { - "Namotion.Reflection": "2.0.3", - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/netstandard2.0/NJsonSchema.dll": { - "assemblyVersion": "10.5.2.0", - "fileVersion": "10.5.2.0" - } - } - }, - "NLog/4.7.13": { - "runtime": { - "lib/netstandard2.0/NLog.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.7.13.493" - } - } - }, - "NuGet.Frameworks/5.0.0": { - "runtime": { - "lib/netstandard2.0/NuGet.Frameworks.dll": { - "assemblyVersion": "5.0.0.6", - "fileVersion": "5.0.0.5923" - } - } - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": { - "runtimeTargets": { - "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": { - "runtimeTargets": { - "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": { - "runtimeTargets": { - "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.native.System/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Data.SqlClient.sni/4.7.0": { - "dependencies": { - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" - } - }, - "runtime.native.System.IO.Compression/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.IO.Ports/6.0.0": { - "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.native.System.Net.Http/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "dependencies": { - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": { - "runtimeTargets": { - "runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib": { - "rid": "osx-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": { - "runtimeTargets": { - "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "runtimeTargets": { - "runtimes/win-arm64/native/sni.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "4.6.25512.1" - } - } - }, - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "runtimeTargets": { - "runtimes/win-x64/native/sni.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "4.6.25512.1" - } - } - }, - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "runtimeTargets": { - "runtimes/win-x86/native/sni.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "4.6.25512.1" - } - } - }, - "System.AppContext/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Buffers/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.CodeDom/6.0.0": { - "runtime": { - "lib/net6.0/System.CodeDom.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Collections.Concurrent/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Collections.Immutable/5.0.0": {}, - "System.Collections.NonGeneric/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Collections.Specialized/4.3.0": { - "dependencies": { - "System.Collections.NonGeneric": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.ComponentModel/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.ComponentModel.Composition/6.0.0": { - "runtime": { - "lib/net6.0/System.ComponentModel.Composition.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.ComponentModel.Composition.Registration/6.0.0": { - "dependencies": { - "System.ComponentModel.Composition": "6.0.0", - "System.Reflection.Context": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.ComponentModel.Composition.Registration.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.ComponentModel.Primitives/4.3.0": { - "dependencies": { - "System.ComponentModel": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.NonGeneric": "4.3.0", - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel": "4.3.0", - "System.ComponentModel.Primitives": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "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.Threading": "4.3.0" - } - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "dependencies": { - "System.Security.Cryptography.ProtectedData": "6.0.0", - "System.Security.Permissions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Configuration.ConfigurationManager.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Console/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Data.Odbc/6.0.0": { - "dependencies": { - "System.Text.Encoding.CodePages": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Data.Odbc.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll": { - "rid": "freebsd", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/illumos/lib/net6.0/System.Data.Odbc.dll": { - "rid": "illumos", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/ios/lib/net6.0/System.Data.Odbc.dll": { - "rid": "ios", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/linux/lib/net6.0/System.Data.Odbc.dll": { - "rid": "linux", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/osx/lib/net6.0/System.Data.Odbc.dll": { - "rid": "osx", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/solaris/lib/net6.0/System.Data.Odbc.dll": { - "rid": "solaris", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/tvos/lib/net6.0/System.Data.Odbc.dll": { - "rid": "tvos", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.Data.Odbc.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Data.OleDb/6.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0", - "System.Diagnostics.PerformanceCounter": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Data.OleDb.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Data.OleDb.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Data.SqlClient/4.8.3": { - "dependencies": { - "Microsoft.Win32.Registry": "4.7.0", - "System.Security.Principal.Windows": "5.0.0", - "runtime.native.System.Data.SqlClient.sni": "4.7.0" - }, - "runtime": { - "lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "assemblyVersion": "4.6.1.3", - "fileVersion": "4.700.21.41603" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "4.6.1.3", - "fileVersion": "4.700.21.41603" - }, - "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.6.1.3", - "fileVersion": "4.700.21.41603" - } - } - }, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.DiagnosticSource/5.0.0": {}, - "System.Diagnostics.EventLog/6.0.0": { - "runtime": { - "lib/net6.0/System.Diagnostics.EventLog.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "0.0.0.0" - }, - "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Diagnostics.PerformanceCounter/6.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Diagnostics.Tools/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.TraceSource/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "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", - "runtime.native.System": "4.3.0" - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.DirectoryServices/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Security.Permissions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.DirectoryServices.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.DirectoryServices.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.DirectoryServices.AccountManagement/6.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0", - "System.DirectoryServices": "6.0.0", - "System.DirectoryServices.Protocols": "6.0.0", - "System.Security.AccessControl": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.DirectoryServices.AccountManagement.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.DirectoryServices.Protocols/6.0.0": { - "runtime": { - "lib/net6.0/System.DirectoryServices.Protocols.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll": { - "rid": "linux", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll": { - "rid": "osx", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Drawing.Common/6.0.0": { - "dependencies": { - "Microsoft.Win32.SystemEvents": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Drawing.Common.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Dynamic.Runtime/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.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" - } - }, - "System.Formats.Asn1/6.0.0": {}, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Calendars/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Globalization": "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.IO/4.3.0": { - "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" - } - }, - "System.IO.Compression/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Buffers": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.IO.Compression": "4.3.0" - } - }, - "System.IO.Compression.ZipFile/4.3.0": { - "dependencies": { - "System.Buffers": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.IO.FileSystem/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.IO.Packaging/6.0.0": { - "runtime": { - "lib/net6.0/System.IO.Packaging.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.IO.Ports/6.0.0": { - "dependencies": { - "runtime.native.System.IO.Ports": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.IO.Ports.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.IO.Ports.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.IO.Ports.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Linq.Expressions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.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" - } - }, - "System.Management/6.0.0": { - "dependencies": { - "System.CodeDom": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Management.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Management.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Management.Automation/7.2.1": { - "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" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.Management.Automation.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/System.Management.Automation.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "System.Memory/4.5.4": {}, - "System.Net.Http/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "5.0.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Net.Http.WinHttpHandler/6.0.0": { - "runtime": { - "lib/net6.0/System.Net.Http.WinHttpHandler.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Net.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Net.Sockets/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Numerics.Vectors/4.5.0": {}, - "System.ObjectModel/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Private.ServiceModel/4.9.0": { - "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": "6.0.0", - "System.Security.Principal.Windows": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Private.ServiceModel.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - }, - "resources": { - "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": { - "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" - } - }, - "System.Reflection.Context/6.0.0": { - "runtime": { - "lib/net6.0/System.Reflection.Context.dll": { - "assemblyVersion": "4.0.3.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Reflection.DispatchProxy/4.7.1": {}, - "System.Reflection.Emit/4.3.0": { - "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" - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Metadata/5.0.0": {}, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.Caching/6.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Runtime.Caching.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "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" - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - } - }, - "System.Runtime.Numerics/4.3.0": { - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Security.AccessControl/6.0.0": {}, - "System.Security.Cryptography.Algorithms/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.Apple": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.Cng/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Security.Cryptography.Csp/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.Pkcs/6.0.0": { - "dependencies": { - "System.Formats.Asn1": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Security.Cryptography.Pkcs.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "runtime": { - "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "4.3.0", - "System.Security.Cryptography.Csp": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.Xml/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Security.Cryptography.Pkcs": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Security.Cryptography.Xml.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Permissions/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Windows.Extensions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Security.Permissions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Principal.Windows/5.0.0": {}, - "System.ServiceModel.Duplex/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0", - "System.ServiceModel.Primitives": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.Duplex.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.Http/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0", - "System.ServiceModel.Primitives": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.Http.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.NetTcp/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0", - "System.ServiceModel.Primitives": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.NetTcp.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.Primitives/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.Primitives.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - }, - "lib/net6.0/System.ServiceModel.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.Security/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0", - "System.ServiceModel.Primitives": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.Security.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.Syndication/6.0.0": { - "runtime": { - "lib/net6.0/System.ServiceModel.Syndication.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.ServiceProcess.ServiceController/6.0.0": { - "dependencies": { - "System.Diagnostics.EventLog": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.ServiceProcess.ServiceController.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Speech/6.0.0": { - "runtime": { - "lib/net6.0/System.Speech.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Speech.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding.CodePages/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "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.Text.Encodings.Web/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Text.RegularExpressions/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.AccessControl/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Threading.AccessControl.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Threading.AccessControl.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks.Extensions/4.5.4": {}, - "System.Threading.Timer/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Web.Services.Description/4.9.0": { - "runtime": { - "lib/netstandard2.0/System.Web.Services.Description.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - }, - "resources": { - "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": { - "dependencies": { - "System.Drawing.Common": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Windows.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "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.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.5.4" - } - }, - "System.Xml.XDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - }, - "System.Xml.XmlDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - }, - "xunit/2.4.1": { - "dependencies": { - "xunit.analyzers": "0.10.0", - "xunit.assert": "2.4.1", - "xunit.core": "2.4.1" - } - }, - "xunit.abstractions/2.0.3": { - "runtime": { - "lib/netstandard2.0/xunit.abstractions.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.0.0.0" - } - } - }, - "xunit.analyzers/0.10.0": {}, - "xunit.assert/2.4.1": { - "dependencies": { - "NETStandard.Library": "1.6.1" - }, - "runtime": { - "lib/netstandard1.1/xunit.assert.dll": { - "assemblyVersion": "2.4.1.0", - "fileVersion": "2.4.1.0" - } - } - }, - "xunit.core/2.4.1": { - "dependencies": { - "xunit.extensibility.core": "2.4.1", - "xunit.extensibility.execution": "2.4.1" - } - }, - "xunit.extensibility.core/2.4.1": { - "dependencies": { - "NETStandard.Library": "1.6.1", - "xunit.abstractions": "2.0.3" - }, - "runtime": { - "lib/netstandard1.1/xunit.core.dll": { - "assemblyVersion": "2.4.1.0", - "fileVersion": "2.4.1.0" - } - } - }, - "xunit.extensibility.execution/2.4.1": { - "dependencies": { - "NETStandard.Library": "1.6.1", - "xunit.extensibility.core": "2.4.1" - }, - "runtime": { - "lib/netstandard1.1/xunit.execution.dotnet.dll": { - "assemblyVersion": "2.4.1.0", - "fileVersion": "2.4.1.0" - } - } - }, - "xunit.runner.visualstudio/2.4.3": {}, - "YamlDotNet/11.2.1": { - "runtime": { - "lib/netstandard2.1/YamlDotNet.dll": { - "assemblyVersion": "11.0.0.0", - "fileVersion": "11.2.1.0" - } - } - }, - "Linguard.Core/2.0.0": { - "dependencies": { - "Bogus": "34.0.1", - "ByteSize": "2.1.1", - "FluentValidation": "10.3.6", - "IPNetwork2": "2.5.386", - "Linguard.Log": "2.0.0", - "Microsoft.PowerShell.SDK": "7.2.1", - "System.Management.Automation": "7.2.1", - "YamlDotNet": "11.2.1" - }, - "runtime": { - "Linguard.Core.dll": {} - } - }, - "Linguard.Log/2.0.0": { - "dependencies": { - "NLog": "4.7.13" - }, - "runtime": { - "Linguard.Log.dll": {} - } - } - } - }, - "libraries": { - "Core.Test/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Bogus/34.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-49iq7QrD0wb7V4/FcK8p3dWdJxNUbojaqK9L6KRvdikIuRjt38EsNp7QXICcYdbYw01K8BHUdxlnTNn/YX3qDA==", - "path": "bogus/34.0.1", - "hashPath": "bogus.34.0.1.nupkg.sha512" - }, - "ByteSize/2.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-D+Y3NpbHrW21vZwwegeWf/8iAg2Mr0s7n1su8Ysho+O9dctJ5/EkWUi19QVxc6+nZl080gGTXBP/Nz0twSI3dA==", - "path": "bytesize/2.1.1", - "hashPath": "bytesize.2.1.1.nupkg.sha512" - }, - "Castle.Core/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", - "path": "castle.core/4.4.0", - "hashPath": "castle.core.4.4.0.nupkg.sha512" - }, - "coverlet.msbuild/3.1.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QhM0fnDtmIMImY7oxyQ/kh1VYtRxPyRVeLwRUGuUvI6Xp83pSYG9gerK8WgJj4TzUl7ISziADUGtIWKhtlbkbQ==", - "path": "coverlet.msbuild/3.1.2", - "hashPath": "coverlet.msbuild.3.1.2.nupkg.sha512" - }, - "FluentAssertions/6.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KOJE1UD7ndxoZAdmOraiUFLdcdGTArGQW8WYN+vwrC3mdt2G/B7gmsMOozgXKiNSh3fpD/Xp/0mhonRh8vrZKw==", - "path": "fluentassertions/6.4.0", - "hashPath": "fluentassertions.6.4.0.nupkg.sha512" - }, - "FluentValidation/10.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iMd370ZDx6ydm8t7bIFdRbSKX0e42lpvCtifUSbTSXOk5iKjmgl7HU0PXBhIWQAyIRi3gCwfMI9luj8H6K+byw==", - "path": "fluentvalidation/10.3.6", - "hashPath": "fluentvalidation.10.3.6.nupkg.sha512" - }, - "IPNetwork2/2.5.386": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6ihnNm82vyJsUYYfR2BRTziY/mQ5UGLsQZuhdSYPeTlbQLhBW/4BC9hBz3h5bFDn8PkVw9dP0cpv9brIBmk4Fw==", - "path": "ipnetwork2/2.5.386", - "hashPath": "ipnetwork2.2.5.386.nupkg.sha512" - }, - "Markdig.Signed/0.22.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7x3FqS3wk8DXyQLuflD47tBs6+ly6k4VtoDCzlDWfy7XHVsBIi7eGYEM15sPAcwSCQjOksNWE8U5r2v0Sk5FzQ==", - "path": "markdig.signed/0.22.0", - "hashPath": "markdig.signed.0.22.0.nupkg.sha512" - }, - "Microsoft.ApplicationInsights/2.18.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-milJB3VOCoC4EWmpE/Co9cOJ7SV6Ji6VqV4Rf5UlqL9QCg+rAX1y+3Y+j1Gu/j4IExYiPq7SEKqkP2BFnEu6Vw==", - "path": "microsoft.applicationinsights/2.18.0", - "hashPath": "microsoft.applicationinsights.2.18.0.nupkg.sha512" - }, - "Microsoft.Bcl.AsyncInterfaces/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W8DPQjkMScOMTtJbPwmPyj9c3zYSFGawDW3jwlBOOsnY+EzZFLgNQ/UMkK35JmkNOVPdCyPr2Tw7Vv9N+KA3ZQ==", - "path": "microsoft.bcl.asyncinterfaces/5.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Analyzers/3.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA==", - "path": "microsoft.codeanalysis.analyzers/3.3.2", - "hashPath": "microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Common/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SMREwaVD5SzatlWhh9aahQAtSWdb63NcE//f+bQzgHSECU6xtDtaxk0kwV+asdFfr6HtW38UeO6jvqdfzudg3w==", - "path": "microsoft.codeanalysis.common/4.0.1", - "hashPath": "microsoft.codeanalysis.common.4.0.1.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Q9RxxydPpUElj/x1/qykDTUGsRoKbJG8H5XUSeMGmMu54fBiuX1xyanom9caa1oQfh5JIW1BgLxobSaWs4WyHQ==", - "path": "microsoft.codeanalysis.csharp/4.0.1", - "hashPath": "microsoft.codeanalysis.csharp.4.0.1.nupkg.sha512" - }, - "Microsoft.CodeCoverage/16.11.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wf6lpAeCqP0KFfbDVtfL50lr7jY1gq0+0oSphyksfLOEygMDXqnaxHK5LPFtMEhYSEtgXdNyXNnEddOqQQUdlQ==", - "path": "microsoft.codecoverage/16.11.0", - "hashPath": "microsoft.codecoverage.16.11.0.nupkg.sha512" - }, - "Microsoft.CSharp/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==", - "path": "microsoft.csharp/4.3.0", - "hashPath": "microsoft.csharp.4.3.0.nupkg.sha512" - }, - "Microsoft.Extensions.ObjectPool/5.0.10": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pp9tbGqIhdEXL6Q1yJl+zevAJSq4BsxqhS1GXzBvEsEz9DDNu9GLNzgUy2xyFc4YjB4m4Ff2YEWTnvQvVYdkvQ==", - "path": "microsoft.extensions.objectpool/5.0.10", - "hashPath": "microsoft.extensions.objectpool.5.0.10.nupkg.sha512" - }, - "Microsoft.Management.Infrastructure/2.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IaKZRNBBv3sdrmBWd+aqwHq8cVHk/3WgWFAN/dt40MRY9rbtHiDfTTmaEN0tGTmQqGCGDo/ncntA8MvFMvcsRw==", - "path": "microsoft.management.infrastructure/2.0.0", - "hashPath": "microsoft.management.infrastructure.2.0.0.nupkg.sha512" - }, - "Microsoft.Management.Infrastructure.CimCmdlets/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xe1x237SCyrjpmW1mP1T69/OOc/gtU66P8wVC+b4/u7Hz7fIO6B8P5yVQQfb79rAe1GocruIpQlX4KXTFQf09w==", - "path": "microsoft.management.infrastructure.cimcmdlets/7.2.1", - "hashPath": "microsoft.management.infrastructure.cimcmdlets.7.2.1.nupkg.sha512" - }, - "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-p0lslMX5bdWLxO2P7ao+rjAMOB0LEwPYpzvdCQ2OEYgX2NxFpQ8ILvqPGnYlTAb53rT8gu5DyIol1HboHFYfxQ==", - "path": "microsoft.management.infrastructure.runtime.unix/2.0.0", - "hashPath": "microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512" - }, - "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vjBWQeDOjgernkrOdbEgn7M70SF7hof7ORdKPSlL06Uc15+oYdth5dZju9KsgUoti/cwnkZTiwtDx/lRtay0sA==", - "path": "microsoft.management.infrastructure.runtime.win/2.0.0", - "hashPath": "microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512" - }, - "Microsoft.NET.Test.Sdk/16.11.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-f4mbG1SUSkNWF5p7B3Y8ZxMsvKhxCmpZhdl+w6tMtLSUGE7Izi1syU6TkmKOvB2BV66pdbENConFAISOix4ohQ==", - "path": "microsoft.net.test.sdk/16.11.0", - "hashPath": "microsoft.net.test.sdk.16.11.0.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Windows.ApiSets/1.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==", - "path": "microsoft.netcore.windows.apisets/1.0.1", - "hashPath": "microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512" - }, - "Microsoft.PowerShell.Commands.Diagnostics/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Bgw4Egv7cnYUTWAy6koxg+0+/8K6rqUdlAiAxuJby9FeDPZQFfqCHQqlyP9JDa6lvbtmeBx1btFDx6Kh8bxdwQ==", - "path": "microsoft.powershell.commands.diagnostics/7.2.1", - "hashPath": "microsoft.powershell.commands.diagnostics.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.Commands.Management/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YAMrGDF2QTg6Gwz07+m1+BnmcYsPyywfY4J8nOpImfXZLLNhD7zQQP0orNHu9WPPV3/+E33qUyPj5J3ugCMk6A==", - "path": "microsoft.powershell.commands.management/7.2.1", - "hashPath": "microsoft.powershell.commands.management.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.Commands.Utility/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PU15IxUJd7nSacTstlxqJoEeGlI+BH6cUKTppkkIIxEj7EfwC5nD1qTL41xye63BFeZmOFeqAhMI6LtJUd875g==", - "path": "microsoft.powershell.commands.utility/7.2.1", - "hashPath": "microsoft.powershell.commands.utility.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.ConsoleHost/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uAPSsTmkOa7na1+OAPF87yBRwD1Ka/qXThoyrlvP9ihzMWfHM52k3MuKVEGi04VP3Wdi7U4Rzkr3svxDDmkHgA==", - "path": "microsoft.powershell.consolehost/7.2.1", - "hashPath": "microsoft.powershell.consolehost.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.CoreCLR.Eventing/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fUz7InjavqKtslkQN828nWbZLnmmJRL9rn4b3e/XXdx0BcN+65x/pSgMnehwDVGIoqUPUMXN54eDo4HRVcLA5g==", - "path": "microsoft.powershell.coreclr.eventing/7.2.1", - "hashPath": "microsoft.powershell.coreclr.eventing.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.MarkdownRender/7.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1vqDtdX9RCGsMWCbzp0CIxZW3slWgq8mYHDfUlUKzmkV57fMAn4m0Gy2OtsqopZzrOiVJci+QCWx5FB7BVpMlw==", - "path": "microsoft.powershell.markdownrender/7.2.0", - "hashPath": "microsoft.powershell.markdownrender.7.2.0.nupkg.sha512" - }, - "Microsoft.PowerShell.Native/7.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TauOu3bYr4DRh9HpH3+fgaL+y2GY47KLsgU6qX1NDLqHshdEaCCjiF0N5sDEgCEhSb38FwWhpdFTIQvoOcYCXQ==", - "path": "microsoft.powershell.native/7.2.0", - "hashPath": "microsoft.powershell.native.7.2.0.nupkg.sha512" - }, - "Microsoft.PowerShell.SDK/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UufIcywqI/22p0oqC5qg+yDoW39U2JAQyaHxy2Tr/h0hdWuFimtmhxp/FDXTxszgOdobtjcrCkSzqcoNmu/vQQ==", - "path": "microsoft.powershell.sdk/7.2.1", - "hashPath": "microsoft.powershell.sdk.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.Security/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GV3RuuOmXHAaEjeBcyixdzUIAQvHW6xgoWwafzTe97DbhI+N1sg4fa/FQ9pd8lqG+kkWxGwTy1VgudXX6rhUkg==", - "path": "microsoft.powershell.security/7.2.1", - "hashPath": "microsoft.powershell.security.7.2.1.nupkg.sha512" - }, - "Microsoft.TestPlatform.ObjectModel/16.11.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EiknJx9N9Z30gs7R+HHhki7fA8EiiM3pwD1vkw3bFsBC8kdVq/O7mHf1hrg5aJp+ASO6BoOzQueD2ysfTOy/Bg==", - "path": "microsoft.testplatform.objectmodel/16.11.0", - "hashPath": "microsoft.testplatform.objectmodel.16.11.0.nupkg.sha512" - }, - "Microsoft.TestPlatform.TestHost/16.11.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/Q+R0EcCJE8JaYCk+bGReicw/xrB0HhecrYrUcLbn95BnAlaTJrZhoLkUhvtKTAVtqX/AIKWXYtutiU/Q6QUgg==", - "path": "microsoft.testplatform.testhost/16.11.0", - "hashPath": "microsoft.testplatform.testhost.16.11.0.nupkg.sha512" - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", - "path": "microsoft.win32.primitives/4.3.0", - "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", - "path": "microsoft.win32.registry/4.7.0", - "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry.AccessControl/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UoE+eeuBKL+GFHxHV3FjHlY5K8Wr/IR7Ee/a2oDNqFodF1iMqyt5hIs0U9Z217AbWrHrNle4750kD03hv1IMZw==", - "path": "microsoft.win32.registry.accesscontrol/6.0.0", - "hashPath": "microsoft.win32.registry.accesscontrol.6.0.0.nupkg.sha512" - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", - "path": "microsoft.win32.systemevents/6.0.0", - "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" - }, - "Microsoft.Windows.Compatibility/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9esuK5JqnjkDgO9/AHesyJSG0aKwpfLVzTw6nIGYhqE91VLxZyv3HKulNoPVy/NOuyAaf1kE4FKtdZDzdd/SLw==", - "path": "microsoft.windows.compatibility/6.0.0", - "hashPath": "microsoft.windows.compatibility.6.0.0.nupkg.sha512" - }, - "Microsoft.WSMan.Management/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vMOJMof4eLql180G4PmTurN8h8+VmPaf1l/Tqq+GI7HYyNv140iY3/Z18MiZA4dRG14qghLNo5JxtTolY7b4og==", - "path": "microsoft.wsman.management/7.2.1", - "hashPath": "microsoft.wsman.management.7.2.1.nupkg.sha512" - }, - "Microsoft.WSMan.Runtime/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v14vzUXIg7opXoQI8Eb82dvsRwBNylZ44lvyXOBSRCiVfvMhyTqE8bpPWbwwmQ5JZRnG/dP5/aOYuu9l163fyQ==", - "path": "microsoft.wsman.runtime/7.2.1", - "hashPath": "microsoft.wsman.runtime.7.2.1.nupkg.sha512" - }, - "Moq/4.16.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bw3R9q8cVNhWXNpnvWb0OGP4HadS4zvClq+T1zf7AF+tLY1haZ2AvbHidQekf4PDv1T40c6brZeT/V0IBq7cEQ==", - "path": "moq/4.16.1", - "hashPath": "moq.4.16.1.nupkg.sha512" - }, - "Namotion.Reflection/2.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tZCe/UrSBAMW8A4TjD/SlpRHaWjnHlSWdyRuOXhf3yrE0OX+4fXg0uzj7mwFDclXznfCGRAZbP+akPt4G/mclw==", - "path": "namotion.reflection/2.0.3", - "hashPath": "namotion.reflection.2.0.3.nupkg.sha512" - }, - "NETStandard.Library/1.6.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", - "path": "netstandard.library/1.6.1", - "hashPath": "netstandard.library.1.6.1.nupkg.sha512" - }, - "Newtonsoft.Json/13.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", - "path": "newtonsoft.json/13.0.1", - "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" - }, - "NJsonSchema/10.5.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vr2CbySuXh74TQFU0rGJYZOS492xOE64cPXdB7a0cfXJb/N45Bf4v7sd4LOla0jNhgc5V/B61Ko3qecriL195w==", - "path": "njsonschema/10.5.2", - "hashPath": "njsonschema.10.5.2.nupkg.sha512" - }, - "NLog/4.7.13": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AvoGpCuq36B+0wY313XA6gC+YeMvk24rqF8P+HS9fInBGOjCzPjpXp2ln9ATZjPOJtXgHfc8zNmTjyswFGLxvg==", - "path": "nlog/4.7.13", - "hashPath": "nlog.4.7.13.nupkg.sha512" - }, - "NuGet.Frameworks/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c5JVjuVAm4f7E9Vj+v09Z9s2ZsqFDjBpcsyS3M9xRo0bEdm/LVZSzLxxNvfvAwRiiE8nwe1h2G4OwiwlzFKXlA==", - "path": "nuget.frameworks/5.0.0", - "hashPath": "nuget.frameworks.5.0.0.nupkg.sha512" - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", - "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", - "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", - "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-75q52H7CSpgIoIDwXb9o833EvBZIXJ0mdPhz1E6jSisEXUBlSCPalC29cj3EXsjpuDwr0dj1LRXZepIQH/oL4Q==", - "path": "runtime.linux-arm.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.linux-arm.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xn2bMThmXr3CsvOYmS8ex2Yz1xo+kcnhVg2iVhS9PlmqjZPAkrEo/I40wjrBZH/tU4kvH0s1AE8opAvQ3KIS8g==", - "path": "runtime.linux-arm64.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.linux-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-16nbNXwv0sC+gLGIuecri0skjuh6R1maIJggsaNP7MQBcbVcEfWFUOkEnsnvoLEjy0XerfibuRptfQ8AmdIcWA==", - "path": "runtime.linux-x64.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.linux-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.native.System/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "path": "runtime.native.system/4.3.0", - "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Data.SqlClient.sni/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", - "path": "runtime.native.system.data.sqlclient.sni/4.7.0", - "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512" - }, - "runtime.native.System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", - "path": "runtime.native.system.io.compression/4.3.0", - "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" - }, - "runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KaaXlpOcuZjMdmyF5wzzx3b+PRKIzt6A5Ax9dKenPDQbVJAFpev+casD0BIig1pBcbs3zx7CqWemzUJKAeHdSQ==", - "path": "runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.native.System.Net.Http/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", - "path": "runtime.native.system.net.http/4.3.0", - "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", - "path": "runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", - "path": "runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", - "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", - "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fXG12NodG1QrCdoaeSQ1gVnk/koi4WYY4jZtarMkZeQMyReBm1nZlSRoPnUjLr2ZR36TiMjpcGnQfxymieUe7w==", - "path": "runtime.osx-arm64.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.osx-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/As+zPY49+dSUXkh+fTUbyPhqrdGN//evLxo4Vue88pfh1BHZgF7q4kMblTkxYvwR6Vi03zSYxysSFktO8/SDQ==", - "path": "runtime.osx-x64.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.osx-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", - "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", - "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", - "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", - "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", - "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", - "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" - }, - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", - "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", - "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" - }, - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", - "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", - "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" - }, - "System.AppContext/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", - "path": "system.appcontext/4.3.0", - "hashPath": "system.appcontext.4.3.0.nupkg.sha512" - }, - "System.Buffers/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", - "path": "system.buffers/4.3.0", - "hashPath": "system.buffers.4.3.0.nupkg.sha512" - }, - "System.CodeDom/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", - "path": "system.codedom/6.0.0", - "hashPath": "system.codedom.6.0.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", - "path": "system.collections.concurrent/4.3.0", - "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" - }, - "System.Collections.Immutable/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", - "path": "system.collections.immutable/5.0.0", - "hashPath": "system.collections.immutable.5.0.0.nupkg.sha512" - }, - "System.Collections.NonGeneric/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", - "path": "system.collections.nongeneric/4.3.0", - "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" - }, - "System.Collections.Specialized/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", - "path": "system.collections.specialized/4.3.0", - "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" - }, - "System.ComponentModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", - "path": "system.componentmodel/4.3.0", - "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.Composition/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-60Qv+F7oxomOjJeTDA5Z4iCyFbQ0B/2Mi5HT+13pxxq0lVnu2ipbWMzFB+RWKr3wWKA8BSncXr9PH/fECwMX5Q==", - "path": "system.componentmodel.composition/6.0.0", - "hashPath": "system.componentmodel.composition.6.0.0.nupkg.sha512" - }, - "System.ComponentModel.Composition.Registration/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+i3RLlOgTsf15VeADBPpzPyRiXq71aLSuzdHeNtmq9f6BwpF3OWhB76p0WDUNCa3Z+SLD4dJbBM9yAep7kQCGA==", - "path": "system.componentmodel.composition.registration/6.0.0", - "hashPath": "system.componentmodel.composition.registration.6.0.0.nupkg.sha512" - }, - "System.ComponentModel.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", - "path": "system.componentmodel.primitives/4.3.0", - "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", - "path": "system.componentmodel.typeconverter/4.3.0", - "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", - "path": "system.configuration.configurationmanager/6.0.0", - "hashPath": "system.configuration.configurationmanager.6.0.0.nupkg.sha512" - }, - "System.Console/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", - "path": "system.console/4.3.0", - "hashPath": "system.console.4.3.0.nupkg.sha512" - }, - "System.Data.Odbc/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pnZjwe0Qwr1Rnp7NExd5zz4YwXJrYuAbWNKjEQpTzCEg6f/L5DYJS7w3hG3vgSj1t/r79UL390YzXIklf1VuQQ==", - "path": "system.data.odbc/6.0.0", - "hashPath": "system.data.odbc.6.0.0.nupkg.sha512" - }, - "System.Data.OleDb/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LQ8PjTIF1LtrrlGiyiTVjAkQtTWKm9GSNnygIlWjhN9y88s7xhy6DUNDDkmQQ9f6ex7mA4k0Tl97lz/CklaiLg==", - "path": "system.data.oledb/6.0.0", - "hashPath": "system.data.oledb.6.0.0.nupkg.sha512" - }, - "System.Data.SqlClient/4.8.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yERfVLXAY0QbylAgaGLByYN0hFxX28aeEQ0hUgJO+Ntn1AfmWl5HHUoYJA0Yl9HhIUUJHVaS/Sw/RLZr5aaC+A==", - "path": "system.data.sqlclient/4.8.3", - "hashPath": "system.data.sqlclient.4.8.3.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==", - "path": "system.diagnostics.diagnosticsource/5.0.0", - "hashPath": "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512" - }, - "System.Diagnostics.EventLog/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", - "path": "system.diagnostics.eventlog/6.0.0", - "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512" - }, - "System.Diagnostics.PerformanceCounter/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-gbeE5tNp/oB7O8kTTLh3wPPJCxpNOphXPTWVs1BsYuFOYapFijWuh0LYw1qnDo4gwDUYPXOmpTIhvtxisGsYOQ==", - "path": "system.diagnostics.performancecounter/6.0.0", - "hashPath": "system.diagnostics.performancecounter.6.0.0.nupkg.sha512" - }, - "System.Diagnostics.Tools/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", - "path": "system.diagnostics.tools/4.3.0", - "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.TraceSource/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", - "path": "system.diagnostics.tracesource/4.3.0", - "hashPath": "system.diagnostics.tracesource.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", - "path": "system.diagnostics.tracing/4.3.0", - "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" - }, - "System.DirectoryServices/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kp/Op0nxDVGlElDKh8TsXO0GKXftQgAB6sJk0wUetZK1Rr0Pbd86Tn7AllLLlROFZa4BTl/LVHakljtGELFzCg==", - "path": "system.directoryservices/6.0.0", - "hashPath": "system.directoryservices.6.0.0.nupkg.sha512" - }, - "System.DirectoryServices.AccountManagement/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2iKkY6VC4WX6H13N8WhH2SRUfWCwg2KZR5w9JIS9cw9N8cZhT7VXxHX0L6OX6Po419aSu2LWrJE9tu6b+cUnPA==", - "path": "system.directoryservices.accountmanagement/6.0.0", - "hashPath": "system.directoryservices.accountmanagement.6.0.0.nupkg.sha512" - }, - "System.DirectoryServices.Protocols/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-++WKU7HQPo/FJdhywWw+q2lLjcVAGVw5XLH9kRCV+4DvkhVAcHCksh0ezIqwNROmaU9LMJN0d/LAdeWXu3pi6Q==", - "path": "system.directoryservices.protocols/6.0.0", - "hashPath": "system.directoryservices.protocols.6.0.0.nupkg.sha512" - }, - "System.Drawing.Common/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", - "path": "system.drawing.common/6.0.0", - "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" - }, - "System.Dynamic.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", - "path": "system.dynamic.runtime/4.3.0", - "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" - }, - "System.Formats.Asn1/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA==", - "path": "system.formats.asn1/6.0.0", - "hashPath": "system.formats.asn1.6.0.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", - "path": "system.globalization.calendars/4.3.0", - "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", - "path": "system.globalization.extensions/4.3.0", - "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", - "path": "system.io.compression/4.3.0", - "hashPath": "system.io.compression.4.3.0.nupkg.sha512" - }, - "System.IO.Compression.ZipFile/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", - "path": "system.io.compression.zipfile/4.3.0", - "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "path": "system.io.filesystem/4.3.0", - "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "path": "system.io.filesystem.primitives/4.3.0", - "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" - }, - "System.IO.Packaging/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-C7OkTRIjqIjAKu6ef/fuj8ynCZTPcTYZnvHaq48bniACgXXJogmEoIc56YCDNTc14xhsbLmgpS3KP+evbsUa2g==", - "path": "system.io.packaging/6.0.0", - "hashPath": "system.io.packaging.6.0.0.nupkg.sha512" - }, - "System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dRyGI7fUESar5ZLIpiBOaaNLW7YyOBGftjj5Of+xcduC/Rjl7RjhEnWDvvNBmHuF3d0tdXoqdVI/yrVA8f00XA==", - "path": "system.io.ports/6.0.0", - "hashPath": "system.io.ports.6.0.0.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "path": "system.linq.expressions/4.3.0", - "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" - }, - "System.Management/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sHsESYMmPDhQuOC66h6AEOs/XowzKsbT9srMbX71TCXP58hkpn1BqBjdmKj1+DCA/WlBETX1K5WjQHwmV0Txrg==", - "path": "system.management/6.0.0", - "hashPath": "system.management.6.0.0.nupkg.sha512" - }, - "System.Management.Automation/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YlTE+q14vQ1YU//A5+/Jwl5+L5r6uOVIWuB4D/T9r80AaCeUAZMMvTKjgvIr9lwkovwQflVL+1JfBAi9f0q0KA==", - "path": "system.management.automation/7.2.1", - "hashPath": "system.management.automation.7.2.1.nupkg.sha512" - }, - "System.Memory/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", - "path": "system.memory/4.5.4", - "hashPath": "system.memory.4.5.4.nupkg.sha512" - }, - "System.Net.Http/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", - "path": "system.net.http/4.3.0", - "hashPath": "system.net.http.4.3.0.nupkg.sha512" - }, - "System.Net.Http.WinHttpHandler/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jubNN9jH4NzVrvEf4fGwESLBsfH8whWNbHMhgM6IwA8UCt6+/M19bbOHc21JhigvC2HQKCl8HKGZMcBtIpzqIg==", - "path": "system.net.http.winhttphandler/6.0.0", - "hashPath": "system.net.http.winhttphandler.6.0.0.nupkg.sha512" - }, - "System.Net.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", - "path": "system.net.primitives/4.3.0", - "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" - }, - "System.Net.Sockets/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", - "path": "system.net.sockets/4.3.0", - "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" - }, - "System.Numerics.Vectors/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", - "path": "system.numerics.vectors/4.5.0", - "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "path": "system.objectmodel/4.3.0", - "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" - }, - "System.Private.ServiceModel/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d3RjkrtpjUQ63PzFmm/SZ4aOXeJNP+8YW5QeP0lCJy8iX4xlHdlNLWTF9sRn9SmrFTK757kQXT9Op/R4l858uw==", - "path": "system.private.servicemodel/4.9.0", - "hashPath": "system.private.servicemodel.4.9.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Context/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vi+Gb41oyOYie7uLSsjRmfRg3bryUg5DssJvj3gDUl0D8z6ipSm6/yi/XNx2rcS5iVMvHcwRUHjcx7ixv0K3/w==", - "path": "system.reflection.context/6.0.0", - "hashPath": "system.reflection.context.6.0.0.nupkg.sha512" - }, - "System.Reflection.DispatchProxy/4.7.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-C1sMLwIG6ILQ2bmOT4gh62V6oJlyF4BlHcVMrOoor49p0Ji2tA8QAoqyMcIhAdH6OHKJ8m7BU+r4LK2CUEOKqw==", - "path": "system.reflection.dispatchproxy/4.7.1", - "hashPath": "system.reflection.dispatchproxy.4.7.1.nupkg.sha512" - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "path": "system.reflection.emit/4.3.0", - "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "path": "system.reflection.emit.lightweight/4.3.0", - "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Metadata/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==", - "path": "system.reflection.metadata/5.0.0", - "hashPath": "system.reflection.metadata.5.0.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.Caching/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==", - "path": "system.runtime.caching/6.0.0", - "hashPath": "system.runtime.caching.6.0.0.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", - "path": "system.runtime.interopservices.runtimeinformation/4.3.0", - "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", - "path": "system.runtime.numerics/4.3.0", - "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" - }, - "System.Security.AccessControl/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", - "path": "system.security.accesscontrol/6.0.0", - "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", - "path": "system.security.cryptography.algorithms/4.3.0", - "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Cng/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", - "path": "system.security.cryptography.cng/4.3.0", - "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Csp/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", - "path": "system.security.cryptography.csp/4.3.0", - "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", - "path": "system.security.cryptography.encoding/4.3.0", - "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", - "path": "system.security.cryptography.openssl/4.3.0", - "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Pkcs/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-elM3x+xSRhzQysiqo85SbidJJ2YbZlnvmh+53TuSZHsD7dNuuEWser+9EFtY+rYupBwkq2avc6ZCO3/6qACgmg==", - "path": "system.security.cryptography.pkcs/6.0.0", - "hashPath": "system.security.cryptography.pkcs.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", - "path": "system.security.cryptography.primitives/4.3.0", - "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", - "path": "system.security.cryptography.protecteddata/6.0.0", - "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", - "path": "system.security.cryptography.x509certificates/4.3.0", - "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Xml/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-puJ4UCh9JVRwOCyCIcq71JY6Axr8Sp8E2GjTIU1Fj8hm4+oX6NEoyGFGa/+pBG8SrVxbQPSj7hvtaREyTHHsmw==", - "path": "system.security.cryptography.xml/6.0.0", - "hashPath": "system.security.cryptography.xml.6.0.0.nupkg.sha512" - }, - "System.Security.Permissions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", - "path": "system.security.permissions/6.0.0", - "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" - }, - "System.Security.Principal.Windows/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", - "path": "system.security.principal.windows/5.0.0", - "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" - }, - "System.ServiceModel.Duplex/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Yb8MFiJxBBtm2JnfS/5SxYzm2HqkEmHu5xeaVIHXy83sNpty9wc30JifH2xgda821D6nr1UctbwbdZqN4LBUKQ==", - "path": "system.servicemodel.duplex/4.9.0", - "hashPath": "system.servicemodel.duplex.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.Http/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z+s3RkLNzJ31fDXAjqXdXp67FqsNG4V3Md3r7FOrzMkHmg61gY8faEfTFPBLxU9tax1HPWt6IHVAquXBKySJaw==", - "path": "system.servicemodel.http/4.9.0", - "hashPath": "system.servicemodel.http.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.NetTcp/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nXgnnkrZERUF/KwmoLwZPkc7fqgiq94DXkmUZBvDNh/LdZquDvjy2NbhJLElpApOa5x8zEoQoBZyJ2PqNC39qg==", - "path": "system.servicemodel.nettcp/4.9.0", - "hashPath": "system.servicemodel.nettcp.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.Primitives/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LTFPVdS8Nf76xg/wRZkDa+2Q+GnjTOmwkTlwuoetwX37mAfYnGkf7p8ydhpDwVmomNljpUOhUUGxfjQyd5YcOg==", - "path": "system.servicemodel.primitives/4.9.0", - "hashPath": "system.servicemodel.primitives.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.Security/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iurpbSmPgotHps94VQ6acvL6hU2gjiuBmQI7PwLLN76jsbSpUcahT0PglccKIAwoMujATk/LWtAapBHpwCFn2g==", - "path": "system.servicemodel.security/4.9.0", - "hashPath": "system.servicemodel.security.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.Syndication/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cp1mMNG87iJtE0oHXFtfWT6cfski2JNo5iU0siTPi/uN2k1CIJI6FE4jr4v3got2dzt7wBq17fSy44btun9GiA==", - "path": "system.servicemodel.syndication/6.0.0", - "hashPath": "system.servicemodel.syndication.6.0.0.nupkg.sha512" - }, - "System.ServiceProcess.ServiceController/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qMBvG8ZFbkXoe0Z5/D7FAAadfPkH2v7vSuh2xsLf3U6jNoejpIdeV18A0htiASsLK1CCAc/p59kaLXlt2yB1gw==", - "path": "system.serviceprocess.servicecontroller/6.0.0", - "hashPath": "system.serviceprocess.servicecontroller.6.0.0.nupkg.sha512" - }, - "System.Speech/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GQovERMrNP0Vbtgk8LzH4PlFS6lqHgsL9WkUmv8Kkxa0m0vNakitytpHZlfJ9WR7n9WKLXh68nn2kyL9mflnLg==", - "path": "system.speech/6.0.0", - "hashPath": "system.speech.6.0.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.CodePages/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "path": "system.text.encoding.codepages/6.0.0", - "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512" - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "path": "system.text.encoding.extensions/4.3.0", - "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" - }, - "System.Text.Encodings.Web/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", - "path": "system.text.encodings.web/6.0.0", - "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "path": "system.text.regularexpressions/4.3.0", - "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.AccessControl/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2258mqWesMch/xCpcnjJBgJP33yhpZLGLbEOm01qwq0efG4b+NG8c9sxYOWNxmDQ82swXrnQRl1Yp2wC1NrfZA==", - "path": "system.threading.accesscontrol/6.0.0", - "hashPath": "system.threading.accesscontrol.6.0.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", - "path": "system.threading.tasks.extensions/4.5.4", - "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" - }, - "System.Threading.Timer/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", - "path": "system.threading.timer/4.3.0", - "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" - }, - "System.Web.Services.Description/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d20B3upsWddwSG5xF3eQLs0cAV3tXDsBNqP4kh02ylfgZwqfpf4f/9KiZVIGIoxULt2cKqxWs+U4AdNAJ7L8cQ==", - "path": "system.web.services.description/4.9.0", - "hashPath": "system.web.services.description.4.9.0.nupkg.sha512" - }, - "System.Windows.Extensions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", - "path": "system.windows.extensions/6.0.0", - "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "path": "system.xml.readerwriter/4.3.0", - "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", - "path": "system.xml.xdocument/4.3.0", - "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" - }, - "System.Xml.XmlDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", - "path": "system.xml.xmldocument/4.3.0", - "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" - }, - "xunit/2.4.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XNR3Yz9QTtec16O0aKcO6+baVNpXmOnPUxDkCY97J+8krUYxPvXT1szYYEUdKk4sB8GOI2YbAjRIOm8ZnXRfzQ==", - "path": "xunit/2.4.1", - "hashPath": "xunit.2.4.1.nupkg.sha512" - }, - "xunit.abstractions/2.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", - "path": "xunit.abstractions/2.0.3", - "hashPath": "xunit.abstractions.2.0.3.nupkg.sha512" - }, - "xunit.analyzers/0.10.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4/IDFCJfIeg6bix9apmUtIMwvOsiwqdEexeO/R2D4GReIGPLIRODTpId/l4LRSrAJk9lEO3Zx1H0Zx6uohJDNg==", - "path": "xunit.analyzers/0.10.0", - "hashPath": "xunit.analyzers.0.10.0.nupkg.sha512" - }, - "xunit.assert/2.4.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-O/Oe0BS5RmSsM+LQOb041TzuPo5MdH2Rov+qXGS37X+KFG1Hxz7kopYklM5+1Y+tRGeXrOx5+Xne1RuqLFQoyQ==", - "path": "xunit.assert/2.4.1", - "hashPath": "xunit.assert.2.4.1.nupkg.sha512" - }, - "xunit.core/2.4.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Zsj5OMU6JasNGERXZy8s72+pcheG6Q15atS5XpZXqAtULuyQiQ6XNnUsp1gyfC6WgqScqMvySiEHmHcOG6Eg0Q==", - "path": "xunit.core/2.4.1", - "hashPath": "xunit.core.2.4.1.nupkg.sha512" - }, - "xunit.extensibility.core/2.4.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yKZKm/8QNZnBnGZFD9SewkllHBiK0DThybQD/G4PiAmQjKtEZyHi6ET70QPU9KtSMJGRYS6Syk7EyR2EVDU4Kg==", - "path": "xunit.extensibility.core/2.4.1", - "hashPath": "xunit.extensibility.core.2.4.1.nupkg.sha512" - }, - "xunit.extensibility.execution/2.4.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7e/1jqBpcb7frLkB6XDrHCGXAbKN4Rtdb88epYxCSRQuZDRW8UtTfdTEVpdTl8s4T56e07hOBVd4G0OdCxIY2A==", - "path": "xunit.extensibility.execution/2.4.1", - "hashPath": "xunit.extensibility.execution.2.4.1.nupkg.sha512" - }, - "xunit.runner.visualstudio/2.4.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kZZSmOmKA8OBlAJaquPXnJJLM9RwQ27H7BMVqfMLUcTi9xHinWGJiWksa3D4NEtz0wZ/nxd2mogObvBgJKCRhQ==", - "path": "xunit.runner.visualstudio/2.4.3", - "hashPath": "xunit.runner.visualstudio.2.4.3.nupkg.sha512" - }, - "YamlDotNet/11.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tBt8K+korVfrjH9wyDEhiLKxbs8qoLCLIFwvYgkSUuMC9//w3z0cFQ8LQAI/5MCKq+BMil0cfRTRvPeE7eXhQw==", - "path": "yamldotnet/11.2.1", - "hashPath": "yamldotnet.11.2.1.nupkg.sha512" - }, - "Linguard.Core/2.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Linguard.Log/2.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Core.Test.dll b/linguard/Cli.Test/bin/Debug/net6.0/Core.Test.dll deleted file mode 100644 index d3355e5..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Core.Test.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Core.Test.pdb b/linguard/Cli.Test/bin/Debug/net6.0/Core.Test.pdb deleted file mode 100644 index 7448848..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Core.Test.pdb and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Core.Test.runtimeconfig.json b/linguard/Cli.Test/bin/Debug/net6.0/Core.Test.runtimeconfig.json deleted file mode 100644 index 4986d16..0000000 --- a/linguard/Cli.Test/bin/Debug/net6.0/Core.Test.runtimeconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net6.0", - "framework": { - "name": "Microsoft.NETCore.App", - "version": "6.0.0" - } - } -} \ No newline at end of file diff --git a/linguard/Cli.Test/bin/Debug/net6.0/CoverletSourceRootsMapping b/linguard/Cli.Test/bin/Debug/net6.0/CoverletSourceRootsMapping deleted file mode 100644 index a2a7f4e..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/CoverletSourceRootsMapping and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/FluentAssertions.dll b/linguard/Cli.Test/bin/Debug/net6.0/FluentAssertions.dll deleted file mode 100644 index 279f957..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/FluentAssertions.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/FluentValidation.dll b/linguard/Cli.Test/bin/Debug/net6.0/FluentValidation.dll deleted file mode 100644 index fd90d11..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/FluentValidation.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Cli.deps.json b/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Cli.deps.json deleted file mode 100644 index 652891e..0000000 --- a/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Cli.deps.json +++ /dev/null @@ -1,3017 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v6.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v6.0": { - "Linguard.Cli/2.0.0": { - "dependencies": { - "CommandLineParser": "2.8.0", - "FluentValidation": "10.3.6", - "Linguard.Core": "2.0.0", - "Typin": "3.1.0" - }, - "runtime": { - "Linguard.Cli.dll": {} - } - }, - "Bogus/34.0.1": { - "runtime": { - "lib/net6.0/Bogus.dll": { - "assemblyVersion": "34.0.1.0", - "fileVersion": "34.0.1.0" - } - } - }, - "ByteSize/2.1.1": { - "runtime": { - "lib/net5.0/ByteSize.dll": { - "assemblyVersion": "2.1.1.0", - "fileVersion": "2.1.1.0" - } - } - }, - "CommandLineParser/2.8.0": { - "runtime": { - "lib/netstandard2.0/CommandLine.dll": { - "assemblyVersion": "2.8.0.0", - "fileVersion": "2.8.0.0" - } - } - }, - "FluentValidation/10.3.6": { - "runtime": { - "lib/net6.0/FluentValidation.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "10.3.6.0" - } - } - }, - "IPNetwork2/2.5.386": { - "runtime": { - "lib/net5.0/System.Net.IPNetwork.dll": { - "assemblyVersion": "2.5.386.0", - "fileVersion": "2.5.386.0" - } - } - }, - "Markdig.Signed/0.22.0": { - "runtime": { - "lib/netcoreapp3.1/Markdig.Signed.dll": { - "assemblyVersion": "0.22.0.0", - "fileVersion": "0.22.0.0" - } - } - }, - "Microsoft.ApplicationInsights/2.18.0": { - "dependencies": { - "System.Diagnostics.DiagnosticSource": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": { - "assemblyVersion": "2.18.0.315", - "fileVersion": "2.18.0.315" - } - } - }, - "Microsoft.Bcl.AsyncInterfaces/5.0.0": { - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.CodeAnalysis.Analyzers/3.3.2": {}, - "Microsoft.CodeAnalysis.Common/4.0.1": { - "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": "6.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.0.121.55815" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp/4.0.1": { - "dependencies": { - "Microsoft.CodeAnalysis.Common": "4.0.1" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.0.121.55815" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CSharp/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "Microsoft.Extensions.DependencyInjection/6.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "runtime": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Logging/6.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "System.Diagnostics.DiagnosticSource": "6.0.0" - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/6.0.0": { - "runtime": { - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Logging.Debug/6.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.ObjectPool/5.0.10": { - "runtime": { - "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.1021.41022" - } - } - }, - "Microsoft.Extensions.Options/6.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Management.Infrastructure/2.0.0": { - "dependencies": { - "Microsoft.Management.Infrastructure.Runtime.Unix": "2.0.0", - "Microsoft.Management.Infrastructure.Runtime.Win": "2.0.0" - } - }, - "Microsoft.Management.Infrastructure.CimCmdlets/7.2.1": { - "dependencies": { - "System.Management.Automation": "7.2.1" - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.0.0.0" - } - } - }, - "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { - "runtimeTargets": { - "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win-arm", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win-arm", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win-arm64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win-arm64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win10-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win10-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win10-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win10-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win7-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win7-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win7-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win7-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win8-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win8-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win8-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win8-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win81-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win81-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win81-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win81-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm/native/mi.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm/native/miutils.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/native/mi.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/native/miutils.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win10-x64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/native/mi.dll": { - "rid": "win10-x64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/native/miutils.dll": { - "rid": "win10-x64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win10-x86", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/native/mi.dll": { - "rid": "win10-x86", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/native/miutils.dll": { - "rid": "win10-x86", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win7-x64", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x64/native/mi.dll": { - "rid": "win7-x64", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x64/native/miutils.dll": { - "rid": "win7-x64", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win7-x86", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x86/native/mi.dll": { - "rid": "win7-x86", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x86/native/miutils.dll": { - "rid": "win7-x86", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win8-x64/native/mi.dll": { - "rid": "win8-x64", - "assetType": "native", - "fileVersion": "6.2.9200.22812" - }, - "runtimes/win8-x64/native/miutils.dll": { - "rid": "win8-x64", - "assetType": "native", - "fileVersion": "6.2.9200.22812" - }, - "runtimes/win8-x86/native/mi.dll": { - "rid": "win8-x86", - "assetType": "native", - "fileVersion": "6.2.9200.22812" - }, - "runtimes/win8-x86/native/miutils.dll": { - "rid": "win8-x86", - "assetType": "native", - "fileVersion": "6.2.9200.22812" - }, - "runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win81-x64", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x64/native/mi.dll": { - "rid": "win81-x64", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x64/native/miutils.dll": { - "rid": "win81-x64", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win81-x86", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x86/native/mi.dll": { - "rid": "win81-x86", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x86/native/miutils.dll": { - "rid": "win81-x86", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - } - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "Microsoft.NETCore.Windows.ApiSets/1.0.1": {}, - "Microsoft.PowerShell.Commands.Diagnostics/7.2.1": { - "dependencies": { - "System.Management.Automation": "7.2.1" - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.Commands.Management/7.2.1": { - "dependencies": { - "Microsoft.PowerShell.Security": "7.2.1", - "System.ServiceProcess.ServiceController": "6.0.0" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.Commands.Utility/7.2.1": { - "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" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.ConsoleHost/7.2.1": { - "dependencies": { - "System.Management.Automation": "7.2.1" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.CoreCLR.Eventing/7.2.1": { - "dependencies": { - "System.Diagnostics.EventLog": "6.0.0" - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.MarkdownRender/7.2.0": { - "dependencies": { - "Markdig.Signed": "0.22.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll": { - "assemblyVersion": "7.2.0.0", - "fileVersion": "7.2.0.0" - } - } - }, - "Microsoft.PowerShell.Native/7.2.0": { - "runtimeTargets": { - "runtimes/linux-arm/native/libpsl-native.so": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm64/native/libpsl-native.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libpsl-native.so": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libmi.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libpsl-native.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libpsrpclient.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libmi.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libpsl-native.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libpsrpclient.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-arm/native/pwrshplugin.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-arm64/native/pwrshplugin.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-x64/native/pwrshplugin.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-x86/native/pwrshplugin.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - } - } - }, - "Microsoft.PowerShell.SDK/7.2.1": { - "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" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.Security/7.2.1": { - "dependencies": { - "System.Management.Automation": "7.2.1" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.Win32.Registry/4.7.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Security.Principal.Windows": "5.0.0" - } - }, - "Microsoft.Win32.Registry.AccessControl/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "runtime": { - "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Windows.Compatibility/6.0.0": { - "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" - } - }, - "Microsoft.WSMan.Management/7.2.1": { - "dependencies": { - "Microsoft.WSMan.Runtime": "7.2.1", - "System.Management.Automation": "7.2.1", - "System.ServiceProcess.ServiceController": "6.0.0" - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.WSMan.Runtime/7.2.1": { - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Namotion.Reflection/2.0.3": { - "dependencies": { - "Microsoft.CSharp": "4.3.0" - }, - "runtime": { - "lib/netstandard2.0/Namotion.Reflection.dll": { - "assemblyVersion": "2.0.3.0", - "fileVersion": "2.0.3.0" - } - } - }, - "Newtonsoft.Json/13.0.1": { - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.1.25517" - } - } - }, - "NJsonSchema/10.5.2": { - "dependencies": { - "Namotion.Reflection": "2.0.3", - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/netstandard2.0/NJsonSchema.dll": { - "assemblyVersion": "10.5.2.0", - "fileVersion": "10.5.2.0" - } - } - }, - "NLog/4.7.13": { - "runtime": { - "lib/netstandard2.0/NLog.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.7.13.493" - } - } - }, - "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": { - "runtimeTargets": { - "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": { - "runtimeTargets": { - "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": { - "runtimeTargets": { - "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.native.System.Data.SqlClient.sni/4.7.0": { - "dependencies": { - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" - } - }, - "runtime.native.System.IO.Ports/6.0.0": { - "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": { - "runtimeTargets": { - "runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib": { - "rid": "osx-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": { - "runtimeTargets": { - "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "runtimeTargets": { - "runtimes/win-arm64/native/sni.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "4.6.25512.1" - } - } - }, - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "runtimeTargets": { - "runtimes/win-x64/native/sni.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "4.6.25512.1" - } - } - }, - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "runtimeTargets": { - "runtimes/win-x86/native/sni.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "4.6.25512.1" - } - } - }, - "System.CodeDom/6.0.0": { - "runtime": { - "lib/net6.0/System.CodeDom.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Collections.Immutable/5.0.0": {}, - "System.ComponentModel.Composition/6.0.0": { - "runtime": { - "lib/net6.0/System.ComponentModel.Composition.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.ComponentModel.Composition.Registration/6.0.0": { - "dependencies": { - "System.ComponentModel.Composition": "6.0.0", - "System.Reflection.Context": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.ComponentModel.Composition.Registration.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "dependencies": { - "System.Security.Cryptography.ProtectedData": "6.0.0", - "System.Security.Permissions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Configuration.ConfigurationManager.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Data.Odbc/6.0.0": { - "dependencies": { - "System.Text.Encoding.CodePages": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Data.Odbc.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll": { - "rid": "freebsd", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/illumos/lib/net6.0/System.Data.Odbc.dll": { - "rid": "illumos", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/ios/lib/net6.0/System.Data.Odbc.dll": { - "rid": "ios", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/linux/lib/net6.0/System.Data.Odbc.dll": { - "rid": "linux", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/osx/lib/net6.0/System.Data.Odbc.dll": { - "rid": "osx", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/solaris/lib/net6.0/System.Data.Odbc.dll": { - "rid": "solaris", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/tvos/lib/net6.0/System.Data.Odbc.dll": { - "rid": "tvos", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.Data.Odbc.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Data.OleDb/6.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0", - "System.Diagnostics.PerformanceCounter": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Data.OleDb.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Data.OleDb.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Data.SqlClient/4.8.3": { - "dependencies": { - "Microsoft.Win32.Registry": "4.7.0", - "System.Security.Principal.Windows": "5.0.0", - "runtime.native.System.Data.SqlClient.sni": "4.7.0" - }, - "runtime": { - "lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "assemblyVersion": "4.6.1.3", - "fileVersion": "4.700.21.41603" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "4.6.1.3", - "fileVersion": "4.700.21.41603" - }, - "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.6.1.3", - "fileVersion": "4.700.21.41603" - } - } - }, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.DiagnosticSource/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Diagnostics.EventLog/6.0.0": { - "runtime": { - "lib/net6.0/System.Diagnostics.EventLog.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "0.0.0.0" - }, - "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Diagnostics.PerformanceCounter/6.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.DirectoryServices/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Security.Permissions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.DirectoryServices.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.DirectoryServices.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.DirectoryServices.AccountManagement/6.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0", - "System.DirectoryServices": "6.0.0", - "System.DirectoryServices.Protocols": "6.0.0", - "System.Security.AccessControl": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.DirectoryServices.AccountManagement.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.DirectoryServices.Protocols/6.0.0": { - "runtime": { - "lib/net6.0/System.DirectoryServices.Protocols.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll": { - "rid": "linux", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll": { - "rid": "osx", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Drawing.Common/6.0.0": { - "dependencies": { - "Microsoft.Win32.SystemEvents": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Drawing.Common.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Dynamic.Runtime/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.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" - } - }, - "System.Formats.Asn1/6.0.0": {}, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.IO/4.3.0": { - "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" - } - }, - "System.IO.Packaging/6.0.0": { - "runtime": { - "lib/net6.0/System.IO.Packaging.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.IO.Ports/6.0.0": { - "dependencies": { - "runtime.native.System.IO.Ports": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.IO.Ports.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.IO.Ports.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.IO.Ports.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Linq.Expressions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.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" - } - }, - "System.Management/6.0.0": { - "dependencies": { - "System.CodeDom": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Management.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Management.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Management.Automation/7.2.1": { - "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" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.Management.Automation.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/System.Management.Automation.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "System.Memory/4.5.4": {}, - "System.Net.Http.WinHttpHandler/6.0.0": { - "runtime": { - "lib/net6.0/System.Net.Http.WinHttpHandler.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Numerics.Vectors/4.5.0": {}, - "System.ObjectModel/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Private.ServiceModel/4.9.0": { - "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": "6.0.0", - "System.Security.Principal.Windows": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Private.ServiceModel.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - }, - "resources": { - "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": { - "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" - } - }, - "System.Reflection.Context/6.0.0": { - "runtime": { - "lib/net6.0/System.Reflection.Context.dll": { - "assemblyVersion": "4.0.3.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Reflection.DispatchProxy/4.7.1": {}, - "System.Reflection.Emit/4.3.0": { - "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" - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Metadata/5.0.0": {}, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.Caching/6.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Runtime.Caching.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "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" - } - }, - "System.Security.AccessControl/6.0.0": {}, - "System.Security.Cryptography.Pkcs/6.0.0": { - "dependencies": { - "System.Formats.Asn1": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Security.Cryptography.Pkcs.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "runtime": { - "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Cryptography.Xml/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Security.Cryptography.Pkcs": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Security.Cryptography.Xml.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Permissions/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Windows.Extensions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Security.Permissions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Principal.Windows/5.0.0": {}, - "System.ServiceModel.Duplex/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0", - "System.ServiceModel.Primitives": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.Duplex.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.Http/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0", - "System.ServiceModel.Primitives": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.Http.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.NetTcp/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0", - "System.ServiceModel.Primitives": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.NetTcp.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.Primitives/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.Primitives.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - }, - "lib/net6.0/System.ServiceModel.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.Security/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0", - "System.ServiceModel.Primitives": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.Security.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.Syndication/6.0.0": { - "runtime": { - "lib/net6.0/System.ServiceModel.Syndication.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.ServiceProcess.ServiceController/6.0.0": { - "dependencies": { - "System.Diagnostics.EventLog": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.ServiceProcess.ServiceController.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Speech/6.0.0": { - "runtime": { - "lib/net6.0/System.Speech.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Speech.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding.CodePages/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Text.Encodings.Web/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.AccessControl/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Threading.AccessControl.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Threading.AccessControl.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks.Extensions/4.5.4": {}, - "System.Web.Services.Description/4.9.0": { - "runtime": { - "lib/netstandard2.0/System.Web.Services.Description.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - }, - "resources": { - "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": { - "dependencies": { - "System.Drawing.Common": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Windows.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Typin/3.1.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "6.0.0", - "Microsoft.Extensions.Logging.Debug": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "Typin.Core": "3.1.0" - }, - "runtime": { - "lib/net6.0/Typin.dll": { - "assemblyVersion": "3.1.0.0", - "fileVersion": "3.1.0.0" - } - } - }, - "Typin.Core/3.1.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "6.0.0" - }, - "runtime": { - "lib/net6.0/Typin.Core.dll": { - "assemblyVersion": "3.1.0.0", - "fileVersion": "3.1.0.0" - } - } - }, - "YamlDotNet/11.2.1": { - "runtime": { - "lib/netstandard2.1/YamlDotNet.dll": { - "assemblyVersion": "11.0.0.0", - "fileVersion": "11.2.1.0" - } - } - }, - "Linguard.Core/2.0.0": { - "dependencies": { - "Bogus": "34.0.1", - "ByteSize": "2.1.1", - "FluentValidation": "10.3.6", - "IPNetwork2": "2.5.386", - "Linguard.Log": "2.0.0", - "Microsoft.PowerShell.SDK": "7.2.1", - "System.Management.Automation": "7.2.1", - "YamlDotNet": "11.2.1" - }, - "runtime": { - "Linguard.Core.dll": {} - } - }, - "Linguard.Log/2.0.0": { - "dependencies": { - "NLog": "4.7.13" - }, - "runtime": { - "Linguard.Log.dll": {} - } - } - } - }, - "libraries": { - "Linguard.Cli/2.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Bogus/34.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-49iq7QrD0wb7V4/FcK8p3dWdJxNUbojaqK9L6KRvdikIuRjt38EsNp7QXICcYdbYw01K8BHUdxlnTNn/YX3qDA==", - "path": "bogus/34.0.1", - "hashPath": "bogus.34.0.1.nupkg.sha512" - }, - "ByteSize/2.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-D+Y3NpbHrW21vZwwegeWf/8iAg2Mr0s7n1su8Ysho+O9dctJ5/EkWUi19QVxc6+nZl080gGTXBP/Nz0twSI3dA==", - "path": "bytesize/2.1.1", - "hashPath": "bytesize.2.1.1.nupkg.sha512" - }, - "CommandLineParser/2.8.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eco2HlKQBY4Joz9odHigzGpVzv6pjsXnY5lziioMveQxr+i2Z7xYcIOMeZTgYiqnMtMAbXMXsVhrNfWO5vJS8Q==", - "path": "commandlineparser/2.8.0", - "hashPath": "commandlineparser.2.8.0.nupkg.sha512" - }, - "FluentValidation/10.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iMd370ZDx6ydm8t7bIFdRbSKX0e42lpvCtifUSbTSXOk5iKjmgl7HU0PXBhIWQAyIRi3gCwfMI9luj8H6K+byw==", - "path": "fluentvalidation/10.3.6", - "hashPath": "fluentvalidation.10.3.6.nupkg.sha512" - }, - "IPNetwork2/2.5.386": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6ihnNm82vyJsUYYfR2BRTziY/mQ5UGLsQZuhdSYPeTlbQLhBW/4BC9hBz3h5bFDn8PkVw9dP0cpv9brIBmk4Fw==", - "path": "ipnetwork2/2.5.386", - "hashPath": "ipnetwork2.2.5.386.nupkg.sha512" - }, - "Markdig.Signed/0.22.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7x3FqS3wk8DXyQLuflD47tBs6+ly6k4VtoDCzlDWfy7XHVsBIi7eGYEM15sPAcwSCQjOksNWE8U5r2v0Sk5FzQ==", - "path": "markdig.signed/0.22.0", - "hashPath": "markdig.signed.0.22.0.nupkg.sha512" - }, - "Microsoft.ApplicationInsights/2.18.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-milJB3VOCoC4EWmpE/Co9cOJ7SV6Ji6VqV4Rf5UlqL9QCg+rAX1y+3Y+j1Gu/j4IExYiPq7SEKqkP2BFnEu6Vw==", - "path": "microsoft.applicationinsights/2.18.0", - "hashPath": "microsoft.applicationinsights.2.18.0.nupkg.sha512" - }, - "Microsoft.Bcl.AsyncInterfaces/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W8DPQjkMScOMTtJbPwmPyj9c3zYSFGawDW3jwlBOOsnY+EzZFLgNQ/UMkK35JmkNOVPdCyPr2Tw7Vv9N+KA3ZQ==", - "path": "microsoft.bcl.asyncinterfaces/5.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Analyzers/3.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA==", - "path": "microsoft.codeanalysis.analyzers/3.3.2", - "hashPath": "microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Common/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SMREwaVD5SzatlWhh9aahQAtSWdb63NcE//f+bQzgHSECU6xtDtaxk0kwV+asdFfr6HtW38UeO6jvqdfzudg3w==", - "path": "microsoft.codeanalysis.common/4.0.1", - "hashPath": "microsoft.codeanalysis.common.4.0.1.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Q9RxxydPpUElj/x1/qykDTUGsRoKbJG8H5XUSeMGmMu54fBiuX1xyanom9caa1oQfh5JIW1BgLxobSaWs4WyHQ==", - "path": "microsoft.codeanalysis.csharp/4.0.1", - "hashPath": "microsoft.codeanalysis.csharp.4.0.1.nupkg.sha512" - }, - "Microsoft.CSharp/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==", - "path": "microsoft.csharp/4.3.0", - "hashPath": "microsoft.csharp.4.3.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", - "path": "microsoft.extensions.dependencyinjection/6.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", - "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", - "path": "microsoft.extensions.logging/6.0.0", - "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", - "path": "microsoft.extensions.logging.abstractions/6.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Debug/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-M9g/JixseSZATJE9tcMn9uzoD4+DbSglivFqVx8YkRJ7VVPmnvCEbOZ0AAaxsL1EKyI4cz07DXOOJExxNsUOHw==", - "path": "microsoft.extensions.logging.debug/6.0.0", - "hashPath": "microsoft.extensions.logging.debug.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.ObjectPool/5.0.10": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pp9tbGqIhdEXL6Q1yJl+zevAJSq4BsxqhS1GXzBvEsEz9DDNu9GLNzgUy2xyFc4YjB4m4Ff2YEWTnvQvVYdkvQ==", - "path": "microsoft.extensions.objectpool/5.0.10", - "hashPath": "microsoft.extensions.objectpool.5.0.10.nupkg.sha512" - }, - "Microsoft.Extensions.Options/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", - "path": "microsoft.extensions.options/6.0.0", - "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", - "path": "microsoft.extensions.primitives/6.0.0", - "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" - }, - "Microsoft.Management.Infrastructure/2.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IaKZRNBBv3sdrmBWd+aqwHq8cVHk/3WgWFAN/dt40MRY9rbtHiDfTTmaEN0tGTmQqGCGDo/ncntA8MvFMvcsRw==", - "path": "microsoft.management.infrastructure/2.0.0", - "hashPath": "microsoft.management.infrastructure.2.0.0.nupkg.sha512" - }, - "Microsoft.Management.Infrastructure.CimCmdlets/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xe1x237SCyrjpmW1mP1T69/OOc/gtU66P8wVC+b4/u7Hz7fIO6B8P5yVQQfb79rAe1GocruIpQlX4KXTFQf09w==", - "path": "microsoft.management.infrastructure.cimcmdlets/7.2.1", - "hashPath": "microsoft.management.infrastructure.cimcmdlets.7.2.1.nupkg.sha512" - }, - "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-p0lslMX5bdWLxO2P7ao+rjAMOB0LEwPYpzvdCQ2OEYgX2NxFpQ8ILvqPGnYlTAb53rT8gu5DyIol1HboHFYfxQ==", - "path": "microsoft.management.infrastructure.runtime.unix/2.0.0", - "hashPath": "microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512" - }, - "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vjBWQeDOjgernkrOdbEgn7M70SF7hof7ORdKPSlL06Uc15+oYdth5dZju9KsgUoti/cwnkZTiwtDx/lRtay0sA==", - "path": "microsoft.management.infrastructure.runtime.win/2.0.0", - "hashPath": "microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Windows.ApiSets/1.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==", - "path": "microsoft.netcore.windows.apisets/1.0.1", - "hashPath": "microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512" - }, - "Microsoft.PowerShell.Commands.Diagnostics/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Bgw4Egv7cnYUTWAy6koxg+0+/8K6rqUdlAiAxuJby9FeDPZQFfqCHQqlyP9JDa6lvbtmeBx1btFDx6Kh8bxdwQ==", - "path": "microsoft.powershell.commands.diagnostics/7.2.1", - "hashPath": "microsoft.powershell.commands.diagnostics.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.Commands.Management/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YAMrGDF2QTg6Gwz07+m1+BnmcYsPyywfY4J8nOpImfXZLLNhD7zQQP0orNHu9WPPV3/+E33qUyPj5J3ugCMk6A==", - "path": "microsoft.powershell.commands.management/7.2.1", - "hashPath": "microsoft.powershell.commands.management.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.Commands.Utility/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PU15IxUJd7nSacTstlxqJoEeGlI+BH6cUKTppkkIIxEj7EfwC5nD1qTL41xye63BFeZmOFeqAhMI6LtJUd875g==", - "path": "microsoft.powershell.commands.utility/7.2.1", - "hashPath": "microsoft.powershell.commands.utility.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.ConsoleHost/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uAPSsTmkOa7na1+OAPF87yBRwD1Ka/qXThoyrlvP9ihzMWfHM52k3MuKVEGi04VP3Wdi7U4Rzkr3svxDDmkHgA==", - "path": "microsoft.powershell.consolehost/7.2.1", - "hashPath": "microsoft.powershell.consolehost.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.CoreCLR.Eventing/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fUz7InjavqKtslkQN828nWbZLnmmJRL9rn4b3e/XXdx0BcN+65x/pSgMnehwDVGIoqUPUMXN54eDo4HRVcLA5g==", - "path": "microsoft.powershell.coreclr.eventing/7.2.1", - "hashPath": "microsoft.powershell.coreclr.eventing.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.MarkdownRender/7.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1vqDtdX9RCGsMWCbzp0CIxZW3slWgq8mYHDfUlUKzmkV57fMAn4m0Gy2OtsqopZzrOiVJci+QCWx5FB7BVpMlw==", - "path": "microsoft.powershell.markdownrender/7.2.0", - "hashPath": "microsoft.powershell.markdownrender.7.2.0.nupkg.sha512" - }, - "Microsoft.PowerShell.Native/7.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TauOu3bYr4DRh9HpH3+fgaL+y2GY47KLsgU6qX1NDLqHshdEaCCjiF0N5sDEgCEhSb38FwWhpdFTIQvoOcYCXQ==", - "path": "microsoft.powershell.native/7.2.0", - "hashPath": "microsoft.powershell.native.7.2.0.nupkg.sha512" - }, - "Microsoft.PowerShell.SDK/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UufIcywqI/22p0oqC5qg+yDoW39U2JAQyaHxy2Tr/h0hdWuFimtmhxp/FDXTxszgOdobtjcrCkSzqcoNmu/vQQ==", - "path": "microsoft.powershell.sdk/7.2.1", - "hashPath": "microsoft.powershell.sdk.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.Security/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GV3RuuOmXHAaEjeBcyixdzUIAQvHW6xgoWwafzTe97DbhI+N1sg4fa/FQ9pd8lqG+kkWxGwTy1VgudXX6rhUkg==", - "path": "microsoft.powershell.security/7.2.1", - "hashPath": "microsoft.powershell.security.7.2.1.nupkg.sha512" - }, - "Microsoft.Win32.Registry/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", - "path": "microsoft.win32.registry/4.7.0", - "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry.AccessControl/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UoE+eeuBKL+GFHxHV3FjHlY5K8Wr/IR7Ee/a2oDNqFodF1iMqyt5hIs0U9Z217AbWrHrNle4750kD03hv1IMZw==", - "path": "microsoft.win32.registry.accesscontrol/6.0.0", - "hashPath": "microsoft.win32.registry.accesscontrol.6.0.0.nupkg.sha512" - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", - "path": "microsoft.win32.systemevents/6.0.0", - "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" - }, - "Microsoft.Windows.Compatibility/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9esuK5JqnjkDgO9/AHesyJSG0aKwpfLVzTw6nIGYhqE91VLxZyv3HKulNoPVy/NOuyAaf1kE4FKtdZDzdd/SLw==", - "path": "microsoft.windows.compatibility/6.0.0", - "hashPath": "microsoft.windows.compatibility.6.0.0.nupkg.sha512" - }, - "Microsoft.WSMan.Management/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vMOJMof4eLql180G4PmTurN8h8+VmPaf1l/Tqq+GI7HYyNv140iY3/Z18MiZA4dRG14qghLNo5JxtTolY7b4og==", - "path": "microsoft.wsman.management/7.2.1", - "hashPath": "microsoft.wsman.management.7.2.1.nupkg.sha512" - }, - "Microsoft.WSMan.Runtime/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v14vzUXIg7opXoQI8Eb82dvsRwBNylZ44lvyXOBSRCiVfvMhyTqE8bpPWbwwmQ5JZRnG/dP5/aOYuu9l163fyQ==", - "path": "microsoft.wsman.runtime/7.2.1", - "hashPath": "microsoft.wsman.runtime.7.2.1.nupkg.sha512" - }, - "Namotion.Reflection/2.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tZCe/UrSBAMW8A4TjD/SlpRHaWjnHlSWdyRuOXhf3yrE0OX+4fXg0uzj7mwFDclXznfCGRAZbP+akPt4G/mclw==", - "path": "namotion.reflection/2.0.3", - "hashPath": "namotion.reflection.2.0.3.nupkg.sha512" - }, - "Newtonsoft.Json/13.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", - "path": "newtonsoft.json/13.0.1", - "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" - }, - "NJsonSchema/10.5.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vr2CbySuXh74TQFU0rGJYZOS492xOE64cPXdB7a0cfXJb/N45Bf4v7sd4LOla0jNhgc5V/B61Ko3qecriL195w==", - "path": "njsonschema/10.5.2", - "hashPath": "njsonschema.10.5.2.nupkg.sha512" - }, - "NLog/4.7.13": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AvoGpCuq36B+0wY313XA6gC+YeMvk24rqF8P+HS9fInBGOjCzPjpXp2ln9ATZjPOJtXgHfc8zNmTjyswFGLxvg==", - "path": "nlog/4.7.13", - "hashPath": "nlog.4.7.13.nupkg.sha512" - }, - "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-75q52H7CSpgIoIDwXb9o833EvBZIXJ0mdPhz1E6jSisEXUBlSCPalC29cj3EXsjpuDwr0dj1LRXZepIQH/oL4Q==", - "path": "runtime.linux-arm.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.linux-arm.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xn2bMThmXr3CsvOYmS8ex2Yz1xo+kcnhVg2iVhS9PlmqjZPAkrEo/I40wjrBZH/tU4kvH0s1AE8opAvQ3KIS8g==", - "path": "runtime.linux-arm64.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.linux-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-16nbNXwv0sC+gLGIuecri0skjuh6R1maIJggsaNP7MQBcbVcEfWFUOkEnsnvoLEjy0XerfibuRptfQ8AmdIcWA==", - "path": "runtime.linux-x64.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.linux-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.native.System.Data.SqlClient.sni/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", - "path": "runtime.native.system.data.sqlclient.sni/4.7.0", - "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512" - }, - "runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KaaXlpOcuZjMdmyF5wzzx3b+PRKIzt6A5Ax9dKenPDQbVJAFpev+casD0BIig1pBcbs3zx7CqWemzUJKAeHdSQ==", - "path": "runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fXG12NodG1QrCdoaeSQ1gVnk/koi4WYY4jZtarMkZeQMyReBm1nZlSRoPnUjLr2ZR36TiMjpcGnQfxymieUe7w==", - "path": "runtime.osx-arm64.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.osx-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/As+zPY49+dSUXkh+fTUbyPhqrdGN//evLxo4Vue88pfh1BHZgF7q4kMblTkxYvwR6Vi03zSYxysSFktO8/SDQ==", - "path": "runtime.osx-x64.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.osx-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", - "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", - "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" - }, - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", - "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", - "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" - }, - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", - "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", - "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" - }, - "System.CodeDom/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", - "path": "system.codedom/6.0.0", - "hashPath": "system.codedom.6.0.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.Immutable/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", - "path": "system.collections.immutable/5.0.0", - "hashPath": "system.collections.immutable.5.0.0.nupkg.sha512" - }, - "System.ComponentModel.Composition/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-60Qv+F7oxomOjJeTDA5Z4iCyFbQ0B/2Mi5HT+13pxxq0lVnu2ipbWMzFB+RWKr3wWKA8BSncXr9PH/fECwMX5Q==", - "path": "system.componentmodel.composition/6.0.0", - "hashPath": "system.componentmodel.composition.6.0.0.nupkg.sha512" - }, - "System.ComponentModel.Composition.Registration/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+i3RLlOgTsf15VeADBPpzPyRiXq71aLSuzdHeNtmq9f6BwpF3OWhB76p0WDUNCa3Z+SLD4dJbBM9yAep7kQCGA==", - "path": "system.componentmodel.composition.registration/6.0.0", - "hashPath": "system.componentmodel.composition.registration.6.0.0.nupkg.sha512" - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", - "path": "system.configuration.configurationmanager/6.0.0", - "hashPath": "system.configuration.configurationmanager.6.0.0.nupkg.sha512" - }, - "System.Data.Odbc/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pnZjwe0Qwr1Rnp7NExd5zz4YwXJrYuAbWNKjEQpTzCEg6f/L5DYJS7w3hG3vgSj1t/r79UL390YzXIklf1VuQQ==", - "path": "system.data.odbc/6.0.0", - "hashPath": "system.data.odbc.6.0.0.nupkg.sha512" - }, - "System.Data.OleDb/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LQ8PjTIF1LtrrlGiyiTVjAkQtTWKm9GSNnygIlWjhN9y88s7xhy6DUNDDkmQQ9f6ex7mA4k0Tl97lz/CklaiLg==", - "path": "system.data.oledb/6.0.0", - "hashPath": "system.data.oledb.6.0.0.nupkg.sha512" - }, - "System.Data.SqlClient/4.8.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yERfVLXAY0QbylAgaGLByYN0hFxX28aeEQ0hUgJO+Ntn1AfmWl5HHUoYJA0Yl9HhIUUJHVaS/Sw/RLZr5aaC+A==", - "path": "system.data.sqlclient/4.8.3", - "hashPath": "system.data.sqlclient.4.8.3.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", - "path": "system.diagnostics.diagnosticsource/6.0.0", - "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" - }, - "System.Diagnostics.EventLog/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", - "path": "system.diagnostics.eventlog/6.0.0", - "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512" - }, - "System.Diagnostics.PerformanceCounter/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-gbeE5tNp/oB7O8kTTLh3wPPJCxpNOphXPTWVs1BsYuFOYapFijWuh0LYw1qnDo4gwDUYPXOmpTIhvtxisGsYOQ==", - "path": "system.diagnostics.performancecounter/6.0.0", - "hashPath": "system.diagnostics.performancecounter.6.0.0.nupkg.sha512" - }, - "System.DirectoryServices/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kp/Op0nxDVGlElDKh8TsXO0GKXftQgAB6sJk0wUetZK1Rr0Pbd86Tn7AllLLlROFZa4BTl/LVHakljtGELFzCg==", - "path": "system.directoryservices/6.0.0", - "hashPath": "system.directoryservices.6.0.0.nupkg.sha512" - }, - "System.DirectoryServices.AccountManagement/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2iKkY6VC4WX6H13N8WhH2SRUfWCwg2KZR5w9JIS9cw9N8cZhT7VXxHX0L6OX6Po419aSu2LWrJE9tu6b+cUnPA==", - "path": "system.directoryservices.accountmanagement/6.0.0", - "hashPath": "system.directoryservices.accountmanagement.6.0.0.nupkg.sha512" - }, - "System.DirectoryServices.Protocols/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-++WKU7HQPo/FJdhywWw+q2lLjcVAGVw5XLH9kRCV+4DvkhVAcHCksh0ezIqwNROmaU9LMJN0d/LAdeWXu3pi6Q==", - "path": "system.directoryservices.protocols/6.0.0", - "hashPath": "system.directoryservices.protocols.6.0.0.nupkg.sha512" - }, - "System.Drawing.Common/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", - "path": "system.drawing.common/6.0.0", - "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" - }, - "System.Dynamic.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", - "path": "system.dynamic.runtime/4.3.0", - "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" - }, - "System.Formats.Asn1/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA==", - "path": "system.formats.asn1/6.0.0", - "hashPath": "system.formats.asn1.6.0.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.Packaging/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-C7OkTRIjqIjAKu6ef/fuj8ynCZTPcTYZnvHaq48bniACgXXJogmEoIc56YCDNTc14xhsbLmgpS3KP+evbsUa2g==", - "path": "system.io.packaging/6.0.0", - "hashPath": "system.io.packaging.6.0.0.nupkg.sha512" - }, - "System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dRyGI7fUESar5ZLIpiBOaaNLW7YyOBGftjj5Of+xcduC/Rjl7RjhEnWDvvNBmHuF3d0tdXoqdVI/yrVA8f00XA==", - "path": "system.io.ports/6.0.0", - "hashPath": "system.io.ports.6.0.0.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "path": "system.linq.expressions/4.3.0", - "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" - }, - "System.Management/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sHsESYMmPDhQuOC66h6AEOs/XowzKsbT9srMbX71TCXP58hkpn1BqBjdmKj1+DCA/WlBETX1K5WjQHwmV0Txrg==", - "path": "system.management/6.0.0", - "hashPath": "system.management.6.0.0.nupkg.sha512" - }, - "System.Management.Automation/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YlTE+q14vQ1YU//A5+/Jwl5+L5r6uOVIWuB4D/T9r80AaCeUAZMMvTKjgvIr9lwkovwQflVL+1JfBAi9f0q0KA==", - "path": "system.management.automation/7.2.1", - "hashPath": "system.management.automation.7.2.1.nupkg.sha512" - }, - "System.Memory/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", - "path": "system.memory/4.5.4", - "hashPath": "system.memory.4.5.4.nupkg.sha512" - }, - "System.Net.Http.WinHttpHandler/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jubNN9jH4NzVrvEf4fGwESLBsfH8whWNbHMhgM6IwA8UCt6+/M19bbOHc21JhigvC2HQKCl8HKGZMcBtIpzqIg==", - "path": "system.net.http.winhttphandler/6.0.0", - "hashPath": "system.net.http.winhttphandler.6.0.0.nupkg.sha512" - }, - "System.Numerics.Vectors/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", - "path": "system.numerics.vectors/4.5.0", - "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "path": "system.objectmodel/4.3.0", - "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" - }, - "System.Private.ServiceModel/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d3RjkrtpjUQ63PzFmm/SZ4aOXeJNP+8YW5QeP0lCJy8iX4xlHdlNLWTF9sRn9SmrFTK757kQXT9Op/R4l858uw==", - "path": "system.private.servicemodel/4.9.0", - "hashPath": "system.private.servicemodel.4.9.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Context/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vi+Gb41oyOYie7uLSsjRmfRg3bryUg5DssJvj3gDUl0D8z6ipSm6/yi/XNx2rcS5iVMvHcwRUHjcx7ixv0K3/w==", - "path": "system.reflection.context/6.0.0", - "hashPath": "system.reflection.context.6.0.0.nupkg.sha512" - }, - "System.Reflection.DispatchProxy/4.7.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-C1sMLwIG6ILQ2bmOT4gh62V6oJlyF4BlHcVMrOoor49p0Ji2tA8QAoqyMcIhAdH6OHKJ8m7BU+r4LK2CUEOKqw==", - "path": "system.reflection.dispatchproxy/4.7.1", - "hashPath": "system.reflection.dispatchproxy.4.7.1.nupkg.sha512" - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "path": "system.reflection.emit/4.3.0", - "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "path": "system.reflection.emit.lightweight/4.3.0", - "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Metadata/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==", - "path": "system.reflection.metadata/5.0.0", - "hashPath": "system.reflection.metadata.5.0.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.Caching/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==", - "path": "system.runtime.caching/6.0.0", - "hashPath": "system.runtime.caching.6.0.0.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Security.AccessControl/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", - "path": "system.security.accesscontrol/6.0.0", - "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Pkcs/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-elM3x+xSRhzQysiqo85SbidJJ2YbZlnvmh+53TuSZHsD7dNuuEWser+9EFtY+rYupBwkq2avc6ZCO3/6qACgmg==", - "path": "system.security.cryptography.pkcs/6.0.0", - "hashPath": "system.security.cryptography.pkcs.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", - "path": "system.security.cryptography.protecteddata/6.0.0", - "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Xml/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-puJ4UCh9JVRwOCyCIcq71JY6Axr8Sp8E2GjTIU1Fj8hm4+oX6NEoyGFGa/+pBG8SrVxbQPSj7hvtaREyTHHsmw==", - "path": "system.security.cryptography.xml/6.0.0", - "hashPath": "system.security.cryptography.xml.6.0.0.nupkg.sha512" - }, - "System.Security.Permissions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", - "path": "system.security.permissions/6.0.0", - "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" - }, - "System.Security.Principal.Windows/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", - "path": "system.security.principal.windows/5.0.0", - "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" - }, - "System.ServiceModel.Duplex/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Yb8MFiJxBBtm2JnfS/5SxYzm2HqkEmHu5xeaVIHXy83sNpty9wc30JifH2xgda821D6nr1UctbwbdZqN4LBUKQ==", - "path": "system.servicemodel.duplex/4.9.0", - "hashPath": "system.servicemodel.duplex.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.Http/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z+s3RkLNzJ31fDXAjqXdXp67FqsNG4V3Md3r7FOrzMkHmg61gY8faEfTFPBLxU9tax1HPWt6IHVAquXBKySJaw==", - "path": "system.servicemodel.http/4.9.0", - "hashPath": "system.servicemodel.http.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.NetTcp/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nXgnnkrZERUF/KwmoLwZPkc7fqgiq94DXkmUZBvDNh/LdZquDvjy2NbhJLElpApOa5x8zEoQoBZyJ2PqNC39qg==", - "path": "system.servicemodel.nettcp/4.9.0", - "hashPath": "system.servicemodel.nettcp.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.Primitives/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LTFPVdS8Nf76xg/wRZkDa+2Q+GnjTOmwkTlwuoetwX37mAfYnGkf7p8ydhpDwVmomNljpUOhUUGxfjQyd5YcOg==", - "path": "system.servicemodel.primitives/4.9.0", - "hashPath": "system.servicemodel.primitives.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.Security/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iurpbSmPgotHps94VQ6acvL6hU2gjiuBmQI7PwLLN76jsbSpUcahT0PglccKIAwoMujATk/LWtAapBHpwCFn2g==", - "path": "system.servicemodel.security/4.9.0", - "hashPath": "system.servicemodel.security.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.Syndication/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cp1mMNG87iJtE0oHXFtfWT6cfski2JNo5iU0siTPi/uN2k1CIJI6FE4jr4v3got2dzt7wBq17fSy44btun9GiA==", - "path": "system.servicemodel.syndication/6.0.0", - "hashPath": "system.servicemodel.syndication.6.0.0.nupkg.sha512" - }, - "System.ServiceProcess.ServiceController/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qMBvG8ZFbkXoe0Z5/D7FAAadfPkH2v7vSuh2xsLf3U6jNoejpIdeV18A0htiASsLK1CCAc/p59kaLXlt2yB1gw==", - "path": "system.serviceprocess.servicecontroller/6.0.0", - "hashPath": "system.serviceprocess.servicecontroller.6.0.0.nupkg.sha512" - }, - "System.Speech/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GQovERMrNP0Vbtgk8LzH4PlFS6lqHgsL9WkUmv8Kkxa0m0vNakitytpHZlfJ9WR7n9WKLXh68nn2kyL9mflnLg==", - "path": "system.speech/6.0.0", - "hashPath": "system.speech.6.0.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.CodePages/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "path": "system.text.encoding.codepages/6.0.0", - "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512" - }, - "System.Text.Encodings.Web/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", - "path": "system.text.encodings.web/6.0.0", - "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.AccessControl/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2258mqWesMch/xCpcnjJBgJP33yhpZLGLbEOm01qwq0efG4b+NG8c9sxYOWNxmDQ82swXrnQRl1Yp2wC1NrfZA==", - "path": "system.threading.accesscontrol/6.0.0", - "hashPath": "system.threading.accesscontrol.6.0.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", - "path": "system.threading.tasks.extensions/4.5.4", - "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" - }, - "System.Web.Services.Description/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d20B3upsWddwSG5xF3eQLs0cAV3tXDsBNqP4kh02ylfgZwqfpf4f/9KiZVIGIoxULt2cKqxWs+U4AdNAJ7L8cQ==", - "path": "system.web.services.description/4.9.0", - "hashPath": "system.web.services.description.4.9.0.nupkg.sha512" - }, - "System.Windows.Extensions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", - "path": "system.windows.extensions/6.0.0", - "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" - }, - "Typin/3.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BV/TvL7a2c8FHBFc3YiWEzQua2NitFY5JnE30zJxo2nQrHeZuJYruZ7H+sT+/cnBLjsDr/mUpYtIS1HRTJQ3xg==", - "path": "typin/3.1.0", - "hashPath": "typin.3.1.0.nupkg.sha512" - }, - "Typin.Core/3.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0M44paHjcQuVTMCyfySqklbfVcQ38GfFGBkeKz0E+zhXdV0wD9tI5GwZdjUPOGlqhOmP7CHh452JSgJK2hc57A==", - "path": "typin.core/3.1.0", - "hashPath": "typin.core.3.1.0.nupkg.sha512" - }, - "YamlDotNet/11.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tBt8K+korVfrjH9wyDEhiLKxbs8qoLCLIFwvYgkSUuMC9//w3z0cFQ8LQAI/5MCKq+BMil0cfRTRvPeE7eXhQw==", - "path": "yamldotnet/11.2.1", - "hashPath": "yamldotnet.11.2.1.nupkg.sha512" - }, - "Linguard.Core/2.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Linguard.Log/2.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Cli.dll b/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Cli.dll deleted file mode 100644 index 5de6843..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Cli.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Cli.exe b/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Cli.exe deleted file mode 100644 index e8c7022..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Cli.exe and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Cli.pdb b/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Cli.pdb deleted file mode 100644 index 4a718f4..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Cli.pdb and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Cli.runtimeconfig.json b/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Cli.runtimeconfig.json deleted file mode 100644 index 4986d16..0000000 --- a/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Cli.runtimeconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net6.0", - "framework": { - "name": "Microsoft.NETCore.App", - "version": "6.0.0" - } - } -} \ No newline at end of file diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Core.dll b/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Core.dll deleted file mode 100644 index f622876..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Core.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Core.pdb b/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Core.pdb deleted file mode 100644 index 5896cce..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Core.pdb and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Log.dll b/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Log.dll deleted file mode 100644 index 561b728..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Log.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Log.pdb b/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Log.pdb deleted file mode 100644 index ef5cdfa..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Log.pdb and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Markdig.Signed.dll b/linguard/Cli.Test/bin/Debug/net6.0/Markdig.Signed.dll deleted file mode 100644 index 722a399..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Markdig.Signed.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.ApplicationInsights.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.ApplicationInsights.dll deleted file mode 100644 index 8ef5eef..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.ApplicationInsights.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll deleted file mode 100644 index be25bdb..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.dll deleted file mode 100644 index 581191d..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.CodeAnalysis.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.CodeAnalysis.dll deleted file mode 100644 index c653dc8..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.CodeAnalysis.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll deleted file mode 100644 index b4ee93d..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll deleted file mode 100644 index 97525f7..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll deleted file mode 100644 index bb27a2f..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.Logging.Debug.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.Logging.Debug.dll deleted file mode 100644 index 6fc456c..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.Logging.Debug.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll deleted file mode 100644 index 9e2d7f9..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.ObjectPool.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.ObjectPool.dll deleted file mode 100644 index 730dead..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.ObjectPool.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.Options.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.Options.dll deleted file mode 100644 index 604b602..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.Options.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll deleted file mode 100644 index 1b2c43a..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.PowerShell.MarkdownRender.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.PowerShell.MarkdownRender.dll deleted file mode 100644 index 68f0076..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.PowerShell.MarkdownRender.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CommunicationUtilities.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CommunicationUtilities.dll deleted file mode 100644 index e4a1476..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CommunicationUtilities.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CoreUtilities.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CoreUtilities.dll deleted file mode 100644 index 2a743a3..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CoreUtilities.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CrossPlatEngine.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CrossPlatEngine.dll deleted file mode 100644 index ae16ead..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CrossPlatEngine.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.TestPlatform.PlatformAbstractions.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.TestPlatform.PlatformAbstractions.dll deleted file mode 100644 index b2f76f6..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.TestPlatform.PlatformAbstractions.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.TestPlatform.Utilities.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.TestPlatform.Utilities.dll deleted file mode 100644 index bf36696..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.TestPlatform.Utilities.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll deleted file mode 100644 index c4f2e09..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.VisualStudio.TestPlatform.Common.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.VisualStudio.TestPlatform.Common.dll deleted file mode 100644 index 340df34..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.VisualStudio.TestPlatform.Common.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll deleted file mode 100644 index 240ff2a..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Win32.Registry.AccessControl.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Win32.Registry.AccessControl.dll deleted file mode 100644 index b598181..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Win32.Registry.AccessControl.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll deleted file mode 100644 index 3ab5850..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Moq.dll b/linguard/Cli.Test/bin/Debug/net6.0/Moq.dll deleted file mode 100644 index 5be05c4..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Moq.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/NJsonSchema.dll b/linguard/Cli.Test/bin/Debug/net6.0/NJsonSchema.dll deleted file mode 100644 index 0e6ee5b..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/NJsonSchema.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/NLog.dll b/linguard/Cli.Test/bin/Debug/net6.0/NLog.dll deleted file mode 100644 index 4aa35e7..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/NLog.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Namotion.Reflection.dll b/linguard/Cli.Test/bin/Debug/net6.0/Namotion.Reflection.dll deleted file mode 100644 index 39dbbfa..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Namotion.Reflection.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Newtonsoft.Json.dll b/linguard/Cli.Test/bin/Debug/net6.0/Newtonsoft.Json.dll deleted file mode 100644 index 1ffeabe..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Newtonsoft.Json.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/NuGet.Frameworks.dll b/linguard/Cli.Test/bin/Debug/net6.0/NuGet.Frameworks.dll deleted file mode 100644 index 0a61a1c..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/NuGet.Frameworks.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.CodeDom.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.CodeDom.dll deleted file mode 100644 index 54c82b6..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.CodeDom.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.ComponentModel.Composition.Registration.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.ComponentModel.Composition.Registration.dll deleted file mode 100644 index 586e1af..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.ComponentModel.Composition.Registration.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.ComponentModel.Composition.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.ComponentModel.Composition.dll deleted file mode 100644 index 3e063b3..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.ComponentModel.Composition.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll deleted file mode 100644 index d67c8a8..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Data.Odbc.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Data.Odbc.dll deleted file mode 100644 index 5101278..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Data.OleDb.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Data.OleDb.dll deleted file mode 100644 index f7840cd..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.Data.OleDb.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Data.SqlClient.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Data.SqlClient.dll deleted file mode 100644 index d03f8a1..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.Data.SqlClient.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Diagnostics.EventLog.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Diagnostics.EventLog.dll deleted file mode 100644 index 8a65e71..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.Diagnostics.EventLog.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Diagnostics.PerformanceCounter.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Diagnostics.PerformanceCounter.dll deleted file mode 100644 index e9092d7..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.Diagnostics.PerformanceCounter.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.DirectoryServices.AccountManagement.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.DirectoryServices.AccountManagement.dll deleted file mode 100644 index 77183e0..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.DirectoryServices.AccountManagement.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.DirectoryServices.Protocols.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.DirectoryServices.Protocols.dll deleted file mode 100644 index d62b127..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.DirectoryServices.Protocols.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.DirectoryServices.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.DirectoryServices.dll deleted file mode 100644 index 803611c..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.DirectoryServices.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Drawing.Common.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Drawing.Common.dll deleted file mode 100644 index be6915e..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.Drawing.Common.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.IO.Packaging.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.IO.Packaging.dll deleted file mode 100644 index 007253e..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.IO.Packaging.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.IO.Ports.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.IO.Ports.dll deleted file mode 100644 index e10e943..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.IO.Ports.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Management.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Management.dll deleted file mode 100644 index fae6cf1..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.Management.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Net.Http.WinHttpHandler.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Net.Http.WinHttpHandler.dll deleted file mode 100644 index 2490b06..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.Net.Http.WinHttpHandler.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Net.IPNetwork.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Net.IPNetwork.dll deleted file mode 100644 index 9b94f0c..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.Net.IPNetwork.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Private.ServiceModel.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Private.ServiceModel.dll deleted file mode 100644 index 82e7a91..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.Private.ServiceModel.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Reflection.Context.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Reflection.Context.dll deleted file mode 100644 index 3faa973..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.Reflection.Context.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Runtime.Caching.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Runtime.Caching.dll deleted file mode 100644 index 14826eb..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.Runtime.Caching.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Security.Cryptography.Pkcs.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Security.Cryptography.Pkcs.dll deleted file mode 100644 index c2bb12e..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.Security.Cryptography.Pkcs.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll deleted file mode 100644 index 1ba8770..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Security.Cryptography.Xml.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Security.Cryptography.Xml.dll deleted file mode 100644 index 96d460e..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.Security.Cryptography.Xml.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Security.Permissions.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Security.Permissions.dll deleted file mode 100644 index 39dd4df..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.Security.Permissions.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.Duplex.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.Duplex.dll deleted file mode 100644 index 7eeafd5..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.Duplex.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.Http.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.Http.dll deleted file mode 100644 index 79aab9d..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.Http.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.NetTcp.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.NetTcp.dll deleted file mode 100644 index a59b27e..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.NetTcp.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.Primitives.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.Primitives.dll deleted file mode 100644 index 8c32245..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.Primitives.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.Security.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.Security.dll deleted file mode 100644 index 5f2fc73..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.Security.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.Syndication.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.Syndication.dll deleted file mode 100644 index 0dab5e1..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.Syndication.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.dll deleted file mode 100644 index e7849b5..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceProcess.ServiceController.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceProcess.ServiceController.dll deleted file mode 100644 index 3e5508c..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceProcess.ServiceController.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Speech.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Speech.dll deleted file mode 100644 index 9d14819..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.Speech.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Threading.AccessControl.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Threading.AccessControl.dll deleted file mode 100644 index b6d69a4..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.Threading.AccessControl.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Web.Services.Description.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Web.Services.Description.dll deleted file mode 100644 index c230b5c..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.Web.Services.Description.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Windows.Extensions.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Windows.Extensions.dll deleted file mode 100644 index c3e8844..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/System.Windows.Extensions.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Typin.Core.dll b/linguard/Cli.Test/bin/Debug/net6.0/Typin.Core.dll deleted file mode 100644 index 58f476f..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Typin.Core.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Typin.dll b/linguard/Cli.Test/bin/Debug/net6.0/Typin.dll deleted file mode 100644 index 67662ab..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/Typin.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/YamlDotNet.dll b/linguard/Cli.Test/bin/Debug/net6.0/YamlDotNet.dll deleted file mode 100644 index 76b7999..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/YamlDotNet.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index d0282cc..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index fd3063e..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 5c1af97..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index e1c01df..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index ce740a9..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 574f796..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 7a1fec6..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/cs/System.Private.ServiceModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/cs/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 2cedcf5..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/cs/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/cs/System.Web.Services.Description.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/cs/System.Web.Services.Description.resources.dll deleted file mode 100644 index efe25cb..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/cs/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index e079e05..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 54aa47d..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 3d6e0dc..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 0848125..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 2034f65..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 4d0c9fd..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index ed8bc45..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/de/System.Private.ServiceModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/de/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 3dc63b8..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/de/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/de/System.Web.Services.Description.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/de/System.Web.Services.Description.resources.dll deleted file mode 100644 index 1f9fae9..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/de/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 4afd9fa..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 2d6218e..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index c792e28..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 51485bf..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index a4d93b5..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 86cf825..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index fcba277..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/es/System.Private.ServiceModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/es/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 65078e9..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/es/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/es/System.Web.Services.Description.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/es/System.Web.Services.Description.resources.dll deleted file mode 100644 index edfce43..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/es/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 93a31c1..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index a22b8d5..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 0b0764c..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 8708f22..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 8247ff9..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index c15b990..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 0668bcb..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/fr/System.Private.ServiceModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/fr/System.Private.ServiceModel.resources.dll deleted file mode 100644 index a2ad076..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/fr/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/fr/System.Web.Services.Description.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/fr/System.Web.Services.Description.resources.dll deleted file mode 100644 index a9e94e0..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/fr/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 7f9325d..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index e71779f..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index defdb16..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 79e3b5e..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 2536a93..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 61df169..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 9a9115e..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/it/System.Private.ServiceModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/it/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 7bb0d14..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/it/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/it/System.Web.Services.Description.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/it/System.Web.Services.Description.resources.dll deleted file mode 100644 index d8b5101..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/it/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 58a375d..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 8c8510d..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index e1aa3f0..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index da68de3..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index f4fab58..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 2e53ae8..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 09b1d90..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ja/System.Private.ServiceModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ja/System.Private.ServiceModel.resources.dll deleted file mode 100644 index c92e54a..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ja/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ja/System.Web.Services.Description.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ja/System.Web.Services.Description.resources.dll deleted file mode 100644 index d166bd0..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ja/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 3b3f0ed..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 66458d5..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 0bf0154..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 5ef656b..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 3feea7f..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 1599d60..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 6b0b4e8..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ko/System.Private.ServiceModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ko/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 5f09fb1..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ko/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ko/System.Web.Services.Description.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ko/System.Web.Services.Description.resources.dll deleted file mode 100644 index 7acc280..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ko/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 0c6175e..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 82ff47c..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 32121f9..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index e5d2843..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index b9db57e..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index f82d92d..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 526583e..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pl/System.Private.ServiceModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pl/System.Private.ServiceModel.resources.dll deleted file mode 100644 index bcdbbbb..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/pl/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pl/System.Web.Services.Description.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pl/System.Web.Services.Description.resources.dll deleted file mode 100644 index 421c859..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/pl/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 2d2ccbe..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index b583d8e..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 217f281..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index d6385c8..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 0817f52..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index a468b89..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index a9f6887..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/System.Private.ServiceModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 6138c5d..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/System.Web.Services.Description.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/System.Web.Services.Description.resources.dll deleted file mode 100644 index 8d4c892..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/Cli.Test.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/Cli.Test.dll deleted file mode 100644 index 235cd68..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/Cli.Test.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/Microsoft.CSharp.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/Microsoft.CSharp.dll deleted file mode 100644 index 00529c3..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/Microsoft.CSharp.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/Microsoft.VisualBasic.Core.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/Microsoft.VisualBasic.Core.dll deleted file mode 100644 index d37bdc6..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/Microsoft.VisualBasic.Core.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/Microsoft.VisualBasic.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/Microsoft.VisualBasic.dll deleted file mode 100644 index eb198db..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/Microsoft.VisualBasic.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/Microsoft.Win32.Primitives.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/Microsoft.Win32.Primitives.dll deleted file mode 100644 index e39072e..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/Microsoft.Win32.Primitives.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/Microsoft.Win32.Registry.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/Microsoft.Win32.Registry.dll deleted file mode 100644 index 0e4ca23..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/Microsoft.Win32.Registry.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.AppContext.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.AppContext.dll deleted file mode 100644 index 949e26a..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.AppContext.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Buffers.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Buffers.dll deleted file mode 100644 index 0ba2017..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Buffers.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Collections.Concurrent.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Collections.Concurrent.dll deleted file mode 100644 index a34bdfd..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Collections.Concurrent.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Collections.Immutable.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Collections.Immutable.dll deleted file mode 100644 index 3559d71..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Collections.Immutable.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Collections.NonGeneric.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Collections.NonGeneric.dll deleted file mode 100644 index 0ff1e9e..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Collections.NonGeneric.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Collections.Specialized.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Collections.Specialized.dll deleted file mode 100644 index 9e63d8f..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Collections.Specialized.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Collections.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Collections.dll deleted file mode 100644 index c563b3d..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Collections.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.Annotations.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.Annotations.dll deleted file mode 100644 index e719616..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.Annotations.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.DataAnnotations.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.DataAnnotations.dll deleted file mode 100644 index e92b9ec..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.DataAnnotations.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.EventBasedAsync.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.EventBasedAsync.dll deleted file mode 100644 index c13cab7..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.EventBasedAsync.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.Primitives.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.Primitives.dll deleted file mode 100644 index 2c8ac32..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.Primitives.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.TypeConverter.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.TypeConverter.dll deleted file mode 100644 index 8af874e..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.TypeConverter.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.dll deleted file mode 100644 index dedec7c..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Configuration.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Configuration.dll deleted file mode 100644 index 54fdf89..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Configuration.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Console.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Console.dll deleted file mode 100644 index 5934da2..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Console.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Core.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Core.dll deleted file mode 100644 index b5abba6..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Core.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Data.Common.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Data.Common.dll deleted file mode 100644 index fb6df46..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Data.Common.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Data.DataSetExtensions.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Data.DataSetExtensions.dll deleted file mode 100644 index e5afb2e..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Data.DataSetExtensions.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Data.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Data.dll deleted file mode 100644 index e54bdf1..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Data.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.Contracts.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.Contracts.dll deleted file mode 100644 index b2a4266..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.Contracts.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.Debug.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.Debug.dll deleted file mode 100644 index a0cd3f8..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.Debug.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.DiagnosticSource.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.DiagnosticSource.dll deleted file mode 100644 index 39a6217..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.DiagnosticSource.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.FileVersionInfo.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.FileVersionInfo.dll deleted file mode 100644 index 439c771..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.FileVersionInfo.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.Process.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.Process.dll deleted file mode 100644 index 2091f8c..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.Process.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.StackTrace.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.StackTrace.dll deleted file mode 100644 index 4b5a3d7..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.StackTrace.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.TextWriterTraceListener.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.TextWriterTraceListener.dll deleted file mode 100644 index 1a5cbf2..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.TextWriterTraceListener.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.Tools.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.Tools.dll deleted file mode 100644 index 335c9c1..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.Tools.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.TraceSource.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.TraceSource.dll deleted file mode 100644 index 749ba40..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.TraceSource.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.Tracing.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.Tracing.dll deleted file mode 100644 index 338074d..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.Tracing.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Drawing.Primitives.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Drawing.Primitives.dll deleted file mode 100644 index 8c0a332..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Drawing.Primitives.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Drawing.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Drawing.dll deleted file mode 100644 index b226cf3..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Drawing.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Dynamic.Runtime.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Dynamic.Runtime.dll deleted file mode 100644 index 70edfa6..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Dynamic.Runtime.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Formats.Asn1.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Formats.Asn1.dll deleted file mode 100644 index 8625760..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Formats.Asn1.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Globalization.Calendars.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Globalization.Calendars.dll deleted file mode 100644 index 21a0037..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Globalization.Calendars.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Globalization.Extensions.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Globalization.Extensions.dll deleted file mode 100644 index 0dd96b7..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Globalization.Extensions.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Globalization.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Globalization.dll deleted file mode 100644 index 1c2e682..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Globalization.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Compression.Brotli.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Compression.Brotli.dll deleted file mode 100644 index 297977e..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Compression.Brotli.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Compression.FileSystem.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Compression.FileSystem.dll deleted file mode 100644 index 6586130..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Compression.FileSystem.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Compression.ZipFile.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Compression.ZipFile.dll deleted file mode 100644 index 6c9be3c..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Compression.ZipFile.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Compression.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Compression.dll deleted file mode 100644 index 832d832..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Compression.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.AccessControl.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.AccessControl.dll deleted file mode 100644 index 37f5c30..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.AccessControl.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.DriveInfo.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.DriveInfo.dll deleted file mode 100644 index 3fafa94..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.DriveInfo.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.Primitives.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.Primitives.dll deleted file mode 100644 index 7e7c838..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.Primitives.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.Watcher.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.Watcher.dll deleted file mode 100644 index 413f9b4..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.Watcher.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.dll deleted file mode 100644 index e2be89f..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.IsolatedStorage.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.IsolatedStorage.dll deleted file mode 100644 index a17e9fc..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.IsolatedStorage.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.MemoryMappedFiles.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.MemoryMappedFiles.dll deleted file mode 100644 index 2d4175d..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.MemoryMappedFiles.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Pipes.AccessControl.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Pipes.AccessControl.dll deleted file mode 100644 index 8627e1d..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Pipes.AccessControl.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Pipes.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Pipes.dll deleted file mode 100644 index 401b732..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Pipes.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.UnmanagedMemoryStream.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.UnmanagedMemoryStream.dll deleted file mode 100644 index 9c49c70..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.UnmanagedMemoryStream.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.dll deleted file mode 100644 index 02ce4e2..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Linq.Expressions.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Linq.Expressions.dll deleted file mode 100644 index 65c06c3..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Linq.Expressions.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Linq.Parallel.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Linq.Parallel.dll deleted file mode 100644 index 02a5fa6..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Linq.Parallel.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Linq.Queryable.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Linq.Queryable.dll deleted file mode 100644 index 0eeb7c8..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Linq.Queryable.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Linq.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Linq.dll deleted file mode 100644 index 2a86c79..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Linq.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Memory.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Memory.dll deleted file mode 100644 index 388044d..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Memory.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Http.Json.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Http.Json.dll deleted file mode 100644 index 22997ef..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Http.Json.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Http.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Http.dll deleted file mode 100644 index abaf3da..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Http.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.HttpListener.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.HttpListener.dll deleted file mode 100644 index 55c3152..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.HttpListener.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Mail.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Mail.dll deleted file mode 100644 index 8c06ec8..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Mail.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.NameResolution.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.NameResolution.dll deleted file mode 100644 index 98dd2d8..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.NameResolution.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.NetworkInformation.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.NetworkInformation.dll deleted file mode 100644 index 842064d..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.NetworkInformation.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Ping.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Ping.dll deleted file mode 100644 index 0d4d3a9..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Ping.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Primitives.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Primitives.dll deleted file mode 100644 index d54f4bd..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Primitives.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Requests.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Requests.dll deleted file mode 100644 index f314471..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Requests.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Security.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Security.dll deleted file mode 100644 index 4e348d7..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Security.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.ServicePoint.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.ServicePoint.dll deleted file mode 100644 index 6077da1..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.ServicePoint.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Sockets.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Sockets.dll deleted file mode 100644 index 1af0691..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Sockets.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.WebClient.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.WebClient.dll deleted file mode 100644 index 6a4a572..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.WebClient.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.WebHeaderCollection.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.WebHeaderCollection.dll deleted file mode 100644 index 114289b..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.WebHeaderCollection.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.WebProxy.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.WebProxy.dll deleted file mode 100644 index d65ea58..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.WebProxy.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.WebSockets.Client.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.WebSockets.Client.dll deleted file mode 100644 index 5717169..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.WebSockets.Client.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.WebSockets.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.WebSockets.dll deleted file mode 100644 index 5bfa921..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.WebSockets.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.dll deleted file mode 100644 index 62feba4..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Numerics.Vectors.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Numerics.Vectors.dll deleted file mode 100644 index 2c3a984..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Numerics.Vectors.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Numerics.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Numerics.dll deleted file mode 100644 index 5d186c8..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Numerics.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ObjectModel.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ObjectModel.dll deleted file mode 100644 index f92cc11..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ObjectModel.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.DispatchProxy.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.DispatchProxy.dll deleted file mode 100644 index b888c4b..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.DispatchProxy.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.ILGeneration.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.ILGeneration.dll deleted file mode 100644 index 81911c6..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.ILGeneration.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.Lightweight.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.Lightweight.dll deleted file mode 100644 index 045952c..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.Lightweight.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.dll deleted file mode 100644 index e579588..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Extensions.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Extensions.dll deleted file mode 100644 index 7987d1d..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Extensions.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Metadata.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Metadata.dll deleted file mode 100644 index 50158de..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Metadata.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Primitives.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Primitives.dll deleted file mode 100644 index d9210c0..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Primitives.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.TypeExtensions.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.TypeExtensions.dll deleted file mode 100644 index 792c8c8..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.TypeExtensions.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.dll deleted file mode 100644 index 3021f73..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Resources.Reader.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Resources.Reader.dll deleted file mode 100644 index e46173b..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Resources.Reader.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Resources.ResourceManager.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Resources.ResourceManager.dll deleted file mode 100644 index fc44423..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Resources.ResourceManager.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Resources.Writer.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Resources.Writer.dll deleted file mode 100644 index 68980f9..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Resources.Writer.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.Unsafe.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.Unsafe.dll deleted file mode 100644 index 546930e..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.Unsafe.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.VisualC.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.VisualC.dll deleted file mode 100644 index 277cb81..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.VisualC.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Extensions.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Extensions.dll deleted file mode 100644 index 441841e..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Extensions.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Handles.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Handles.dll deleted file mode 100644 index 70e3278..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Handles.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll deleted file mode 100644 index 89f8d39..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.InteropServices.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.InteropServices.dll deleted file mode 100644 index a39d097..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.InteropServices.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Intrinsics.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Intrinsics.dll deleted file mode 100644 index c9fcd40..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Intrinsics.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Loader.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Loader.dll deleted file mode 100644 index f109988..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Loader.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Numerics.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Numerics.dll deleted file mode 100644 index 89937d1..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Numerics.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Formatters.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Formatters.dll deleted file mode 100644 index 5438ce3..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Formatters.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Json.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Json.dll deleted file mode 100644 index 399a512..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Json.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Primitives.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Primitives.dll deleted file mode 100644 index c402e8a..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Primitives.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Xml.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Xml.dll deleted file mode 100644 index 84fffc5..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Xml.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.dll deleted file mode 100644 index 1c1891a..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.dll deleted file mode 100644 index 921a08b..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.AccessControl.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.AccessControl.dll deleted file mode 100644 index 2c6f9f4..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.AccessControl.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Claims.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Claims.dll deleted file mode 100644 index b6297f6..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Claims.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Algorithms.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Algorithms.dll deleted file mode 100644 index 4b89540..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Algorithms.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Cng.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Cng.dll deleted file mode 100644 index e76a578..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Cng.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Csp.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Csp.dll deleted file mode 100644 index 2ceae69..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Csp.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Encoding.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Encoding.dll deleted file mode 100644 index a975809..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Encoding.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.OpenSsl.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.OpenSsl.dll deleted file mode 100644 index df3a3a9..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.OpenSsl.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Primitives.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Primitives.dll deleted file mode 100644 index 21222a6..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Primitives.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.X509Certificates.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.X509Certificates.dll deleted file mode 100644 index eee372d..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.X509Certificates.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Principal.Windows.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Principal.Windows.dll deleted file mode 100644 index 9a3798b..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Principal.Windows.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Principal.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Principal.dll deleted file mode 100644 index 0dbfa46..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Principal.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.SecureString.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.SecureString.dll deleted file mode 100644 index 7299b40..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.SecureString.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.dll deleted file mode 100644 index b83e96a..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ServiceModel.Web.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ServiceModel.Web.dll deleted file mode 100644 index a4d4e0f..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ServiceModel.Web.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ServiceProcess.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ServiceProcess.dll deleted file mode 100644 index 86c09dc..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ServiceProcess.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.Encoding.CodePages.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.Encoding.CodePages.dll deleted file mode 100644 index 5ce72b1..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.Encoding.CodePages.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.Encoding.Extensions.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.Encoding.Extensions.dll deleted file mode 100644 index 05e497a..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.Encoding.Extensions.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.Encoding.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.Encoding.dll deleted file mode 100644 index 46c5400..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.Encoding.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.Encodings.Web.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.Encodings.Web.dll deleted file mode 100644 index f2b10eb..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.Encodings.Web.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.Json.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.Json.dll deleted file mode 100644 index 37851d2..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.Json.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.RegularExpressions.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.RegularExpressions.dll deleted file mode 100644 index 983cbbd..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.RegularExpressions.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Channels.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Channels.dll deleted file mode 100644 index 34ae646..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Channels.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Overlapped.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Overlapped.dll deleted file mode 100644 index 9092609..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Overlapped.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Dataflow.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Dataflow.dll deleted file mode 100644 index 0731d06..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Dataflow.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Extensions.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Extensions.dll deleted file mode 100644 index e5840ae..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Extensions.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Parallel.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Parallel.dll deleted file mode 100644 index 5bec78b..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Parallel.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.dll deleted file mode 100644 index 04704d0..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Thread.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Thread.dll deleted file mode 100644 index de9a348..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Thread.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.ThreadPool.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.ThreadPool.dll deleted file mode 100644 index efab9c3..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.ThreadPool.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Timer.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Timer.dll deleted file mode 100644 index 718a039..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Timer.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.dll deleted file mode 100644 index d697919..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Transactions.Local.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Transactions.Local.dll deleted file mode 100644 index 03df1fb..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Transactions.Local.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Transactions.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Transactions.dll deleted file mode 100644 index 1bd2e0a..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Transactions.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ValueTuple.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ValueTuple.dll deleted file mode 100644 index b6103f6..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ValueTuple.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Web.HttpUtility.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Web.HttpUtility.dll deleted file mode 100644 index c77ebab..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Web.HttpUtility.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Web.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Web.dll deleted file mode 100644 index d04d5e3..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Web.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Windows.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Windows.dll deleted file mode 100644 index 9133038..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Windows.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.Linq.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.Linq.dll deleted file mode 100644 index d8aa5cd..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.Linq.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.ReaderWriter.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.ReaderWriter.dll deleted file mode 100644 index 66f199d..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.ReaderWriter.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.Serialization.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.Serialization.dll deleted file mode 100644 index 92bc678..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.Serialization.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.XDocument.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.XDocument.dll deleted file mode 100644 index 5ba2260..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.XDocument.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.XPath.XDocument.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.XPath.XDocument.dll deleted file mode 100644 index be27c4e..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.XPath.XDocument.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.XPath.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.XPath.dll deleted file mode 100644 index 22482d8..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.XPath.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.XmlDocument.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.XmlDocument.dll deleted file mode 100644 index 20d0fac..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.XmlDocument.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.XmlSerializer.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.XmlSerializer.dll deleted file mode 100644 index 0a1664c..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.XmlSerializer.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.dll deleted file mode 100644 index f2b768e..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.dll deleted file mode 100644 index 9e8d0a4..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/WindowsBase.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/WindowsBase.dll deleted file mode 100644 index 1032969..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/WindowsBase.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/mscorlib.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/mscorlib.dll deleted file mode 100644 index 31e8f9b..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/mscorlib.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/netstandard.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/netstandard.dll deleted file mode 100644 index 1452256..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ref/netstandard.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 08d18ad..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 0d0a62d..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 191d8b0..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 223ddc1..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 08d3cba..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 945add7..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 794e7f7..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ru/System.Private.ServiceModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ru/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 11f804c..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ru/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ru/System.Web.Services.Description.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ru/System.Web.Services.Description.resources.dll deleted file mode 100644 index a43bf0d..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/ru/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll deleted file mode 100644 index 8e0d27d..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/illumos/lib/net6.0/System.Data.Odbc.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/illumos/lib/net6.0/System.Data.Odbc.dll deleted file mode 100644 index 86425c9..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/illumos/lib/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/ios/lib/net6.0/System.Data.Odbc.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/ios/lib/net6.0/System.Data.Odbc.dll deleted file mode 100644 index 72945c5..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/ios/lib/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-arm/native/libSystem.IO.Ports.Native.so b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-arm/native/libSystem.IO.Ports.Native.so deleted file mode 100644 index 78b5008..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-arm/native/libSystem.IO.Ports.Native.so and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-arm/native/libpsl-native.so b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-arm/native/libpsl-native.so deleted file mode 100644 index eb7876d..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-arm/native/libpsl-native.so and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so deleted file mode 100644 index dd85d2d..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-arm64/native/libpsl-native.so b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-arm64/native/libpsl-native.so deleted file mode 100644 index ed4929b..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-arm64/native/libpsl-native.so and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-musl-x64/native/libpsl-native.so b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-musl-x64/native/libpsl-native.so deleted file mode 100644 index 222670d..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-musl-x64/native/libpsl-native.so and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libSystem.IO.Ports.Native.so b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libSystem.IO.Ports.Native.so deleted file mode 100644 index 9dbd44e..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libSystem.IO.Ports.Native.so and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libmi.so b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libmi.so deleted file mode 100644 index e87da8d..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libmi.so and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libpsl-native.so b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libpsl-native.so deleted file mode 100644 index c04a0e3..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libpsl-native.so and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libpsrpclient.so b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libpsrpclient.so deleted file mode 100644 index 029ac86..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libpsrpclient.so and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.Data.Odbc.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.Data.Odbc.dll deleted file mode 100644 index 6e67ec3..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll deleted file mode 100644 index 75139e1..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib deleted file mode 100644 index 974ae77..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib deleted file mode 100644 index 96ba9bf..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.Data.Odbc.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.Data.Odbc.dll deleted file mode 100644 index eef28b5..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll deleted file mode 100644 index 3a64667..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx/native/libmi.dylib b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx/native/libmi.dylib deleted file mode 100644 index 71880e4..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx/native/libmi.dylib and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx/native/libpsl-native.dylib b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx/native/libpsl-native.dylib deleted file mode 100644 index f4df8f4..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx/native/libpsl-native.dylib and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx/native/libpsrpclient.dylib b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx/native/libpsrpclient.dylib deleted file mode 100644 index 13680bf..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx/native/libpsrpclient.dylib and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/solaris/lib/net6.0/System.Data.Odbc.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/solaris/lib/net6.0/System.Data.Odbc.dll deleted file mode 100644 index e283d99..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/solaris/lib/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/tvos/lib/net6.0/System.Data.Odbc.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/tvos/lib/net6.0/System.Data.Odbc.dll deleted file mode 100644 index 9648360..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/tvos/lib/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll deleted file mode 100644 index 93d7ef2..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll deleted file mode 100644 index 3258453..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll deleted file mode 100644 index 8cedac7..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll deleted file mode 100644 index 0ca804c..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll deleted file mode 100644 index 60f30e3..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 deleted file mode 100644 index 53e9bc5..0000000 --- a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 +++ /dev/null @@ -1,14 +0,0 @@ -@{ -GUID="56D66100-99A0-4FFC-A12D-EEE9A6718AEF" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -FunctionsToExport = @() -CmdletsToExport="Start-Transcript", "Stop-Transcript" -AliasesToExport = @() -NestedModules="Microsoft.PowerShell.ConsoleHost.dll" -HelpInfoURI = 'https://aka.ms/powershell72-help' -} diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 deleted file mode 100644 index 8d4d985..0000000 --- a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 +++ /dev/null @@ -1,60 +0,0 @@ -@{ -GUID="EEFCB906-B326-4E99-9F54-8B4BB6EF3C6D" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -NestedModules="Microsoft.PowerShell.Commands.Management.dll" -HelpInfoURI = 'https://aka.ms/powershell72-help' -FunctionsToExport = @() -AliasesToExport = @("gcb", "gtz", "scb") -CmdletsToExport=@("Add-Content", - "Clear-Content", - "Clear-ItemProperty", - "Join-Path", - "Convert-Path", - "Copy-ItemProperty", - "Get-ChildItem", - "Get-Clipboard", - "Set-Clipboard", - "Get-Content", - "Get-ItemProperty", - "Get-ItemPropertyValue", - "Move-ItemProperty", - "Get-Location", - "Set-Location", - "Push-Location", - "Pop-Location", - "New-PSDrive", - "Remove-PSDrive", - "Get-PSDrive", - "Get-Item", - "New-Item", - "Set-Item", - "Remove-Item", - "Move-Item", - "Rename-Item", - "Copy-Item", - "Clear-Item", - "Invoke-Item", - "Get-PSProvider", - "New-ItemProperty", - "Split-Path", - "Test-Path", - "Get-Process", - "Stop-Process", - "Wait-Process", - "Debug-Process", - "Start-Process", - "Test-Connection", - "Remove-ItemProperty", - "Rename-ItemProperty", - "Resolve-Path", - "Set-Content", - "Set-ItemProperty", - "Get-TimeZone", - "Stop-Computer", - "Restart-Computer") -} diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 deleted file mode 100644 index 9c9f978..0000000 --- a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 +++ /dev/null @@ -1,14 +0,0 @@ -@{ -GUID="A94C8C7E-9810-47C0-B8AF-65089C13A35A" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -FunctionsToExport = @() -CmdletsToExport="Get-Credential", "Get-ExecutionPolicy", "Set-ExecutionPolicy", "ConvertFrom-SecureString", "ConvertTo-SecureString", "Get-PfxCertificate" , "Protect-CmsMessage", "Unprotect-CmsMessage", "Get-CmsMessage" -AliasesToExport = @() -NestedModules="Microsoft.PowerShell.Security.dll" -HelpInfoURI = 'https://aka.ms/powershell72-help' -} diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 deleted file mode 100644 index 8efcaa0..0000000 --- a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 +++ /dev/null @@ -1,34 +0,0 @@ -@{ -GUID = "1DA87E53-152B-403E-98DC-74D7B4D63D59" -Author = "PowerShell" -CompanyName = "Microsoft Corporation" -Copyright = "Copyright (c) Microsoft Corporation." -ModuleVersion = "7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion = "3.0" -CmdletsToExport = @( - 'Export-Alias', 'Get-Alias', 'Import-Alias', 'New-Alias', 'Remove-Alias', 'Set-Alias', 'Export-Clixml', - 'Import-Clixml', 'Measure-Command', 'Trace-Command', 'ConvertFrom-Csv', 'ConvertTo-Csv', 'Export-Csv', - 'Import-Csv', 'Get-Culture', 'Format-Custom', 'Get-Date', 'Set-Date', 'Write-Debug', 'Wait-Debugger', - 'Register-EngineEvent', 'Write-Error', 'Get-Event', 'New-Event', 'Remove-Event', 'Unregister-Event', - 'Wait-Event', 'Get-EventSubscriber', 'Invoke-Expression', 'Out-File', 'Get-FileHash', 'Export-FormatData', - 'Get-FormatData', 'Update-FormatData', 'New-Guid', 'Format-Hex', 'Get-Host', 'Read-Host', 'Write-Host', - 'ConvertTo-Html', 'Write-Information', 'ConvertFrom-Json', 'ConvertTo-Json', 'Test-Json', 'Format-List', - 'Import-LocalizedData', 'Send-MailMessage', 'ConvertFrom-Markdown', 'Show-Markdown', 'Get-MarkdownOption', - 'Set-MarkdownOption', 'Add-Member', 'Get-Member', 'Compare-Object', 'Group-Object', 'Measure-Object', - 'New-Object', 'Select-Object', 'Sort-Object', 'Tee-Object', 'Register-ObjectEvent', 'Write-Output', - 'Import-PowerShellDataFile', 'Write-Progress', 'Disable-PSBreakpoint', 'Enable-PSBreakpoint', - 'Get-PSBreakpoint', 'Remove-PSBreakpoint', 'Set-PSBreakpoint', 'Get-PSCallStack', 'Export-PSSession', - 'Import-PSSession', 'Get-Random', 'Invoke-RestMethod', 'Debug-Runspace', 'Get-Runspace', - 'Disable-RunspaceDebug', 'Enable-RunspaceDebug', 'Get-RunspaceDebug', 'Start-Sleep', 'Join-String', - 'Out-String', 'Select-String', 'ConvertFrom-StringData', 'Format-Table', 'New-TemporaryFile', 'New-TimeSpan', - 'Get-TraceSource', 'Set-TraceSource', 'Add-Type', 'Get-TypeData', 'Remove-TypeData', 'Update-TypeData', - 'Get-UICulture', 'Get-Unique', 'Get-Uptime', 'Clear-Variable', 'Get-Variable', 'New-Variable', - 'Remove-Variable', 'Set-Variable', 'Get-Verb', 'Write-Verbose', 'Write-Warning', 'Invoke-WebRequest', - 'Format-Wide', 'ConvertTo-Xml', 'Select-Xml', 'Get-Error', 'Update-List', 'Unblock-File' -) -FunctionsToExport = @() -AliasesToExport = @('fhx') -NestedModules = @("Microsoft.PowerShell.Commands.Utility.dll") -HelpInfoURI = 'https://aka.ms/powershell72-help' -} diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll deleted file mode 100644 index 9e26473..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.IO.Ports.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.IO.Ports.dll deleted file mode 100644 index 8e7b399..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.IO.Ports.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Management.Automation.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Management.Automation.dll deleted file mode 100644 index a5f1912..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Management.Automation.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll deleted file mode 100644 index ad2a602..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 78105ed..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index 2e7bf94..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index ac47598..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll deleted file mode 100644 index 56a149b..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll deleted file mode 100644 index f60631c..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/native/mi.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/native/mi.dll deleted file mode 100644 index 7228cd0..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/native/mi.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/native/miutils.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/native/miutils.dll deleted file mode 100644 index ab98cbf..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/native/miutils.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/native/pwrshplugin.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/native/pwrshplugin.dll deleted file mode 100644 index 0eec871..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/native/pwrshplugin.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index 50860ab..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 9dbe56e..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll deleted file mode 100644 index a78573d..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll deleted file mode 100644 index b148487..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/mi.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/mi.dll deleted file mode 100644 index eb971a1..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/mi.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/miutils.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/miutils.dll deleted file mode 100644 index 0d3985d..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/miutils.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/pwrshplugin.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/pwrshplugin.dll deleted file mode 100644 index f36ee7d..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/pwrshplugin.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/sni.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/sni.dll deleted file mode 100644 index 7b8f9d8..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/sni.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll deleted file mode 100644 index 9d148cf..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x64/native/pwrshplugin.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x64/native/pwrshplugin.dll deleted file mode 100644 index 74da742..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x64/native/pwrshplugin.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x64/native/sni.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x64/native/sni.dll deleted file mode 100644 index c1a05a5..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x64/native/sni.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll deleted file mode 100644 index 79a3085..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x86/native/pwrshplugin.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x86/native/pwrshplugin.dll deleted file mode 100644 index 200bf77..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x86/native/pwrshplugin.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x86/native/sni.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x86/native/sni.dll deleted file mode 100644 index 5fc21ac..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x86/native/sni.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll deleted file mode 100644 index c8ff3c8..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll deleted file mode 100644 index 997d268..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll deleted file mode 100644 index 1e4a567..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll deleted file mode 100644 index 3e7ffc4..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll deleted file mode 100644 index 3dfb631..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll deleted file mode 100644 index fa3247a..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll deleted file mode 100644 index b6dc868..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll deleted file mode 100644 index 8ed4dde..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll deleted file mode 100644 index b6a87a7..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll deleted file mode 100644 index 9896fd3..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll deleted file mode 100644 index 18eb223..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll deleted file mode 100644 index 66af198..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/CimCmdlets/CimCmdlets.psd1 b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/CimCmdlets/CimCmdlets.psd1 deleted file mode 100644 index 9c74ac8..0000000 --- a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/CimCmdlets/CimCmdlets.psd1 +++ /dev/null @@ -1,233 +0,0 @@ -@{ -GUID="{Fb6cc51d-c096-4b38-b78d-0fed6277096a}" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -RootModule="Microsoft.Management.Infrastructure.CimCmdlets" -RequiredAssemblies="Microsoft.Management.Infrastructure.CimCmdlets.dll","Microsoft.Management.Infrastructure.Dll" -FunctionsToExport = @() -CmdletsToExport= "Get-CimAssociatedInstance", "Get-CimClass", "Get-CimInstance", "Get-CimSession", "Invoke-CimMethod", - "New-CimInstance","New-CimSession","New-CimSessionOption","Register-CimIndicationEvent","Remove-CimInstance", - "Remove-CimSession","Set-CimInstance", - "Export-BinaryMiLog","Import-BinaryMiLog" -AliasesToExport = "gcim","scim","ncim", "rcim","icim","gcai","rcie","ncms","rcms","gcms","ncso","gcls" -HelpInfoUri="https://aka.ms/powershell72-help" -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCDVr9wtf0/6ef8P -# 7Oewmh6e4caAvboErstvAWik/E+xjqCCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQggKe1Wa+d -# fYvru2vipTPxs79u032BOtU/CXLz68NBYs0wQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQB0Sx7LIYYO505eD5CAwvSG6wwrjjzKL/MSFiL9Nh0Q -# YDyFIX4UsB617gQ/OLzvBaXpzuGbkzdtbxGuknwe5pNeLgzdAPj8f3aMfNM7JnL0 -# Pu6HUmHuaD11aY9bOOoddRWRZDGoSMXaPXvTHGXo8lk672+n6e2SNB28QG1ASAt7 -# 20qZLgr0ujUBlUe4zyg5MxZseqjEGR3bsUSltPOu2F107jcNqj1YZ/HXJHCAniSd -# XdMRipCWeydTNPpPLCWVtcjTyxXnJoDbTEVtyOpFx/0YxCgazCDY0ae+QKzp7sNe -# qbnNd30/F9pJ2S3hu9z9RcpgxbYDIHchMVO970sQOyvNoYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIAaCwImJ8DxZ2FNq1L4wuBej3xtvL6SPai8XFzEz -# uLyVAgZhlV4Kp6EYEzIwMjExMjA4MjEwNDEzLjk2M1owBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046MkFENC00QjkyLUZBMDExJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYZ45RmJ+CRL -# zAABAAABhjANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3MzlaFw0yMzAxMjYxOTI3MzlaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjJBRDQtNEI5Mi1GQTAxMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwI3G2Wpv -# 6B4IjAfrgfJpndPOPYO1Yd8+vlfoIxMW3gdCDT+zIbafg14pOu0t0ekUQx60p7Pa -# dH4OjnqNIE1q6ldH9ntj1gIdl4Hq4rdEHTZ6JFdE24DSbVoqqR+R4Iw4w3GPbfc2 -# Q3kfyyFyj+DOhmCWw/FZiTVTlT4bdejyAW6r/Jn4fr3xLjbvhITatr36VyyzgQ0Y -# 4Wr73H3gUcLjYu0qiHutDDb6+p+yDBGmKFznOW8wVt7D+u2VEJoE6JlK0EpVLZus -# dSzhecuUwJXxb2uygAZXlsa/fHlwW9YnlBqMHJ+im9HuK5X4x8/5B5dkuIoX5lWG -# jFMbD2A6Lu/PmUB4hK0CF5G1YaUtBrME73DAKkypk7SEm3BlJXwY/GrVoXWYUGEH -# yfrkLkws0RoEMpoIEgebZNKqjRynRJgR4fPCKrEhwEiTTAc4DXGci4HHOm64EQ1g -# /SDHMFqIKVSxoUbkGbdKNKHhmahuIrAy4we9s7rZJskveZYZiDmtAtBt/gQojxbZ -# 1vO9C11SthkrmkkTMLQf9cDzlVEBeu6KmHX2Sze6ggne3I4cy/5IULnHZ3rM4ZpJ -# c0s2KpGLHaVrEQy4x/mAn4yaYfgeH3MEAWkVjy/qTDh6cDCF/gyz3TaQDtvFnAK7 -# 0LqtbEvBPdBpeCG/hk9l0laYzwiyyGY/HqMCAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBQZtqNFA+9mdEu/h33UhHMN6whcLjAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQDD7mehJY3fTHKC4hj+wBWB8544 -# uaJiMMIHnhK9ONTM7VraTYzx0U/TcLJ6gxw1tRzM5uu8kswJNlHNp7RedsAiwviV -# QZV9AL8IbZRLJTwNehCwk+BVcY2gh3ZGZmx8uatPZrRueyhhTTD2PvFVLrfwh2li -# DG/dEPNIHTKj79DlEcPIWoOCUp7p0ORMwQ95kVaibpX89pvjhPl2Fm0CBO3pXXJg -# 0bydpQ5dDDTv/qb0+WYF/vNVEU/MoMEQqlUWWuXECTqx6TayJuLJ6uU7K5QyTkQ/ -# l24IhGjDzf5AEZOrINYzkWVyNfUOpIxnKsWTBN2ijpZ/Tun5qrmo9vNIDT0lobgn -# ulae17NaEO9oiEJJH1tQ353dhuRi+A00PR781iYlzF5JU1DrEfEyNx8CWgERi90L -# KsYghZBCDjQ3DiJjfUZLqONeHrJfcmhz5/bfm8+aAaUPpZFeP0g0Iond6XNk4YiY -# bWPFoofc0LwcqSALtuIAyz6f3d+UaZZsp41U4hCIoGj6hoDIuU839bo/mZ/AgESw -# GxIXs0gZU6A+2qIUe60QdA969wWSzucKOisng9HCSZLF1dqc3QUawr0C0U41784K -# o9vckAG3akwYuVGcs6hM/SqEhoe9jHwe4Xp81CrTB1l9+EIdukCbP0kyzx0WZzte -# eiDN5rdiiQR9mBJuljCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046MkFENC00Qjky -# LUZBMDExJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVAAGu2DRzWkKljmXySX1korHL4fMnoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tXMCIY -# DzIwMjExMjA5MDM1MTUxWhgPMjAyMTEyMTAwMzUxNTFaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi1cCAQAwCgIBAAICFmICAf8wBwIBAAICEh0wCgIFAOVc3NcC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQAcxjpqy9KLSwM37+FXLc0BH8vQ -# bi/JiOUtzx1U3w8DY7ed3asVEpLwGzUKiZ6rI29ZJuKH6YlwiWrAcHP9QgQnWNwg -# LXWMiZLEeOE63JCAWeL4odLTq1DKced93+APIOfcpQ1ap6X/BY4fKpscksm/q98S -# mmAs+7pjsbcUGpWLtzGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABhnjlGYn4JEvMAAEAAAGGMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEINEG -# q0+SCFYCT6sOQMZPpgnAOe4W2XF/PwFbVzs1WLMVMIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgGpmI4LIsCFTGiYyfRAR7m7Fa2guxVNIw17mcAiq8Qn4wgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYZ45RmJ+CRL -# zAABAAABhjAiBCAUmIgeNWf4KXB+/obIOhBMrPwiJ83+1ebXflyLLm9rjjANBgkq -# hkiG9w0BAQsFAASCAgBXBmO2FJAq4az5Z1fXe3nTGflWCimqnMzUudZ0JD5Omi9t -# KDRFGDjYxgAo4r26b3zc73bN/7kkUkJwwdDc2RsABuzjHa04XSfIbry8JwBw7utB -# lwotvUH6Wa22GXu0POFqMEywdRl2x4XM04hgdUfZdWznuVRzZACn1NIfYhjmsL97 -# WMTYX7dx4OVEIFWriI/R5+8p0IXDgLe3AxdrTSedGeQFgsbEvLRkVmU0m3Qsb3Qb -# V+Ds1llgS06AFYlJzgcSbBdr/6gU7V1s3EcH2z4GjPCs2rYmVIZ6XCwkn0no2vc9 -# jEHbLtaBZ7VJ/r3Xvbj/GEYdUbGgVAIdpDFnBKsamV/Z2X9eZZSIxjTnBdh4fdkJ -# 29TRUahZywqEtJWP7LOvjlIHK3Ri9AxxkJrGDhIyvJeOGT6fzT/SvWeHkAoqeGpp -# lqXzs/p5d1rsqFAST8pTTWVXItcmO84qO3+1is32A9nh1ngDva7RGXdsh3+kkobP -# eZkn0HnUxV0OUYgINHsDiCeDhwfElDpvix6/F+1S3yApsfT10k09qOWKBAxq1P7p -# j2Iih/xwZUTOwsPHTvczh8yrOAwVQoWiHKgNKXE4GyZmNAV2oUH0goTkTjqCOw7z -# /7UFMEhbEHABlSIKOQU/1hXDY4d07sfBlWPHskx8A+Yq7rTeFVPcXSnUUcqjcg== -# SIG # End signature block diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml deleted file mode 100644 index 8887031..0000000 --- a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml +++ /dev/null @@ -1,294 +0,0 @@ - - - - - - - - Counter - - Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSampleSet - - - - - - 25 - left - - - - left - 100 - - - - - - - - Timestamp - - - Readings - - - - - - - - Counter - - Microsoft.PowerShell.Commands.GetCounter.CounterFileInfo - - - - - 30 - left - - - 30 - left - - - 30 - left - - - - - - - - OldestRecord - - - NewestRecord - - - SampleCount - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml deleted file mode 100644 index 3cb0478..0000000 --- a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml +++ /dev/null @@ -1,336 +0,0 @@ - - - - - Default - - System.Diagnostics.Eventing.Reader.EventLogRecord - - - ProviderName - - - - - - 25 - - - 8 - right - - - 16 - - - - - - - - - TimeCreated - - - Id - - - LevelDisplayName - - - Message - - - - - - - - - Default - - System.Diagnostics.Eventing.Reader.EventLogConfiguration - - - - - - - 9 - - - - 18 - right - - - - 11 - right - - - - - - - - LogMode - - - MaximumSizeInBytes - - - RecordCount - - - LogName - - - - - - - - Default - - System.Diagnostics.Eventing.Reader.ProviderMetadata - - - - - - - Name - - - LogLinks - - - Opcodes - - - Tasks - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml deleted file mode 100644 index a365f67..0000000 --- a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml +++ /dev/null @@ -1,354 +0,0 @@ - - - - - - System.Diagnostics.Eventing.Reader.EventLogConfiguration - - - PSStandardMembers - - - DefaultDisplayPropertySet - - LogName - MaximumSizeInBytes - RecordCount - LogMode - - - - - - - - System.Diagnostics.Eventing.Reader.EventLogRecord - - - PSStandardMembers - - - DefaultDisplayPropertySet - - TimeCreated - ProviderName - Id - Message - - - - - - - - System.Diagnostics.Eventing.Reader.ProviderMetadata - - - ProviderName - Name - - - PSStandardMembers - - - DefaultDisplayPropertySet - - Name - LogLinks - - - - - - - - Microsoft.PowerShell.Commands.GetCounter.CounterSet - - - Counter - Paths - - - - - Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSample - - - PSStandardMembers - - - DefaultDisplayPropertySet - - Path - InstanceName - CookedValue - - - - - - - - Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSampleSet - - - PSStandardMembers - - - DefaultDisplayPropertySet - - Timestamp - Readings - - - - - - - - Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSampleSet - - - Readings - - $strPaths = "" - foreach ($ctr in $this.CounterSamples) - { - $strPaths += ($ctr.Path + " :" + "`n") - $strPaths += ($ctr.CookedValue.ToString() + "`n`n") - } - return $strPaths - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1 b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1 deleted file mode 100644 index 880d7aa..0000000 --- a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1 +++ /dev/null @@ -1,231 +0,0 @@ -@{ -GUID="CA046F10-CA64-4740-8FF9-2565DBA61A4F" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -FunctionsToExport = @() -CmdletsToExport="Get-WinEvent", "New-WinEvent", "Get-Counter" -AliasesToExport = @() -NestedModules="Microsoft.PowerShell.Commands.Diagnostics.dll" -TypesToProcess="GetEvent.types.ps1xml" -FormatsToProcess="Event.format.ps1xml", "Diagnostics.format.ps1xml" -HelpInfoURI = 'https://aka.ms/powershell72-help' -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCDPn0/Kw53z57yO -# 1TekDBJE1OmAf8RR94VaWe+Hq0qiG6CCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgODWoe2T6 -# RL6c8rlTHF90KQETb+lXsgMFPg5sa5qcVO8wQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQArTuRkyGCIWatxzP2XmCe8MGk2psH1zX2CtsCxq8Ap -# llWPArMeb/LjOcajbM5kypCRRAbwRz6aDbnQHt8odHEoRZU7pTPP6Gi5YLzfXy5B -# 0ww61qNEDWQD3Js4U0r/D5Bvbm0ewiX+JmBEh1lhTJYzIp8iXuTH3qe9bhKKb++x -# iTOWvO8/HgtkFqax0G4FyoGpyhcxGzGI0hzjTE+8qabrKI0VtLQ4FlvNluxrfISs -# nx56dtXmf0jiOSCWuGbtKydeTR6wtK8b8RfXdSfUfI2TbFk+nuTk9OADnpMxw87X -# rpiALWuM8oSYj9xv4oUCw6fsjnuryMRoM59K86mOjXkEoYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIBHzUJcs5FFt55Hx994HtkOYw1sXWAszphHUNgXU -# AU+vAgZhlV4Kp54YEzIwMjExMjA4MjEwNDEzLjc5NlowBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046MkFENC00QjkyLUZBMDExJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYZ45RmJ+CRL -# zAABAAABhjANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3MzlaFw0yMzAxMjYxOTI3MzlaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjJBRDQtNEI5Mi1GQTAxMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwI3G2Wpv -# 6B4IjAfrgfJpndPOPYO1Yd8+vlfoIxMW3gdCDT+zIbafg14pOu0t0ekUQx60p7Pa -# dH4OjnqNIE1q6ldH9ntj1gIdl4Hq4rdEHTZ6JFdE24DSbVoqqR+R4Iw4w3GPbfc2 -# Q3kfyyFyj+DOhmCWw/FZiTVTlT4bdejyAW6r/Jn4fr3xLjbvhITatr36VyyzgQ0Y -# 4Wr73H3gUcLjYu0qiHutDDb6+p+yDBGmKFznOW8wVt7D+u2VEJoE6JlK0EpVLZus -# dSzhecuUwJXxb2uygAZXlsa/fHlwW9YnlBqMHJ+im9HuK5X4x8/5B5dkuIoX5lWG -# jFMbD2A6Lu/PmUB4hK0CF5G1YaUtBrME73DAKkypk7SEm3BlJXwY/GrVoXWYUGEH -# yfrkLkws0RoEMpoIEgebZNKqjRynRJgR4fPCKrEhwEiTTAc4DXGci4HHOm64EQ1g -# /SDHMFqIKVSxoUbkGbdKNKHhmahuIrAy4we9s7rZJskveZYZiDmtAtBt/gQojxbZ -# 1vO9C11SthkrmkkTMLQf9cDzlVEBeu6KmHX2Sze6ggne3I4cy/5IULnHZ3rM4ZpJ -# c0s2KpGLHaVrEQy4x/mAn4yaYfgeH3MEAWkVjy/qTDh6cDCF/gyz3TaQDtvFnAK7 -# 0LqtbEvBPdBpeCG/hk9l0laYzwiyyGY/HqMCAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBQZtqNFA+9mdEu/h33UhHMN6whcLjAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQDD7mehJY3fTHKC4hj+wBWB8544 -# uaJiMMIHnhK9ONTM7VraTYzx0U/TcLJ6gxw1tRzM5uu8kswJNlHNp7RedsAiwviV -# QZV9AL8IbZRLJTwNehCwk+BVcY2gh3ZGZmx8uatPZrRueyhhTTD2PvFVLrfwh2li -# DG/dEPNIHTKj79DlEcPIWoOCUp7p0ORMwQ95kVaibpX89pvjhPl2Fm0CBO3pXXJg -# 0bydpQ5dDDTv/qb0+WYF/vNVEU/MoMEQqlUWWuXECTqx6TayJuLJ6uU7K5QyTkQ/ -# l24IhGjDzf5AEZOrINYzkWVyNfUOpIxnKsWTBN2ijpZ/Tun5qrmo9vNIDT0lobgn -# ulae17NaEO9oiEJJH1tQ353dhuRi+A00PR781iYlzF5JU1DrEfEyNx8CWgERi90L -# KsYghZBCDjQ3DiJjfUZLqONeHrJfcmhz5/bfm8+aAaUPpZFeP0g0Iond6XNk4YiY -# bWPFoofc0LwcqSALtuIAyz6f3d+UaZZsp41U4hCIoGj6hoDIuU839bo/mZ/AgESw -# GxIXs0gZU6A+2qIUe60QdA969wWSzucKOisng9HCSZLF1dqc3QUawr0C0U41784K -# o9vckAG3akwYuVGcs6hM/SqEhoe9jHwe4Xp81CrTB1l9+EIdukCbP0kyzx0WZzte -# eiDN5rdiiQR9mBJuljCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046MkFENC00Qjky -# LUZBMDExJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVAAGu2DRzWkKljmXySX1korHL4fMnoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tXMCIY -# DzIwMjExMjA5MDM1MTUxWhgPMjAyMTEyMTAwMzUxNTFaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi1cCAQAwCgIBAAICFmICAf8wBwIBAAICEh0wCgIFAOVc3NcC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQAcxjpqy9KLSwM37+FXLc0BH8vQ -# bi/JiOUtzx1U3w8DY7ed3asVEpLwGzUKiZ6rI29ZJuKH6YlwiWrAcHP9QgQnWNwg -# LXWMiZLEeOE63JCAWeL4odLTq1DKced93+APIOfcpQ1ap6X/BY4fKpscksm/q98S -# mmAs+7pjsbcUGpWLtzGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABhnjlGYn4JEvMAAEAAAGGMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIIOe -# Fteykp3uhjp/CbUuslldSIpFBtmy2s0K3N7X+v4KMIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgGpmI4LIsCFTGiYyfRAR7m7Fa2guxVNIw17mcAiq8Qn4wgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYZ45RmJ+CRL -# zAABAAABhjAiBCAUmIgeNWf4KXB+/obIOhBMrPwiJ83+1ebXflyLLm9rjjANBgkq -# hkiG9w0BAQsFAASCAgBf6Fat07wOy6aoLnxthDrldarQW8T2Ds6iTbNLhloJSJ1O -# Iu3QX6b7ktkdWHUtcOrW6wQ5y/EpoKQgPvT4+bs6e9QgdZqsz31NAecxGcivBfQz -# nxE8j6o46ky4HWO46ppqFjrz4ENa0ELpE8LC4fQC2h4N1EQPNkh9MQMunYZSK2Ck -# ritrVAuivl6vaeuVJyNBh0G20owR+ZDTocTnZYnOi4DqgKsrqe/8Q+kmQPmMZpig -# 3brD1Lg5JT/0zGlwNqvarcBJHRidNXrVJLxiHIcDTg4rwD+T4FN8EAbg+ioyv47T -# I6Ob7+gcrL2UdhVkZSUSqdVQVIX1V2SvP41TSHx7UCptCG0MaPiWYN5IGFlSKdRf -# hDv8Qb1cjW/wq3yQMBQBkV1g7CO48FoHlOl45b7dzXvn0b8LsYj2+gYfqzbJqacZ -# FOCrSVKIq5rlJAFKYra81Lzuryl3hpeXsREPc80w6gBZuwtq3ML/Z0YN7/rQQTs2 -# tsGyS4Ti76HltquYmkkQEfan1uk0RU91wujLFd7KZ3urFVvjqsqH9zSpxp7pCKT7 -# Sh6wf0zmG4SBX5DVQ0sHERamwpv6dqdDuadT3j9hnmsktM8uozim4Zzz0KI4DN1p -# IJE2x0YOHgYqr91aJMwULeVv3gGpcMUx6d08hSS6RDA7ne+UhH226yoyJsaYcQ== -# SIG # End signature block diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 deleted file mode 100644 index 5d9ffc6..0000000 --- a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 +++ /dev/null @@ -1,229 +0,0 @@ -@{ -GUID="56D66100-99A0-4FFC-A12D-EEE9A6718AEF" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -FunctionsToExport = @() -CmdletsToExport="Start-Transcript", "Stop-Transcript" -AliasesToExport = @() -NestedModules="Microsoft.PowerShell.ConsoleHost.dll" -HelpInfoURI = 'https://aka.ms/powershell72-help' -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCCAN6qOMSgIZSKy -# niFjiV1FZGi6ofshkAXyBqiHSReb1aCCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgkynSeA0x -# XjLakAqmd0XMmOd0Xz2RQ1n1Heu6kO1y5N0wQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQBp+M1foZUndpZVBWaBgxj5ssitpnOInfqiMoO3MG1s -# H2bxWJO09yPVWWu1/hkCjpRID00eSBj71TcZ/C1ZkQimhy2bxMM7YjngYf1A20r7 -# Luw3ZbAOPs92h91TG0a1L2PJa7rjJy57BgwnHFTgNrWkCR7VXElf2LnjCbONyJPy -# rVNLQaGGM78KKhd6Tp2LDd+R8sT19o2lD5bBrVubPim3XifI6hn4f66a1no72w3S -# 9ol7radXalJgKkxKzQnAVHPiOB+GAL/J457mswnvP+eRD/kUlEPsFRCVEMKejOdo -# 69jQhGOZJH0CuLU1HlhzU6X/poT4dnIJ9d+aCMX0cfE6oYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIJb96bqFa1hrFgpYPU2ayB0LEBtlTfOe8EwuWTs9 -# L81TAgZhlV4jeFAYEzIwMjExMjA4MjEwNDEzLjY4NVowBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046OEQ0MS00QkY3LUIzQjcxJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYguzcaBQeG8 -# KgABAAABiDANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3NDBaFw0yMzAxMjYxOTI3NDBaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjhENDEtNEJGNy1CM0I3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAmucQCAQm -# kcXHyDrV4S88VeJg2XGqNKcWpsrapRKFWchhjLsf/M9XN9bgznLN48BXPAtOlwoe -# dB2kN4bZdPP3KdRNbYq1tNFUh8UnmjCCr+CjLlrigHcmS0R+rsN2gBMXlLEZh2W/ -# COuD9VOLsb2P2jDp433V4rUAAUW82M7rg81d3OcctO+1XW1h3EtbQtS6QEkw6DYI -# uvfX7Aw8jXHZnsMugP8ZA1otprpTNUh/zRWC7CJyBzymQIDSCdWhVfD4shxe+Rs6 -# 1axf27bTg5H/V/SkNd9hzM6Nq/y2OjDKrLtuN9hS53569uhTNQeAhAVDfeHpEzlM -# vtXOyX6MTme3jnHdHPj6GLT9AMRIrAf96hPYOiPEBvHtrg6MpiI3+l6NlbSOs16/ -# FTeljT1+sdsWGtFTZvea9pAqV1aB795aDkmZ6sRm5jtdnVazfoWrHd3vDeh35WV0 -# 8vW4TlOfEcV2+KbairPxaFkJ4+tlsJ+MfsVOiTr/ZnDgaMaHnzzogelI3AofDU9I -# TbMkTtTxrLPygTbRdtbptrnLzBn2jzR4TJfkQo+hzWuaMu5OtMZiKV2I5MO0m1mK -# uUAgoq+442Lw8CQuj9EC2F8nTbJb2NcUDg+74dgJis/P8Ba/OrlxW+Trgc6TPGxC -# OtT739UqeslvWD6rNQ6UEO9f7vWDkhd2vtsCAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBRkebVQxKO7zru9+o27GjPljMlKSjAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQBAEFrb+1gIJsv/GKLS2zavm2ek -# 177mk4yu6BuS6ViIuL0e20YN2ddXeiUhEdhk3FRto/GD93k5SIyNJ6X+p8uQMOxI -# 23YOSdyEzLJwh7+ftu0If8y3x6AJ0S1d12OZ7fsYqljHUeccneS9DWqipHk8uM8m -# 2ZbBhRnUN8M4iqg4roJGmZKZ9Fc8Z7ZHJgM97i7fIyA9hJH017z25WrDJlxapD5d -# mMyNyzzfAVqaByemCoBn4VkRCGNISx0xRlcb93W6ENhJF1NBjMl3cKVEHW4d8Y0N -# ZhpdXDteLk9HgbJyeCI2fN9GBrCS1B1ak+194PGiZKL8+gtK7NorAoAMQvFkYgrH -# rWCYfjV6PouC3N+A6wOBrckVOHT9PUIDK5ADCH4ZraQideS9LD/imKHM3I4iazPk -# ocHcFHB9yo5d9lMJZ+pnAAWglQQjMWhUqnE/llA+EqjbO0lAxlmUtVioVUswhT3p -# K6DjFRXM/LUxwTttufz1zBjELkRIZ8uCy1YkMxfBFwEos/QFIlDaFSvUn4IiWZA3 -# VLfAEjy51iJwK2jSIHw+1bjCI+FBHcCTRH2pP3+h5DlQ5AZ/dvcfNrATP1wwz25I -# r8KgKObHRCIYH4VI2VrmOboSHFG79JbHdkPVSjfLxTuTsoh5FzoU1t5urG0rwulo -# ZZFZxTkrxfyTkhvmjDCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046OEQ0MS00QkY3 -# LUIzQjcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVAOE8isx8IBeVPSweD805l5Qdeg5CoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tIMCIY -# DzIwMjExMjA5MDM1MTM2WhgPMjAyMTEyMTAwMzUxMzZaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi0gCAQAwCgIBAAICIScCAf8wBwIBAAICEdowCgIFAOVc3MgC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQBeVbaPZ5ldfNGhiFwP5ALaZGmV -# 4LkTqmcDT5yUk6p3tceYyxhPwMQqshcKt1fSrFqX5J8uNBeTWEpB5D/YyrXGHu/K -# a4Wj/8+nv32LXimt561Ygktjq90QX/Vha0BnifzfBTf/k64ZmtV6FMmvNI9MjNm3 -# QmHj495BbEuSWI20HzGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABiC7NxoFB4bwqAAEAAAGIMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIB5r -# VcRB53ajDn0amN283eZmOuFxfZ1ddPxQGZnO2OCZMIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgZune7awGN0aEgvjP7JyO3NKl7hstX8ChhrKmXtJJQKUwgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYguzcaBQeG8 -# KgABAAABiDAiBCDnGsQwLYuvrNs0JZQ8D1YCe56drKP5aPf/ndr94faZkzANBgkq -# hkiG9w0BAQsFAASCAgBi8EWq1+2L+qQJjtUAiYvFYQS2GX/DAratlOcGOSYqL81P -# DXuByUFsrXsBKqXmeuAfWiNeLWOpiGvy10qNldd/AsVdVrba72n8rzGLQ1od91L4 -# CljkSRtcq/LmvjdWPqa+ySqda1OpsD80ZOFstCnTysY9S6SDqvWgZYr+UtRJsng4 -# jp8cUCQBAcjQ1N/dHGUAs/Tvfr5kHdDGynKKMGdDEUKtM2jjznIIWnxPzZoyXEi4 -# 8ePyJ/mTh3grNa3oOSGxuC+8ejye9Bc4JPSYYzhzJw+M0LAgBLQxj/HdYiuGIK7w -# TOUrqctErkPgosq1NdUAqQZakDXVpouiB+FTez3hiR2QAY1uR5lHvGD9zJValYMH -# OQEzjO5Bh+2cauVdMp012ULRJBIcVVrjUcSihcyD6EbUlyzu0VQFNFANkbFpqsf6 -# gS9p4j//r8AfQv8xwyy2N0Ql5caRRf5Vlfjp8c2ikMMvY19A53qBKs+aE093B+4Z -# 72wg2wnorYKun9fGpnfs+JufmnDf64O8a9pXV+XM9lVmgmWb0ScKAxn+N9dZrwD7 -# DbjlvSnLEUciHzyEO9wQ8/gu3L6E2Ugho+AbIDStmNhSIQiMDJblWZk5aLc8SGPr -# tts+mmDoB+lun57BwYPZKhgmnekQ9j9tCZaDKWa/ocKNByI+2+YBrNev3M37rQ== -# SIG # End signature block diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 deleted file mode 100644 index 5d2f511..0000000 --- a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 +++ /dev/null @@ -1,289 +0,0 @@ -@{ -GUID="EEFCB906-B326-4E99-9F54-8B4BB6EF3C6D" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -NestedModules="Microsoft.PowerShell.Commands.Management.dll" -HelpInfoURI = 'https://aka.ms/powershell72-help' -FunctionsToExport = @() -AliasesToExport = @("gcb", "gin", "gtz", "scb", "stz") -CmdletsToExport=@("Add-Content", - "Clear-Content", - "Get-Clipboard", - "Set-Clipboard", - "Clear-ItemProperty", - "Join-Path", - "Convert-Path", - "Copy-ItemProperty", - "Get-ChildItem", - "Get-Content", - "Get-ItemProperty", - "Get-ItemPropertyValue", - "Move-ItemProperty", - "Get-Location", - "Set-Location", - "Push-Location", - "Pop-Location", - "New-PSDrive", - "Remove-PSDrive", - "Get-PSDrive", - "Get-Item", - "New-Item", - "Set-Item", - "Remove-Item", - "Move-Item", - "Rename-Item", - "Copy-Item", - "Clear-Item", - "Invoke-Item", - "Get-PSProvider", - "New-ItemProperty", - "Split-Path", - "Test-Path", - "Test-Connection", - "Get-Process", - "Stop-Process", - "Wait-Process", - "Debug-Process", - "Start-Process", - "Remove-ItemProperty", - "Rename-ItemProperty", - "Resolve-Path", - "Get-Service", - "Stop-Service", - "Start-Service", - "Suspend-Service", - "Resume-Service", - "Restart-Service", - "Set-Service", - "New-Service", - "Remove-Service", - "Set-Content", - "Set-ItemProperty", - "Restart-Computer", - "Stop-Computer", - "Rename-Computer", - "Get-ComputerInfo", - "Get-TimeZone", - "Set-TimeZone", - "Get-HotFix", - "Clear-RecycleBin") -} - -# SIG # Begin signature block -# MIInuAYJKoZIhvcNAQcCoIInqTCCJ6UCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCAOkUHfBYP8n8JI -# rFMR/Pi6BPlAC/b/pz0LBmd3yrLJC6CCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjTCCGYkCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgbwKAFcUU -# n/a8C1e7lODkKydexiPQBTRqAUaY8lpIXxYwQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQAS8cDlYOVWF3oFPi1M2yWWdC1wbCMgPa2utU2WgHpJ -# FdgkgR5zgZhKx2APsR5uSgSfvs9YfPYm8+NRMvxAYm4e/Bf1JgTP9gsgqxQ/xXB+ -# NqOASjMjv7v+wTLPMa/i//jTTxjqcmHebx0tVR6f0Fpr9BU7PxW996xh2vKdxVnV -# YXxHwAmhJ1TxUaZC0hVRtriJrBfAsuQ2g/aCn5wZ6YXKVJ63IBZ+jnivf80fnSYc -# t+Zl4LqAiaSvpQ7GgPo/RggihGdWk+AuZCcY9SOJYAypK3Hvu4KHy4+5GEW3+9LI -# uQ3+9k1MG+Xng2uR0sDenzNJN89weif/W6AwmTwRl69ToYIXFzCCFxMGCisGAQQB -# gjcDAwExghcDMIIW/wYJKoZIhvcNAQcCoIIW8DCCFuwCAQMxDzANBglghkgBZQME -# AgEFADCCAVcGCyqGSIb3DQEJEAEEoIIBRgSCAUIwggE+AgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIGUlM1IvDbHn/VrMmR6UJYC2nOP4lY0xhCVtPuKI -# CRBSAgZhlV4jeGYYETIwMjExMjA4MjEwNDE0LjdaMASAAgH0oIHYpIHVMIHSMQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNy -# b3NvZnQgSXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxl -# cyBUU1MgRVNOOjhENDEtNEJGNy1CM0I3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGlt -# ZS1TdGFtcCBTZXJ2aWNloIIRaDCCBxQwggT8oAMCAQICEzMAAAGILs3GgUHhvCoA -# AQAAAYgwDQYJKoZIhvcNAQELBQAwfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldh -# c2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBD -# b3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIw -# MTAwHhcNMjExMDI4MTkyNzQwWhcNMjMwMTI2MTkyNzQwWjCB0jELMAkGA1UEBhMC -# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV -# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEtMCsGA1UECxMkTWljcm9zb2Z0IEly -# ZWxhbmQgT3BlcmF0aW9ucyBMaW1pdGVkMSYwJAYDVQQLEx1UaGFsZXMgVFNTIEVT -# Tjo4RDQxLTRCRjctQjNCNzElMCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAg -# U2VydmljZTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAJrnEAgEJpHF -# x8g61eEvPFXiYNlxqjSnFqbK2qUShVnIYYy7H/zPVzfW4M5yzePAVzwLTpcKHnQd -# pDeG2XTz9ynUTW2KtbTRVIfFJ5owgq/goy5a4oB3JktEfq7DdoATF5SxGYdlvwjr -# g/VTi7G9j9ow6eN91eK1AAFFvNjO64PNXdznHLTvtV1tYdxLW0LUukBJMOg2CLr3 -# 1+wMPI1x2Z7DLoD/GQNaLaa6UzVIf80Vguwicgc8pkCA0gnVoVXw+LIcXvkbOtWs -# X9u204OR/1f0pDXfYczOjav8tjowyqy7bjfYUud+evboUzUHgIQFQ33h6RM5TL7V -# zsl+jE5nt45x3Rz4+hi0/QDESKwH/eoT2DojxAbx7a4OjKYiN/pejZW0jrNevxU3 -# pY09frHbFhrRU2b3mvaQKldWge/eWg5JmerEZuY7XZ1Ws36Fqx3d7w3od+VldPL1 -# uE5TnxHFdvim2oqz8WhZCePrZbCfjH7FTok6/2Zw4GjGh5886IHpSNwKHw1PSE2z -# JE7U8ayz8oE20XbW6ba5y8wZ9o80eEyX5EKPoc1rmjLuTrTGYildiOTDtJtZirlA -# IKKvuONi8PAkLo/RAthfJ02yW9jXFA4Pu+HYCYrPz/AWvzq5cVvk64HOkzxsQjrU -# +9/VKnrJb1g+qzUOlBDvX+71g5IXdr7bAgMBAAGjggE2MIIBMjAdBgNVHQ4EFgQU -# ZHm1UMSju867vfqNuxoz5YzJSkowHwYDVR0jBBgwFoAUn6cVXQBeYl2D9OXSZacb -# UzUZ6XIwXwYDVR0fBFgwVjBUoFKgUIZOaHR0cDovL3d3dy5taWNyb3NvZnQuY29t -# L3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwVGltZS1TdGFtcCUyMFBDQSUyMDIwMTAo -# MSkuY3JsMGwGCCsGAQUFBwEBBGAwXjBcBggrBgEFBQcwAoZQaHR0cDovL3d3dy5t -# aWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9NaWNyb3NvZnQlMjBUaW1lLVN0YW1w -# JTIwUENBJTIwMjAxMCgxKS5jcnQwDAYDVR0TAQH/BAIwADATBgNVHSUEDDAKBggr -# BgEFBQcDCDANBgkqhkiG9w0BAQsFAAOCAgEAQBBa2/tYCCbL/xii0ts2r5tnpNe+ -# 5pOMrugbkulYiLi9HttGDdnXV3olIRHYZNxUbaPxg/d5OUiMjSel/qfLkDDsSNt2 -# DknchMyycIe/n7btCH/Mt8egCdEtXddjme37GKpYx1HnHJ3kvQ1qoqR5PLjPJtmW -# wYUZ1DfDOIqoOK6CRpmSmfRXPGe2RyYDPe4u3yMgPYSR9Ne89uVqwyZcWqQ+XZjM -# jcs83wFamgcnpgqAZ+FZEQhjSEsdMUZXG/d1uhDYSRdTQYzJd3ClRB1uHfGNDWYa -# XVw7Xi5PR4GycngiNnzfRgawktQdWpPtfeDxomSi/PoLSuzaKwKADELxZGIKx61g -# mH41ej6LgtzfgOsDga3JFTh0/T1CAyuQAwh+Ga2kInXkvSw/4pihzNyOImsz5KHB -# 3BRwfcqOXfZTCWfqZwAFoJUEIzFoVKpxP5ZQPhKo2ztJQMZZlLVYqFVLMIU96Sug -# 4xUVzPy1McE7bbn89cwYxC5ESGfLgstWJDMXwRcBKLP0BSJQ2hUr1J+CIlmQN1S3 -# wBI8udYicCto0iB8PtW4wiPhQR3Ak0R9qT9/oeQ5UOQGf3b3HzawEz9cMM9uSK/C -# oCjmx0QiGB+FSNla5jm6EhxRu/SWx3ZD1Uo3y8U7k7KIeRc6FNbebqxtK8LpaGWR -# WcU5K8X8k5Ib5owwggdxMIIFWaADAgECAhMzAAAAFcXna54Cm0mZAAAAAAAVMA0G -# CSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3Rv -# bjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0 -# aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3Jp -# dHkgMjAxMDAeFw0yMTA5MzAxODIyMjVaFw0zMDA5MzAxODMyMjVaMHwxCzAJBgNV -# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w -# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m -# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC -# CgKCAgEA5OGmTOe0ciELeaLL1yR5vQ7VgtP97pwHB9KpbE51yMo1V/YBf2xK4OK9 -# uT4XYDP/XE/HZveVU3Fa4n5KWv64NmeFRiMMtY0Tz3cywBAY6GB9alKDRLemjkZr -# BxTzxXb1hlDcwUTIcVxRMTegCjhuje3XD9gmU3w5YQJ6xKr9cmmvHaus9ja+NSZk -# 2pg7uhp7M62AW36MEBydUv626GIl3GoPz130/o5Tz9bshVZN7928jaTjkY+yOSxR -# nOlwaQ3KNi1wjjHINSi947SHJMPgyY9+tVSP3PoFVZhtaDuaRr3tpK56KTesy+uD -# RedGbsoy1cCGMFxPLOJiss254o2I5JasAUq7vnGpF1tnYN74kpEeHT39IM9zfUGa -# RnXNxF803RKJ1v2lIH1+/NmeRd+2ci/bfV+AutuqfjbsNkz2K26oElHovwUDo9Fz -# pk03dJQcNIIP8BDyt0cY7afomXw/TNuvXsLz1dhzPUNOwTM5TI4CvEJoLhDqhFFG -# 4tG9ahhaYQFzymeiXtcodgLiMxhy16cg8ML6EgrXY28MyTZki1ugpoMhXV8wdJGU -# lNi5UPkLiWHzNgY1GIRH29wb0f2y1BzFa/ZcUlFdEtsluq9QBXpsxREdcu+N+VLE -# hReTwDwV2xo3xwgVGD94q0W29R6HXtqPnhZyacaue7e3PmriLq0CAwEAAaOCAd0w -# ggHZMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFCqnUv5kxJq+ -# gpE8RjUpzxD/LwTuMB0GA1UdDgQWBBSfpxVdAF5iXYP05dJlpxtTNRnpcjBcBgNV -# HSAEVTBTMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wEwYDVR0l -# BAwwCgYIKwYBBQUHAwgwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P -# BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU1fZWy4/oolxiaNE9 -# lJBb186aGMQwVgYDVR0fBE8wTTBLoEmgR4ZFaHR0cDovL2NybC5taWNyb3NvZnQu -# Y29tL3BraS9jcmwvcHJvZHVjdHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYtMjMuY3Js -# MFoGCCsGAQUFBwEBBE4wTDBKBggrBgEFBQcwAoY+aHR0cDovL3d3dy5taWNyb3Nv -# ZnQuY29tL3BraS9jZXJ0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5jcnQwDQYJ -# KoZIhvcNAQELBQADggIBAJ1VffwqreEsH2cBMSRb4Z5yS/ypb+pcFLY+TkdkeLEG -# k5c9MTO1OdfCcTY/2mRsfNB1OW27DzHkwo/7bNGhlBgi7ulmZzpTTd2YurYeeNg2 -# LpypglYAA7AFvonoaeC6Ce5732pvvinLbtg/SHUB2RjebYIM9W0jVOR4U3UkV7nd -# n/OOPcbzaN9l9qRWqveVtihVJ9AkvUCgvxm2EhIRXT0n4ECWOKz3+SmJw7wXsFSF -# QrP8DJ6LGYnn8AtqgcKBGUIZUnWKNsIdw2FzLixre24/LAl4FOmRsqlb30mjdAy8 -# 7JGA0j3mSj5mO0+7hvoyGtmW9I/2kQH2zsZ0/fZMcm8Qq3UwxTSwethQ/gpY3UA8 -# x1RtnWN0SCyxTkctwRQEcb9k+SS+c23Kjgm9swFXSVRk2XPXfx5bRAGOWhmRaw2f -# pCjcZxkoJLo4S5pu+yFUa2pFEUep8beuyOiJXk+d0tBMdrVXVAmxaQFEfnyhYWxz -# /gq77EFmPWn9y8FBSX5+k77L+DvktxW/tM4+pTFRhLy/AsGConsXHRWJjXD+57XQ -# KBqJC4822rpM+Zv/Cuk0+CQ1ZyvgDbjmjJnW4SLq8CdCPSWU5nR0W2rRnj7tfqAx -# M328y+l7vzhwRNGQ8cirOoo6CGJ/2XBjU02N7oJtpQUQwXEGahC0HVUzWLOhcGby -# oYIC1zCCAkACAQEwggEAoYHYpIHVMIHSMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQgSXJlbGFuZCBPcGVyYXRp -# b25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1MgRVNOOjhENDEtNEJGNy1C -# M0I3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNloiMKAQEw -# BwYFKw4DAhoDFQDhPIrMfCAXlT0sHg/NOZeUHXoOQqCBgzCBgKR+MHwxCzAJBgNV -# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w -# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m -# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMA0GCSqGSIb3DQEBBQUAAgUA5VuLSDAiGA8y -# MDIxMTIwOTAzNTEzNloYDzIwMjExMjEwMDM1MTM2WjB3MD0GCisGAQQBhFkKBAEx -# LzAtMAoCBQDlW4tIAgEAMAoCAQACAiEnAgH/MAcCAQACAhHaMAoCBQDlXNzIAgEA -# MDYGCisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEAAgMHoSChCjAI -# AgEAAgMBhqAwDQYJKoZIhvcNAQEFBQADgYEAXlW2j2eZXXzRoYhcD+QC2mRpleC5 -# E6pnA0+clJOqd7XHmMsYT8DEKrIXCrdX0qxal+SfLjQXk1hKQeQ/2Mq1xh7vymuF -# o//Pp799i14preetWIJLY6vdEF/1YWtAZ4n83wU3/5OuGZrVehTJrzSPTIzZt0Jh -# 4+PeQWxLkliNtB8xggQNMIIECQIBATCBkzB8MQswCQYDVQQGEwJVUzETMBEGA1UE -# CBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9z -# b2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQ -# Q0EgMjAxMAITMwAAAYguzcaBQeG8KgABAAABiDANBglghkgBZQMEAgEFAKCCAUow -# GgYJKoZIhvcNAQkDMQ0GCyqGSIb3DQEJEAEEMC8GCSqGSIb3DQEJBDEiBCAAZlzS -# rT4vVB7wRIbsGvay4ACd2gPSgT3yS7r8RrU5XTCB+gYLKoZIhvcNAQkQAi8xgeow -# gecwgeQwgb0EIGbp3u2sBjdGhIL4z+ycjtzSpe4bLV/AoYaypl7SSUClMIGYMIGA -# pH4wfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcT -# B1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UE -# AxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTACEzMAAAGILs3GgUHhvCoA -# AQAAAYgwIgQg5xrEMC2Lr6zbNCWUPA9WAnuenayj+Wj3/53a/eH2mZMwDQYJKoZI -# hvcNAQELBQAEggIAOr4i66ksCOJ3Rw8xoMzAdJVQl257tTcsAl9f6cACnWS8wb5g -# W+fRBFGeoxzjBgn34Rn0NPmfz5+vx9D314QAmjWt//l6S8hmldXyUlrixC6aOGik -# +CRaSnhf0CY2o3vBSYsYV3gJx0PSnDq6/T2B+S9TY90hvl+NgkzCNBnyLEDPgDXB -# e9XQi88hUWqZxpjaTmAI26+fr9z7AMrtnA4hxEzDbh6VGDhXKZ4F//b3E6Xj6ppB -# AJBmkEH42AnDBuFGEr2iLkKbU25t0ZuD7whLQ7CaQ8yVOppTuG4kqNbsUmIPzxtI -# wlznjxAV7nN+BrIuNmraWiBmszVsqSm1FhcZBBL3jj98szffT9zmcRKwPKlO8J88 -# mHFY0io9zXsE8Cv87ezrCIDVhbIm3gHj8dMr8tiWmo9ejacYgEZSGNBAwdku6O+G -# PZ1WsWBQ1MNLRtye9FWMqGog7yqeb/iHtJH3hH7MFLgXMVHuKjI7rcIGlWKOyTbA -# Cllth+6In3BRDC/VUiSKD6SfVYyEjKdLM3dURYi/NzUJ3tapoE4DUBYt2xZlDEGO -# j/L2KpzIlyi5MhU3YZwTkAZwSNqmPKZ+f5w6j0cOhilqTOYMmVB5OycslZv6ODcW -# pcGpnK6b2QNfFMEvtGrIvflWQC95c9hwlJ2O3Fuh5Hroza3f7PgYUmrxctU= -# SIG # End signature block diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 deleted file mode 100644 index b3dd852..0000000 --- a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 +++ /dev/null @@ -1,229 +0,0 @@ -@{ -GUID="A94C8C7E-9810-47C0-B8AF-65089C13A35A" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -FunctionsToExport = @() -CmdletsToExport="Get-Acl", "Set-Acl", "Get-PfxCertificate", "Get-Credential", "Get-ExecutionPolicy", "Set-ExecutionPolicy", "Get-AuthenticodeSignature", "Set-AuthenticodeSignature", "ConvertFrom-SecureString", "ConvertTo-SecureString", "Get-CmsMessage", "Unprotect-CmsMessage", "Protect-CmsMessage" , "New-FileCatalog" , "Test-FileCatalog" -AliasesToExport = @() -NestedModules="Microsoft.PowerShell.Security.dll" -HelpInfoURI = 'https://aka.ms/powershell72-help' -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCD++xTkW7oivoiQ -# gqU/R85f/MwSI1hVEeaegSriXP6+BqCCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgWHV5GUzu -# +l9zI1GEYPanTVvtHVRaoSkM2bZBhM+rt9YwQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQByeqL4g0Ci96GXfmQN8rvCAtpT2N0neMZ9mozeBeyF -# 5hYxQhatRKLDNrOJei542+AM9l8AmsmKtJvtE8wJUkVGZqxBSiMwv7nV1uMQgVhK -# crEIUsmJO+EStsx+gA3VyfugAElJEJtTInobbDPofwO4DS8xUBpW/OLaq3XVjRga -# JOh7s7RMx+7Gysq96jaguaW2H2llklxhsKZwf3Mdi+/5BhF8tIevEqPuk4ly1oXh -# qY4/BD0pFNygoTWMp6ecxNQM2EE1N1j3y30h36Gsk5aDMeUFrRNtFFWFF1HbrbH3 -# thOhL/rqSQkbxAR2CNSGQtzrNuLF+1/xJEHXgBNGyEWioYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIC9rz69tGAbCMg2r367oWNBEt5XvxdFCe04Dw8cQ -# hWtJAgZhlV5AOHEYEzIwMjExMjA4MjEwNDE0Ljc5MVowBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046M0JENC00QjgwLTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYm0v4YwhBxL -# jwABAAABiTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3NDFaFw0yMzAxMjYxOTI3NDFaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjNCRDQtNEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvQZXxZFm -# a6plmuOyvNpV8xONOwcYolZG/BjyZWGSk5JOGaLyrKId5VxVHWHlsmJE4Svnzsdp -# sKmVx8otONveIUFvSceEZp8VXmu5m1fu8L7c+3lwXcibjccqtEvtQslokQVx0r+L -# 54abrNDarwFG73IaRidIS1i9c+unJ8oYyhDRLrCysFAVxyQhPNZkWK7Z8/VGukaK -# LAWHXCh/+R53h42gFL+9/mAALxzCXXuofi8f/XKCm7xNwVc1hONCCz6oq94AufzV -# NkkIW4brUQgYpCcJm9U0XNmQvtropYDn9UtY8YQ0NKenXPtdgLHdQ8Nnv3igErKL -# rWI0a5n5jjdKfwk+8mvakqdZmlOseeOS1XspQNJAK1uZllAITcnQZOcO5ofjOQ33 -# ujWckAXdz+/x3o7l4AU/TSOMzGZMwhUdtVwC3dSbItpSVFgnjM2COEJ9zgCadvOi -# rGDLN471jZI2jClkjsJTdgPk343TQA4JFvds/unZq0uLr+niZ3X44OBx2x+gVlln -# 2c4UbZXNueA4yS1TJGbbJFIILAmTUA9Auj5eISGTbNiyWx79HnCOTar39QEKozm4 -# LnTmDXy0/KI/H/nYZGKuTHfckP28wQS06rD+fDS5xLwcRMCW92DkHXmtbhGyRilB -# OL5LxZelQfxt54wl4WUC0AdAEolPekODwO8CAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBSXbx+zR1p4IIAeguA6rHKkrfl7UDAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQCOtLdpWUI4KwfLLrfaKrLB92Dq -# bAspGWM41TaO4Jl+sHxPo522uu3GKQCjmkRWreHtlfyy9kOk7LWax3k3ke8Gtfet -# fbh7qH0LeV2XOWg39BOnHf6mTcZq7FYSZZch1JDQjc98+Odlow+oWih0Dbt4CV/e -# 19ZcE+1n1zzWkskUEd0f5jPIUis33p+vkY8szduAtCcIcPFUhI8Hb5alPUAPMjGz -# wKb7NIKbnf8j8cP18As5IveckF0oh1cw63RY/vPK62LDYdpi7WnG2ObvngfWVKtw -# iwTI4jHj2cO9q37HDe/PPl216gSpUZh0ap24mKmMDfcKp1N4mEdsxz4oseOrPYeF -# sHHWJFJ6Aivvqn70KTeJpp5r+DxSqbeSy0mxIUOq/lAaUxgNSQVUX26t8r+fciko -# fKv23WHrtRV3t7rVTsB9YzrRaiikmz68K5HWdt9MqULxPQPo+ppZ0LRqkOae466+ -# UKRY0JxWtdrMc5vHlHZfnqjawj/RsM2S6Q6fa9T9CnY1Nz7DYBG3yZJyCPFsrgU0 -# 5s9ljqfsSptpFdUh9R4ce+L71SWDLM2x/1MFLLHAMbXsEp8KloEGtaDULnxtfS2t -# YhfuKGqRXoEfDPAMnIdTvQPh3GHQ4SjkkBARHL0MY75alhGTKHWjC2aLVOo8obKI -# Bk8hfnFDUf/EyVw4uTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0JENC00Qjgw -# LTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVACGlCa3ketyeuey7bJNpWkMuiCcQoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tYMCIY -# DzIwMjExMjA5MDM1MTUyWhgPMjAyMTEyMTAwMzUxNTJaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi1gCAQAwCgIBAAICHvwCAf8wBwIBAAICETcwCgIFAOVc3NgC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQCbF/Q1IJzqUwQBkXn+GjUxZzVN -# O+9p1fpL7W8dEy9/m1L7dl968KiYqfO5rekvXeSUDTFYrkS/r0w8p2ZZ7d0TMtJt -# TrKmc85aRmxtSvCNAS2stE2sS2Y5np5+/02w3DDn3Nni6vvF8nsuiIlbiyHrGQrC -# 9eis1rpLSNvXisSYoDGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABibS/hjCEHEuPAAEAAAGJMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIM9O -# ao85t+tQMGnb/NodpJQMwx5JXiYYilGmLk9FSvn+MIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgZndHMdxQV1VsbpWHOTHqWEycvcRJm7cY69l/UmT8j0UwgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYm0v4YwhBxL -# jwABAAABiTAiBCCErc3WAJDL+6+RTcx4qvTV2Dv0bP6a0jmZjnUp3u9sbzANBgkq -# hkiG9w0BAQsFAASCAgCzngLNnPmqawyfurGD6pabQJgWV4nP5zle9pu9tx4c1pTi -# SKAeREqAeOs5Bcg46nHpP+Flb+4BQ68zc2JUv1p1P7OlmpKshGEd1Sgpj0izHI8E -# JW8lmMXuRudxbw/761rpDKViWtWQ1lzxhyDeqJw1tiGIAcbX7P26zcoC+jp19GlY -# DaXcIJDZM/u5UUKDtKNSBIvTX+UDfuAEAwmH37GcuHTnvm1txdDZF2DNEn9Jzj7y -# TvHglap7FeMIvo/Um4cLq8xdSJxOYbGGQ5qCdc6vIGXC8HebpR3bIPxldyKDPdpd -# LdvDD0k+rnDHmMsmgQuihIG8rDiadJ/7YtexaDNm4aYRa8PD5SabeUwi94eYZ4a7 -# 25ZkBy6FQAY13i0RgSRicx2Ryowd0Hg0DWSAfHSJc5CnL7qWNTOhwvX7wEUGbe/0 -# 1GZR+ZYiJRO83/lQAEurvVJuEZ3dKTpeJB4FOP6oIc76pL3GvW9XINxo49WiIbzl -# YEToH4oTa5F5vUCvF2Wa5tDlpa60LFSJDP1VyWCYPP+sflKLkYvG3PmXSYYbCprL -# yS0rypa9ACBp7Q2rZTa1s3j7jtNa3Fa5RZ9gAulFkUVVZ+F0Pm7aUvnRAf54+Ri6 -# aoF9G+flQpzZn8nYCRFfiqcQ9wKPA6lZBGEqzGBLAZqzsmmrSgcwVjdN6ZwqYg== -# SIG # End signature block diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 deleted file mode 100644 index 927c504..0000000 --- a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 +++ /dev/null @@ -1,248 +0,0 @@ -@{ -GUID = "1DA87E53-152B-403E-98DC-74D7B4D63D59" -Author = "PowerShell" -CompanyName = "Microsoft Corporation" -Copyright = "Copyright (c) Microsoft Corporation." -ModuleVersion = "7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion = "3.0" -CmdletsToExport = @( - 'Export-Alias', 'Get-Alias', 'Import-Alias', 'New-Alias', 'Remove-Alias', 'Set-Alias', 'Export-Clixml', 'Import-Clixml', - 'Measure-Command', 'Trace-Command', 'ConvertFrom-Csv', 'ConvertTo-Csv', 'Export-Csv', 'Import-Csv', 'Get-Culture', - 'Format-Custom', 'Get-Date', 'Set-Date', 'Write-Debug', 'Wait-Debugger', 'Register-EngineEvent', 'Write-Error', - 'Get-Event', 'New-Event', 'Remove-Event', 'Unregister-Event', 'Wait-Event', 'Get-EventSubscriber', 'Invoke-Expression', - 'Out-File', 'Unblock-File', 'Get-FileHash', 'Export-FormatData', 'Get-FormatData', 'Update-FormatData', 'New-Guid', - 'Format-Hex', 'Get-Host', 'Read-Host', 'Write-Host', 'ConvertTo-Html', 'Write-Information', 'ConvertFrom-Json', - 'ConvertTo-Json', 'Test-Json', 'Format-List', 'Import-LocalizedData', 'Send-MailMessage', 'ConvertFrom-Markdown', - 'Show-Markdown', 'Get-MarkdownOption', 'Set-MarkdownOption', 'Add-Member', 'Get-Member', 'Compare-Object', 'Group-Object', - 'Measure-Object', 'New-Object', 'Select-Object', 'Sort-Object', 'Tee-Object', 'Register-ObjectEvent', 'Write-Output', - 'Import-PowerShellDataFile', 'Write-Progress', 'Disable-PSBreakpoint', 'Enable-PSBreakpoint', 'Get-PSBreakpoint', - 'Remove-PSBreakpoint', 'Set-PSBreakpoint', 'Get-PSCallStack', 'Export-PSSession', 'Import-PSSession', 'Get-Random', - 'Invoke-RestMethod', 'Debug-Runspace', 'Get-Runspace', 'Disable-RunspaceDebug', 'Enable-RunspaceDebug', - 'Get-RunspaceDebug', 'ConvertFrom-SddlString', 'Start-Sleep', 'Join-String', 'Out-String', 'Select-String', - 'ConvertFrom-StringData', 'Format-Table', 'New-TemporaryFile', 'New-TimeSpan', 'Get-TraceSource', 'Set-TraceSource', - 'Add-Type', 'Get-TypeData', 'Remove-TypeData', 'Update-TypeData', 'Get-UICulture', 'Get-Unique', 'Get-Uptime', - 'Clear-Variable', 'Get-Variable', 'New-Variable', 'Remove-Variable', 'Set-Variable', 'Get-Verb', 'Write-Verbose', - 'Write-Warning', 'Invoke-WebRequest', 'Format-Wide', 'ConvertTo-Xml', 'Select-Xml', 'Get-Error', 'Update-List', - 'Out-GridView', 'Show-Command', 'Out-Printer' -) -FunctionsToExport = @() -AliasesToExport = @('fhx') -NestedModules = @("Microsoft.PowerShell.Commands.Utility.dll") -HelpInfoURI = 'https://aka.ms/powershell72-help' -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCBA95ukw/cTrslZ -# 8GEROXuMEYH1RJd2ZOe5U1EPFSWVsaCCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgqoEvsipU -# dEXkK33kvZSyP9Cx3IROdWp1ndiqGNS27hEwQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQBHzboagxcQ8L50vNYxDsscrvzcGeLtxdwkaQTW10v2 -# aTPJXDVIFjRwioUbqfGvtBDaq9QFgLBcV3qb5zGL0K33nlBa4+dK0AgYlbbkpnSp -# l9l3tTHoSRiKtFdmpIpsRQPXGZ5c6iGkicQNtX/D2c6SBQ++qayvldFZcU16y/4C -# IUzeFA8TYMYRJnGQRC7BG1xqAWztt+WIUGlO5kQOnuNYczbq/zvBrT5nBRwhqcQQ -# YzJRwkNf2F+G88rnBESxNxegRusbUX+v3bwsa6uxxLpSeqSDD3JasgCzS1eaTBYn -# NXGeHxHdweiG14ABsGjSbxT+wtB6eeNj0ymmsYJdm7ApoYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIIEUntqZM075d/Xv5VtLazUG/C8XTr8E5AIBTLPG -# 2f+4AgZhlV5AOGMYEzIwMjExMjA4MjEwNDE0LjMzOFowBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046M0JENC00QjgwLTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYm0v4YwhBxL -# jwABAAABiTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3NDFaFw0yMzAxMjYxOTI3NDFaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjNCRDQtNEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvQZXxZFm -# a6plmuOyvNpV8xONOwcYolZG/BjyZWGSk5JOGaLyrKId5VxVHWHlsmJE4Svnzsdp -# sKmVx8otONveIUFvSceEZp8VXmu5m1fu8L7c+3lwXcibjccqtEvtQslokQVx0r+L -# 54abrNDarwFG73IaRidIS1i9c+unJ8oYyhDRLrCysFAVxyQhPNZkWK7Z8/VGukaK -# LAWHXCh/+R53h42gFL+9/mAALxzCXXuofi8f/XKCm7xNwVc1hONCCz6oq94AufzV -# NkkIW4brUQgYpCcJm9U0XNmQvtropYDn9UtY8YQ0NKenXPtdgLHdQ8Nnv3igErKL -# rWI0a5n5jjdKfwk+8mvakqdZmlOseeOS1XspQNJAK1uZllAITcnQZOcO5ofjOQ33 -# ujWckAXdz+/x3o7l4AU/TSOMzGZMwhUdtVwC3dSbItpSVFgnjM2COEJ9zgCadvOi -# rGDLN471jZI2jClkjsJTdgPk343TQA4JFvds/unZq0uLr+niZ3X44OBx2x+gVlln -# 2c4UbZXNueA4yS1TJGbbJFIILAmTUA9Auj5eISGTbNiyWx79HnCOTar39QEKozm4 -# LnTmDXy0/KI/H/nYZGKuTHfckP28wQS06rD+fDS5xLwcRMCW92DkHXmtbhGyRilB -# OL5LxZelQfxt54wl4WUC0AdAEolPekODwO8CAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBSXbx+zR1p4IIAeguA6rHKkrfl7UDAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQCOtLdpWUI4KwfLLrfaKrLB92Dq -# bAspGWM41TaO4Jl+sHxPo522uu3GKQCjmkRWreHtlfyy9kOk7LWax3k3ke8Gtfet -# fbh7qH0LeV2XOWg39BOnHf6mTcZq7FYSZZch1JDQjc98+Odlow+oWih0Dbt4CV/e -# 19ZcE+1n1zzWkskUEd0f5jPIUis33p+vkY8szduAtCcIcPFUhI8Hb5alPUAPMjGz -# wKb7NIKbnf8j8cP18As5IveckF0oh1cw63RY/vPK62LDYdpi7WnG2ObvngfWVKtw -# iwTI4jHj2cO9q37HDe/PPl216gSpUZh0ap24mKmMDfcKp1N4mEdsxz4oseOrPYeF -# sHHWJFJ6Aivvqn70KTeJpp5r+DxSqbeSy0mxIUOq/lAaUxgNSQVUX26t8r+fciko -# fKv23WHrtRV3t7rVTsB9YzrRaiikmz68K5HWdt9MqULxPQPo+ppZ0LRqkOae466+ -# UKRY0JxWtdrMc5vHlHZfnqjawj/RsM2S6Q6fa9T9CnY1Nz7DYBG3yZJyCPFsrgU0 -# 5s9ljqfsSptpFdUh9R4ce+L71SWDLM2x/1MFLLHAMbXsEp8KloEGtaDULnxtfS2t -# YhfuKGqRXoEfDPAMnIdTvQPh3GHQ4SjkkBARHL0MY75alhGTKHWjC2aLVOo8obKI -# Bk8hfnFDUf/EyVw4uTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0JENC00Qjgw -# LTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVACGlCa3ketyeuey7bJNpWkMuiCcQoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tYMCIY -# DzIwMjExMjA5MDM1MTUyWhgPMjAyMTEyMTAwMzUxNTJaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi1gCAQAwCgIBAAICHvwCAf8wBwIBAAICETcwCgIFAOVc3NgC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQCbF/Q1IJzqUwQBkXn+GjUxZzVN -# O+9p1fpL7W8dEy9/m1L7dl968KiYqfO5rekvXeSUDTFYrkS/r0w8p2ZZ7d0TMtJt -# TrKmc85aRmxtSvCNAS2stE2sS2Y5np5+/02w3DDn3Nni6vvF8nsuiIlbiyHrGQrC -# 9eis1rpLSNvXisSYoDGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABibS/hjCEHEuPAAEAAAGJMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEINjr -# jaYjHvF5zcuiSPmsJnfGwWcQHYP/2CYeqIoTLbM/MIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgZndHMdxQV1VsbpWHOTHqWEycvcRJm7cY69l/UmT8j0UwgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYm0v4YwhBxL -# jwABAAABiTAiBCCErc3WAJDL+6+RTcx4qvTV2Dv0bP6a0jmZjnUp3u9sbzANBgkq -# hkiG9w0BAQsFAASCAgBlISYxvNqg3TVBqRooVDAWRo+EMXUl4mBMwOvnI755iHjz -# ksXBl+FBaJdTbgfrrbkqVuTFgjnA7/1hzx8FuYRnz7aS7yWbUamn2DKeVHfcmL4w -# luTTDqklOtM/LNUOi2iRHQHG2+bi8OvJIavShvbjjv9telA3MY+ONzP+2t7H2ESf -# 7Sht+eH7Il5Wc9p2QB1o2iMaRK+TZoE1petI8ZxSJn0F6rFdBGIOI1mhNaZTZGuk -# UVAe9v6kd5k9BQZ1mfLCVf+A86Ul66fvrwAtETiuFMWYQhbnRWRLElWVUA/3zIS4 -# MVVyPlFjINt2m980WlIgHkt+K+cSbEtIUZ4Scpt/Tf9K0Kd2PEV+2z5n7xbwDPhy -# uczGyZm+0/NH6HDWrr74wX7+UJQzHGU7cP6yIDk/MJF5+E6ahKx6XfJYB2TK28qi -# K0g2HqkFhgS6zvnoNZNpWd28UKH9TLZIyWY9I7jKEMxP6jLzPugPYsL8pxvJLsAI -# /vn5Go+lLdNHUykJgB2ChUKsm3x1aUrSpGiW8UJ5xUiJ5RB1nFfUv0AWHcouYl92 -# FJhWIn3qaZExP6R7NijbAMyoYChcDgPrOGseESmfGZuVFbhE7gMai1VIRCLnmBoK -# Der+JOgsWW/eHU9nN5uuyP6uqtP01F5eayK++qjH+B9xQAJNq79RVXVvyaNZlw== -# SIG # End signature block diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1 b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1 deleted file mode 100644 index a370f4c..0000000 --- a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1 +++ /dev/null @@ -1,230 +0,0 @@ -@{ -GUID="766204A6-330E-4263-A7AB-46C87AFC366C" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -FunctionsToExport = @() -CmdletsToExport="Disable-WSManCredSSP", "Enable-WSManCredSSP", "Get-WSManCredSSP", "Set-WSManQuickConfig", "Test-WSMan", "Invoke-WSManAction", "Connect-WSMan", "Disconnect-WSMan", "Get-WSManInstance", "Set-WSManInstance", "Remove-WSManInstance", "New-WSManInstance", "New-WSManSessionOption" -AliasesToExport = @() -NestedModules="Microsoft.WSMan.Management.dll" -FormatsToProcess="WSMan.format.ps1xml" -HelpInfoURI = 'https://aka.ms/powershell72-help' -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCB+Ujs/uIRQu9NJ -# wrRJEY/iIf48rrMaCNk+CtkIzIqDVqCCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgypxuMQwq -# 1eGPEmRm52ViV1FEshB3MTFlVOkKoUKOQmgwQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQBwQLkeEMe+dK/nBzeh5yKFRrxpey/F+58vzZS97hfh -# rOZPhi6B29T/8kJqtTW8EVhdy+XNARi5JYKvFt6cO1TFJlb9H6ncq7TAYPV6ue/R -# 1CmnXltjWiRYZAibhN3Y7Yq+pnqIskQb8LI499I2Sg8JLuvRXBYqUb6F4wZ/vgH2 -# Vz/dHRgonqNkI94s5mOFXG0TX3/JzQD+xj3NWFNeOUCLsQQ0k7EA2pcF9odFgyNS -# QY0KGk3Bu+KcQUxmPdbgtIoM1ebLvINLR3mpD6xeWuusLS2NXX/7x3otBPyC17R2 -# hjh5a4lKYQH16inEdSg6jGkMXymnKOPRAmXZnFI9FET1oYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIGqYa00kDq7cefzR97imqg4FhBGef4q3IvGpky5C -# NPnvAgZhlV5AOG4YEzIwMjExMjA4MjEwNDE0LjYwN1owBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046M0JENC00QjgwLTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYm0v4YwhBxL -# jwABAAABiTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3NDFaFw0yMzAxMjYxOTI3NDFaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjNCRDQtNEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvQZXxZFm -# a6plmuOyvNpV8xONOwcYolZG/BjyZWGSk5JOGaLyrKId5VxVHWHlsmJE4Svnzsdp -# sKmVx8otONveIUFvSceEZp8VXmu5m1fu8L7c+3lwXcibjccqtEvtQslokQVx0r+L -# 54abrNDarwFG73IaRidIS1i9c+unJ8oYyhDRLrCysFAVxyQhPNZkWK7Z8/VGukaK -# LAWHXCh/+R53h42gFL+9/mAALxzCXXuofi8f/XKCm7xNwVc1hONCCz6oq94AufzV -# NkkIW4brUQgYpCcJm9U0XNmQvtropYDn9UtY8YQ0NKenXPtdgLHdQ8Nnv3igErKL -# rWI0a5n5jjdKfwk+8mvakqdZmlOseeOS1XspQNJAK1uZllAITcnQZOcO5ofjOQ33 -# ujWckAXdz+/x3o7l4AU/TSOMzGZMwhUdtVwC3dSbItpSVFgnjM2COEJ9zgCadvOi -# rGDLN471jZI2jClkjsJTdgPk343TQA4JFvds/unZq0uLr+niZ3X44OBx2x+gVlln -# 2c4UbZXNueA4yS1TJGbbJFIILAmTUA9Auj5eISGTbNiyWx79HnCOTar39QEKozm4 -# LnTmDXy0/KI/H/nYZGKuTHfckP28wQS06rD+fDS5xLwcRMCW92DkHXmtbhGyRilB -# OL5LxZelQfxt54wl4WUC0AdAEolPekODwO8CAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBSXbx+zR1p4IIAeguA6rHKkrfl7UDAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQCOtLdpWUI4KwfLLrfaKrLB92Dq -# bAspGWM41TaO4Jl+sHxPo522uu3GKQCjmkRWreHtlfyy9kOk7LWax3k3ke8Gtfet -# fbh7qH0LeV2XOWg39BOnHf6mTcZq7FYSZZch1JDQjc98+Odlow+oWih0Dbt4CV/e -# 19ZcE+1n1zzWkskUEd0f5jPIUis33p+vkY8szduAtCcIcPFUhI8Hb5alPUAPMjGz -# wKb7NIKbnf8j8cP18As5IveckF0oh1cw63RY/vPK62LDYdpi7WnG2ObvngfWVKtw -# iwTI4jHj2cO9q37HDe/PPl216gSpUZh0ap24mKmMDfcKp1N4mEdsxz4oseOrPYeF -# sHHWJFJ6Aivvqn70KTeJpp5r+DxSqbeSy0mxIUOq/lAaUxgNSQVUX26t8r+fciko -# fKv23WHrtRV3t7rVTsB9YzrRaiikmz68K5HWdt9MqULxPQPo+ppZ0LRqkOae466+ -# UKRY0JxWtdrMc5vHlHZfnqjawj/RsM2S6Q6fa9T9CnY1Nz7DYBG3yZJyCPFsrgU0 -# 5s9ljqfsSptpFdUh9R4ce+L71SWDLM2x/1MFLLHAMbXsEp8KloEGtaDULnxtfS2t -# YhfuKGqRXoEfDPAMnIdTvQPh3GHQ4SjkkBARHL0MY75alhGTKHWjC2aLVOo8obKI -# Bk8hfnFDUf/EyVw4uTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0JENC00Qjgw -# LTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVACGlCa3ketyeuey7bJNpWkMuiCcQoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tYMCIY -# DzIwMjExMjA5MDM1MTUyWhgPMjAyMTEyMTAwMzUxNTJaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi1gCAQAwCgIBAAICHvwCAf8wBwIBAAICETcwCgIFAOVc3NgC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQCbF/Q1IJzqUwQBkXn+GjUxZzVN -# O+9p1fpL7W8dEy9/m1L7dl968KiYqfO5rekvXeSUDTFYrkS/r0w8p2ZZ7d0TMtJt -# TrKmc85aRmxtSvCNAS2stE2sS2Y5np5+/02w3DDn3Nni6vvF8nsuiIlbiyHrGQrC -# 9eis1rpLSNvXisSYoDGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABibS/hjCEHEuPAAEAAAGJMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIN1F -# wmeehZy4wMNXqLnULVbk4oVsB3cWo9ryHOQxmYoPMIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgZndHMdxQV1VsbpWHOTHqWEycvcRJm7cY69l/UmT8j0UwgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYm0v4YwhBxL -# jwABAAABiTAiBCCErc3WAJDL+6+RTcx4qvTV2Dv0bP6a0jmZjnUp3u9sbzANBgkq -# hkiG9w0BAQsFAASCAgAWjRg7KzoR7Kd4cPnoMh490c1gOoabocbdzphBISFn24S4 -# Nomokt8QSkLypqSgMe0FQyCku8urnNIhX6CA1FObkCe+DFM9FFaOHNY3Lqv4oVGW -# O2nCjMXPxj8FMZM7UyZB11zPMhPHaleWP0UQPuqEf/d6V8vbh23OyZ9RfYUKft+m -# zKsR+gnqKtrmAuqLSrwoo/6JvgchTRqV+ODeDc1l3JfbhQW+6hFryB3RSAau+Msg -# n/QwOqIYCYJl/t7kV/Ze7WF97Kc294zbuRT4LTMccfms19oeACHoZpU2H7JWSEZn -# MTMnaEVlM+9ylAgC4wxiEsXlJCI5K167HTpkfR3/9/4hJo+5Pmacd0HQjpP6zDqw -# a8sveaOAmaI0eRC6ByG00sBwPmbRTRvDA4Dc2b3bKqINgkZpM7/NFmclkho4jvF0 -# XJ4jk/Ul2rvaQtTrWY0ZCITR79XpLpRZMukTFTybSZrE+bERy3eK/KNee4Wbt6wz -# 86sci4DvgqPc1nBsX0Y5iWhiPA2I9rXH36iH7ZI7D/I4+0qEWLxfsLNTUthwb8Zg -# 1ukHkIyEk14gOar+Exf4MRZ8slf1518X2zoCj6ZeYfXB8pRz/+N7w8rEtbKCjX+U -# dyI16Oy8vNwWWZRdoG6e2rMmvDDSTz34db1DymXU+a92+q/qcwFAkl1dPVTn5Q== -# SIG # End signature block diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml deleted file mode 100644 index 8907c23..0000000 --- a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml +++ /dev/null @@ -1,451 +0,0 @@ - - - - - - - System.Xml.XmlElement#http://schemas.dmtf.org/wbem/wsman/identity/1/wsmanidentity.xsd#IdentifyResponse - - System.Xml.XmlElement#http://schemas.dmtf.org/wbem/wsman/identity/1/wsmanidentity.xsd#IdentifyResponse - - - - - - - wsmid - - - ProtocolVersion - - - ProductVendor - - - ProductVersion - - - - - - - - Microsoft.WSMan.Management.WSManConfigElement - - Microsoft.WSMan.Management.WSManConfigElement - - - PSParentPath - - - - - - - 15 - - - - 30 - - - - - - - TypeNameOfElement - - - Name - - - - - - - - Microsoft.WSMan.Management.WSManConfigContainerElement - - Microsoft.WSMan.Management.WSManConfigContainerElement - - - PSParentPath - - - - - - - 15 - - - - 35 - - - - - - - - - - TypeNameOfElement - - - Keys - - - Name - - - - - - - - Microsoft.WSMan.Management.WSManConfigLeafElement - - Microsoft.WSMan.Management.WSManConfigLeafElement - - - PSParentPath - - - - - - - 15 - - - - 30 - - - - 15 - - - - - - - - - - TypeNameOfElement - - - Name - - - SourceOfValue - - - Value - - - - - - - - Microsoft.WSMan.Management.WSManConfigLeafElement#InitParams - - Microsoft.WSMan.Management.WSManConfigLeafElement#InitParams - - - PSParentPath - - - - - - - 30 - - - - 20 - - - - - - - Name - - - Value - - - - - - - - Microsoft.WSMan.Management.WSManConfigContainerElement#ComputerLevel - - Microsoft.WSMan.Management.WSManConfigContainerElement#ComputerLevel - - - PSParentPath - - - - - - - 45 - - - - 20 - - - - - - - Name - - - TypeNameOfElement - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psd1 b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psd1 deleted file mode 100644 index 626dc3a..0000000 --- a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psd1 +++ /dev/null @@ -1,207 +0,0 @@ -@{ - GUID="c61d6278-02a3-4618-ae37-a524d40a7f44 " - Author="PowerShell" - CompanyName="Microsoft Corporation" - Copyright="Copyright (c) Microsoft Corporation." - ModuleVersion="7.0.0.0" - CompatiblePSEditions = @("Core") - PowerShellVersion="3.0" - ModuleToProcess="PSDiagnostics.psm1" - FunctionsToExport="Disable-PSTrace","Disable-PSWSManCombinedTrace","Disable-WSManTrace","Enable-PSTrace","Enable-PSWSManCombinedTrace","Enable-WSManTrace","Get-LogProperties","Set-LogProperties","Start-Trace","Stop-Trace" - CmdletsToExport = @() - AliasesToExport = @() - HelpInfoUri="https://aka.ms/powershell72-help" -} - -# SIG # Begin signature block -# MIIjkQYJKoZIhvcNAQcCoIIjgjCCI34CAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCD/dfsIexbywzf4 -# vgDANLKxbLCeK+0wW4ZnFQP22V0sXqCCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIVZjCCFWICAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgoT0Qfn6u -# IFQn6DGWcQzw34/4HzFrnEYbuu3YQlqVoaQwQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQCt/xkRVxP7BXqiUQi+IuzI0bokgJJBF15CLUb5UcOl -# ojrCl4Rx34i0hAAoWt5uOvUG37LQEGnKm5DEgRwG5d+R8SHjAZxk83VzPAg9c7S/ -# GLe8AdcLJ4L5rjGb5YReU+eIPGNvrcZu8JYN2dlBO1nY6axLwonRTpQj43J7wrWd -# InSCbV8CnUfK4/lgftJ5P7SCNLe7Enjv8dQOahg3B4BMReQxHm/SZWgSGb8t++wI -# ZWCw6sRh+XjE63P3VzhAp8Z8KOR3TSCE4Bt5tfy8xDbmePlVrK3GKoVVq4RkVn96 -# 4TRCHvs3RZTQm57yJ2NplI10zIqZz2geZRns5nVGDHcYoYIS8DCCEuwGCisGAQQB -# gjcDAwExghLcMIIS2AYJKoZIhvcNAQcCoIISyTCCEsUCAQMxDzANBglghkgBZQME -# AgEFADCCAVQGCyqGSIb3DQEJEAEEoIIBQwSCAT8wggE7AgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIG5NKJe+omftR+S4BYKgAMTO7Tl6rem9xPJkoE7D -# yZYZAgZhk97zjjgYEjIwMjExMjA4MjEwNDE0Ljg2WjAEgAIB9KCB1KSB0TCBzjEL -# MAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1v -# bmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEpMCcGA1UECxMgTWlj -# cm9zb2Z0IE9wZXJhdGlvbnMgUHVlcnRvIFJpY28xJjAkBgNVBAsTHVRoYWxlcyBU -# U1MgRVNOOjMyQkQtRTNENS0zQjFEMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1T -# dGFtcCBTZXJ2aWNloIIORDCCBPUwggPdoAMCAQICEzMAAAFi0P4C8wHlzUkAAAAA -# AWIwDQYJKoZIhvcNAQELBQAwfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hp -# bmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jw -# b3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAw -# HhcNMjEwMTE0MTkwMjIyWhcNMjIwNDExMTkwMjIyWjCBzjELMAkGA1UEBhMCVVMx -# EzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoT -# FU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEpMCcGA1UECxMgTWljcm9zb2Z0IE9wZXJh -# dGlvbnMgUHVlcnRvIFJpY28xJjAkBgNVBAsTHVRoYWxlcyBUU1MgRVNOOjMyQkQt -# RTNENS0zQjFEMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNl -# MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA74ah1Pa5wvcyvYNCy/YQ -# s1tK8rIGlh1Qq1QFaJmYVXLXykb+m5yCStzmL227wJjsalZX8JA2YcbaZV5Icwm9 -# vAJz8AC/sk/dsUK3pmDvkhtVI04YDV6otuZCILpQB9Ipcs3d0e1Dl2KKFvdibOk0 -# /0rRxU9l+/Yxeb5lVTRERLxzI+Rd6Xv5QQYT6Sp2IE0N1vzIFd3yyO773T5XifNg -# L5lZbtIUnYUVmUBKlVoemO/54aiFeVBpIG+YzhDTF7cuHNAzxWIbP1wt4VIqAV9J -# juqLMvvBSD56pi8NTKM9fxrERAeaTS2HbfBYfmnRZ27Czjeo0ijQ5DSZGi0ErvWf -# KQIDAQABo4IBGzCCARcwHQYDVR0OBBYEFMvEShFgSkO3OnzgHlaVk3aQ/iprMB8G -# A1UdIwQYMBaAFNVjOlyKMZDzQ3t8RhvFM2hahW1VMFYGA1UdHwRPME0wS6BJoEeG -# RWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Rp -# bVN0YVBDQV8yMDEwLTA3LTAxLmNybDBaBggrBgEFBQcBAQROMEwwSgYIKwYBBQUH -# MAKGPmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljVGltU3Rh -# UENBXzIwMTAtMDctMDEuY3J0MAwGA1UdEwEB/wQCMAAwEwYDVR0lBAwwCgYIKwYB -# BQUHAwgwDQYJKoZIhvcNAQELBQADggEBAC1BrcOhdhtb9xcAJtxVIUZ7iALwZewX -# FIdPcmDAVT810k5xuRwVNW9Onq+WZO8ebqwiOSdEEHReLU0FOo/DbS7q79PsKdz/ -# PSBPqZ/1ysjRVH0L5HUK2N7NgpkR1lnt+41BaOzJ+00OFDL5GqeqvK3RWh7MtqWF -# 6KKcfNkP/hjiFlg9/S7xNK/Vl8q10HB5YbdBTQun8j1Jsih6YMb3tFQsxw++ra5+ -# FSnc4yJhAYvVaqTKRKepEmwzYhwDiXh2ag80/p0uDkOvs1WhgogwidpBVmNLAMxm -# FavK9+LNfRKvPIuCQw+EsxWR8vFBBJDfs14WTsXVF94CQ1YCHqYI5EEwggZxMIIE -# WaADAgECAgphCYEqAAAAAAACMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJV -# UzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UE -# ChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9v -# dCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgMjAxMDAeFw0xMDA3MDEyMTM2NTVaFw0y -# NTA3MDEyMTQ2NTVaMHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9u -# MRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRp -# b24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwMIIBIjAN -# BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqR0NvHcRijog7PwTl/X6f2mUa3RU -# ENWlCgCChfvtfGhLLF/Fw+Vhwna3PmYrW/AVUycEMR9BGxqVHc4JE458YTBZsTBE -# D/FgiIRUQwzXTbg4CLNC3ZOs1nMwVyaCo0UN0Or1R4HNvyRgMlhgRvJYR4YyhB50 -# YWeRX4FUsc+TTJLBxKZd0WETbijGGvmGgLvfYfxGwScdJGcSchohiq9LZIlQYrFd -# /XcfPfBXday9ikJNQFHRD5wGPmd/9WbAA5ZEfu/QS/1u5ZrKsajyeioKMfDaTgaR -# togINeh4HLDpmc085y9Euqf03GS9pAHBIAmTeM38vMDJRF1eFpwBBU8iTQIDAQAB -# o4IB5jCCAeIwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFNVjOlyKMZDzQ3t8 -# RhvFM2hahW1VMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB -# hjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFNX2VsuP6KJcYmjRPZSQW9fO -# mhjEMFYGA1UdHwRPME0wS6BJoEeGRWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w -# a2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNybDBaBggr -# BgEFBQcBAQROMEwwSgYIKwYBBQUHMAKGPmh0dHA6Ly93d3cubWljcm9zb2Z0LmNv -# bS9wa2kvY2VydHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYtMjMuY3J0MIGgBgNVHSAB -# Af8EgZUwgZIwgY8GCSsGAQQBgjcuAzCBgTA9BggrBgEFBQcCARYxaHR0cDovL3d3 -# dy5taWNyb3NvZnQuY29tL1BLSS9kb2NzL0NQUy9kZWZhdWx0Lmh0bTBABggrBgEF -# BQcCAjA0HjIgHQBMAGUAZwBhAGwAXwBQAG8AbABpAGMAeQBfAFMAdABhAHQAZQBt -# AGUAbgB0AC4gHTANBgkqhkiG9w0BAQsFAAOCAgEAB+aIUQ3ixuCYP4FxAz2do6Eh -# b7Prpsz1Mb7PBeKp/vpXbRkws8LFZslq3/Xn8Hi9x6ieJeP5vO1rVFcIK1GCRBL7 -# uVOMzPRgEop2zEBAQZvcXBf/XPleFzWYJFZLdO9CEMivv3/Gf/I3fVo/HPKZeUqR -# UgCvOA8X9S95gWXZqbVr5MfO9sp6AG9LMEQkIjzP7QOllo9ZKby2/QThcJ8ySif9 -# Va8v/rbljjO7Yl+a21dA6fHOmWaQjP9qYn/dxUoLkSbiOewZSnFjnXshbcOco6I8 -# +n99lmqQeKZt0uGc+R38ONiU9MalCpaGpL2eGq4EQoO4tYCbIjggtSXlZOz39L9+ -# Y1klD3ouOVd2onGqBooPiRa6YacRy5rYDkeagMXQzafQ732D8OE7cQnfXXSYIghh -# 2rBQHm+98eEA3+cxB6STOvdlR3jo+KhIq/fecn5ha293qYHLpwmsObvsxsvYgrRy -# zR30uIUBHoD7G4kqVDmyW9rIDVWZeodzOwjmmC3qjeAzLhIp9cAvVCch98isTtoo -# uLGp25ayp0Kiyc8ZQU3ghvkqmqMRZjDTu3QyS99je/WZii8bxyGvWbWu3EQ8l1Bx -# 16HSxVXjad5XwdHeMMD9zOZN+w2/XU/pnR4ZOC+8z1gFLu8NoFA12u8JJxzVs341 -# Hgi62jbb01+P3nSISRKhggLSMIICOwIBATCB/KGB1KSB0TCBzjELMAkGA1UEBhMC -# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV -# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEpMCcGA1UECxMgTWljcm9zb2Z0IE9w -# ZXJhdGlvbnMgUHVlcnRvIFJpY28xJjAkBgNVBAsTHVRoYWxlcyBUU1MgRVNOOjMy -# QkQtRTNENS0zQjFEMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2 -# aWNloiMKAQEwBwYFKw4DAhoDFQCas/oKGtvPRrHuznufk+indULyDKCBgzCBgKR+ -# MHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMT -# HU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwMA0GCSqGSIb3DQEBBQUAAgUA -# 5Vtd4DAiGA8yMDIxMTIwODIwMzc1MloYDzIwMjExMjA5MjAzNzUyWjB3MD0GCisG -# AQQBhFkKBAExLzAtMAoCBQDlW13gAgEAMAoCAQACAiXlAgH/MAcCAQACAhIPMAoC -# BQDlXK9gAgEAMDYGCisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEA -# AgMHoSChCjAIAgEAAgMBhqAwDQYJKoZIhvcNAQEFBQADgYEAM2SMFWUY36bc2OtE -# Rp28goB1/JaCRplwIWPeW6MSG1c3i2g4X2GIc4vvRrc834fuuJ+Qm07NFeRHQA61 -# lJAHbTlZBMdkDILSVP+20NGOy6B3k5K1WMfGN0Et9EQJpvfEJaB2F4d+LCCNd/MM -# dXEvG2iFxgW3C4TCWZENGlxsa5ExggMNMIIDCQIBATCBkzB8MQswCQYDVQQGEwJV -# UzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UE -# ChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGlt -# ZS1TdGFtcCBQQ0EgMjAxMAITMwAAAWLQ/gLzAeXNSQAAAAABYjANBglghkgBZQME -# AgEFAKCCAUowGgYJKoZIhvcNAQkDMQ0GCyqGSIb3DQEJEAEEMC8GCSqGSIb3DQEJ -# BDEiBCB66+Xkbn3ewO+BRQNGeKLsT3CZTxRw6oyH+Hqt0XKBjzCB+gYLKoZIhvcN -# AQkQAi8xgeowgecwgeQwgb0EIIqqGJX7PA0OulTsNEHsyLnvGLoYE1iwaOBmqrap -# UwoyMIGYMIGApH4wfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24x -# EDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlv -# bjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTACEzMAAAFi -# 0P4C8wHlzUkAAAAAAWIwIgQgPmj2PBaeW66dmUvg/M3GbG9dSU9ROIZo6V1zy7iW -# 604wDQYJKoZIhvcNAQELBQAEggEA6MvaPUzarjssGW9T9f6ohr8y3PWDaJKtB/jB -# siPN63Ektk0b2P1aJLd+FV3f3m4dq25TfYZEIliZtog2M9YOce/24reMnhBbyWwO -# tVGurL4kJQ2+z3qsASFQvZxc4O2NVFQDyyued5Y4+imuQGM3u4TOo5DSTCsvqw89 -# P5J99wB5W9hifpU65qjBROE+LNY6aMF0bIGeDbqb0m9cPe8JE2gZN+SMQQ9kzTUm -# eLAuoyvdm6wGrsx8/xgC2XFHA47DLev3lgUfx6FczxiRna/aI6Y8oqY+Z/R5Vd/L -# vZwZYPSInN7G2gVwJV9/VzLkLQ5hjDJrDMAyZ1smJnQAdnVlLg== -# SIG # End signature block diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psm1 b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psm1 deleted file mode 100644 index f4c16f0..0000000 --- a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psm1 +++ /dev/null @@ -1,663 +0,0 @@ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. - -<# - PowerShell Diagnostics Module - This module contains a set of wrapper scripts that - enable a user to use ETW tracing in Windows - PowerShell. - #> - -$script:Logman="$env:windir\system32\logman.exe" -$script:wsmanlogfile = "$env:windir\system32\wsmtraces.log" -$script:wsmprovfile = "$env:windir\system32\wsmtraceproviders.txt" -$script:wsmsession = "wsmlog" -$script:pssession = "PSTrace" -$script:psprovidername="Microsoft-Windows-PowerShell" -$script:wsmprovidername = "Microsoft-Windows-WinRM" -$script:oplog = "/Operational" -$script:analyticlog="/Analytic" -$script:debuglog="/Debug" -$script:wevtutil="$env:windir\system32\wevtutil.exe" -$script:slparam = "sl" -$script:glparam = "gl" - -function Start-Trace -{ - Param( - [Parameter(Mandatory=$true, - Position=0)] - [string] - $SessionName, - [Parameter(Position=1)] - [ValidateNotNullOrEmpty()] - [string] - $OutputFilePath, - [Parameter(Position=2)] - [ValidateNotNullOrEmpty()] - [string] - $ProviderFilePath, - [Parameter()] - [Switch] - $ETS, - [Parameter()] - [ValidateSet("bin", "bincirc", "csv", "tsv", "sql")] - $Format, - [Parameter()] - [int] - $MinBuffers=0, - [Parameter()] - [int] - $MaxBuffers=256, - [Parameter()] - [int] - $BufferSizeInKB = 0, - [Parameter()] - [int] - $MaxLogFileSizeInMB=0 - ) - - Process - { - $executestring = " start $SessionName" - - if ($ETS) - { - $executestring += " -ets" - } - - if ($null -ne $OutputFilePath) - { - $executestring += " -o ""$OutputFilePath""" - } - - if ($null -ne $ProviderFilePath) - { - $executestring += " -pf ""$ProviderFilePath""" - } - - if ($null -ne $Format) - { - $executestring += " -f $Format" - } - - if ($MinBuffers -ne 0 -or $MaxBuffers -ne 256) - { - $executestring += " -nb $MinBuffers $MaxBuffers" - } - - if ($BufferSizeInKB -ne 0) - { - $executestring += " -bs $BufferSizeInKB" - } - - if ($MaxLogFileSizeInMB -ne 0) - { - $executestring += " -max $MaxLogFileSizeInMB" - } - - & $script:Logman $executestring.Split(" ") - } -} - -function Stop-Trace -{ - param( - [Parameter(Mandatory=$true, - Position=0)] - $SessionName, - [Parameter()] - [switch] - $ETS - ) - - Process - { - if ($ETS) - { - & $script:Logman update $SessionName -ets - & $script:Logman stop $SessionName -ets - } - else - { - & $script:Logman update $SessionName - & $script:Logman stop $SessionName - } - } -} - -function Enable-WSManTrace -{ - - # winrm - "{04c6e16d-b99f-4a3a-9b3e-b8325bbc781e} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii - - # winrsmgr - "{c0a36be8-a515-4cfa-b2b6-2676366efff7} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - # WinrsExe - "{f1cab2c0-8beb-4fa2-90e1-8f17e0acdd5d} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - # WinrsCmd - "{03992646-3dfe-4477-80e3-85936ace7abb} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - # IPMIPrv - "{651d672b-e11f-41b7-add3-c2f6a4023672} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - #IpmiDrv - "{D5C6A3E9-FA9C-434e-9653-165B4FC869E4} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - # WSManProvHost - "{6e1b64d7-d3be-4651-90fb-3583af89d7f1} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - # Event Forwarding - "{6FCDF39A-EF67-483D-A661-76D715C6B008} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - Start-Trace -SessionName $script:wsmsession -ETS -OutputFilePath $script:wsmanlogfile -Format bincirc -MinBuffers 16 -MaxBuffers 256 -BufferSizeInKB 64 -MaxLogFileSizeInMB 256 -ProviderFilePath $script:wsmprovfile -} - -function Disable-WSManTrace -{ - Stop-Trace $script:wsmsession -ETS -} - -function Enable-PSWSManCombinedTrace -{ - param ( - [switch] $DoNotOverwriteExistingTrace - ) - - $provfile = [io.path]::GetTempFilename() - - $traceFileName = [string][Guid]::NewGuid() - if ($DoNotOverwriteExistingTrace) { - $fileName = [string][guid]::newguid() - $logfile = $PSHOME + "\\Traces\\PSTrace_$fileName.etl" - } else { - $logfile = $PSHOME + "\\Traces\\PSTrace.etl" - } - - "Microsoft-Windows-PowerShell 0 5" | Out-File $provfile -Encoding ascii - "Microsoft-Windows-WinRM 0 5" | Out-File $provfile -Encoding ascii -Append - - if (!(Test-Path $PSHOME\Traces)) - { - New-Item -ItemType Directory -Force $PSHOME\Traces | Out-Null - } - - if (Test-Path $logfile) - { - Remove-Item -Force $logfile | Out-Null - } - - Start-Trace -SessionName $script:pssession -OutputFilePath $logfile -ProviderFilePath $provfile -ETS - - Remove-Item $provfile -Force -ea 0 -} - -function Disable-PSWSManCombinedTrace -{ - Stop-Trace -SessionName $script:pssession -ETS -} - -function Set-LogProperties -{ - param( - [Parameter(Mandatory=$true, Position=0, ValueFromPipeline=$true)] - [Microsoft.PowerShell.Diagnostics.LogDetails] - $LogDetails, - [switch] $Force - ) - - Process - { - if ($LogDetails.AutoBackup -and !$LogDetails.Retention) - { - throw (New-Object System.InvalidOperationException) - } - - $enabled = $LogDetails.Enabled.ToString() - $retention = $LogDetails.Retention.ToString() - $autobackup = $LogDetails.AutoBackup.ToString() - $maxLogSize = $LogDetails.MaxLogSize.ToString() - $osVersion = [Version] (Get-CimInstance Win32_OperatingSystem).Version - - if (($LogDetails.Type -eq "Analytic") -or ($LogDetails.Type -eq "Debug")) - { - if ($LogDetails.Enabled) - { - if($osVersion -lt 6.3.7600) - { - & $script:wevtutil $script:slparam $LogDetails.Name -e:$Enabled - } - else - { - & $script:wevtutil /q:$Force $script:slparam $LogDetails.Name -e:$Enabled - } - } - else - { - if($osVersion -lt 6.3.7600) - { - & $script:wevtutil $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ms:$MaxLogSize - } - else - { - & $script:wevtutil /q:$Force $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ms:$MaxLogSize - } - } - } - else - { - if($osVersion -lt 6.3.7600) - { - & $script:wevtutil $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ab:$AutoBackup -ms:$MaxLogSize - } - else - { - & $script:wevtutil /q:$Force $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ab:$AutoBackup -ms:$MaxLogSize - } - } - } -} - -function ConvertTo-Bool([string]$value) -{ - if ($value -ieq "true") - { - return $true - } - else - { - return $false - } -} - -function Get-LogProperties -{ - param( - [Parameter(Mandatory=$true, ValueFromPipeline=$true, Position=0)] $Name - ) - - Process - { - $details = & $script:wevtutil $script:glparam $Name - $indexes = @(1,2,8,9,10) - $value = @() - foreach($index in $indexes) - { - $value += @(($details[$index].SubString($details[$index].IndexOf(":")+1)).Trim()) - } - - $enabled = ConvertTo-Bool $value[0] - $retention = ConvertTo-Bool $value[2] - $autobackup = ConvertTo-Bool $value[3] - - New-Object Microsoft.PowerShell.Diagnostics.LogDetails $Name, $enabled, $value[1], $retention, $autobackup, $value[4] - } -} - -function Enable-PSTrace -{ - param( - [switch] $Force, - [switch] $AnalyticOnly - ) - - $Properties = Get-LogProperties ($script:psprovidername + $script:analyticlog) - - if (!$Properties.Enabled) { - $Properties.Enabled = $true - if ($Force) { - Set-LogProperties $Properties -Force - } else { - Set-LogProperties $Properties - } - } - - if (!$AnalyticOnly) { - $Properties = Get-LogProperties ($script:psprovidername + $script:debuglog) - if (!$Properties.Enabled) { - $Properties.Enabled = $true - if ($Force) { - Set-LogProperties $Properties -Force - } else { - Set-LogProperties $Properties - } - } - } -} - -function Disable-PSTrace -{ - param( - [switch] $AnalyticOnly - ) - $Properties = Get-LogProperties ($script:psprovidername + $script:analyticlog) - if ($Properties.Enabled) { - $Properties.Enabled = $false - Set-LogProperties $Properties - } - - if (!$AnalyticOnly) { - $Properties = Get-LogProperties ($script:psprovidername + $script:debuglog) - if ($Properties.Enabled) { - $Properties.Enabled = $false - Set-LogProperties $Properties - } - } -} -Add-Type @" -using System; - -namespace Microsoft.PowerShell.Diagnostics -{ - public class LogDetails - { - public string Name - { - get - { - return name; - } - } - private string name; - - public bool Enabled - { - get - { - return enabled; - } - set - { - enabled = value; - } - } - private bool enabled; - - public string Type - { - get - { - return type; - } - } - private string type; - - public bool Retention - { - get - { - return retention; - } - set - { - retention = value; - } - } - private bool retention; - - public bool AutoBackup - { - get - { - return autoBackup; - } - set - { - autoBackup = value; - } - } - private bool autoBackup; - - public int MaxLogSize - { - get - { - return maxLogSize; - } - set - { - maxLogSize = value; - } - } - private int maxLogSize; - - public LogDetails(string name, bool enabled, string type, bool retention, bool autoBackup, int maxLogSize) - { - this.name = name; - this.enabled = enabled; - this.type = type; - this.retention = retention; - this.autoBackup = autoBackup; - this.maxLogSize = maxLogSize; - } - } -} -"@ - -if (Get-Command logman.exe -Type Application -ErrorAction SilentlyContinue) -{ - Export-ModuleMember Disable-PSTrace, Disable-PSWSManCombinedTrace, Disable-WSManTrace, Enable-PSTrace, Enable-PSWSManCombinedTrace, Enable-WSManTrace, Get-LogProperties, Set-LogProperties, Start-Trace, Stop-Trace -} -else -{ - # Currently we only support these cmdlets as logman.exe is not available on systems like Nano and IoT - Export-ModuleMember Disable-PSTrace, Enable-PSTrace, Get-LogProperties, Set-LogProperties -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCBzuFp8c8UN6ilP -# /hSmUPDtAUbo8uWTs6wUbaR/ZpM1B6CCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgSB3jjVY/ -# WMZ8WHFGDewy2JQLkkMsgxe7OQ9hGxl1POAwQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQDECdQe+dGfTQ9+1MUoap76UXkZqRUtWJtHANEX9QRF -# zu/zYxq/dvy7faWSumOPbC+fRwu+83u+3CYadkq+B7I6NDeWqTacnJnPk+uV78yi -# UnGjJx9i8cu6fUBS7HhFg1+VS5IZsor64K33Etj9NPBvVxW/AdbcA1Vm1/HCcnfC -# ZVVP8SUsEQsnksf1sgEix5zjYP5yoRrc7zZ31CsfFUseccW0GbjWVellm+JVYQR8 -# PyRw/UvU9wBEGmoG05yKQHMtIQzbgamTF+mFpvvLdNamUk2kTBtPw8esiUQSQSKT -# 893Bw7LCuWiqo8pwi1U45lsh2/5GrxKGyLwQY3vXep01oYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIEeWczI88EUPcg8HePXnLkMZtTRhTovyeZypUyUE -# AkF4AgZhlV5AOFwYEzIwMjExMjA4MjEwNDE0LjA2NVowBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046M0JENC00QjgwLTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYm0v4YwhBxL -# jwABAAABiTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3NDFaFw0yMzAxMjYxOTI3NDFaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjNCRDQtNEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvQZXxZFm -# a6plmuOyvNpV8xONOwcYolZG/BjyZWGSk5JOGaLyrKId5VxVHWHlsmJE4Svnzsdp -# sKmVx8otONveIUFvSceEZp8VXmu5m1fu8L7c+3lwXcibjccqtEvtQslokQVx0r+L -# 54abrNDarwFG73IaRidIS1i9c+unJ8oYyhDRLrCysFAVxyQhPNZkWK7Z8/VGukaK -# LAWHXCh/+R53h42gFL+9/mAALxzCXXuofi8f/XKCm7xNwVc1hONCCz6oq94AufzV -# NkkIW4brUQgYpCcJm9U0XNmQvtropYDn9UtY8YQ0NKenXPtdgLHdQ8Nnv3igErKL -# rWI0a5n5jjdKfwk+8mvakqdZmlOseeOS1XspQNJAK1uZllAITcnQZOcO5ofjOQ33 -# ujWckAXdz+/x3o7l4AU/TSOMzGZMwhUdtVwC3dSbItpSVFgnjM2COEJ9zgCadvOi -# rGDLN471jZI2jClkjsJTdgPk343TQA4JFvds/unZq0uLr+niZ3X44OBx2x+gVlln -# 2c4UbZXNueA4yS1TJGbbJFIILAmTUA9Auj5eISGTbNiyWx79HnCOTar39QEKozm4 -# LnTmDXy0/KI/H/nYZGKuTHfckP28wQS06rD+fDS5xLwcRMCW92DkHXmtbhGyRilB -# OL5LxZelQfxt54wl4WUC0AdAEolPekODwO8CAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBSXbx+zR1p4IIAeguA6rHKkrfl7UDAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQCOtLdpWUI4KwfLLrfaKrLB92Dq -# bAspGWM41TaO4Jl+sHxPo522uu3GKQCjmkRWreHtlfyy9kOk7LWax3k3ke8Gtfet -# fbh7qH0LeV2XOWg39BOnHf6mTcZq7FYSZZch1JDQjc98+Odlow+oWih0Dbt4CV/e -# 19ZcE+1n1zzWkskUEd0f5jPIUis33p+vkY8szduAtCcIcPFUhI8Hb5alPUAPMjGz -# wKb7NIKbnf8j8cP18As5IveckF0oh1cw63RY/vPK62LDYdpi7WnG2ObvngfWVKtw -# iwTI4jHj2cO9q37HDe/PPl216gSpUZh0ap24mKmMDfcKp1N4mEdsxz4oseOrPYeF -# sHHWJFJ6Aivvqn70KTeJpp5r+DxSqbeSy0mxIUOq/lAaUxgNSQVUX26t8r+fciko -# fKv23WHrtRV3t7rVTsB9YzrRaiikmz68K5HWdt9MqULxPQPo+ppZ0LRqkOae466+ -# UKRY0JxWtdrMc5vHlHZfnqjawj/RsM2S6Q6fa9T9CnY1Nz7DYBG3yZJyCPFsrgU0 -# 5s9ljqfsSptpFdUh9R4ce+L71SWDLM2x/1MFLLHAMbXsEp8KloEGtaDULnxtfS2t -# YhfuKGqRXoEfDPAMnIdTvQPh3GHQ4SjkkBARHL0MY75alhGTKHWjC2aLVOo8obKI -# Bk8hfnFDUf/EyVw4uTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0JENC00Qjgw -# LTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVACGlCa3ketyeuey7bJNpWkMuiCcQoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tYMCIY -# DzIwMjExMjA5MDM1MTUyWhgPMjAyMTEyMTAwMzUxNTJaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi1gCAQAwCgIBAAICHvwCAf8wBwIBAAICETcwCgIFAOVc3NgC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQCbF/Q1IJzqUwQBkXn+GjUxZzVN -# O+9p1fpL7W8dEy9/m1L7dl968KiYqfO5rekvXeSUDTFYrkS/r0w8p2ZZ7d0TMtJt -# TrKmc85aRmxtSvCNAS2stE2sS2Y5np5+/02w3DDn3Nni6vvF8nsuiIlbiyHrGQrC -# 9eis1rpLSNvXisSYoDGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABibS/hjCEHEuPAAEAAAGJMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIE9C -# YLePpB7z2n25zIz6S9czmnMvqhq9zWDUWGRetdy3MIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgZndHMdxQV1VsbpWHOTHqWEycvcRJm7cY69l/UmT8j0UwgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYm0v4YwhBxL -# jwABAAABiTAiBCCErc3WAJDL+6+RTcx4qvTV2Dv0bP6a0jmZjnUp3u9sbzANBgkq -# hkiG9w0BAQsFAASCAgCLuF4LX6ghAt1uercf24wmzMJ22FHRyklnWLILmQXDOSwZ -# bLzptb/gXN2KtDnQU3xF02SLNfmPvFCYkU7l9pYTmDQ18Pm6GtnwLMke8xbMlWsl -# 2gZCMMI3Q40kidzeZ3yYggxf5a+YP0JI3rcgZuRDnEeJ69oUqVvD/sWPTuWqKV7V -# 2jb5gnLURKrzDKPYf1trvb7M2oRkxXToLOEtbsHI2O46WJCbGrYlERk6Sp8+nmPD -# oQ7Lz8Vq5xXn3L8z3QqDI0UCdxxd32JBQbzMZ21xI+JgljiGXv3TSrtz+0M88mLM -# m+Kf7LHqDN3v6xfGI+AWD5KPfxzLekMmtTIlkeA93MolkgeFfkx5BpqbWLrbd63S -# RzhF88sZt47hwzoDfn4DMzFOrtbJqbdVWcVtIgY07AmWUSvpNtXgljty4kzg1rHV -# v2m6ezcnQa0D9a8WQJSd+gRfD6BEmDBOyGL7w49Tcgp2vZiWWdnHrWeRXMp+N4Fs -# 4IbQ51teHXISCvqZoVaz8/jEvWPftKkwcXuM89+S7hN4NMq0zpON1lizLV/FPP7p -# bpAQuaBgSY2f0Hfyko8JAH/KJFpmuzjTTcUAwvru2dsCdakB4kd6k6JHpu+XjWez -# M4lfX7MZegJiXfCQ8QBIKwg80WLwjJjjHrvTap+yPG9goxm6Nzh+UftgAcz+Qw== -# SIG # End signature block diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.Odbc.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.Odbc.dll deleted file mode 100644 index cc9c1da..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.OleDb.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.OleDb.dll deleted file mode 100644 index 95d3e71..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.OleDb.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll deleted file mode 100644 index bc23526..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll deleted file mode 100644 index 03b44f1..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll deleted file mode 100644 index 235a22f..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll deleted file mode 100644 index 58eacf8..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll deleted file mode 100644 index 7f910de..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.dll deleted file mode 100644 index 650007c..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll deleted file mode 100644 index 7c9e87b..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.IO.Ports.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.IO.Ports.dll deleted file mode 100644 index b678ac4..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.IO.Ports.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.Automation.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.Automation.dll deleted file mode 100644 index 0c2333e..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.Automation.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.dll deleted file mode 100644 index 3e409fa..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll deleted file mode 100644 index 2b6fda4..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll deleted file mode 100644 index bdca76d..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll deleted file mode 100644 index 10c0dd8..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll deleted file mode 100644 index 332dbfa..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll deleted file mode 100644 index 8a6feee..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Speech.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Speech.dll deleted file mode 100644 index b551f9c..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Speech.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Threading.AccessControl.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Threading.AccessControl.dll deleted file mode 100644 index 8109eae..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Threading.AccessControl.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll deleted file mode 100644 index 69f0d1b..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll deleted file mode 100644 index d92be8f..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index c70b1d3..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 6d14e76..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll deleted file mode 100644 index 2e5c7ea..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x64/native/mi.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x64/native/mi.dll deleted file mode 100644 index f169cbe..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x64/native/mi.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x64/native/miutils.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x64/native/miutils.dll deleted file mode 100644 index f9c9d3f..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x64/native/miutils.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index e1819d5..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 13d9f3b..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll deleted file mode 100644 index 434e1f4..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x86/native/mi.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x86/native/mi.dll deleted file mode 100644 index cfa3846..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x86/native/mi.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x86/native/miutils.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x86/native/miutils.dll deleted file mode 100644 index 6a6fdd1..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x86/native/miutils.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index c70b1d3..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 6d14e76..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll deleted file mode 100644 index 90fc1b2..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x64/native/mi.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x64/native/mi.dll deleted file mode 100644 index 75de9d2..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x64/native/mi.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x64/native/miutils.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x64/native/miutils.dll deleted file mode 100644 index d6d3465..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x64/native/miutils.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index e1819d5..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 13d9f3b..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll deleted file mode 100644 index 7a2fe92..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x86/native/mi.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x86/native/mi.dll deleted file mode 100644 index f0f556f..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x86/native/mi.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x86/native/miutils.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x86/native/miutils.dll deleted file mode 100644 index 19dbafc..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x86/native/miutils.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index c70b1d3..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 6d14e76..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x64/native/mi.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x64/native/mi.dll deleted file mode 100644 index 34043ba..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x64/native/mi.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x64/native/miutils.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x64/native/miutils.dll deleted file mode 100644 index 0579e97..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x64/native/miutils.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index e1819d5..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 13d9f3b..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x86/native/mi.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x86/native/mi.dll deleted file mode 100644 index f303e1e..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x86/native/mi.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x86/native/miutils.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x86/native/miutils.dll deleted file mode 100644 index d305891..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x86/native/miutils.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index c70b1d3..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 6d14e76..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll deleted file mode 100644 index 8af4889..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x64/native/mi.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x64/native/mi.dll deleted file mode 100644 index 46dedce..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x64/native/mi.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x64/native/miutils.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x64/native/miutils.dll deleted file mode 100644 index 3c8ebbd..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x64/native/miutils.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index e1819d5..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 13d9f3b..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll deleted file mode 100644 index 9dcbfd1..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x86/native/mi.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x86/native/mi.dll deleted file mode 100644 index 087163a..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x86/native/mi.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x86/native/miutils.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x86/native/miutils.dll deleted file mode 100644 index 21ad782..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x86/native/miutils.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/testhost.dll b/linguard/Cli.Test/bin/Debug/net6.0/testhost.dll deleted file mode 100644 index 4a8a1a3..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/testhost.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/testhost.exe b/linguard/Cli.Test/bin/Debug/net6.0/testhost.exe deleted file mode 100644 index f2ab13c..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/testhost.exe and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 56f6a16..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 81ce1fc..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 667bb80..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 7914420..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 70172b5..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index d819258..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 6fa1eb3..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/tr/System.Private.ServiceModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/tr/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 4a0bd6f..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/tr/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/tr/System.Web.Services.Description.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/tr/System.Web.Services.Description.resources.dll deleted file mode 100644 index 7917190..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/tr/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/xunit.abstractions.dll b/linguard/Cli.Test/bin/Debug/net6.0/xunit.abstractions.dll deleted file mode 100644 index d1e90bf..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/xunit.abstractions.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/xunit.assert.dll b/linguard/Cli.Test/bin/Debug/net6.0/xunit.assert.dll deleted file mode 100644 index 6cec730..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/xunit.assert.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/xunit.core.dll b/linguard/Cli.Test/bin/Debug/net6.0/xunit.core.dll deleted file mode 100644 index 4f2f495..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/xunit.core.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/xunit.execution.dotnet.dll b/linguard/Cli.Test/bin/Debug/net6.0/xunit.execution.dotnet.dll deleted file mode 100644 index fb72ce0..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/xunit.execution.dotnet.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/xunit.runner.reporters.netcoreapp10.dll b/linguard/Cli.Test/bin/Debug/net6.0/xunit.runner.reporters.netcoreapp10.dll deleted file mode 100644 index 953544f..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/xunit.runner.reporters.netcoreapp10.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/xunit.runner.utility.netcoreapp10.dll b/linguard/Cli.Test/bin/Debug/net6.0/xunit.runner.utility.netcoreapp10.dll deleted file mode 100644 index f389ee1..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/xunit.runner.utility.netcoreapp10.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/xunit.runner.visualstudio.dotnetcore.testadapter.dll b/linguard/Cli.Test/bin/Debug/net6.0/xunit.runner.visualstudio.dotnetcore.testadapter.dll deleted file mode 100644 index 94b21e6..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/xunit.runner.visualstudio.dotnetcore.testadapter.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index ffe2682..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index d17ccb3..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 9271276..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index ea7e5f8..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index a5cbbbc..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index d0478ca..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index edce377..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/System.Private.ServiceModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 8e8fe2e..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/System.Web.Services.Description.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/System.Web.Services.Description.resources.dll deleted file mode 100644 index 903dca8..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 2efe878..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 62c7b50..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 097303b..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 77d4ab4..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 146df9b..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 21b8a3d..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 0962268..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/System.Private.ServiceModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 2001bc8..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/System.Web.Services.Description.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/System.Web.Services.Description.resources.dll deleted file mode 100644 index 6bf5a85..0000000 Binary files a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Cli.Test/obj/Cli.Test.csproj.nuget.dgspec.json b/linguard/Cli.Test/obj/Cli.Test.csproj.nuget.dgspec.json deleted file mode 100644 index ffb9ee9..0000000 --- a/linguard/Cli.Test/obj/Cli.Test.csproj.nuget.dgspec.json +++ /dev/null @@ -1,405 +0,0 @@ -{ - "format": 1, - "restore": { - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli.Test\\Cli.Test.csproj": {} - }, - "projects": { - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli.Test\\Cli.Test.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli.Test\\Cli.Test.csproj", - "projectName": "Cli.Test", - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli.Test\\Cli.Test.csproj", - "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli.Test\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": { - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj": { - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj" - }, - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj": { - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "FluentAssertions": { - "target": "Package", - "version": "[6.4.0, )" - }, - "Microsoft.NET.Test.Sdk": { - "target": "Package", - "version": "[16.11.0, )" - }, - "Moq": { - "target": "Package", - "version": "[4.16.1, )" - }, - "coverlet.msbuild": { - "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", - "suppressParent": "All", - "target": "Package", - "version": "[3.1.2, )" - }, - "xunit": { - "target": "Package", - "version": "[2.4.1, )" - }, - "xunit.runner.visualstudio": { - "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", - "suppressParent": "All", - "target": "Package", - "version": "[2.4.3, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" - } - } - }, - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj": { - "version": "2.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj", - "projectName": "Linguard.Cli", - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj", - "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": { - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj": { - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "CommandLineParser": { - "target": "Package", - "version": "[2.8.0, )" - }, - "FluentValidation": { - "target": "Package", - "version": "[10.3.6, )" - }, - "Typin": { - "target": "Package", - "version": "[3.1.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" - } - } - }, - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj", - "projectName": "Core.Test", - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj", - "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": { - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj": { - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "FluentAssertions": { - "target": "Package", - "version": "[6.4.0, )" - }, - "FluentValidation": { - "target": "Package", - "version": "[10.3.6, )" - }, - "IPNetwork2": { - "target": "Package", - "version": "[2.5.386, )" - }, - "Microsoft.NET.Test.Sdk": { - "target": "Package", - "version": "[16.11.0, )" - }, - "Moq": { - "target": "Package", - "version": "[4.16.1, )" - }, - "coverlet.msbuild": { - "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", - "suppressParent": "All", - "target": "Package", - "version": "[3.1.2, )" - }, - "xunit": { - "target": "Package", - "version": "[2.4.1, )" - }, - "xunit.runner.visualstudio": { - "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", - "suppressParent": "All", - "target": "Package", - "version": "[2.4.3, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" - } - } - }, - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj": { - "version": "2.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj", - "projectName": "Linguard.Core", - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj", - "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": { - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj": { - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "Bogus": { - "target": "Package", - "version": "[34.0.1, )" - }, - "ByteSize": { - "target": "Package", - "version": "[2.1.1, )" - }, - "FluentValidation": { - "target": "Package", - "version": "[10.3.6, )" - }, - "IPNetwork2": { - "target": "Package", - "version": "[2.5.386, )" - }, - "Microsoft.PowerShell.SDK": { - "target": "Package", - "version": "[7.2.1, )" - }, - "System.Management.Automation": { - "target": "Package", - "version": "[7.2.1, )" - }, - "YamlDotNet": { - "target": "Package", - "version": "[11.2.1, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" - } - } - }, - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj": { - "version": "2.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj", - "projectName": "Linguard.Log", - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj", - "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "NLog": { - "target": "Package", - "version": "[4.7.13, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/linguard/Cli.Test/obj/Cli.Test.csproj.nuget.g.props b/linguard/Cli.Test/obj/Cli.Test.csproj.nuget.g.props deleted file mode 100644 index 5985ad6..0000000 --- a/linguard/Cli.Test/obj/Cli.Test.csproj.nuget.g.props +++ /dev/null @@ -1,27 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\theyu\.nuget\packages\ - PackageReference - 6.0.0 - - - - - - - - - - - - - - C:\Users\theyu\.nuget\packages\xunit.analyzers\0.10.0 - C:\Users\theyu\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.2 - - \ No newline at end of file diff --git a/linguard/Cli.Test/obj/Cli.Test.csproj.nuget.g.targets b/linguard/Cli.Test/obj/Cli.Test.csproj.nuget.g.targets deleted file mode 100644 index 6d23769..0000000 --- a/linguard/Cli.Test/obj/Cli.Test.csproj.nuget.g.targets +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/linguard/Cli.Test/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/linguard/Cli.Test/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs deleted file mode 100644 index 36203c7..0000000 --- a/linguard/Cli.Test/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.AssemblyInfo.cs b/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.AssemblyInfo.cs deleted file mode 100644 index 15730d2..0000000 --- a/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.AssemblyInfo.cs +++ /dev/null @@ -1,22 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("Cli.Test")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("Cli.Test")] -[assembly: System.Reflection.AssemblyTitleAttribute("Cli.Test")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generado por la clase WriteCodeFragment de MSBuild. - diff --git a/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.AssemblyInfoInputs.cache b/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.AssemblyInfoInputs.cache deleted file mode 100644 index fa72776..0000000 --- a/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -af3d9608d8e0d17527db1220c7d060420e5f970d diff --git a/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.GeneratedMSBuildEditorConfig.editorconfig b/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index f9b964b..0000000 --- a/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,10 +0,0 @@ -is_global = true -build_property.TargetFramework = net6.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = Cli.Test -build_property.ProjectDir = C:\Users\theyu\repos\linguard\Linguard\Cli.Test\ diff --git a/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.assets.cache b/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.assets.cache deleted file mode 100644 index 4b69c7a..0000000 Binary files a/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.assets.cache and /dev/null differ diff --git a/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.csproj.AssemblyReference.cache b/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.csproj.AssemblyReference.cache deleted file mode 100644 index 63d4067..0000000 Binary files a/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.csproj.AssemblyReference.cache and /dev/null differ diff --git a/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.csproj.CopyComplete b/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.csproj.CopyComplete deleted file mode 100644 index e69de29..0000000 diff --git a/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.csproj.CoreCompileInputs.cache b/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.csproj.CoreCompileInputs.cache deleted file mode 100644 index 1f3887a..0000000 --- a/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -1e789b65a76640fe2c4f6a504b7145329d40fdee diff --git a/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.csproj.FileListAbsolute.txt b/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.csproj.FileListAbsolute.txt deleted file mode 100644 index 64532eb..0000000 --- a/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,1065 +0,0 @@ -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\testhost.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\testhost.exe -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.TestPlatform.PlatformAbstractions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\xunit.runner.visualstudio.dotnetcore.testadapter.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\xunit.runner.reporters.netcoreapp10.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\xunit.runner.utility.netcoreapp10.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Cli.Test.deps.json -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Cli.Test.runtimeconfig.json -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Cli.Test.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\Cli.Test.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Cli.Test.pdb -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.VisualStudio.CodeCoverage.Shim.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.TestPlatform.CoreUtilities.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.VisualStudio.TestPlatform.ObjectModel.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.TestPlatform.CommunicationUtilities.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.TestPlatform.CrossPlatEngine.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.TestPlatform.Utilities.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.VisualStudio.TestPlatform.Common.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Newtonsoft.Json.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\NuGet.Frameworks.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\xunit.abstractions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\xunit.assert.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\xunit.core.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\xunit.execution.dotnet.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\cs\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\cs\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\de\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\de\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\es\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\es\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\fr\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\fr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\it\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\it\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ja\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ja\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ko\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ko\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pl\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pl\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ru\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ru\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\tr\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\tr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\cs\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\cs\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\cs\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\de\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\de\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\de\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\es\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\es\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\es\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\fr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\fr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\fr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\it\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\it\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\it\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ja\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ja\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ja\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ko\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ko\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ko\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pl\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pl\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pl\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ru\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ru\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ru\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\tr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\tr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\tr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.csproj.AssemblyReference.cache -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.AssemblyInfoInputs.cache -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.AssemblyInfo.cs -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.csproj.CoreCompileInputs.cache -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.csproj.CopyComplete -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\obj\Debug\net6.0\ref\Cli.Test.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.pdb -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.genruntimeconfig.cache -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\CoverletSourceRootsMapping -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Cli.deps.json -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Cli.runtimeconfig.json -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\Microsoft.CSharp.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\Microsoft.VisualBasic.Core.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\Microsoft.VisualBasic.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\Microsoft.Win32.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\Microsoft.Win32.Registry.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.AppContext.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Buffers.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Collections.Concurrent.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Collections.Immutable.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Collections.NonGeneric.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Collections.Specialized.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Collections.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ComponentModel.Annotations.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ComponentModel.DataAnnotations.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ComponentModel.EventBasedAsync.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ComponentModel.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ComponentModel.TypeConverter.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ComponentModel.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Configuration.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Console.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Core.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Data.Common.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Data.DataSetExtensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Data.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.Contracts.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.Debug.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.DiagnosticSource.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.FileVersionInfo.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.Process.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.StackTrace.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.TextWriterTraceListener.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.Tools.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.TraceSource.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.Tracing.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Drawing.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Drawing.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Dynamic.Runtime.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Formats.Asn1.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Globalization.Calendars.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Globalization.Extensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Globalization.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.Compression.Brotli.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.Compression.FileSystem.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.Compression.ZipFile.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.Compression.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.AccessControl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.DriveInfo.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.Watcher.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.IsolatedStorage.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.MemoryMappedFiles.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.Pipes.AccessControl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.Pipes.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.UnmanagedMemoryStream.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Linq.Expressions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Linq.Parallel.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Linq.Queryable.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Linq.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Memory.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.Http.Json.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.Http.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.HttpListener.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.Mail.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.NameResolution.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.NetworkInformation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.Ping.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.Requests.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.Security.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.ServicePoint.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.Sockets.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.WebClient.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.WebHeaderCollection.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.WebProxy.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.WebSockets.Client.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.WebSockets.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Numerics.Vectors.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Numerics.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ObjectModel.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.DispatchProxy.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.Emit.ILGeneration.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.Emit.Lightweight.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.Emit.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.Extensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.Metadata.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.TypeExtensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Resources.Reader.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Resources.ResourceManager.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Resources.Writer.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.CompilerServices.Unsafe.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.CompilerServices.VisualC.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Extensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Handles.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.InteropServices.RuntimeInformation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.InteropServices.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Intrinsics.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Loader.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Numerics.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.Formatters.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.Json.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.Xml.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.AccessControl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Claims.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Algorithms.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Cng.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Csp.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Encoding.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.OpenSsl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.X509Certificates.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Principal.Windows.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Principal.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.SecureString.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ServiceModel.Web.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ServiceProcess.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Text.Encoding.CodePages.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Text.Encoding.Extensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Text.Encoding.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Text.Encodings.Web.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Text.Json.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Text.RegularExpressions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.Channels.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.Overlapped.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.Tasks.Dataflow.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.Tasks.Extensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.Tasks.Parallel.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.Tasks.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.Thread.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.ThreadPool.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.Timer.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Transactions.Local.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Transactions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ValueTuple.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Web.HttpUtility.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Web.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Windows.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.Linq.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.ReaderWriter.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.Serialization.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.XDocument.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.XPath.XDocument.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.XPath.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.XmlDocument.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.XmlSerializer.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\WindowsBase.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\mscorlib.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\netstandard.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\CimCmdlets\CimCmdlets.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Diagnostics.format.ps1xml -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Event.format.ps1xml -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\GetEvent.types.ps1xml -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Microsoft.PowerShell.Diagnostics.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\Microsoft.WSMan.Management.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\WSMan.format.ps1xml -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psm1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\NLog.config -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Cli.exe -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\CommandLine.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\FluentAssertions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Net.IPNetwork.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Markdig.Signed.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.ApplicationInsights.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Bcl.AsyncInterfaces.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.CodeAnalysis.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.CodeAnalysis.CSharp.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Extensions.ObjectPool.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.PowerShell.MarkdownRender.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Win32.Registry.AccessControl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Win32.SystemEvents.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Namotion.Reflection.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\NJsonSchema.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\NLog.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.CodeDom.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.ComponentModel.Composition.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.ComponentModel.Composition.Registration.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Configuration.ConfigurationManager.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Data.OleDb.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Data.SqlClient.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Diagnostics.EventLog.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Diagnostics.PerformanceCounter.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.DirectoryServices.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.DirectoryServices.AccountManagement.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.DirectoryServices.Protocols.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Drawing.Common.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.IO.Packaging.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.IO.Ports.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Management.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Net.Http.WinHttpHandler.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Private.ServiceModel.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Reflection.Context.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Runtime.Caching.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Security.Cryptography.Pkcs.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Security.Cryptography.ProtectedData.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Security.Cryptography.Xml.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Security.Permissions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.ServiceModel.Duplex.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.ServiceModel.Http.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.ServiceModel.NetTcp.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.ServiceModel.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.ServiceModel.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.ServiceModel.Security.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.ServiceModel.Syndication.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.ServiceProcess.ServiceController.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Speech.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Threading.AccessControl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Web.Services.Description.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Windows.Extensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\YamlDotNet.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\cs\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\de\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\es\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\fr\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\it\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ja\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ko\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pl\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ru\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\tr\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\cs\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\de\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\es\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\fr\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\it\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ja\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ko\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pl\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ru\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\tr\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\cs\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\de\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\es\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\fr\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\it\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ja\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ko\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pl\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ru\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\tr\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Management.Infrastructure.CimCmdlets.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm64\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm64\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x64\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x64\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x86\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x86\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x64\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x64\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x86\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x86\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win8-x64\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win8-x64\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win8-x86\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win8-x86\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x64\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x64\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x86\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x86\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Diagnostics.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.CoreCLR.Eventing.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-arm\native\libpsl-native.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-arm64\native\libpsl-native.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-musl-x64\native\libpsl-native.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-x64\native\libmi.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-x64\native\libpsl-native.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-x64\native\libpsrpclient.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\osx\native\libmi.dylib -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\osx\native\libpsl-native.dylib -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\osx\native\libpsrpclient.dylib -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm\native\PowerShell.Core.Instrumentation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm\native\pwrshplugin.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm64\native\PowerShell.Core.Instrumentation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm64\native\pwrshplugin.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-x64\native\PowerShell.Core.Instrumentation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-x64\native\pwrshplugin.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-x86\native\PowerShell.Core.Instrumentation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-x86\native\pwrshplugin.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.SDK.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.SDK.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Security.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Security.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Win32.Registry.AccessControl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.WSMan.Management.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.WSMan.Runtime.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-arm\native\libSystem.IO.Ports.Native.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-arm64\native\libSystem.IO.Ports.Native.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-x64\native\libSystem.IO.Ports.Native.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\osx-arm64\native\libSystem.IO.Ports.Native.dylib -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\osx-x64\native\libSystem.IO.Ports.Native.dylib -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm64\native\sni.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-x64\native\sni.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-x86\native\sni.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\freebsd\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\illumos\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\ios\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\osx\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\solaris\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\tvos\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Data.OleDb.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.Messages.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.PerformanceCounter.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.AccountManagement.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux\lib\net6.0\System.DirectoryServices.Protocols.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\osx\lib\net6.0\System.DirectoryServices.Protocols.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.Protocols.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.IO.Ports.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.IO.Ports.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Management.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.Management.Automation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Management.Automation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Net.Http.WinHttpHandler.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Runtime.Caching.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Security.Cryptography.Pkcs.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.ServiceProcess.ServiceController.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Speech.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Threading.AccessControl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Cli.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Core.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Log.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Cli.pdb -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Core.pdb -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Log.pdb -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Bogus.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Castle.Core.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\FluentValidation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Extensions.DependencyInjection.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Extensions.Logging.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Extensions.Logging.Abstractions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Extensions.Logging.Debug.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Extensions.Options.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Extensions.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Moq.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Typin.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Typin.Core.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Core.Test.deps.json -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Core.Test.runtimeconfig.json -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Core.Test.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Core.Test.pdb -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\CoverletSourceRootsMapping -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\Microsoft.CSharp.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\Microsoft.VisualBasic.Core.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\Microsoft.VisualBasic.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\Microsoft.Win32.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\Microsoft.Win32.Registry.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.AppContext.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Buffers.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Collections.Concurrent.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Collections.Immutable.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Collections.NonGeneric.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Collections.Specialized.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Collections.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ComponentModel.Annotations.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ComponentModel.DataAnnotations.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ComponentModel.EventBasedAsync.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ComponentModel.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ComponentModel.TypeConverter.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ComponentModel.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Configuration.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Console.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Core.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Data.Common.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Data.DataSetExtensions.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Data.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.Contracts.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.Debug.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.DiagnosticSource.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.FileVersionInfo.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.Process.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.StackTrace.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.TextWriterTraceListener.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.Tools.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.TraceSource.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.Tracing.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Drawing.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Drawing.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Dynamic.Runtime.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Formats.Asn1.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Globalization.Calendars.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Globalization.Extensions.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Globalization.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.Compression.Brotli.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.Compression.FileSystem.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.Compression.ZipFile.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.Compression.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.AccessControl.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.DriveInfo.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.Watcher.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.IsolatedStorage.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.MemoryMappedFiles.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.Pipes.AccessControl.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.Pipes.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.UnmanagedMemoryStream.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Linq.Expressions.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Linq.Parallel.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Linq.Queryable.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Linq.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Memory.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.Http.Json.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.Http.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.HttpListener.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.Mail.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.NameResolution.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.NetworkInformation.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.Ping.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.Requests.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.Security.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.ServicePoint.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.Sockets.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.WebClient.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.WebHeaderCollection.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.WebProxy.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.WebSockets.Client.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.WebSockets.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Numerics.Vectors.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Numerics.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ObjectModel.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.DispatchProxy.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.Emit.ILGeneration.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.Emit.Lightweight.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.Emit.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.Extensions.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.Metadata.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.TypeExtensions.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Resources.Reader.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Resources.ResourceManager.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Resources.Writer.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.CompilerServices.Unsafe.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.CompilerServices.VisualC.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Extensions.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Handles.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.InteropServices.RuntimeInformation.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.InteropServices.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Intrinsics.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Loader.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Numerics.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.Formatters.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.Json.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.Xml.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.AccessControl.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Claims.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Algorithms.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Cng.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Csp.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Encoding.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.OpenSsl.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.X509Certificates.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Principal.Windows.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Principal.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.SecureString.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ServiceModel.Web.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ServiceProcess.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Text.Encoding.CodePages.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Text.Encoding.Extensions.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Text.Encoding.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Text.Encodings.Web.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Text.Json.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Text.RegularExpressions.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.Channels.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.Overlapped.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.Tasks.Dataflow.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.Tasks.Extensions.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.Tasks.Parallel.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.Tasks.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.Thread.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.ThreadPool.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.Timer.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Transactions.Local.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Transactions.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ValueTuple.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Web.HttpUtility.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Web.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Windows.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.Linq.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.ReaderWriter.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.Serialization.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.XDocument.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.XPath.XDocument.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.XPath.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.XmlDocument.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.XmlSerializer.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\WindowsBase.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\mscorlib.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\netstandard.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\CimCmdlets\CimCmdlets.psd1 -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Diagnostics.format.ps1xml -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Event.format.ps1xml -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\GetEvent.types.ps1xml -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Microsoft.PowerShell.Diagnostics.psd1 -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\Microsoft.WSMan.Management.psd1 -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\WSMan.format.ps1xml -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psd1 -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psm1 -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\NLog.config -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\testhost.exe -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\testhost.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\xunit.runner.visualstudio.dotnetcore.testadapter.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\xunit.runner.reporters.netcoreapp10.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\xunit.runner.utility.netcoreapp10.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Cli.deps.json -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Cli.runtimeconfig.json -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Cli.exe -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Core.Test.deps.json -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Core.Test.runtimeconfig.json -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.TestPlatform.PlatformAbstractions.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Cli.Test.deps.json -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Cli.Test.runtimeconfig.json -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Cli.Test.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\Cli.Test.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Cli.Test.pdb -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Bogus.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Castle.Core.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\CommandLine.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\FluentAssertions.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\FluentValidation.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Net.IPNetwork.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Markdig.Signed.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.ApplicationInsights.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Bcl.AsyncInterfaces.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.CodeAnalysis.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.CodeAnalysis.CSharp.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.VisualStudio.CodeCoverage.Shim.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Extensions.DependencyInjection.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Extensions.Logging.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Extensions.Logging.Abstractions.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Extensions.Logging.Debug.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Extensions.ObjectPool.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Extensions.Options.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Extensions.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.PowerShell.MarkdownRender.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.TestPlatform.CoreUtilities.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.VisualStudio.TestPlatform.ObjectModel.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.TestPlatform.CommunicationUtilities.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.TestPlatform.CrossPlatEngine.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.TestPlatform.Utilities.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.VisualStudio.TestPlatform.Common.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Win32.Registry.AccessControl.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Win32.SystemEvents.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Moq.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Namotion.Reflection.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Newtonsoft.Json.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\NJsonSchema.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\NLog.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\NuGet.Frameworks.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.CodeDom.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.ComponentModel.Composition.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.ComponentModel.Composition.Registration.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Configuration.ConfigurationManager.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Data.OleDb.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Data.SqlClient.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Diagnostics.EventLog.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Diagnostics.PerformanceCounter.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.DirectoryServices.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.DirectoryServices.AccountManagement.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.DirectoryServices.Protocols.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Drawing.Common.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.IO.Packaging.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.IO.Ports.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Management.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Net.Http.WinHttpHandler.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Private.ServiceModel.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Reflection.Context.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Runtime.Caching.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Security.Cryptography.Pkcs.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Security.Cryptography.ProtectedData.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Security.Cryptography.Xml.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Security.Permissions.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.ServiceModel.Duplex.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.ServiceModel.Http.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.ServiceModel.NetTcp.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.ServiceModel.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.ServiceModel.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.ServiceModel.Security.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.ServiceModel.Syndication.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.ServiceProcess.ServiceController.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Speech.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Threading.AccessControl.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Web.Services.Description.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Windows.Extensions.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Typin.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Typin.Core.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\xunit.abstractions.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\xunit.assert.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\xunit.core.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\xunit.execution.dotnet.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\YamlDotNet.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\cs\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\de\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\es\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\fr\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\it\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ja\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ko\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pl\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ru\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\tr\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\cs\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\cs\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\de\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\de\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\es\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\es\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\fr\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\fr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\it\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\it\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ja\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ja\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ko\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ko\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pl\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pl\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ru\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ru\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\tr\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\tr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\cs\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\cs\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\cs\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\de\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\de\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\de\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\es\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\es\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\es\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\fr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\fr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\fr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\it\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\it\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\it\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ja\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ja\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ja\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ko\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ko\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ko\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pl\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pl\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pl\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ru\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ru\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ru\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\tr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\tr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\tr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\cs\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\de\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\es\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\fr\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\it\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ja\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ko\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pl\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ru\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\tr\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\cs\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\de\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\es\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\fr\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\it\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ja\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ko\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pl\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ru\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\tr\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Management.Infrastructure.CimCmdlets.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm64\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm64\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x64\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x64\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x86\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x86\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x64\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x64\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x86\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x86\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win8-x64\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win8-x64\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win8-x86\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win8-x86\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x64\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x64\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x86\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x86\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Diagnostics.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.CoreCLR.Eventing.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-arm\native\libpsl-native.so -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-arm64\native\libpsl-native.so -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-musl-x64\native\libpsl-native.so -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-x64\native\libmi.so -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-x64\native\libpsl-native.so -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-x64\native\libpsrpclient.so -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\osx\native\libmi.dylib -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\osx\native\libpsl-native.dylib -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\osx\native\libpsrpclient.dylib -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm\native\PowerShell.Core.Instrumentation.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm\native\pwrshplugin.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm64\native\PowerShell.Core.Instrumentation.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm64\native\pwrshplugin.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-x64\native\PowerShell.Core.Instrumentation.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-x64\native\pwrshplugin.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-x86\native\PowerShell.Core.Instrumentation.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-x86\native\pwrshplugin.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.SDK.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.SDK.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Security.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Security.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Win32.Registry.AccessControl.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.WSMan.Management.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.WSMan.Runtime.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-arm\native\libSystem.IO.Ports.Native.so -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-arm64\native\libSystem.IO.Ports.Native.so -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-x64\native\libSystem.IO.Ports.Native.so -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\osx-arm64\native\libSystem.IO.Ports.Native.dylib -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\osx-x64\native\libSystem.IO.Ports.Native.dylib -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm64\native\sni.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-x64\native\sni.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-x86\native\sni.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\freebsd\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\illumos\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\ios\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\osx\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\solaris\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\tvos\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Data.OleDb.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.Messages.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.PerformanceCounter.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.AccountManagement.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux\lib\net6.0\System.DirectoryServices.Protocols.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\osx\lib\net6.0\System.DirectoryServices.Protocols.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.Protocols.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.IO.Ports.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.IO.Ports.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Management.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.Management.Automation.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Management.Automation.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Net.Http.WinHttpHandler.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Runtime.Caching.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Security.Cryptography.Pkcs.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.ServiceProcess.ServiceController.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Speech.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Threading.AccessControl.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Core.Test.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Cli.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Core.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Log.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Cli.pdb -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Core.Test.pdb -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Core.pdb -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Log.pdb -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.csproj.AssemblyReference.cache -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.AssemblyInfoInputs.cache -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.AssemblyInfo.cs -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.csproj.CoreCompileInputs.cache -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.csproj.CopyComplete -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\obj\Debug\net6.0\ref\Cli.Test.dll -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.pdb -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.genruntimeconfig.cache -C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ByteSize.dll diff --git a/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.dll b/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.dll deleted file mode 100644 index b349c74..0000000 Binary files a/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.dll and /dev/null differ diff --git a/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.genruntimeconfig.cache b/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.genruntimeconfig.cache deleted file mode 100644 index 8940d29..0000000 --- a/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -1f1c222e58455d287bce06a74abab11408346d59 diff --git a/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.pdb b/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.pdb deleted file mode 100644 index 79e23dc..0000000 Binary files a/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.pdb and /dev/null differ diff --git a/linguard/Cli.Test/obj/Debug/net6.0/ref/Cli.Test.dll b/linguard/Cli.Test/obj/Debug/net6.0/ref/Cli.Test.dll deleted file mode 100644 index 235cd68..0000000 Binary files a/linguard/Cli.Test/obj/Debug/net6.0/ref/Cli.Test.dll and /dev/null differ diff --git a/linguard/Cli.Test/obj/project.assets.json b/linguard/Cli.Test/obj/project.assets.json deleted file mode 100644 index 352dc3c..0000000 --- a/linguard/Cli.Test/obj/project.assets.json +++ /dev/null @@ -1,11693 +0,0 @@ -{ - "version": 3, - "targets": { - "net6.0": { - "Bogus/34.0.1": { - "type": "package", - "compile": { - "lib/net6.0/Bogus.dll": {} - }, - "runtime": { - "lib/net6.0/Bogus.dll": {} - } - }, - "ByteSize/2.1.1": { - "type": "package", - "compile": { - "lib/net5.0/ByteSize.dll": {} - }, - "runtime": { - "lib/net5.0/ByteSize.dll": {} - } - }, - "Castle.Core/4.4.0": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.6.1", - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel": "4.3.0", - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Diagnostics.TraceSource": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, - "compile": { - "lib/netstandard1.5/Castle.Core.dll": {} - }, - "runtime": { - "lib/netstandard1.5/Castle.Core.dll": {} - } - }, - "CommandLineParser/2.8.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/CommandLine.dll": {} - }, - "runtime": { - "lib/netstandard2.0/CommandLine.dll": {} - } - }, - "coverlet.msbuild/3.1.2": { - "type": "package", - "build": { - "build/coverlet.msbuild.props": {}, - "build/coverlet.msbuild.targets": {} - } - }, - "FluentAssertions/6.4.0": { - "type": "package", - "dependencies": { - "System.Configuration.ConfigurationManager": "4.4.0" - }, - "compile": { - "lib/netcoreapp3.0/FluentAssertions.dll": {} - }, - "runtime": { - "lib/netcoreapp3.0/FluentAssertions.dll": {} - } - }, - "FluentValidation/10.3.6": { - "type": "package", - "compile": { - "lib/net6.0/FluentValidation.dll": {} - }, - "runtime": { - "lib/net6.0/FluentValidation.dll": {} - } - }, - "IPNetwork2/2.5.386": { - "type": "package", - "compile": { - "lib/net5.0/System.Net.IPNetwork.dll": {} - }, - "runtime": { - "lib/net5.0/System.Net.IPNetwork.dll": {} - } - }, - "Markdig.Signed/0.22.0": { - "type": "package", - "compile": { - "lib/netcoreapp3.1/Markdig.Signed.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Markdig.Signed.dll": {} - } - }, - "Microsoft.ApplicationInsights/2.18.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.DiagnosticSource": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {} - } - }, - "Microsoft.Bcl.AsyncInterfaces/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} - } - }, - "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": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {} - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.CodeAnalysis.Common": "[4.0.1]" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {} - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeCoverage/16.11.0": { - "type": "package", - "compile": { - "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} - }, - "runtime": { - "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} - }, - "build": { - "build/netstandard1.0/Microsoft.CodeCoverage.props": {}, - "build/netstandard1.0/Microsoft.CodeCoverage.targets": {} - } - }, - "Microsoft.CSharp/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netstandard1.3/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "compile": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "Microsoft.Extensions.Logging/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "System.Diagnostics.DiagnosticSource": "6.0.0" - }, - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "Microsoft.Extensions.Logging.Debug/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {} - } - }, - "Microsoft.Extensions.ObjectPool/5.0.10": { - "type": "package", - "compile": { - "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": {} - }, - "runtime": { - "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": {} - } - }, - "Microsoft.Extensions.Options/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} - } - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "compile": { - "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "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": {} - }, - "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.NET.Test.Sdk/16.11.0": { - "type": "package", - "dependencies": { - "Microsoft.CodeCoverage": "16.11.0", - "Microsoft.TestPlatform.TestHost": "16.11.0" - }, - "compile": { - "lib/netcoreapp2.1/_._": {} - }, - "runtime": { - "lib/netcoreapp2.1/_._": {} - }, - "build": { - "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.props": {}, - "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.targets": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {} - } - }, - "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": {} - }, - "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": {} - }, - "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": {} - }, - "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": {} - }, - "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": {} - }, - "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": {}, - "ref/net6.0/Microsoft.PowerShell.ConsoleHost.dll": {}, - "ref/net6.0/System.Management.Automation.dll": {} - }, - "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": {} - }, - "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.TestPlatform.ObjectModel/16.11.0": { - "type": "package", - "dependencies": { - "NuGet.Frameworks": "5.0.0", - "System.Reflection.Metadata": "1.6.0" - }, - "compile": { - "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} - }, - "resource": { - "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.TestPlatform.TestHost/16.11.0": { - "type": "package", - "dependencies": { - "Microsoft.TestPlatform.ObjectModel": "16.11.0", - "Newtonsoft.Json": "9.0.1" - }, - "compile": { - "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, - "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, - "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": {}, - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, - "lib/netcoreapp2.1/testhost.dll": {} - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, - "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, - "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": {}, - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, - "lib/netcoreapp2.1/testhost.dll": {} - }, - "resource": { - "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hant" - } - }, - "build": { - "build/netcoreapp2.1/Microsoft.TestPlatform.TestHost.props": {} - } - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/Microsoft.Win32.Primitives.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/_._": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {} - }, - "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": {} - }, - "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": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "Moq/4.16.1": { - "type": "package", - "dependencies": { - "Castle.Core": "4.4.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "compile": { - "lib/netstandard2.1/Moq.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Moq.dll": {} - } - }, - "Namotion.Reflection/2.0.3": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.3.0" - }, - "compile": { - "lib/netstandard2.0/Namotion.Reflection.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Namotion.Reflection.dll": {} - } - }, - "NETStandard.Library/1.6.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.Compression.ZipFile": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Net.Sockets": "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.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Timer": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0" - } - }, - "Newtonsoft.Json/13.0.1": { - "type": "package", - "compile": { - "lib/netstandard2.0/Newtonsoft.Json.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": {} - } - }, - "NJsonSchema/10.5.2": { - "type": "package", - "dependencies": { - "Namotion.Reflection": "2.0.3", - "Newtonsoft.Json": "9.0.1" - }, - "compile": { - "lib/netstandard2.0/NJsonSchema.dll": {} - }, - "runtime": { - "lib/netstandard2.0/NJsonSchema.dll": {} - } - }, - "NLog/4.7.13": { - "type": "package", - "compile": { - "lib/netstandard2.0/NLog.dll": {} - }, - "runtime": { - "lib/netstandard2.0/NLog.dll": {} - } - }, - "NuGet.Frameworks/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/NuGet.Frameworks.dll": {} - }, - "runtime": { - "lib/netstandard2.0/NuGet.Frameworks.dll": {} - } - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "debian.8-x64" - } - } - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "fedora.23-x64" - } - } - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "fedora.24-x64" - } - } - }, - "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/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "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.Compression/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "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.native.System.Net.Http/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "dependencies": { - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "opensuse.13.2-x64" - } - } - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "opensuse.42.1-x64" - } - } - }, - "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.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { - "assetType": "native", - "rid": "osx.10.10-x64" - } - } - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { - "assetType": "native", - "rid": "osx.10.10-x64" - } - } - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "rhel.7-x64" - } - } - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "ubuntu.14.04-x64" - } - } - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "ubuntu.16.04-x64" - } - } - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "ubuntu.16.10-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.AppContext/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.AppContext.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.AppContext.dll": {} - } - }, - "System.Buffers/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "lib/netstandard1.1/_._": {} - }, - "runtime": { - "lib/netstandard1.1/System.Buffers.dll": {} - } - }, - "System.CodeDom/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.CodeDom.dll": {} - }, - "runtime": { - "lib/net6.0/System.CodeDom.dll": {} - }, - "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/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "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.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "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.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Composition/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.ComponentModel.Composition.dll": {} - }, - "runtime": { - "lib/net6.0/System.ComponentModel.Composition.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.ComponentModel.Composition.Registration.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.ComponentModel.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.ComponentModel": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} - } - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.NonGeneric": "4.3.0", - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel": "4.3.0", - "System.ComponentModel.Primitives": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "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.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} - }, - "runtime": { - "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} - } - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Configuration.ConfigurationManager.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Console/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Console.dll": {} - } - }, - "System.Data.Odbc/6.0.0": { - "type": "package", - "dependencies": { - "System.Text.Encoding.CodePages": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Data.Odbc.dll": {} - }, - "runtime": { - "lib/net6.0/System.Data.Odbc.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Data.OleDb.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/netcoreapp2.1/System.Data.SqlClient.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.DiagnosticSource/6.0.0": { - "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {} - }, - "runtime": { - "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Diagnostics.EventLog/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Diagnostics.EventLog.dll": {} - }, - "runtime": { - "lib/net6.0/System.Diagnostics.EventLog.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Diagnostics.Tools/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.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.TraceSource/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "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", - "runtime.native.System": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} - } - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.DirectoryServices.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.DirectoryServices.AccountManagement.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.DirectoryServices.Protocols.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Drawing.Common.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} - } - }, - "System.Formats.Asn1/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Formats.Asn1.dll": {} - }, - "runtime": { - "lib/net6.0/System.Formats.Asn1.dll": {} - }, - "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/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Globalization": "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" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.IO/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.IO.dll": {} - } - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Buffers": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.IO.Compression": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.Compression.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.IO.Compression.ZipFile/4.3.0": { - "type": "package", - "dependencies": { - "System.Buffers": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.Packaging/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.IO.Packaging.dll": {} - }, - "runtime": { - "lib/net6.0/System.IO.Packaging.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.IO.Ports.dll": {} - }, - "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/System.Linq.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.Linq.Expressions.dll": {} - } - }, - "System.Management/6.0.0": { - "type": "package", - "dependencies": { - "System.CodeDom": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Management.dll": {} - }, - "runtime": { - "lib/net6.0/System.Management.dll": {} - }, - "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": {} - }, - "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/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Http.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Net.Http.WinHttpHandler/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Net.Http.WinHttpHandler.dll": {} - }, - "runtime": { - "lib/net6.0/System.Net.Http.WinHttpHandler.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Net.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Primitives.dll": {} - } - }, - "System.Net.Sockets/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Sockets.dll": {} - } - }, - "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": {} - }, - "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": {} - }, - "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": {} - } - }, - "System.Reflection.Context/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/net6.0/System.Reflection.Context.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Reflection.DispatchProxy/4.7.1": { - "type": "package", - "compile": { - "ref/netstandard2.0/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/netcoreapp2.0/System.Reflection.DispatchProxy.dll": {} - } - }, - "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/System.Reflection.Emit.dll": {} - }, - "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/System.Reflection.Emit.ILGeneration.dll": {} - }, - "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/_._": {} - }, - "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/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.dll": {} - } - }, - "System.Runtime.Caching/6.0.0": { - "type": "package", - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Runtime.Caching.dll": {} - }, - "runtime": { - "lib/net6.0/System.Runtime.Caching.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} - }, - "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/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - }, - "compile": { - "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - }, - "runtime": { - "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Numerics.dll": {} - } - }, - "System.Security.AccessControl/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Security.AccessControl.dll": {} - }, - "runtime": { - "lib/net6.0/System.Security.AccessControl.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.Apple": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} - }, - "runtimeTargets": { - "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { - "assetType": "runtime", - "rid": "osx" - }, - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Cng/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Csp/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/_._": {} - }, - "runtime": { - "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { - "assetType": "runtime", - "rid": "unix" - } - } - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Security.Cryptography.Pkcs.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - } - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {} - }, - "runtime": { - "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "4.3.0", - "System.Security.Cryptography.Csp": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.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": {} - }, - "runtime": { - "lib/net6.0/System.Security.Cryptography.Xml.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Security.Permissions.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Security.Principal.Windows/5.0.0": { - "type": "package", - "compile": { - "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.ServiceModel.Duplex/4.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": {} - } - }, - "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": {} - } - }, - "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": {} - } - }, - "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": {}, - "lib/net6.0/System.ServiceModel.dll": {} - } - }, - "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": {} - } - }, - "System.ServiceModel.Syndication/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.ServiceModel.Syndication.dll": {} - }, - "runtime": { - "lib/net6.0/System.ServiceModel.Syndication.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.ServiceProcess.ServiceController.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Speech.dll": {} - }, - "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": {} - } - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Text.Encoding.CodePages.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Text.Encoding.Extensions/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" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} - } - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Text.Encodings.Web.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - }, - "runtimeTargets": { - "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": { - "assetType": "runtime", - "rid": "browser" - } - } - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Threading.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Threading.AccessControl.dll": {} - }, - "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": {} - } - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "compile": { - "ref/netcoreapp2.1/_._": {} - }, - "runtime": { - "lib/netcoreapp2.1/_._": {} - } - }, - "System.Threading.Timer/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.2/System.Threading.Timer.dll": {} - } - }, - "System.Web.Services.Description/4.9.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/System.Web.Services.Description.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Web.Services.Description.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Windows.Extensions.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Xml.ReaderWriter/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.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "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.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/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.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} - } - }, - "Typin/3.1.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "6.0.0", - "Microsoft.Extensions.Logging.Debug": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "Typin.Core": "3.1.0" - }, - "compile": { - "lib/net6.0/Typin.dll": {} - }, - "runtime": { - "lib/net6.0/Typin.dll": {} - } - }, - "Typin.Core/3.1.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "6.0.0" - }, - "compile": { - "lib/net6.0/Typin.Core.dll": {} - }, - "runtime": { - "lib/net6.0/Typin.Core.dll": {} - } - }, - "xunit/2.4.1": { - "type": "package", - "dependencies": { - "xunit.analyzers": "0.10.0", - "xunit.assert": "[2.4.1]", - "xunit.core": "[2.4.1]" - } - }, - "xunit.abstractions/2.0.3": { - "type": "package", - "compile": { - "lib/netstandard2.0/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/xunit.abstractions.dll": {} - } - }, - "xunit.analyzers/0.10.0": { - "type": "package" - }, - "xunit.assert/2.4.1": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.6.1" - }, - "compile": { - "lib/netstandard1.1/xunit.assert.dll": {} - }, - "runtime": { - "lib/netstandard1.1/xunit.assert.dll": {} - } - }, - "xunit.core/2.4.1": { - "type": "package", - "dependencies": { - "xunit.extensibility.core": "[2.4.1]", - "xunit.extensibility.execution": "[2.4.1]" - }, - "build": { - "build/xunit.core.props": {}, - "build/xunit.core.targets": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/xunit.core.props": {}, - "buildMultiTargeting/xunit.core.targets": {} - } - }, - "xunit.extensibility.core/2.4.1": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.6.1", - "xunit.abstractions": "2.0.3" - }, - "compile": { - "lib/netstandard1.1/xunit.core.dll": {} - }, - "runtime": { - "lib/netstandard1.1/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.4.1": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.6.1", - "xunit.extensibility.core": "[2.4.1]" - }, - "compile": { - "lib/netstandard1.1/xunit.execution.dotnet.dll": {} - }, - "runtime": { - "lib/netstandard1.1/xunit.execution.dotnet.dll": {} - } - }, - "xunit.runner.visualstudio/2.4.3": { - "type": "package", - "build": { - "build/netcoreapp2.1/xunit.runner.visualstudio.props": {} - } - }, - "YamlDotNet/11.2.1": { - "type": "package", - "compile": { - "lib/netstandard2.1/YamlDotNet.dll": {} - }, - "runtime": { - "lib/netstandard2.1/YamlDotNet.dll": {} - } - }, - "Core.Test/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v6.0", - "dependencies": { - "FluentAssertions": "6.4.0", - "FluentValidation": "10.3.6", - "IPNetwork2": "2.5.386", - "Linguard.Core": "2.0.0", - "Microsoft.NET.Test.Sdk": "16.11.0", - "Moq": "4.16.1", - "xunit": "2.4.1" - }, - "compile": { - "bin/placeholder/Core.Test.dll": {} - }, - "runtime": { - "bin/placeholder/Core.Test.dll": {} - } - }, - "Linguard.Cli/2.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v6.0", - "dependencies": { - "CommandLineParser": "2.8.0", - "FluentValidation": "10.3.6", - "Linguard.Core": "2.0.0", - "Typin": "3.1.0" - }, - "compile": { - "bin/placeholder/Linguard.Cli.dll": {} - }, - "runtime": { - "bin/placeholder/Linguard.Cli.dll": {} - } - }, - "Linguard.Core/2.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v6.0", - "dependencies": { - "Bogus": "34.0.1", - "ByteSize": "2.1.1", - "FluentValidation": "10.3.6", - "IPNetwork2": "2.5.386", - "Linguard.Log": "2.0.0", - "Microsoft.PowerShell.SDK": "7.2.1", - "System.Management.Automation": "7.2.1", - "YamlDotNet": "11.2.1" - }, - "compile": { - "bin/placeholder/Linguard.Core.dll": {} - }, - "runtime": { - "bin/placeholder/Linguard.Core.dll": {} - } - }, - "Linguard.Log/2.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v6.0", - "dependencies": { - "NLog": "4.7.13" - }, - "compile": { - "bin/placeholder/Linguard.Log.dll": {} - }, - "runtime": { - "bin/placeholder/Linguard.Log.dll": {} - } - } - } - }, - "libraries": { - "Bogus/34.0.1": { - "sha512": "49iq7QrD0wb7V4/FcK8p3dWdJxNUbojaqK9L6KRvdikIuRjt38EsNp7QXICcYdbYw01K8BHUdxlnTNn/YX3qDA==", - "type": "package", - "path": "bogus/34.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "bogus.34.0.1.nupkg.sha512", - "bogus.nuspec", - "lib/net40/Bogus.dll", - "lib/net40/Bogus.xml", - "lib/net6.0/Bogus.dll", - "lib/net6.0/Bogus.xml", - "lib/netstandard1.3/Bogus.dll", - "lib/netstandard1.3/Bogus.xml", - "lib/netstandard2.0/Bogus.dll", - "lib/netstandard2.0/Bogus.xml" - ] - }, - "ByteSize/2.1.1": { - "sha512": "D+Y3NpbHrW21vZwwegeWf/8iAg2Mr0s7n1su8Ysho+O9dctJ5/EkWUi19QVxc6+nZl080gGTXBP/Nz0twSI3dA==", - "type": "package", - "path": "bytesize/2.1.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "bytesize.2.1.1.nupkg.sha512", - "bytesize.nuspec", - "lib/net45/ByteSize.dll", - "lib/net45/ByteSize.xml", - "lib/net5.0/ByteSize.dll", - "lib/net5.0/ByteSize.xml", - "lib/netstandard1.0/ByteSize.dll", - "lib/netstandard1.0/ByteSize.xml", - "lib/netstandard2.0/ByteSize.dll", - "lib/netstandard2.0/ByteSize.xml", - "lib/netstandard2.1/ByteSize.dll", - "lib/netstandard2.1/ByteSize.xml" - ] - }, - "Castle.Core/4.4.0": { - "sha512": "b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", - "type": "package", - "path": "castle.core/4.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ASL - Apache Software Foundation License.txt", - "CHANGELOG.md", - "LICENSE", - "castle.core.4.4.0.nupkg.sha512", - "castle.core.nuspec", - "lib/net35/Castle.Core.dll", - "lib/net35/Castle.Core.xml", - "lib/net40/Castle.Core.dll", - "lib/net40/Castle.Core.xml", - "lib/net45/Castle.Core.dll", - "lib/net45/Castle.Core.xml", - "lib/netstandard1.3/Castle.Core.dll", - "lib/netstandard1.3/Castle.Core.xml", - "lib/netstandard1.5/Castle.Core.dll", - "lib/netstandard1.5/Castle.Core.xml", - "readme.txt" - ] - }, - "CommandLineParser/2.8.0": { - "sha512": "eco2HlKQBY4Joz9odHigzGpVzv6pjsXnY5lziioMveQxr+i2Z7xYcIOMeZTgYiqnMtMAbXMXsVhrNfWO5vJS8Q==", - "type": "package", - "path": "commandlineparser/2.8.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "CommandLine20.png", - "License.md", - "README.md", - "commandlineparser.2.8.0.nupkg.sha512", - "commandlineparser.nuspec", - "lib/net40/CommandLine.dll", - "lib/net40/CommandLine.xml", - "lib/net45/CommandLine.dll", - "lib/net45/CommandLine.xml", - "lib/net461/CommandLine.dll", - "lib/net461/CommandLine.xml", - "lib/netstandard2.0/CommandLine.dll", - "lib/netstandard2.0/CommandLine.xml" - ] - }, - "coverlet.msbuild/3.1.2": { - "sha512": "QhM0fnDtmIMImY7oxyQ/kh1VYtRxPyRVeLwRUGuUvI6Xp83pSYG9gerK8WgJj4TzUl7ISziADUGtIWKhtlbkbQ==", - "type": "package", - "path": "coverlet.msbuild/3.1.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/Microsoft.Build.Framework.dll", - "build/Microsoft.Build.Utilities.Core.dll", - "build/Microsoft.CSharp.dll", - "build/Microsoft.DotNet.PlatformAbstractions.dll", - "build/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "build/Microsoft.Extensions.DependencyInjection.dll", - "build/Microsoft.Extensions.DependencyModel.dll", - "build/Microsoft.Extensions.FileSystemGlobbing.dll", - "build/Mono.Cecil.Mdb.dll", - "build/Mono.Cecil.Pdb.dll", - "build/Mono.Cecil.Rocks.dll", - "build/Mono.Cecil.dll", - "build/Newtonsoft.Json.dll", - "build/System.AppContext.dll", - "build/System.Collections.Concurrent.dll", - "build/System.Collections.Immutable.dll", - "build/System.Collections.NonGeneric.dll", - "build/System.Dynamic.Runtime.dll", - "build/System.IO.FileSystem.Primitives.dll", - "build/System.Linq.Expressions.dll", - "build/System.Linq.dll", - "build/System.ObjectModel.dll", - "build/System.Private.DataContractSerialization.dll", - "build/System.Reflection.Emit.ILGeneration.dll", - "build/System.Reflection.Emit.Lightweight.dll", - "build/System.Reflection.Emit.dll", - "build/System.Reflection.Metadata.dll", - "build/System.Reflection.TypeExtensions.dll", - "build/System.Resources.Reader.dll", - "build/System.Runtime.Serialization.Primitives.dll", - "build/System.Runtime.Serialization.Xml.dll", - "build/System.Text.RegularExpressions.dll", - "build/System.Threading.Tasks.Extensions.dll", - "build/System.Threading.Tasks.Parallel.dll", - "build/System.Threading.Thread.dll", - "build/System.Threading.ThreadPool.dll", - "build/System.Threading.dll", - "build/System.Xml.ReaderWriter.dll", - "build/System.Xml.XDocument.dll", - "build/System.Xml.XmlDocument.dll", - "build/System.Xml.XmlSerializer.dll", - "build/coverlet.core.dll", - "build/coverlet.core.pdb", - "build/coverlet.msbuild.props", - "build/coverlet.msbuild.targets", - "build/coverlet.msbuild.tasks.dll", - "build/coverlet.msbuild.tasks.pdb", - "coverlet-icon.png", - "coverlet.msbuild.3.1.2.nupkg.sha512", - "coverlet.msbuild.nuspec" - ] - }, - "FluentAssertions/6.4.0": { - "sha512": "KOJE1UD7ndxoZAdmOraiUFLdcdGTArGQW8WYN+vwrC3mdt2G/B7gmsMOozgXKiNSh3fpD/Xp/0mhonRh8vrZKw==", - "type": "package", - "path": "fluentassertions/6.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "FluentAssertions.png", - "fluentassertions.6.4.0.nupkg.sha512", - "fluentassertions.nuspec", - "lib/net47/FluentAssertions.dll", - "lib/net47/FluentAssertions.pdb", - "lib/net47/FluentAssertions.xml", - "lib/netcoreapp2.1/FluentAssertions.dll", - "lib/netcoreapp2.1/FluentAssertions.pdb", - "lib/netcoreapp2.1/FluentAssertions.xml", - "lib/netcoreapp3.0/FluentAssertions.dll", - "lib/netcoreapp3.0/FluentAssertions.pdb", - "lib/netcoreapp3.0/FluentAssertions.xml", - "lib/netstandard2.0/FluentAssertions.dll", - "lib/netstandard2.0/FluentAssertions.pdb", - "lib/netstandard2.0/FluentAssertions.xml", - "lib/netstandard2.1/FluentAssertions.dll", - "lib/netstandard2.1/FluentAssertions.pdb", - "lib/netstandard2.1/FluentAssertions.xml" - ] - }, - "FluentValidation/10.3.6": { - "sha512": "iMd370ZDx6ydm8t7bIFdRbSKX0e42lpvCtifUSbTSXOk5iKjmgl7HU0PXBhIWQAyIRi3gCwfMI9luj8H6K+byw==", - "type": "package", - "path": "fluentvalidation/10.3.6", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "fluent-validation-icon.png", - "fluentvalidation.10.3.6.nupkg.sha512", - "fluentvalidation.nuspec", - "lib/net5.0/FluentValidation.dll", - "lib/net5.0/FluentValidation.xml", - "lib/net6.0/FluentValidation.dll", - "lib/net6.0/FluentValidation.xml", - "lib/netstandard2.0/FluentValidation.dll", - "lib/netstandard2.0/FluentValidation.xml", - "lib/netstandard2.1/FluentValidation.dll", - "lib/netstandard2.1/FluentValidation.xml" - ] - }, - "IPNetwork2/2.5.386": { - "sha512": "6ihnNm82vyJsUYYfR2BRTziY/mQ5UGLsQZuhdSYPeTlbQLhBW/4BC9hBz3h5bFDn8PkVw9dP0cpv9brIBmk4Fw==", - "type": "package", - "path": "ipnetwork2/2.5.386", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE", - "ipnetwork2.2.5.386.nupkg.sha512", - "ipnetwork2.nuspec", - "lib/net40/System.Net.IPNetwork.dll", - "lib/net40/System.Net.IPNetwork.xml", - "lib/net45/System.Net.IPNetwork.dll", - "lib/net45/System.Net.IPNetwork.xml", - "lib/net46/System.Net.IPNetwork.dll", - "lib/net46/System.Net.IPNetwork.xml", - "lib/net47/System.Net.IPNetwork.dll", - "lib/net47/System.Net.IPNetwork.xml", - "lib/net48/System.Net.IPNetwork.dll", - "lib/net48/System.Net.IPNetwork.xml", - "lib/net5.0/System.Net.IPNetwork.dll", - "lib/net5.0/System.Net.IPNetwork.xml", - "lib/netcoreapp3.1/System.Net.IPNetwork.dll", - "lib/netcoreapp3.1/System.Net.IPNetwork.xml", - "lib/netstandard1.6/System.Net.IPNetwork.dll", - "lib/netstandard1.6/System.Net.IPNetwork.xml", - "lib/netstandard2.0/System.Net.IPNetwork.dll", - "lib/netstandard2.0/System.Net.IPNetwork.xml", - "lib/netstandard2.1/System.Net.IPNetwork.dll", - "lib/netstandard2.1/System.Net.IPNetwork.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.CodeCoverage/16.11.0": { - "sha512": "wf6lpAeCqP0KFfbDVtfL50lr7jY1gq0+0oSphyksfLOEygMDXqnaxHK5LPFtMEhYSEtgXdNyXNnEddOqQQUdlQ==", - "type": "package", - "path": "microsoft.codecoverage/16.11.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE_NET.txt", - "ThirdPartyNotices.txt", - "build/netstandard1.0/CodeCoverage/CodeCoverage.config", - "build/netstandard1.0/CodeCoverage/CodeCoverage.exe", - "build/netstandard1.0/CodeCoverage/VanguardInstrumentationProfiler_x86.config", - "build/netstandard1.0/CodeCoverage/amd64/CodeCoverage.exe", - "build/netstandard1.0/CodeCoverage/amd64/VanguardInstrumentationProfiler_x64.config", - "build/netstandard1.0/CodeCoverage/amd64/covrun64.dll", - "build/netstandard1.0/CodeCoverage/amd64/msdia140.dll", - "build/netstandard1.0/CodeCoverage/amd64/msvcdis140.dll", - "build/netstandard1.0/CodeCoverage/amd64/msvcp140.dll", - "build/netstandard1.0/CodeCoverage/amd64/msvcp140_atomic_wait.dll", - "build/netstandard1.0/CodeCoverage/amd64/vcruntime140.dll", - "build/netstandard1.0/CodeCoverage/amd64/vcruntime140_1.dll", - "build/netstandard1.0/CodeCoverage/codecoveragemessages.dll", - "build/netstandard1.0/CodeCoverage/coreclr/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "build/netstandard1.0/CodeCoverage/covrun32.dll", - "build/netstandard1.0/CodeCoverage/msdia140.dll", - "build/netstandard1.0/CodeCoverage/msvcdis140.dll", - "build/netstandard1.0/CodeCoverage/msvcp140.dll", - "build/netstandard1.0/CodeCoverage/msvcp140_atomic_wait.dll", - "build/netstandard1.0/CodeCoverage/vcruntime140.dll", - "build/netstandard1.0/InstrumentationEngine/alpine/x64/ProductionBreakpoints_x64.config", - "build/netstandard1.0/InstrumentationEngine/alpine/x64/libCoverageInstrumentationMethod.so", - "build/netstandard1.0/InstrumentationEngine/alpine/x64/libInstrumentationEngine.so", - "build/netstandard1.0/InstrumentationEngine/ubuntu/x64/ProductionBreakpoints_x64.config", - "build/netstandard1.0/InstrumentationEngine/ubuntu/x64/libCoverageInstrumentationMethod.so", - "build/netstandard1.0/InstrumentationEngine/ubuntu/x64/libInstrumentationEngine.so", - "build/netstandard1.0/InstrumentationEngine/x64/MicrosoftInstrumentationEngine_x64.dll", - "build/netstandard1.0/InstrumentationEngine/x86/MicrosoftInstrumentationEngine_x86.dll", - "build/netstandard1.0/Microsoft.CodeCoverage.props", - "build/netstandard1.0/Microsoft.CodeCoverage.targets", - "build/netstandard1.0/Microsoft.VisualStudio.Coverage.Core.dll", - "build/netstandard1.0/Microsoft.VisualStudio.Coverage.Instrumentation.dll", - "build/netstandard1.0/Microsoft.VisualStudio.Coverage.Interprocess.dll", - "build/netstandard1.0/Microsoft.VisualStudio.TraceDataCollector.dll", - "build/netstandard1.0/Mono.Cecil.Pdb.dll", - "build/netstandard1.0/Mono.Cecil.dll", - "build/netstandard1.0/ThirdPartyNotices.txt", - "build/netstandard1.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "lib/net45/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "microsoft.codecoverage.16.11.0.nupkg.sha512", - "microsoft.codecoverage.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.DependencyInjection/6.0.0": { - "sha512": "k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/Microsoft.Extensions.DependencyInjection.dll", - "lib/net461/Microsoft.Extensions.DependencyInjection.xml", - "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", - "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", - "microsoft.extensions.dependencyinjection.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", - "microsoft.extensions.dependencyinjection.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging/6.0.0": { - "sha512": "eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", - "type": "package", - "path": "microsoft.extensions.logging/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Logging.dll", - "lib/net461/Microsoft.Extensions.Logging.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", - "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", - "microsoft.extensions.logging.6.0.0.nupkg.sha512", - "microsoft.extensions.logging.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging.Abstractions/6.0.0": { - "sha512": "/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", - "type": "package", - "path": "microsoft.extensions.logging.abstractions/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", - "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", - "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", - "build/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", - "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512", - "microsoft.extensions.logging.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging.Debug/6.0.0": { - "sha512": "M9g/JixseSZATJE9tcMn9uzoD4+DbSglivFqVx8YkRJ7VVPmnvCEbOZ0AAaxsL1EKyI4cz07DXOOJExxNsUOHw==", - "type": "package", - "path": "microsoft.extensions.logging.debug/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Logging.Debug.dll", - "lib/net461/Microsoft.Extensions.Logging.Debug.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml", - "microsoft.extensions.logging.debug.6.0.0.nupkg.sha512", - "microsoft.extensions.logging.debug.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "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.Extensions.Options/6.0.0": { - "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", - "type": "package", - "path": "microsoft.extensions.options/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Options.dll", - "lib/net461/Microsoft.Extensions.Options.xml", - "lib/netstandard2.0/Microsoft.Extensions.Options.dll", - "lib/netstandard2.0/Microsoft.Extensions.Options.xml", - "lib/netstandard2.1/Microsoft.Extensions.Options.dll", - "lib/netstandard2.1/Microsoft.Extensions.Options.xml", - "microsoft.extensions.options.6.0.0.nupkg.sha512", - "microsoft.extensions.options.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", - "type": "package", - "path": "microsoft.extensions.primitives/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/Microsoft.Extensions.Primitives.dll", - "lib/net461/Microsoft.Extensions.Primitives.xml", - "lib/net6.0/Microsoft.Extensions.Primitives.dll", - "lib/net6.0/Microsoft.Extensions.Primitives.xml", - "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll", - "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", - "microsoft.extensions.primitives.6.0.0.nupkg.sha512", - "microsoft.extensions.primitives.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "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.NET.Test.Sdk/16.11.0": { - "sha512": "f4mbG1SUSkNWF5p7B3Y8ZxMsvKhxCmpZhdl+w6tMtLSUGE7Izi1syU6TkmKOvB2BV66pdbENConFAISOix4ohQ==", - "type": "package", - "path": "microsoft.net.test.sdk/16.11.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE_NET.txt", - "build/net40/Microsoft.NET.Test.Sdk.props", - "build/net40/Microsoft.NET.Test.Sdk.targets", - "build/net45/Microsoft.NET.Test.Sdk.props", - "build/net45/Microsoft.NET.Test.Sdk.targets", - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.cs", - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.fs", - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.vb", - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.props", - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.targets", - "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.cs", - "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.fs", - "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.vb", - "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.props", - "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.targets", - "build/uap10.0/Microsoft.NET.Test.Sdk.props", - "buildMultiTargeting/Microsoft.NET.Test.Sdk.props", - "lib/net40/_._", - "lib/net45/_._", - "lib/netcoreapp1.0/_._", - "lib/netcoreapp2.1/_._", - "lib/uap10.0/_._", - "microsoft.net.test.sdk.16.11.0.nupkg.sha512", - "microsoft.net.test.sdk.nuspec" - ] - }, - "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.TestPlatform.ObjectModel/16.11.0": { - "sha512": "EiknJx9N9Z30gs7R+HHhki7fA8EiiM3pwD1vkw3bFsBC8kdVq/O7mHf1hrg5aJp+ASO6BoOzQueD2ysfTOy/Bg==", - "type": "package", - "path": "microsoft.testplatform.objectmodel/16.11.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE_NET.txt", - "lib/net45/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/net45/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/net45/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/net45/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/net451/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/net451/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/net451/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netcoreapp1.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netcoreapp1.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netstandard1.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netstandard1.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netstandard1.3/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netstandard1.3/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netstandard1.3/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/uap10.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/uap10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "microsoft.testplatform.objectmodel.16.11.0.nupkg.sha512", - "microsoft.testplatform.objectmodel.nuspec" - ] - }, - "Microsoft.TestPlatform.TestHost/16.11.0": { - "sha512": "/Q+R0EcCJE8JaYCk+bGReicw/xrB0HhecrYrUcLbn95BnAlaTJrZhoLkUhvtKTAVtqX/AIKWXYtutiU/Q6QUgg==", - "type": "package", - "path": "microsoft.testplatform.testhost/16.11.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE_NET.txt", - "ThirdPartyNotices.txt", - "build/netcoreapp1.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "build/netcoreapp1.0/Microsoft.TestPlatform.TestHost.props", - "build/netcoreapp1.0/x64/Microsoft.TestPlatform.PlatformAbstractions.dll", - "build/netcoreapp1.0/x64/testhost.dll", - "build/netcoreapp1.0/x64/testhost.exe", - "build/netcoreapp1.0/x86/Microsoft.TestPlatform.PlatformAbstractions.dll", - "build/netcoreapp1.0/x86/testhost.x86.dll", - "build/netcoreapp1.0/x86/testhost.x86.exe", - "build/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll", - "build/netcoreapp2.1/Microsoft.TestPlatform.TestHost.props", - "build/netcoreapp2.1/x64/Microsoft.TestPlatform.PlatformAbstractions.dll", - "build/netcoreapp2.1/x64/testhost.dll", - "build/netcoreapp2.1/x64/testhost.exe", - "build/netcoreapp2.1/x86/Microsoft.TestPlatform.PlatformAbstractions.dll", - "build/netcoreapp2.1/x86/testhost.x86.dll", - "build/netcoreapp2.1/x86/testhost.x86.exe", - "build/uap10.0/Microsoft.TestPlatform.TestHost.props", - "build/uap10.0/Microsoft.TestPlatform.TestHost.targets", - "build/uap10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/cs/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/de/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/es/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/fr/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/it/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/ja/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/ko/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/pl/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/pt-BR/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/ru/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/tr/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/x64/msdia140.dll", - "build/uap10.0/x86/msdia140.dll", - "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/_._", - "lib/netcoreapp1.0/Microsoft.TestPlatform.CommunicationUtilities.dll", - "lib/netcoreapp1.0/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netcoreapp1.0/Microsoft.TestPlatform.CrossPlatEngine.dll", - "lib/netcoreapp1.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netcoreapp1.0/Microsoft.TestPlatform.Utilities.dll", - "lib/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.Common.dll", - "lib/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netcoreapp1.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/testhost.deps.json", - "lib/netcoreapp1.0/testhost.dll", - "lib/netcoreapp1.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/x64/msdia140.dll", - "lib/netcoreapp1.0/x86/msdia140.dll", - "lib/netcoreapp1.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll", - "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll", - "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll", - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll", - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/testhost.deps.json", - "lib/netcoreapp2.1/testhost.dll", - "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/x64/msdia140.dll", - "lib/netcoreapp2.1/x86/msdia140.dll", - "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/uap10.0/Microsoft.TestPlatform.CommunicationUtilities.dll", - "lib/uap10.0/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/uap10.0/Microsoft.TestPlatform.CrossPlatEngine.dll", - "lib/uap10.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/uap10.0/Microsoft.TestPlatform.Utilities.dll", - "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.Common.dll", - "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/uap10.0/testhost.dll", - "microsoft.testplatform.testhost.16.11.0.nupkg.sha512", - "microsoft.testplatform.testhost.nuspec" - ] - }, - "Microsoft.Win32.Primitives/4.3.0": { - "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", - "type": "package", - "path": "microsoft.win32.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/Microsoft.Win32.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "microsoft.win32.primitives.4.3.0.nupkg.sha512", - "microsoft.win32.primitives.nuspec", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/Microsoft.Win32.Primitives.dll", - "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", - "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "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" - ] - }, - "Moq/4.16.1": { - "sha512": "bw3R9q8cVNhWXNpnvWb0OGP4HadS4zvClq+T1zf7AF+tLY1haZ2AvbHidQekf4PDv1T40c6brZeT/V0IBq7cEQ==", - "type": "package", - "path": "moq/4.16.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net45/Moq.dll", - "lib/net45/Moq.xml", - "lib/netstandard2.0/Moq.dll", - "lib/netstandard2.0/Moq.xml", - "lib/netstandard2.1/Moq.dll", - "lib/netstandard2.1/Moq.xml", - "moq.4.16.1.nupkg.sha512", - "moq.nuspec", - "moq.png" - ] - }, - "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" - ] - }, - "NETStandard.Library/1.6.1": { - "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", - "type": "package", - "path": "netstandard.library/1.6.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "netstandard.library.1.6.1.nupkg.sha512", - "netstandard.library.nuspec" - ] - }, - "Newtonsoft.Json/13.0.1": { - "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", - "type": "package", - "path": "newtonsoft.json/13.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.md", - "lib/net20/Newtonsoft.Json.dll", - "lib/net20/Newtonsoft.Json.xml", - "lib/net35/Newtonsoft.Json.dll", - "lib/net35/Newtonsoft.Json.xml", - "lib/net40/Newtonsoft.Json.dll", - "lib/net40/Newtonsoft.Json.xml", - "lib/net45/Newtonsoft.Json.dll", - "lib/net45/Newtonsoft.Json.xml", - "lib/netstandard1.0/Newtonsoft.Json.dll", - "lib/netstandard1.0/Newtonsoft.Json.xml", - "lib/netstandard1.3/Newtonsoft.Json.dll", - "lib/netstandard1.3/Newtonsoft.Json.xml", - "lib/netstandard2.0/Newtonsoft.Json.dll", - "lib/netstandard2.0/Newtonsoft.Json.xml", - "newtonsoft.json.13.0.1.nupkg.sha512", - "newtonsoft.json.nuspec", - "packageIcon.png" - ] - }, - "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" - ] - }, - "NLog/4.7.13": { - "sha512": "AvoGpCuq36B+0wY313XA6gC+YeMvk24rqF8P+HS9fInBGOjCzPjpXp2ln9ATZjPOJtXgHfc8zNmTjyswFGLxvg==", - "type": "package", - "path": "nlog/4.7.13", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/monoandroid44/NLog.dll", - "lib/monoandroid44/NLog.xml", - "lib/net35/NLog.dll", - "lib/net35/NLog.xml", - "lib/net40-client/NLog.dll", - "lib/net40-client/NLog.xml", - "lib/net45/NLog.dll", - "lib/net45/NLog.xml", - "lib/netstandard1.3/NLog.dll", - "lib/netstandard1.3/NLog.xml", - "lib/netstandard1.5/NLog.dll", - "lib/netstandard1.5/NLog.xml", - "lib/netstandard2.0/NLog.dll", - "lib/netstandard2.0/NLog.xml", - "lib/sl4/NLog.dll", - "lib/sl4/NLog.xml", - "lib/sl5/NLog.dll", - "lib/sl5/NLog.xml", - "lib/wp8/NLog.dll", - "lib/wp8/NLog.xml", - "lib/xamarinios10/NLog.dll", - "lib/xamarinios10/NLog.xml", - "nlog.4.7.13.nupkg.sha512", - "nlog.nuspec" - ] - }, - "NuGet.Frameworks/5.0.0": { - "sha512": "c5JVjuVAm4f7E9Vj+v09Z9s2ZsqFDjBpcsyS3M9xRo0bEdm/LVZSzLxxNvfvAwRiiE8nwe1h2G4OwiwlzFKXlA==", - "type": "package", - "path": "nuget.frameworks/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net40/NuGet.Frameworks.dll", - "lib/net40/NuGet.Frameworks.xml", - "lib/net472/NuGet.Frameworks.dll", - "lib/net472/NuGet.Frameworks.xml", - "lib/netstandard2.0/NuGet.Frameworks.dll", - "lib/netstandard2.0/NuGet.Frameworks.xml", - "nuget.frameworks.5.0.0.nupkg.sha512", - "nuget.frameworks.nuspec" - ] - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", - "type": "package", - "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", - "type": "package", - "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", - "type": "package", - "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "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/4.3.0": { - "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "type": "package", - "path": "runtime.native.system/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.4.3.0.nupkg.sha512", - "runtime.native.system.nuspec" - ] - }, - "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.Compression/4.3.0": { - "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", - "type": "package", - "path": "runtime.native.system.io.compression/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.io.compression.4.3.0.nupkg.sha512", - "runtime.native.system.io.compression.nuspec" - ] - }, - "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.native.System.Net.Http/4.3.0": { - "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", - "type": "package", - "path": "runtime.native.system.net.http/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.net.http.4.3.0.nupkg.sha512", - "runtime.native.system.net.http.nuspec" - ] - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", - "type": "package", - "path": "runtime.native.system.security.cryptography.apple/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "runtime.native.system.security.cryptography.apple.nuspec" - ] - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", - "type": "package", - "path": "runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.native.system.security.cryptography.openssl.nuspec" - ] - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", - "type": "package", - "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", - "type": "package", - "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "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.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", - "type": "package", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", - "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" - ] - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", - "type": "package", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" - ] - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", - "type": "package", - "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", - "type": "package", - "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", - "type": "package", - "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", - "type": "package", - "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", - "type": "package", - "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", - "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec", - "runtimes/win-arm64/native/sni.dll", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", - "type": "package", - "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", - "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec", - "runtimes/win-x64/native/sni.dll", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", - "type": "package", - "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", - "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec", - "runtimes/win-x86/native/sni.dll", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.AppContext/4.3.0": { - "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", - "type": "package", - "path": "system.appcontext/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.AppContext.dll", - "lib/net463/System.AppContext.dll", - "lib/netcore50/System.AppContext.dll", - "lib/netstandard1.6/System.AppContext.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.AppContext.dll", - "ref/net463/System.AppContext.dll", - "ref/netstandard/_._", - "ref/netstandard1.3/System.AppContext.dll", - "ref/netstandard1.3/System.AppContext.xml", - "ref/netstandard1.3/de/System.AppContext.xml", - "ref/netstandard1.3/es/System.AppContext.xml", - "ref/netstandard1.3/fr/System.AppContext.xml", - "ref/netstandard1.3/it/System.AppContext.xml", - "ref/netstandard1.3/ja/System.AppContext.xml", - "ref/netstandard1.3/ko/System.AppContext.xml", - "ref/netstandard1.3/ru/System.AppContext.xml", - "ref/netstandard1.3/zh-hans/System.AppContext.xml", - "ref/netstandard1.3/zh-hant/System.AppContext.xml", - "ref/netstandard1.6/System.AppContext.dll", - "ref/netstandard1.6/System.AppContext.xml", - "ref/netstandard1.6/de/System.AppContext.xml", - "ref/netstandard1.6/es/System.AppContext.xml", - "ref/netstandard1.6/fr/System.AppContext.xml", - "ref/netstandard1.6/it/System.AppContext.xml", - "ref/netstandard1.6/ja/System.AppContext.xml", - "ref/netstandard1.6/ko/System.AppContext.xml", - "ref/netstandard1.6/ru/System.AppContext.xml", - "ref/netstandard1.6/zh-hans/System.AppContext.xml", - "ref/netstandard1.6/zh-hant/System.AppContext.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.AppContext.dll", - "system.appcontext.4.3.0.nupkg.sha512", - "system.appcontext.nuspec" - ] - }, - "System.Buffers/4.3.0": { - "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", - "type": "package", - "path": "system.buffers/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.1/.xml", - "lib/netstandard1.1/System.Buffers.dll", - "system.buffers.4.3.0.nupkg.sha512", - "system.buffers.nuspec" - ] - }, - "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.Concurrent/4.3.0": { - "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", - "type": "package", - "path": "system.collections.concurrent/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Collections.Concurrent.dll", - "lib/netstandard1.3/System.Collections.Concurrent.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/netcore50/System.Collections.Concurrent.dll", - "ref/netcore50/System.Collections.Concurrent.xml", - "ref/netcore50/de/System.Collections.Concurrent.xml", - "ref/netcore50/es/System.Collections.Concurrent.xml", - "ref/netcore50/fr/System.Collections.Concurrent.xml", - "ref/netcore50/it/System.Collections.Concurrent.xml", - "ref/netcore50/ja/System.Collections.Concurrent.xml", - "ref/netcore50/ko/System.Collections.Concurrent.xml", - "ref/netcore50/ru/System.Collections.Concurrent.xml", - "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", - "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", - "ref/netstandard1.1/System.Collections.Concurrent.dll", - "ref/netstandard1.1/System.Collections.Concurrent.xml", - "ref/netstandard1.1/de/System.Collections.Concurrent.xml", - "ref/netstandard1.1/es/System.Collections.Concurrent.xml", - "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", - "ref/netstandard1.1/it/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", - "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", - "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", - "ref/netstandard1.3/System.Collections.Concurrent.dll", - "ref/netstandard1.3/System.Collections.Concurrent.xml", - "ref/netstandard1.3/de/System.Collections.Concurrent.xml", - "ref/netstandard1.3/es/System.Collections.Concurrent.xml", - "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", - "ref/netstandard1.3/it/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", - "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", - "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.collections.concurrent.4.3.0.nupkg.sha512", - "system.collections.concurrent.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.Collections.NonGeneric/4.3.0": { - "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", - "type": "package", - "path": "system.collections.nongeneric/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Collections.NonGeneric.dll", - "lib/netstandard1.3/System.Collections.NonGeneric.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Collections.NonGeneric.dll", - "ref/netstandard1.3/System.Collections.NonGeneric.dll", - "ref/netstandard1.3/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.collections.nongeneric.4.3.0.nupkg.sha512", - "system.collections.nongeneric.nuspec" - ] - }, - "System.Collections.Specialized/4.3.0": { - "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", - "type": "package", - "path": "system.collections.specialized/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Collections.Specialized.dll", - "lib/netstandard1.3/System.Collections.Specialized.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Collections.Specialized.dll", - "ref/netstandard1.3/System.Collections.Specialized.dll", - "ref/netstandard1.3/System.Collections.Specialized.xml", - "ref/netstandard1.3/de/System.Collections.Specialized.xml", - "ref/netstandard1.3/es/System.Collections.Specialized.xml", - "ref/netstandard1.3/fr/System.Collections.Specialized.xml", - "ref/netstandard1.3/it/System.Collections.Specialized.xml", - "ref/netstandard1.3/ja/System.Collections.Specialized.xml", - "ref/netstandard1.3/ko/System.Collections.Specialized.xml", - "ref/netstandard1.3/ru/System.Collections.Specialized.xml", - "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml", - "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.collections.specialized.4.3.0.nupkg.sha512", - "system.collections.specialized.nuspec" - ] - }, - "System.ComponentModel/4.3.0": { - "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", - "type": "package", - "path": "system.componentmodel/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ComponentModel.dll", - "lib/netstandard1.3/System.ComponentModel.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.ComponentModel.dll", - "ref/netcore50/System.ComponentModel.xml", - "ref/netcore50/de/System.ComponentModel.xml", - "ref/netcore50/es/System.ComponentModel.xml", - "ref/netcore50/fr/System.ComponentModel.xml", - "ref/netcore50/it/System.ComponentModel.xml", - "ref/netcore50/ja/System.ComponentModel.xml", - "ref/netcore50/ko/System.ComponentModel.xml", - "ref/netcore50/ru/System.ComponentModel.xml", - "ref/netcore50/zh-hans/System.ComponentModel.xml", - "ref/netcore50/zh-hant/System.ComponentModel.xml", - "ref/netstandard1.0/System.ComponentModel.dll", - "ref/netstandard1.0/System.ComponentModel.xml", - "ref/netstandard1.0/de/System.ComponentModel.xml", - "ref/netstandard1.0/es/System.ComponentModel.xml", - "ref/netstandard1.0/fr/System.ComponentModel.xml", - "ref/netstandard1.0/it/System.ComponentModel.xml", - "ref/netstandard1.0/ja/System.ComponentModel.xml", - "ref/netstandard1.0/ko/System.ComponentModel.xml", - "ref/netstandard1.0/ru/System.ComponentModel.xml", - "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", - "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.4.3.0.nupkg.sha512", - "system.componentmodel.nuspec" - ] - }, - "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.ComponentModel.Primitives/4.3.0": { - "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", - "type": "package", - "path": "system.componentmodel.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/System.ComponentModel.Primitives.dll", - "lib/netstandard1.0/System.ComponentModel.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/System.ComponentModel.Primitives.dll", - "ref/netstandard1.0/System.ComponentModel.Primitives.dll", - "ref/netstandard1.0/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.primitives.4.3.0.nupkg.sha512", - "system.componentmodel.primitives.nuspec" - ] - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", - "type": "package", - "path": "system.componentmodel.typeconverter/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/System.ComponentModel.TypeConverter.dll", - "lib/net462/System.ComponentModel.TypeConverter.dll", - "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll", - "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/System.ComponentModel.TypeConverter.dll", - "ref/net462/System.ComponentModel.TypeConverter.dll", - "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll", - "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll", - "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.typeconverter.4.3.0.nupkg.sha512", - "system.componentmodel.typeconverter.nuspec" - ] - }, - "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.Console/4.3.0": { - "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", - "type": "package", - "path": "system.console/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Console.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Console.dll", - "ref/netstandard1.3/System.Console.dll", - "ref/netstandard1.3/System.Console.xml", - "ref/netstandard1.3/de/System.Console.xml", - "ref/netstandard1.3/es/System.Console.xml", - "ref/netstandard1.3/fr/System.Console.xml", - "ref/netstandard1.3/it/System.Console.xml", - "ref/netstandard1.3/ja/System.Console.xml", - "ref/netstandard1.3/ko/System.Console.xml", - "ref/netstandard1.3/ru/System.Console.xml", - "ref/netstandard1.3/zh-hans/System.Console.xml", - "ref/netstandard1.3/zh-hant/System.Console.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.console.4.3.0.nupkg.sha512", - "system.console.nuspec" - ] - }, - "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/6.0.0": { - "sha512": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", - "type": "package", - "path": "system.diagnostics.diagnosticsource/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Diagnostics.DiagnosticSource.dll", - "lib/net461/System.Diagnostics.DiagnosticSource.xml", - "lib/net5.0/System.Diagnostics.DiagnosticSource.dll", - "lib/net5.0/System.Diagnostics.DiagnosticSource.xml", - "lib/net6.0/System.Diagnostics.DiagnosticSource.dll", - "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", - "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", - "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", - "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", - "system.diagnostics.diagnosticsource.nuspec", - "useSharedDesignerContext.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.Diagnostics.Tools/4.3.0": { - "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", - "type": "package", - "path": "system.diagnostics.tools/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.Tools.dll", - "ref/netcore50/System.Diagnostics.Tools.xml", - "ref/netcore50/de/System.Diagnostics.Tools.xml", - "ref/netcore50/es/System.Diagnostics.Tools.xml", - "ref/netcore50/fr/System.Diagnostics.Tools.xml", - "ref/netcore50/it/System.Diagnostics.Tools.xml", - "ref/netcore50/ja/System.Diagnostics.Tools.xml", - "ref/netcore50/ko/System.Diagnostics.Tools.xml", - "ref/netcore50/ru/System.Diagnostics.Tools.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/System.Diagnostics.Tools.dll", - "ref/netstandard1.0/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.diagnostics.tools.4.3.0.nupkg.sha512", - "system.diagnostics.tools.nuspec" - ] - }, - "System.Diagnostics.TraceSource/4.3.0": { - "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", - "type": "package", - "path": "system.diagnostics.tracesource/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Diagnostics.TraceSource.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Diagnostics.TraceSource.dll", - "ref/netstandard1.3/System.Diagnostics.TraceSource.dll", - "ref/netstandard1.3/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", - "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll", - "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", - "system.diagnostics.tracesource.4.3.0.nupkg.sha512", - "system.diagnostics.tracesource.nuspec" - ] - }, - "System.Diagnostics.Tracing/4.3.0": { - "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", - "type": "package", - "path": "system.diagnostics.tracing/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Diagnostics.Tracing.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Diagnostics.Tracing.dll", - "ref/netcore50/System.Diagnostics.Tracing.dll", - "ref/netcore50/System.Diagnostics.Tracing.xml", - "ref/netcore50/de/System.Diagnostics.Tracing.xml", - "ref/netcore50/es/System.Diagnostics.Tracing.xml", - "ref/netcore50/fr/System.Diagnostics.Tracing.xml", - "ref/netcore50/it/System.Diagnostics.Tracing.xml", - "ref/netcore50/ja/System.Diagnostics.Tracing.xml", - "ref/netcore50/ko/System.Diagnostics.Tracing.xml", - "ref/netcore50/ru/System.Diagnostics.Tracing.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/System.Diagnostics.Tracing.dll", - "ref/netstandard1.1/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/System.Diagnostics.Tracing.dll", - "ref/netstandard1.2/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/System.Diagnostics.Tracing.dll", - "ref/netstandard1.3/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/System.Diagnostics.Tracing.dll", - "ref/netstandard1.5/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.diagnostics.tracing.4.3.0.nupkg.sha512", - "system.diagnostics.tracing.nuspec" - ] - }, - "System.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.Globalization.Calendars/4.3.0": { - "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", - "type": "package", - "path": "system.globalization.calendars/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Globalization.Calendars.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Globalization.Calendars.dll", - "ref/netstandard1.3/System.Globalization.Calendars.dll", - "ref/netstandard1.3/System.Globalization.Calendars.xml", - "ref/netstandard1.3/de/System.Globalization.Calendars.xml", - "ref/netstandard1.3/es/System.Globalization.Calendars.xml", - "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", - "ref/netstandard1.3/it/System.Globalization.Calendars.xml", - "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", - "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", - "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", - "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", - "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.globalization.calendars.4.3.0.nupkg.sha512", - "system.globalization.calendars.nuspec" - ] - }, - "System.Globalization.Extensions/4.3.0": { - "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", - "type": "package", - "path": "system.globalization.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Globalization.Extensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Globalization.Extensions.dll", - "ref/netstandard1.3/System.Globalization.Extensions.dll", - "ref/netstandard1.3/System.Globalization.Extensions.xml", - "ref/netstandard1.3/de/System.Globalization.Extensions.xml", - "ref/netstandard1.3/es/System.Globalization.Extensions.xml", - "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", - "ref/netstandard1.3/it/System.Globalization.Extensions.xml", - "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", - "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", - "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", - "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", - "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", - "runtimes/win/lib/net46/System.Globalization.Extensions.dll", - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", - "system.globalization.extensions.4.3.0.nupkg.sha512", - "system.globalization.extensions.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.Compression/4.3.0": { - "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", - "type": "package", - "path": "system.io.compression/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.IO.Compression.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/net46/System.IO.Compression.dll", - "ref/netcore50/System.IO.Compression.dll", - "ref/netcore50/System.IO.Compression.xml", - "ref/netcore50/de/System.IO.Compression.xml", - "ref/netcore50/es/System.IO.Compression.xml", - "ref/netcore50/fr/System.IO.Compression.xml", - "ref/netcore50/it/System.IO.Compression.xml", - "ref/netcore50/ja/System.IO.Compression.xml", - "ref/netcore50/ko/System.IO.Compression.xml", - "ref/netcore50/ru/System.IO.Compression.xml", - "ref/netcore50/zh-hans/System.IO.Compression.xml", - "ref/netcore50/zh-hant/System.IO.Compression.xml", - "ref/netstandard1.1/System.IO.Compression.dll", - "ref/netstandard1.1/System.IO.Compression.xml", - "ref/netstandard1.1/de/System.IO.Compression.xml", - "ref/netstandard1.1/es/System.IO.Compression.xml", - "ref/netstandard1.1/fr/System.IO.Compression.xml", - "ref/netstandard1.1/it/System.IO.Compression.xml", - "ref/netstandard1.1/ja/System.IO.Compression.xml", - "ref/netstandard1.1/ko/System.IO.Compression.xml", - "ref/netstandard1.1/ru/System.IO.Compression.xml", - "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", - "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", - "ref/netstandard1.3/System.IO.Compression.dll", - "ref/netstandard1.3/System.IO.Compression.xml", - "ref/netstandard1.3/de/System.IO.Compression.xml", - "ref/netstandard1.3/es/System.IO.Compression.xml", - "ref/netstandard1.3/fr/System.IO.Compression.xml", - "ref/netstandard1.3/it/System.IO.Compression.xml", - "ref/netstandard1.3/ja/System.IO.Compression.xml", - "ref/netstandard1.3/ko/System.IO.Compression.xml", - "ref/netstandard1.3/ru/System.IO.Compression.xml", - "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", - "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", - "runtimes/win/lib/net46/System.IO.Compression.dll", - "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", - "system.io.compression.4.3.0.nupkg.sha512", - "system.io.compression.nuspec" - ] - }, - "System.IO.Compression.ZipFile/4.3.0": { - "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", - "type": "package", - "path": "system.io.compression.zipfile/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.Compression.ZipFile.dll", - "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.Compression.ZipFile.dll", - "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", - "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.compression.zipfile.4.3.0.nupkg.sha512", - "system.io.compression.zipfile.nuspec" - ] - }, - "System.IO.FileSystem/4.3.0": { - "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "type": "package", - "path": "system.io.filesystem/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.dll", - "ref/netstandard1.3/System.IO.FileSystem.dll", - "ref/netstandard1.3/System.IO.FileSystem.xml", - "ref/netstandard1.3/de/System.IO.FileSystem.xml", - "ref/netstandard1.3/es/System.IO.FileSystem.xml", - "ref/netstandard1.3/fr/System.IO.FileSystem.xml", - "ref/netstandard1.3/it/System.IO.FileSystem.xml", - "ref/netstandard1.3/ja/System.IO.FileSystem.xml", - "ref/netstandard1.3/ko/System.IO.FileSystem.xml", - "ref/netstandard1.3/ru/System.IO.FileSystem.xml", - "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", - "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.filesystem.4.3.0.nupkg.sha512", - "system.io.filesystem.nuspec" - ] - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "type": "package", - "path": "system.io.filesystem.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.Primitives.dll", - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.Primitives.dll", - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", - "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.filesystem.primitives.4.3.0.nupkg.sha512", - "system.io.filesystem.primitives.nuspec" - ] - }, - "System.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/4.3.0": { - "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", - "type": "package", - "path": "system.net.http/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/Xamarinmac20/_._", - "lib/monoandroid10/_._", - "lib/monotouch10/_._", - "lib/net45/_._", - "lib/net46/System.Net.Http.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/Xamarinmac20/_._", - "ref/monoandroid10/_._", - "ref/monotouch10/_._", - "ref/net45/_._", - "ref/net46/System.Net.Http.dll", - "ref/net46/System.Net.Http.xml", - "ref/net46/de/System.Net.Http.xml", - "ref/net46/es/System.Net.Http.xml", - "ref/net46/fr/System.Net.Http.xml", - "ref/net46/it/System.Net.Http.xml", - "ref/net46/ja/System.Net.Http.xml", - "ref/net46/ko/System.Net.Http.xml", - "ref/net46/ru/System.Net.Http.xml", - "ref/net46/zh-hans/System.Net.Http.xml", - "ref/net46/zh-hant/System.Net.Http.xml", - "ref/netcore50/System.Net.Http.dll", - "ref/netcore50/System.Net.Http.xml", - "ref/netcore50/de/System.Net.Http.xml", - "ref/netcore50/es/System.Net.Http.xml", - "ref/netcore50/fr/System.Net.Http.xml", - "ref/netcore50/it/System.Net.Http.xml", - "ref/netcore50/ja/System.Net.Http.xml", - "ref/netcore50/ko/System.Net.Http.xml", - "ref/netcore50/ru/System.Net.Http.xml", - "ref/netcore50/zh-hans/System.Net.Http.xml", - "ref/netcore50/zh-hant/System.Net.Http.xml", - "ref/netstandard1.1/System.Net.Http.dll", - "ref/netstandard1.1/System.Net.Http.xml", - "ref/netstandard1.1/de/System.Net.Http.xml", - "ref/netstandard1.1/es/System.Net.Http.xml", - "ref/netstandard1.1/fr/System.Net.Http.xml", - "ref/netstandard1.1/it/System.Net.Http.xml", - "ref/netstandard1.1/ja/System.Net.Http.xml", - "ref/netstandard1.1/ko/System.Net.Http.xml", - "ref/netstandard1.1/ru/System.Net.Http.xml", - "ref/netstandard1.1/zh-hans/System.Net.Http.xml", - "ref/netstandard1.1/zh-hant/System.Net.Http.xml", - "ref/netstandard1.3/System.Net.Http.dll", - "ref/netstandard1.3/System.Net.Http.xml", - "ref/netstandard1.3/de/System.Net.Http.xml", - "ref/netstandard1.3/es/System.Net.Http.xml", - "ref/netstandard1.3/fr/System.Net.Http.xml", - "ref/netstandard1.3/it/System.Net.Http.xml", - "ref/netstandard1.3/ja/System.Net.Http.xml", - "ref/netstandard1.3/ko/System.Net.Http.xml", - "ref/netstandard1.3/ru/System.Net.Http.xml", - "ref/netstandard1.3/zh-hans/System.Net.Http.xml", - "ref/netstandard1.3/zh-hant/System.Net.Http.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", - "runtimes/win/lib/net46/System.Net.Http.dll", - "runtimes/win/lib/netcore50/System.Net.Http.dll", - "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", - "system.net.http.4.3.0.nupkg.sha512", - "system.net.http.nuspec" - ] - }, - "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.Net.Primitives/4.3.0": { - "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", - "type": "package", - "path": "system.net.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Net.Primitives.dll", - "ref/netcore50/System.Net.Primitives.xml", - "ref/netcore50/de/System.Net.Primitives.xml", - "ref/netcore50/es/System.Net.Primitives.xml", - "ref/netcore50/fr/System.Net.Primitives.xml", - "ref/netcore50/it/System.Net.Primitives.xml", - "ref/netcore50/ja/System.Net.Primitives.xml", - "ref/netcore50/ko/System.Net.Primitives.xml", - "ref/netcore50/ru/System.Net.Primitives.xml", - "ref/netcore50/zh-hans/System.Net.Primitives.xml", - "ref/netcore50/zh-hant/System.Net.Primitives.xml", - "ref/netstandard1.0/System.Net.Primitives.dll", - "ref/netstandard1.0/System.Net.Primitives.xml", - "ref/netstandard1.0/de/System.Net.Primitives.xml", - "ref/netstandard1.0/es/System.Net.Primitives.xml", - "ref/netstandard1.0/fr/System.Net.Primitives.xml", - "ref/netstandard1.0/it/System.Net.Primitives.xml", - "ref/netstandard1.0/ja/System.Net.Primitives.xml", - "ref/netstandard1.0/ko/System.Net.Primitives.xml", - "ref/netstandard1.0/ru/System.Net.Primitives.xml", - "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", - "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", - "ref/netstandard1.1/System.Net.Primitives.dll", - "ref/netstandard1.1/System.Net.Primitives.xml", - "ref/netstandard1.1/de/System.Net.Primitives.xml", - "ref/netstandard1.1/es/System.Net.Primitives.xml", - "ref/netstandard1.1/fr/System.Net.Primitives.xml", - "ref/netstandard1.1/it/System.Net.Primitives.xml", - "ref/netstandard1.1/ja/System.Net.Primitives.xml", - "ref/netstandard1.1/ko/System.Net.Primitives.xml", - "ref/netstandard1.1/ru/System.Net.Primitives.xml", - "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", - "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", - "ref/netstandard1.3/System.Net.Primitives.dll", - "ref/netstandard1.3/System.Net.Primitives.xml", - "ref/netstandard1.3/de/System.Net.Primitives.xml", - "ref/netstandard1.3/es/System.Net.Primitives.xml", - "ref/netstandard1.3/fr/System.Net.Primitives.xml", - "ref/netstandard1.3/it/System.Net.Primitives.xml", - "ref/netstandard1.3/ja/System.Net.Primitives.xml", - "ref/netstandard1.3/ko/System.Net.Primitives.xml", - "ref/netstandard1.3/ru/System.Net.Primitives.xml", - "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", - "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.net.primitives.4.3.0.nupkg.sha512", - "system.net.primitives.nuspec" - ] - }, - "System.Net.Sockets/4.3.0": { - "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", - "type": "package", - "path": "system.net.sockets/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Net.Sockets.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Net.Sockets.dll", - "ref/netstandard1.3/System.Net.Sockets.dll", - "ref/netstandard1.3/System.Net.Sockets.xml", - "ref/netstandard1.3/de/System.Net.Sockets.xml", - "ref/netstandard1.3/es/System.Net.Sockets.xml", - "ref/netstandard1.3/fr/System.Net.Sockets.xml", - "ref/netstandard1.3/it/System.Net.Sockets.xml", - "ref/netstandard1.3/ja/System.Net.Sockets.xml", - "ref/netstandard1.3/ko/System.Net.Sockets.xml", - "ref/netstandard1.3/ru/System.Net.Sockets.xml", - "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", - "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.net.sockets.4.3.0.nupkg.sha512", - "system.net.sockets.nuspec" - ] - }, - "System.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.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.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", - "type": "package", - "path": "system.runtime.interopservices.runtimeinformation/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", - "system.runtime.interopservices.runtimeinformation.nuspec" - ] - }, - "System.Runtime.Numerics/4.3.0": { - "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", - "type": "package", - "path": "system.runtime.numerics/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Runtime.Numerics.dll", - "lib/netstandard1.3/System.Runtime.Numerics.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/netcore50/System.Runtime.Numerics.dll", - "ref/netcore50/System.Runtime.Numerics.xml", - "ref/netcore50/de/System.Runtime.Numerics.xml", - "ref/netcore50/es/System.Runtime.Numerics.xml", - "ref/netcore50/fr/System.Runtime.Numerics.xml", - "ref/netcore50/it/System.Runtime.Numerics.xml", - "ref/netcore50/ja/System.Runtime.Numerics.xml", - "ref/netcore50/ko/System.Runtime.Numerics.xml", - "ref/netcore50/ru/System.Runtime.Numerics.xml", - "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", - "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", - "ref/netstandard1.1/System.Runtime.Numerics.dll", - "ref/netstandard1.1/System.Runtime.Numerics.xml", - "ref/netstandard1.1/de/System.Runtime.Numerics.xml", - "ref/netstandard1.1/es/System.Runtime.Numerics.xml", - "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", - "ref/netstandard1.1/it/System.Runtime.Numerics.xml", - "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", - "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", - "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", - "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", - "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.numerics.4.3.0.nupkg.sha512", - "system.runtime.numerics.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.Algorithms/4.3.0": { - "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", - "type": "package", - "path": "system.security.cryptography.algorithms/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Algorithms.dll", - "lib/net461/System.Security.Cryptography.Algorithms.dll", - "lib/net463/System.Security.Cryptography.Algorithms.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Algorithms.dll", - "ref/net461/System.Security.Cryptography.Algorithms.dll", - "ref/net463/System.Security.Cryptography.Algorithms.dll", - "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", - "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", - "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", - "system.security.cryptography.algorithms.nuspec" - ] - }, - "System.Security.Cryptography.Cng/4.3.0": { - "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", - "type": "package", - "path": "system.security.cryptography.cng/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net46/System.Security.Cryptography.Cng.dll", - "lib/net461/System.Security.Cryptography.Cng.dll", - "lib/net463/System.Security.Cryptography.Cng.dll", - "ref/net46/System.Security.Cryptography.Cng.dll", - "ref/net461/System.Security.Cryptography.Cng.dll", - "ref/net463/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", - "system.security.cryptography.cng.4.3.0.nupkg.sha512", - "system.security.cryptography.cng.nuspec" - ] - }, - "System.Security.Cryptography.Csp/4.3.0": { - "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", - "type": "package", - "path": "system.security.cryptography.csp/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Csp.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Csp.dll", - "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", - "runtimes/win/lib/netcore50/_._", - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", - "system.security.cryptography.csp.4.3.0.nupkg.sha512", - "system.security.cryptography.csp.nuspec" - ] - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", - "type": "package", - "path": "system.security.cryptography.encoding/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Encoding.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Encoding.dll", - "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", - "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", - "system.security.cryptography.encoding.4.3.0.nupkg.sha512", - "system.security.cryptography.encoding.nuspec" - ] - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", - "type": "package", - "path": "system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", - "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", - "system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "system.security.cryptography.openssl.nuspec" - ] - }, - "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.Primitives/4.3.0": { - "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", - "type": "package", - "path": "system.security.cryptography.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Primitives.dll", - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Primitives.dll", - "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.security.cryptography.primitives.4.3.0.nupkg.sha512", - "system.security.cryptography.primitives.nuspec" - ] - }, - "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.X509Certificates/4.3.0": { - "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", - "type": "package", - "path": "system.security.cryptography.x509certificates/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.X509Certificates.dll", - "lib/net461/System.Security.Cryptography.X509Certificates.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.X509Certificates.dll", - "ref/net461/System.Security.Cryptography.X509Certificates.dll", - "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", - "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", - "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", - "system.security.cryptography.x509certificates.nuspec" - ] - }, - "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.Encoding.Extensions/4.3.0": { - "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "type": "package", - "path": "system.text.encoding.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.Text.Encoding.Extensions.dll", - "ref/netcore50/System.Text.Encoding.Extensions.xml", - "ref/netcore50/de/System.Text.Encoding.Extensions.xml", - "ref/netcore50/es/System.Text.Encoding.Extensions.xml", - "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", - "ref/netcore50/it/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", - "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", - "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", - "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.text.encoding.extensions.4.3.0.nupkg.sha512", - "system.text.encoding.extensions.nuspec" - ] - }, - "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.Text.RegularExpressions/4.3.0": { - "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "type": "package", - "path": "system.text.regularexpressions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Text.RegularExpressions.dll", - "lib/netcore50/System.Text.RegularExpressions.dll", - "lib/netstandard1.6/System.Text.RegularExpressions.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.Text.RegularExpressions.dll", - "ref/netcore50/System.Text.RegularExpressions.dll", - "ref/netcore50/System.Text.RegularExpressions.xml", - "ref/netcore50/de/System.Text.RegularExpressions.xml", - "ref/netcore50/es/System.Text.RegularExpressions.xml", - "ref/netcore50/fr/System.Text.RegularExpressions.xml", - "ref/netcore50/it/System.Text.RegularExpressions.xml", - "ref/netcore50/ja/System.Text.RegularExpressions.xml", - "ref/netcore50/ko/System.Text.RegularExpressions.xml", - "ref/netcore50/ru/System.Text.RegularExpressions.xml", - "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", - "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", - "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", - "ref/netstandard1.0/System.Text.RegularExpressions.dll", - "ref/netstandard1.0/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/System.Text.RegularExpressions.dll", - "ref/netstandard1.3/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/System.Text.RegularExpressions.dll", - "ref/netstandard1.6/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.text.regularexpressions.4.3.0.nupkg.sha512", - "system.text.regularexpressions.nuspec" - ] - }, - "System.Threading/4.3.0": { - "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "type": "package", - "path": "system.threading/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Threading.dll", - "lib/netstandard1.3/System.Threading.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Threading.dll", - "ref/netcore50/System.Threading.xml", - "ref/netcore50/de/System.Threading.xml", - "ref/netcore50/es/System.Threading.xml", - "ref/netcore50/fr/System.Threading.xml", - "ref/netcore50/it/System.Threading.xml", - "ref/netcore50/ja/System.Threading.xml", - "ref/netcore50/ko/System.Threading.xml", - "ref/netcore50/ru/System.Threading.xml", - "ref/netcore50/zh-hans/System.Threading.xml", - "ref/netcore50/zh-hant/System.Threading.xml", - "ref/netstandard1.0/System.Threading.dll", - "ref/netstandard1.0/System.Threading.xml", - "ref/netstandard1.0/de/System.Threading.xml", - "ref/netstandard1.0/es/System.Threading.xml", - "ref/netstandard1.0/fr/System.Threading.xml", - "ref/netstandard1.0/it/System.Threading.xml", - "ref/netstandard1.0/ja/System.Threading.xml", - "ref/netstandard1.0/ko/System.Threading.xml", - "ref/netstandard1.0/ru/System.Threading.xml", - "ref/netstandard1.0/zh-hans/System.Threading.xml", - "ref/netstandard1.0/zh-hant/System.Threading.xml", - "ref/netstandard1.3/System.Threading.dll", - "ref/netstandard1.3/System.Threading.xml", - "ref/netstandard1.3/de/System.Threading.xml", - "ref/netstandard1.3/es/System.Threading.xml", - "ref/netstandard1.3/fr/System.Threading.xml", - "ref/netstandard1.3/it/System.Threading.xml", - "ref/netstandard1.3/ja/System.Threading.xml", - "ref/netstandard1.3/ko/System.Threading.xml", - "ref/netstandard1.3/ru/System.Threading.xml", - "ref/netstandard1.3/zh-hans/System.Threading.xml", - "ref/netstandard1.3/zh-hant/System.Threading.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Threading.dll", - "system.threading.4.3.0.nupkg.sha512", - "system.threading.nuspec" - ] - }, - "System.Threading.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.Threading.Timer/4.3.0": { - "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", - "type": "package", - "path": "system.threading.timer/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net451/_._", - "lib/portable-net451+win81+wpa81/_._", - "lib/win81/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net451/_._", - "ref/netcore50/System.Threading.Timer.dll", - "ref/netcore50/System.Threading.Timer.xml", - "ref/netcore50/de/System.Threading.Timer.xml", - "ref/netcore50/es/System.Threading.Timer.xml", - "ref/netcore50/fr/System.Threading.Timer.xml", - "ref/netcore50/it/System.Threading.Timer.xml", - "ref/netcore50/ja/System.Threading.Timer.xml", - "ref/netcore50/ko/System.Threading.Timer.xml", - "ref/netcore50/ru/System.Threading.Timer.xml", - "ref/netcore50/zh-hans/System.Threading.Timer.xml", - "ref/netcore50/zh-hant/System.Threading.Timer.xml", - "ref/netstandard1.2/System.Threading.Timer.dll", - "ref/netstandard1.2/System.Threading.Timer.xml", - "ref/netstandard1.2/de/System.Threading.Timer.xml", - "ref/netstandard1.2/es/System.Threading.Timer.xml", - "ref/netstandard1.2/fr/System.Threading.Timer.xml", - "ref/netstandard1.2/it/System.Threading.Timer.xml", - "ref/netstandard1.2/ja/System.Threading.Timer.xml", - "ref/netstandard1.2/ko/System.Threading.Timer.xml", - "ref/netstandard1.2/ru/System.Threading.Timer.xml", - "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", - "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", - "ref/portable-net451+win81+wpa81/_._", - "ref/win81/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.timer.4.3.0.nupkg.sha512", - "system.threading.timer.nuspec" - ] - }, - "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" - ] - }, - "System.Xml.ReaderWriter/4.3.0": { - "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "type": "package", - "path": "system.xml.readerwriter/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.Xml.ReaderWriter.dll", - "lib/netcore50/System.Xml.ReaderWriter.dll", - "lib/netstandard1.3/System.Xml.ReaderWriter.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.Xml.ReaderWriter.dll", - "ref/netcore50/System.Xml.ReaderWriter.dll", - "ref/netcore50/System.Xml.ReaderWriter.xml", - "ref/netcore50/de/System.Xml.ReaderWriter.xml", - "ref/netcore50/es/System.Xml.ReaderWriter.xml", - "ref/netcore50/fr/System.Xml.ReaderWriter.xml", - "ref/netcore50/it/System.Xml.ReaderWriter.xml", - "ref/netcore50/ja/System.Xml.ReaderWriter.xml", - "ref/netcore50/ko/System.Xml.ReaderWriter.xml", - "ref/netcore50/ru/System.Xml.ReaderWriter.xml", - "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", - "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/System.Xml.ReaderWriter.dll", - "ref/netstandard1.0/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/System.Xml.ReaderWriter.dll", - "ref/netstandard1.3/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.xml.readerwriter.4.3.0.nupkg.sha512", - "system.xml.readerwriter.nuspec" - ] - }, - "System.Xml.XDocument/4.3.0": { - "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", - "type": "package", - "path": "system.xml.xdocument/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Xml.XDocument.dll", - "lib/netstandard1.3/System.Xml.XDocument.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.Xml.XDocument.dll", - "ref/netcore50/System.Xml.XDocument.xml", - "ref/netcore50/de/System.Xml.XDocument.xml", - "ref/netcore50/es/System.Xml.XDocument.xml", - "ref/netcore50/fr/System.Xml.XDocument.xml", - "ref/netcore50/it/System.Xml.XDocument.xml", - "ref/netcore50/ja/System.Xml.XDocument.xml", - "ref/netcore50/ko/System.Xml.XDocument.xml", - "ref/netcore50/ru/System.Xml.XDocument.xml", - "ref/netcore50/zh-hans/System.Xml.XDocument.xml", - "ref/netcore50/zh-hant/System.Xml.XDocument.xml", - "ref/netstandard1.0/System.Xml.XDocument.dll", - "ref/netstandard1.0/System.Xml.XDocument.xml", - "ref/netstandard1.0/de/System.Xml.XDocument.xml", - "ref/netstandard1.0/es/System.Xml.XDocument.xml", - "ref/netstandard1.0/fr/System.Xml.XDocument.xml", - "ref/netstandard1.0/it/System.Xml.XDocument.xml", - "ref/netstandard1.0/ja/System.Xml.XDocument.xml", - "ref/netstandard1.0/ko/System.Xml.XDocument.xml", - "ref/netstandard1.0/ru/System.Xml.XDocument.xml", - "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", - "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", - "ref/netstandard1.3/System.Xml.XDocument.dll", - "ref/netstandard1.3/System.Xml.XDocument.xml", - "ref/netstandard1.3/de/System.Xml.XDocument.xml", - "ref/netstandard1.3/es/System.Xml.XDocument.xml", - "ref/netstandard1.3/fr/System.Xml.XDocument.xml", - "ref/netstandard1.3/it/System.Xml.XDocument.xml", - "ref/netstandard1.3/ja/System.Xml.XDocument.xml", - "ref/netstandard1.3/ko/System.Xml.XDocument.xml", - "ref/netstandard1.3/ru/System.Xml.XDocument.xml", - "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", - "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.xml.xdocument.4.3.0.nupkg.sha512", - "system.xml.xdocument.nuspec" - ] - }, - "System.Xml.XmlDocument/4.3.0": { - "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", - "type": "package", - "path": "system.xml.xmldocument/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Xml.XmlDocument.dll", - "lib/netstandard1.3/System.Xml.XmlDocument.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Xml.XmlDocument.dll", - "ref/netstandard1.3/System.Xml.XmlDocument.dll", - "ref/netstandard1.3/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.xml.xmldocument.4.3.0.nupkg.sha512", - "system.xml.xmldocument.nuspec" - ] - }, - "Typin/3.1.0": { - "sha512": "BV/TvL7a2c8FHBFc3YiWEzQua2NitFY5JnE30zJxo2nQrHeZuJYruZ7H+sT+/cnBLjsDr/mUpYtIS1HRTJQ3xg==", - "type": "package", - "path": "typin/3.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net5.0/Typin.dll", - "lib/net5.0/Typin.xml", - "lib/net6.0/Typin.dll", - "lib/net6.0/Typin.xml", - "lib/netstandard2.0/Typin.dll", - "lib/netstandard2.0/Typin.xml", - "lib/netstandard2.1/Typin.dll", - "lib/netstandard2.1/Typin.xml", - "typin-favicon-64px.png", - "typin.3.1.0.nupkg.sha512", - "typin.nuspec" - ] - }, - "Typin.Core/3.1.0": { - "sha512": "0M44paHjcQuVTMCyfySqklbfVcQ38GfFGBkeKz0E+zhXdV0wD9tI5GwZdjUPOGlqhOmP7CHh452JSgJK2hc57A==", - "type": "package", - "path": "typin.core/3.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net5.0/Typin.Core.dll", - "lib/net5.0/Typin.Core.xml", - "lib/net6.0/Typin.Core.dll", - "lib/net6.0/Typin.Core.xml", - "lib/netstandard2.0/Typin.Core.dll", - "lib/netstandard2.0/Typin.Core.xml", - "lib/netstandard2.1/Typin.Core.dll", - "lib/netstandard2.1/Typin.Core.xml", - "typin-favicon-64px.png", - "typin.core.3.1.0.nupkg.sha512", - "typin.core.nuspec" - ] - }, - "xunit/2.4.1": { - "sha512": "XNR3Yz9QTtec16O0aKcO6+baVNpXmOnPUxDkCY97J+8krUYxPvXT1szYYEUdKk4sB8GOI2YbAjRIOm8ZnXRfzQ==", - "type": "package", - "path": "xunit/2.4.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "xunit.2.4.1.nupkg.sha512", - "xunit.nuspec" - ] - }, - "xunit.abstractions/2.0.3": { - "sha512": "pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", - "type": "package", - "path": "xunit.abstractions/2.0.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net35/xunit.abstractions.dll", - "lib/net35/xunit.abstractions.xml", - "lib/netstandard1.0/xunit.abstractions.dll", - "lib/netstandard1.0/xunit.abstractions.xml", - "lib/netstandard2.0/xunit.abstractions.dll", - "lib/netstandard2.0/xunit.abstractions.xml", - "xunit.abstractions.2.0.3.nupkg.sha512", - "xunit.abstractions.nuspec" - ] - }, - "xunit.analyzers/0.10.0": { - "sha512": "4/IDFCJfIeg6bix9apmUtIMwvOsiwqdEexeO/R2D4GReIGPLIRODTpId/l4LRSrAJk9lEO3Zx1H0Zx6uohJDNg==", - "type": "package", - "path": "xunit.analyzers/0.10.0", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "analyzers/dotnet/cs/xunit.analyzers.dll", - "tools/install.ps1", - "tools/uninstall.ps1", - "xunit.analyzers.0.10.0.nupkg.sha512", - "xunit.analyzers.nuspec" - ] - }, - "xunit.assert/2.4.1": { - "sha512": "O/Oe0BS5RmSsM+LQOb041TzuPo5MdH2Rov+qXGS37X+KFG1Hxz7kopYklM5+1Y+tRGeXrOx5+Xne1RuqLFQoyQ==", - "type": "package", - "path": "xunit.assert/2.4.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard1.1/xunit.assert.dll", - "lib/netstandard1.1/xunit.assert.xml", - "xunit.assert.2.4.1.nupkg.sha512", - "xunit.assert.nuspec" - ] - }, - "xunit.core/2.4.1": { - "sha512": "Zsj5OMU6JasNGERXZy8s72+pcheG6Q15atS5XpZXqAtULuyQiQ6XNnUsp1gyfC6WgqScqMvySiEHmHcOG6Eg0Q==", - "type": "package", - "path": "xunit.core/2.4.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/xunit.core.props", - "build/xunit.core.targets", - "buildMultiTargeting/xunit.core.props", - "buildMultiTargeting/xunit.core.targets", - "xunit.core.2.4.1.nupkg.sha512", - "xunit.core.nuspec" - ] - }, - "xunit.extensibility.core/2.4.1": { - "sha512": "yKZKm/8QNZnBnGZFD9SewkllHBiK0DThybQD/G4PiAmQjKtEZyHi6ET70QPU9KtSMJGRYS6Syk7EyR2EVDU4Kg==", - "type": "package", - "path": "xunit.extensibility.core/2.4.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net452/xunit.core.dll", - "lib/net452/xunit.core.dll.tdnet", - "lib/net452/xunit.core.xml", - "lib/net452/xunit.runner.tdnet.dll", - "lib/net452/xunit.runner.utility.net452.dll", - "lib/netstandard1.1/xunit.core.dll", - "lib/netstandard1.1/xunit.core.xml", - "xunit.extensibility.core.2.4.1.nupkg.sha512", - "xunit.extensibility.core.nuspec" - ] - }, - "xunit.extensibility.execution/2.4.1": { - "sha512": "7e/1jqBpcb7frLkB6XDrHCGXAbKN4Rtdb88epYxCSRQuZDRW8UtTfdTEVpdTl8s4T56e07hOBVd4G0OdCxIY2A==", - "type": "package", - "path": "xunit.extensibility.execution/2.4.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net452/xunit.execution.desktop.dll", - "lib/net452/xunit.execution.desktop.xml", - "lib/netstandard1.1/xunit.execution.dotnet.dll", - "lib/netstandard1.1/xunit.execution.dotnet.xml", - "xunit.extensibility.execution.2.4.1.nupkg.sha512", - "xunit.extensibility.execution.nuspec" - ] - }, - "xunit.runner.visualstudio/2.4.3": { - "sha512": "kZZSmOmKA8OBlAJaquPXnJJLM9RwQ27H7BMVqfMLUcTi9xHinWGJiWksa3D4NEtz0wZ/nxd2mogObvBgJKCRhQ==", - "type": "package", - "path": "xunit.runner.visualstudio/2.4.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "License.txt", - "build/net452/xunit.abstractions.dll", - "build/net452/xunit.runner.reporters.net452.dll", - "build/net452/xunit.runner.utility.net452.dll", - "build/net452/xunit.runner.visualstudio.props", - "build/net452/xunit.runner.visualstudio.testadapter.dll", - "build/netcoreapp2.1/xunit.abstractions.dll", - "build/netcoreapp2.1/xunit.runner.reporters.netcoreapp10.dll", - "build/netcoreapp2.1/xunit.runner.utility.netcoreapp10.dll", - "build/netcoreapp2.1/xunit.runner.visualstudio.dotnetcore.testadapter.dll", - "build/netcoreapp2.1/xunit.runner.visualstudio.props", - "build/uap10.0.16299/xunit.runner.reporters.netstandard15.dll", - "build/uap10.0.16299/xunit.runner.utility.netstandard15.dll", - "build/uap10.0.16299/xunit.runner.utility.uwp10.dll", - "build/uap10.0.16299/xunit.runner.utility.uwp10.pri", - "build/uap10.0.16299/xunit.runner.visualstudio.props", - "build/uap10.0.16299/xunit.runner.visualstudio.targets", - "build/uap10.0.16299/xunit.runner.visualstudio.uwp.testadapter.dll", - "build/uap10.0.16299/xunit.runner.visualstudio.uwp.testadapter.pri", - "logo-512-transparent.png", - "xunit.runner.visualstudio.2.4.3.nupkg.sha512", - "xunit.runner.visualstudio.nuspec" - ] - }, - "YamlDotNet/11.2.1": { - "sha512": "tBt8K+korVfrjH9wyDEhiLKxbs8qoLCLIFwvYgkSUuMC9//w3z0cFQ8LQAI/5MCKq+BMil0cfRTRvPeE7eXhQw==", - "type": "package", - "path": "yamldotnet/11.2.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.txt", - "images/yamldotnet.png", - "lib/net20/YamlDotNet.dll", - "lib/net20/YamlDotNet.xml", - "lib/net35-client/YamlDotNet.dll", - "lib/net35-client/YamlDotNet.xml", - "lib/net35/YamlDotNet.dll", - "lib/net35/YamlDotNet.xml", - "lib/net45/YamlDotNet.dll", - "lib/net45/YamlDotNet.xml", - "lib/netstandard1.3/YamlDotNet.dll", - "lib/netstandard1.3/YamlDotNet.xml", - "lib/netstandard2.1/YamlDotNet.dll", - "lib/netstandard2.1/YamlDotNet.xml", - "yamldotnet.11.2.1.nupkg.sha512", - "yamldotnet.nuspec" - ] - }, - "Core.Test/1.0.0": { - "type": "project", - "path": "../Core.Test/Core.Test.csproj", - "msbuildProject": "../Core.Test/Core.Test.csproj" - }, - "Linguard.Cli/2.0.0": { - "type": "project", - "path": "../Cli/Cli.csproj", - "msbuildProject": "../Cli/Cli.csproj" - }, - "Linguard.Core/2.0.0": { - "type": "project", - "path": "../Core/Core.csproj", - "msbuildProject": "../Core/Core.csproj" - }, - "Linguard.Log/2.0.0": { - "type": "project", - "path": "../Log/Log.csproj", - "msbuildProject": "../Log/Log.csproj" - } - }, - "projectFileDependencyGroups": { - "net6.0": [ - "Core.Test >= 1.0.0", - "FluentAssertions >= 6.4.0", - "Linguard.Cli >= 2.0.0", - "Microsoft.NET.Test.Sdk >= 16.11.0", - "Moq >= 4.16.1", - "coverlet.msbuild >= 3.1.2", - "xunit >= 2.4.1", - "xunit.runner.visualstudio >= 2.4.3" - ] - }, - "packageFolders": { - "C:\\Users\\theyu\\.nuget\\packages\\": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli.Test\\Cli.Test.csproj", - "projectName": "Cli.Test", - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli.Test\\Cli.Test.csproj", - "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli.Test\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": { - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj": { - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj" - }, - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj": { - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "FluentAssertions": { - "target": "Package", - "version": "[6.4.0, )" - }, - "Microsoft.NET.Test.Sdk": { - "target": "Package", - "version": "[16.11.0, )" - }, - "Moq": { - "target": "Package", - "version": "[4.16.1, )" - }, - "coverlet.msbuild": { - "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", - "suppressParent": "All", - "target": "Package", - "version": "[3.1.2, )" - }, - "xunit": { - "target": "Package", - "version": "[2.4.1, )" - }, - "xunit.runner.visualstudio": { - "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", - "suppressParent": "All", - "target": "Package", - "version": "[2.4.3, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/linguard/Cli.Test/obj/project.nuget.cache b/linguard/Cli.Test/obj/project.nuget.cache deleted file mode 100644 index 1463ef2..0000000 --- a/linguard/Cli.Test/obj/project.nuget.cache +++ /dev/null @@ -1,211 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "kpJPd+VeVDF26IyVj1ne9ep3ec02jKV09oU9Rj+Lw+6ca0e6BQwexLe58hvbmEL++S4Kcg1d7piridYrvy+dnA==", - "success": true, - "projectFilePath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli.Test\\Cli.Test.csproj", - "expectedPackageFiles": [ - "C:\\Users\\theyu\\.nuget\\packages\\bogus\\34.0.1\\bogus.34.0.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\bytesize\\2.1.1\\bytesize.2.1.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\castle.core\\4.4.0\\castle.core.4.4.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\commandlineparser\\2.8.0\\commandlineparser.2.8.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\coverlet.msbuild\\3.1.2\\coverlet.msbuild.3.1.2.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\fluentassertions\\6.4.0\\fluentassertions.6.4.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\fluentvalidation\\10.3.6\\fluentvalidation.10.3.6.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\ipnetwork2\\2.5.386\\ipnetwork2.2.5.386.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\markdig.signed\\0.22.0\\markdig.signed.0.22.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.applicationinsights\\2.18.0\\microsoft.applicationinsights.2.18.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\5.0.0\\microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.2\\microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.codeanalysis.common\\4.0.1\\microsoft.codeanalysis.common.4.0.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.0.1\\microsoft.codeanalysis.csharp.4.0.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.codecoverage\\16.11.0\\microsoft.codecoverage.16.11.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.csharp\\4.3.0\\microsoft.csharp.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\6.0.0\\microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.logging\\6.0.0\\microsoft.extensions.logging.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\6.0.0\\microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.logging.debug\\6.0.0\\microsoft.extensions.logging.debug.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.objectpool\\5.0.10\\microsoft.extensions.objectpool.5.0.10.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.options\\6.0.0\\microsoft.extensions.options.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0\\microsoft.extensions.primitives.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.management.infrastructure\\2.0.0\\microsoft.management.infrastructure.2.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.management.infrastructure.cimcmdlets\\7.2.1\\microsoft.management.infrastructure.cimcmdlets.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.management.infrastructure.runtime.unix\\2.0.0\\microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.management.infrastructure.runtime.win\\2.0.0\\microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.net.test.sdk\\16.11.0\\microsoft.net.test.sdk.16.11.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.netcore.windows.apisets\\1.0.1\\microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.commands.diagnostics\\7.2.1\\microsoft.powershell.commands.diagnostics.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.commands.management\\7.2.1\\microsoft.powershell.commands.management.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.commands.utility\\7.2.1\\microsoft.powershell.commands.utility.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.consolehost\\7.2.1\\microsoft.powershell.consolehost.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.coreclr.eventing\\7.2.1\\microsoft.powershell.coreclr.eventing.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.markdownrender\\7.2.0\\microsoft.powershell.markdownrender.7.2.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.native\\7.2.0\\microsoft.powershell.native.7.2.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.sdk\\7.2.1\\microsoft.powershell.sdk.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.security\\7.2.1\\microsoft.powershell.security.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.testplatform.objectmodel\\16.11.0\\microsoft.testplatform.objectmodel.16.11.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.testplatform.testhost\\16.11.0\\microsoft.testplatform.testhost.16.11.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.win32.registry.accesscontrol\\6.0.0\\microsoft.win32.registry.accesscontrol.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.windows.compatibility\\6.0.0\\microsoft.windows.compatibility.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.wsman.management\\7.2.1\\microsoft.wsman.management.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.wsman.runtime\\7.2.1\\microsoft.wsman.runtime.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\moq\\4.16.1\\moq.4.16.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\namotion.reflection\\2.0.3\\namotion.reflection.2.0.3.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\njsonschema\\10.5.2\\njsonschema.10.5.2.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\nlog\\4.7.13\\nlog.4.7.13.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\nuget.frameworks\\5.0.0\\nuget.frameworks.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.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\\theyu\\.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\\theyu\\.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\\theyu\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.7.0\\runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.native.system.io.ports\\6.0.0\\runtime.native.system.io.ports.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.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\\theyu\\.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\\theyu\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.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\\theyu\\.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\\theyu\\.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\\theyu\\.nuget\\packages\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.buffers\\4.3.0\\system.buffers.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.codedom\\6.0.0\\system.codedom.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.componentmodel.composition\\6.0.0\\system.componentmodel.composition.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.componentmodel.composition.registration\\6.0.0\\system.componentmodel.composition.registration.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.0\\system.configuration.configurationmanager.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.data.odbc\\6.0.0\\system.data.odbc.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.data.oledb\\6.0.0\\system.data.oledb.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.data.sqlclient\\4.8.3\\system.data.sqlclient.4.8.3.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.0\\system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.eventlog\\6.0.0\\system.diagnostics.eventlog.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.performancecounter\\6.0.0\\system.diagnostics.performancecounter.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.tracesource\\4.3.0\\system.diagnostics.tracesource.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.directoryservices\\6.0.0\\system.directoryservices.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.directoryservices.accountmanagement\\6.0.0\\system.directoryservices.accountmanagement.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.directoryservices.protocols\\6.0.0\\system.directoryservices.protocols.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.formats.asn1\\6.0.0\\system.formats.asn1.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.io.packaging\\6.0.0\\system.io.packaging.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.io.ports\\6.0.0\\system.io.ports.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.management\\6.0.0\\system.management.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.management.automation\\7.2.1\\system.management.automation.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.net.http.winhttphandler\\6.0.0\\system.net.http.winhttphandler.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.private.servicemodel\\4.9.0\\system.private.servicemodel.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.context\\6.0.0\\system.reflection.context.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.dispatchproxy\\4.7.1\\system.reflection.dispatchproxy.4.7.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.metadata\\5.0.0\\system.reflection.metadata.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.caching\\6.0.0\\system.runtime.caching.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.cng\\4.3.0\\system.security.cryptography.cng.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.pkcs\\6.0.0\\system.security.cryptography.pkcs.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.protecteddata\\6.0.0\\system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.xml\\6.0.0\\system.security.cryptography.xml.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.duplex\\4.9.0\\system.servicemodel.duplex.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.http\\4.9.0\\system.servicemodel.http.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.nettcp\\4.9.0\\system.servicemodel.nettcp.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.primitives\\4.9.0\\system.servicemodel.primitives.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.security\\4.9.0\\system.servicemodel.security.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.syndication\\6.0.0\\system.servicemodel.syndication.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.serviceprocess.servicecontroller\\6.0.0\\system.serviceprocess.servicecontroller.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.speech\\6.0.0\\system.speech.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.text.encoding.codepages\\6.0.0\\system.text.encoding.codepages.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.text.encodings.web\\6.0.0\\system.text.encodings.web.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.threading.accesscontrol\\6.0.0\\system.threading.accesscontrol.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.web.services.description\\4.9.0\\system.web.services.description.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\typin\\3.1.0\\typin.3.1.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\typin.core\\3.1.0\\typin.core.3.1.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\xunit\\2.4.1\\xunit.2.4.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\xunit.abstractions\\2.0.3\\xunit.abstractions.2.0.3.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\xunit.analyzers\\0.10.0\\xunit.analyzers.0.10.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\xunit.assert\\2.4.1\\xunit.assert.2.4.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\xunit.core\\2.4.1\\xunit.core.2.4.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\xunit.extensibility.core\\2.4.1\\xunit.extensibility.core.2.4.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\xunit.extensibility.execution\\2.4.1\\xunit.extensibility.execution.2.4.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\xunit.runner.visualstudio\\2.4.3\\xunit.runner.visualstudio.2.4.3.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\yamldotnet\\11.2.1\\yamldotnet.11.2.1.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/linguard/Cli.Test/obj/project.packagespec.json b/linguard/Cli.Test/obj/project.packagespec.json deleted file mode 100644 index d506208..0000000 --- a/linguard/Cli.Test/obj/project.packagespec.json +++ /dev/null @@ -1 +0,0 @@ -"restore":{"projectUniqueName":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli.Test\\Cli.Test.csproj","projectName":"Cli.Test","projectPath":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli.Test\\Cli.Test.csproj","outputPath":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli.Test\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net6.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net6.0":{"targetAlias":"net6.0","projectReferences":{"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj":{"projectPath":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj"},"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj":{"projectPath":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net6.0":{"targetAlias":"net6.0","dependencies":{"FluentAssertions":{"target":"Package","version":"[6.4.0, )"},"Microsoft.NET.Test.Sdk":{"target":"Package","version":"[16.11.0, )"},"Moq":{"target":"Package","version":"[4.16.1, )"},"coverlet.msbuild":{"include":"Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive","suppressParent":"All","target":"Package","version":"[3.1.2, )"},"xunit":{"target":"Package","version":"[2.4.1, )"},"xunit.runner.visualstudio":{"include":"Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive","suppressParent":"All","target":"Package","version":"[2.4.3, )"}},"imports":["net461","net462","net47","net471","net472","net48"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/linguard/Cli.Test/obj/rider.project.restore.info b/linguard/Cli.Test/obj/rider.project.restore.info deleted file mode 100644 index 42db7f9..0000000 --- a/linguard/Cli.Test/obj/rider.project.restore.info +++ /dev/null @@ -1 +0,0 @@ -16455551443568370 \ No newline at end of file diff --git a/linguard/Cli/NLog.config b/linguard/Cli/NLog.config deleted file mode 100644 index 5a581ee..0000000 --- a/linguard/Cli/NLog.config +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/linguard/Cli/bin/Debug/net6.0/Bogus.dll b/linguard/Cli/bin/Debug/net6.0/Bogus.dll deleted file mode 100644 index 84e6073..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/Bogus.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/CommandLine.dll b/linguard/Cli/bin/Debug/net6.0/CommandLine.dll deleted file mode 100644 index af18229..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/CommandLine.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/FluentValidation.dll b/linguard/Cli/bin/Debug/net6.0/FluentValidation.dll deleted file mode 100644 index fd90d11..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/FluentValidation.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/Linguard.Cli.deps.json b/linguard/Cli/bin/Debug/net6.0/Linguard.Cli.deps.json deleted file mode 100644 index 652891e..0000000 --- a/linguard/Cli/bin/Debug/net6.0/Linguard.Cli.deps.json +++ /dev/null @@ -1,3017 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v6.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v6.0": { - "Linguard.Cli/2.0.0": { - "dependencies": { - "CommandLineParser": "2.8.0", - "FluentValidation": "10.3.6", - "Linguard.Core": "2.0.0", - "Typin": "3.1.0" - }, - "runtime": { - "Linguard.Cli.dll": {} - } - }, - "Bogus/34.0.1": { - "runtime": { - "lib/net6.0/Bogus.dll": { - "assemblyVersion": "34.0.1.0", - "fileVersion": "34.0.1.0" - } - } - }, - "ByteSize/2.1.1": { - "runtime": { - "lib/net5.0/ByteSize.dll": { - "assemblyVersion": "2.1.1.0", - "fileVersion": "2.1.1.0" - } - } - }, - "CommandLineParser/2.8.0": { - "runtime": { - "lib/netstandard2.0/CommandLine.dll": { - "assemblyVersion": "2.8.0.0", - "fileVersion": "2.8.0.0" - } - } - }, - "FluentValidation/10.3.6": { - "runtime": { - "lib/net6.0/FluentValidation.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "10.3.6.0" - } - } - }, - "IPNetwork2/2.5.386": { - "runtime": { - "lib/net5.0/System.Net.IPNetwork.dll": { - "assemblyVersion": "2.5.386.0", - "fileVersion": "2.5.386.0" - } - } - }, - "Markdig.Signed/0.22.0": { - "runtime": { - "lib/netcoreapp3.1/Markdig.Signed.dll": { - "assemblyVersion": "0.22.0.0", - "fileVersion": "0.22.0.0" - } - } - }, - "Microsoft.ApplicationInsights/2.18.0": { - "dependencies": { - "System.Diagnostics.DiagnosticSource": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": { - "assemblyVersion": "2.18.0.315", - "fileVersion": "2.18.0.315" - } - } - }, - "Microsoft.Bcl.AsyncInterfaces/5.0.0": { - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.CodeAnalysis.Analyzers/3.3.2": {}, - "Microsoft.CodeAnalysis.Common/4.0.1": { - "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": "6.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.0.121.55815" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp/4.0.1": { - "dependencies": { - "Microsoft.CodeAnalysis.Common": "4.0.1" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.0.121.55815" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CSharp/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "Microsoft.Extensions.DependencyInjection/6.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "runtime": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Logging/6.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "System.Diagnostics.DiagnosticSource": "6.0.0" - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/6.0.0": { - "runtime": { - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Logging.Debug/6.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.ObjectPool/5.0.10": { - "runtime": { - "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.1021.41022" - } - } - }, - "Microsoft.Extensions.Options/6.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Management.Infrastructure/2.0.0": { - "dependencies": { - "Microsoft.Management.Infrastructure.Runtime.Unix": "2.0.0", - "Microsoft.Management.Infrastructure.Runtime.Win": "2.0.0" - } - }, - "Microsoft.Management.Infrastructure.CimCmdlets/7.2.1": { - "dependencies": { - "System.Management.Automation": "7.2.1" - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.0.0.0" - } - } - }, - "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { - "runtimeTargets": { - "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win-arm", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win-arm", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win-arm64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win-arm64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win10-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win10-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win10-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win10-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win7-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win7-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win7-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win7-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win8-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win8-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win8-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win8-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win81-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win81-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win81-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win81-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm/native/mi.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm/native/miutils.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/native/mi.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/native/miutils.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win10-x64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/native/mi.dll": { - "rid": "win10-x64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/native/miutils.dll": { - "rid": "win10-x64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win10-x86", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/native/mi.dll": { - "rid": "win10-x86", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/native/miutils.dll": { - "rid": "win10-x86", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win7-x64", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x64/native/mi.dll": { - "rid": "win7-x64", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x64/native/miutils.dll": { - "rid": "win7-x64", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win7-x86", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x86/native/mi.dll": { - "rid": "win7-x86", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x86/native/miutils.dll": { - "rid": "win7-x86", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win8-x64/native/mi.dll": { - "rid": "win8-x64", - "assetType": "native", - "fileVersion": "6.2.9200.22812" - }, - "runtimes/win8-x64/native/miutils.dll": { - "rid": "win8-x64", - "assetType": "native", - "fileVersion": "6.2.9200.22812" - }, - "runtimes/win8-x86/native/mi.dll": { - "rid": "win8-x86", - "assetType": "native", - "fileVersion": "6.2.9200.22812" - }, - "runtimes/win8-x86/native/miutils.dll": { - "rid": "win8-x86", - "assetType": "native", - "fileVersion": "6.2.9200.22812" - }, - "runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win81-x64", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x64/native/mi.dll": { - "rid": "win81-x64", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x64/native/miutils.dll": { - "rid": "win81-x64", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win81-x86", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x86/native/mi.dll": { - "rid": "win81-x86", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x86/native/miutils.dll": { - "rid": "win81-x86", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - } - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "Microsoft.NETCore.Windows.ApiSets/1.0.1": {}, - "Microsoft.PowerShell.Commands.Diagnostics/7.2.1": { - "dependencies": { - "System.Management.Automation": "7.2.1" - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.Commands.Management/7.2.1": { - "dependencies": { - "Microsoft.PowerShell.Security": "7.2.1", - "System.ServiceProcess.ServiceController": "6.0.0" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.Commands.Utility/7.2.1": { - "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" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.ConsoleHost/7.2.1": { - "dependencies": { - "System.Management.Automation": "7.2.1" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.CoreCLR.Eventing/7.2.1": { - "dependencies": { - "System.Diagnostics.EventLog": "6.0.0" - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.MarkdownRender/7.2.0": { - "dependencies": { - "Markdig.Signed": "0.22.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll": { - "assemblyVersion": "7.2.0.0", - "fileVersion": "7.2.0.0" - } - } - }, - "Microsoft.PowerShell.Native/7.2.0": { - "runtimeTargets": { - "runtimes/linux-arm/native/libpsl-native.so": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm64/native/libpsl-native.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libpsl-native.so": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libmi.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libpsl-native.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libpsrpclient.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libmi.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libpsl-native.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libpsrpclient.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-arm/native/pwrshplugin.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-arm64/native/pwrshplugin.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-x64/native/pwrshplugin.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-x86/native/pwrshplugin.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - } - } - }, - "Microsoft.PowerShell.SDK/7.2.1": { - "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" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.Security/7.2.1": { - "dependencies": { - "System.Management.Automation": "7.2.1" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.Win32.Registry/4.7.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Security.Principal.Windows": "5.0.0" - } - }, - "Microsoft.Win32.Registry.AccessControl/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "runtime": { - "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Windows.Compatibility/6.0.0": { - "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" - } - }, - "Microsoft.WSMan.Management/7.2.1": { - "dependencies": { - "Microsoft.WSMan.Runtime": "7.2.1", - "System.Management.Automation": "7.2.1", - "System.ServiceProcess.ServiceController": "6.0.0" - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.WSMan.Runtime/7.2.1": { - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Namotion.Reflection/2.0.3": { - "dependencies": { - "Microsoft.CSharp": "4.3.0" - }, - "runtime": { - "lib/netstandard2.0/Namotion.Reflection.dll": { - "assemblyVersion": "2.0.3.0", - "fileVersion": "2.0.3.0" - } - } - }, - "Newtonsoft.Json/13.0.1": { - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.1.25517" - } - } - }, - "NJsonSchema/10.5.2": { - "dependencies": { - "Namotion.Reflection": "2.0.3", - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/netstandard2.0/NJsonSchema.dll": { - "assemblyVersion": "10.5.2.0", - "fileVersion": "10.5.2.0" - } - } - }, - "NLog/4.7.13": { - "runtime": { - "lib/netstandard2.0/NLog.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.7.13.493" - } - } - }, - "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": { - "runtimeTargets": { - "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": { - "runtimeTargets": { - "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": { - "runtimeTargets": { - "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.native.System.Data.SqlClient.sni/4.7.0": { - "dependencies": { - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" - } - }, - "runtime.native.System.IO.Ports/6.0.0": { - "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": { - "runtimeTargets": { - "runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib": { - "rid": "osx-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": { - "runtimeTargets": { - "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "runtimeTargets": { - "runtimes/win-arm64/native/sni.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "4.6.25512.1" - } - } - }, - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "runtimeTargets": { - "runtimes/win-x64/native/sni.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "4.6.25512.1" - } - } - }, - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "runtimeTargets": { - "runtimes/win-x86/native/sni.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "4.6.25512.1" - } - } - }, - "System.CodeDom/6.0.0": { - "runtime": { - "lib/net6.0/System.CodeDom.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Collections.Immutable/5.0.0": {}, - "System.ComponentModel.Composition/6.0.0": { - "runtime": { - "lib/net6.0/System.ComponentModel.Composition.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.ComponentModel.Composition.Registration/6.0.0": { - "dependencies": { - "System.ComponentModel.Composition": "6.0.0", - "System.Reflection.Context": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.ComponentModel.Composition.Registration.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "dependencies": { - "System.Security.Cryptography.ProtectedData": "6.0.0", - "System.Security.Permissions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Configuration.ConfigurationManager.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Data.Odbc/6.0.0": { - "dependencies": { - "System.Text.Encoding.CodePages": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Data.Odbc.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll": { - "rid": "freebsd", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/illumos/lib/net6.0/System.Data.Odbc.dll": { - "rid": "illumos", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/ios/lib/net6.0/System.Data.Odbc.dll": { - "rid": "ios", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/linux/lib/net6.0/System.Data.Odbc.dll": { - "rid": "linux", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/osx/lib/net6.0/System.Data.Odbc.dll": { - "rid": "osx", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/solaris/lib/net6.0/System.Data.Odbc.dll": { - "rid": "solaris", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/tvos/lib/net6.0/System.Data.Odbc.dll": { - "rid": "tvos", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.Data.Odbc.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Data.OleDb/6.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0", - "System.Diagnostics.PerformanceCounter": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Data.OleDb.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Data.OleDb.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Data.SqlClient/4.8.3": { - "dependencies": { - "Microsoft.Win32.Registry": "4.7.0", - "System.Security.Principal.Windows": "5.0.0", - "runtime.native.System.Data.SqlClient.sni": "4.7.0" - }, - "runtime": { - "lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "assemblyVersion": "4.6.1.3", - "fileVersion": "4.700.21.41603" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "4.6.1.3", - "fileVersion": "4.700.21.41603" - }, - "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.6.1.3", - "fileVersion": "4.700.21.41603" - } - } - }, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.DiagnosticSource/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Diagnostics.EventLog/6.0.0": { - "runtime": { - "lib/net6.0/System.Diagnostics.EventLog.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "0.0.0.0" - }, - "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Diagnostics.PerformanceCounter/6.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.DirectoryServices/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Security.Permissions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.DirectoryServices.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.DirectoryServices.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.DirectoryServices.AccountManagement/6.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0", - "System.DirectoryServices": "6.0.0", - "System.DirectoryServices.Protocols": "6.0.0", - "System.Security.AccessControl": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.DirectoryServices.AccountManagement.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.DirectoryServices.Protocols/6.0.0": { - "runtime": { - "lib/net6.0/System.DirectoryServices.Protocols.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll": { - "rid": "linux", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll": { - "rid": "osx", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Drawing.Common/6.0.0": { - "dependencies": { - "Microsoft.Win32.SystemEvents": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Drawing.Common.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Dynamic.Runtime/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.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" - } - }, - "System.Formats.Asn1/6.0.0": {}, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.IO/4.3.0": { - "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" - } - }, - "System.IO.Packaging/6.0.0": { - "runtime": { - "lib/net6.0/System.IO.Packaging.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.IO.Ports/6.0.0": { - "dependencies": { - "runtime.native.System.IO.Ports": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.IO.Ports.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.IO.Ports.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.IO.Ports.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Linq.Expressions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.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" - } - }, - "System.Management/6.0.0": { - "dependencies": { - "System.CodeDom": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Management.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Management.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Management.Automation/7.2.1": { - "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" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.Management.Automation.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/System.Management.Automation.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "System.Memory/4.5.4": {}, - "System.Net.Http.WinHttpHandler/6.0.0": { - "runtime": { - "lib/net6.0/System.Net.Http.WinHttpHandler.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Numerics.Vectors/4.5.0": {}, - "System.ObjectModel/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Private.ServiceModel/4.9.0": { - "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": "6.0.0", - "System.Security.Principal.Windows": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Private.ServiceModel.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - }, - "resources": { - "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": { - "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" - } - }, - "System.Reflection.Context/6.0.0": { - "runtime": { - "lib/net6.0/System.Reflection.Context.dll": { - "assemblyVersion": "4.0.3.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Reflection.DispatchProxy/4.7.1": {}, - "System.Reflection.Emit/4.3.0": { - "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" - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Metadata/5.0.0": {}, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.Caching/6.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Runtime.Caching.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "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" - } - }, - "System.Security.AccessControl/6.0.0": {}, - "System.Security.Cryptography.Pkcs/6.0.0": { - "dependencies": { - "System.Formats.Asn1": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Security.Cryptography.Pkcs.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "runtime": { - "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Cryptography.Xml/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Security.Cryptography.Pkcs": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Security.Cryptography.Xml.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Permissions/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Windows.Extensions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Security.Permissions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Principal.Windows/5.0.0": {}, - "System.ServiceModel.Duplex/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0", - "System.ServiceModel.Primitives": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.Duplex.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.Http/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0", - "System.ServiceModel.Primitives": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.Http.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.NetTcp/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0", - "System.ServiceModel.Primitives": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.NetTcp.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.Primitives/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.Primitives.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - }, - "lib/net6.0/System.ServiceModel.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.Security/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0", - "System.ServiceModel.Primitives": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.Security.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.Syndication/6.0.0": { - "runtime": { - "lib/net6.0/System.ServiceModel.Syndication.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.ServiceProcess.ServiceController/6.0.0": { - "dependencies": { - "System.Diagnostics.EventLog": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.ServiceProcess.ServiceController.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Speech/6.0.0": { - "runtime": { - "lib/net6.0/System.Speech.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Speech.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding.CodePages/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Text.Encodings.Web/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.AccessControl/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Threading.AccessControl.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Threading.AccessControl.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks.Extensions/4.5.4": {}, - "System.Web.Services.Description/4.9.0": { - "runtime": { - "lib/netstandard2.0/System.Web.Services.Description.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - }, - "resources": { - "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": { - "dependencies": { - "System.Drawing.Common": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Windows.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Typin/3.1.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "6.0.0", - "Microsoft.Extensions.Logging.Debug": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "Typin.Core": "3.1.0" - }, - "runtime": { - "lib/net6.0/Typin.dll": { - "assemblyVersion": "3.1.0.0", - "fileVersion": "3.1.0.0" - } - } - }, - "Typin.Core/3.1.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "6.0.0" - }, - "runtime": { - "lib/net6.0/Typin.Core.dll": { - "assemblyVersion": "3.1.0.0", - "fileVersion": "3.1.0.0" - } - } - }, - "YamlDotNet/11.2.1": { - "runtime": { - "lib/netstandard2.1/YamlDotNet.dll": { - "assemblyVersion": "11.0.0.0", - "fileVersion": "11.2.1.0" - } - } - }, - "Linguard.Core/2.0.0": { - "dependencies": { - "Bogus": "34.0.1", - "ByteSize": "2.1.1", - "FluentValidation": "10.3.6", - "IPNetwork2": "2.5.386", - "Linguard.Log": "2.0.0", - "Microsoft.PowerShell.SDK": "7.2.1", - "System.Management.Automation": "7.2.1", - "YamlDotNet": "11.2.1" - }, - "runtime": { - "Linguard.Core.dll": {} - } - }, - "Linguard.Log/2.0.0": { - "dependencies": { - "NLog": "4.7.13" - }, - "runtime": { - "Linguard.Log.dll": {} - } - } - } - }, - "libraries": { - "Linguard.Cli/2.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Bogus/34.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-49iq7QrD0wb7V4/FcK8p3dWdJxNUbojaqK9L6KRvdikIuRjt38EsNp7QXICcYdbYw01K8BHUdxlnTNn/YX3qDA==", - "path": "bogus/34.0.1", - "hashPath": "bogus.34.0.1.nupkg.sha512" - }, - "ByteSize/2.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-D+Y3NpbHrW21vZwwegeWf/8iAg2Mr0s7n1su8Ysho+O9dctJ5/EkWUi19QVxc6+nZl080gGTXBP/Nz0twSI3dA==", - "path": "bytesize/2.1.1", - "hashPath": "bytesize.2.1.1.nupkg.sha512" - }, - "CommandLineParser/2.8.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eco2HlKQBY4Joz9odHigzGpVzv6pjsXnY5lziioMveQxr+i2Z7xYcIOMeZTgYiqnMtMAbXMXsVhrNfWO5vJS8Q==", - "path": "commandlineparser/2.8.0", - "hashPath": "commandlineparser.2.8.0.nupkg.sha512" - }, - "FluentValidation/10.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iMd370ZDx6ydm8t7bIFdRbSKX0e42lpvCtifUSbTSXOk5iKjmgl7HU0PXBhIWQAyIRi3gCwfMI9luj8H6K+byw==", - "path": "fluentvalidation/10.3.6", - "hashPath": "fluentvalidation.10.3.6.nupkg.sha512" - }, - "IPNetwork2/2.5.386": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6ihnNm82vyJsUYYfR2BRTziY/mQ5UGLsQZuhdSYPeTlbQLhBW/4BC9hBz3h5bFDn8PkVw9dP0cpv9brIBmk4Fw==", - "path": "ipnetwork2/2.5.386", - "hashPath": "ipnetwork2.2.5.386.nupkg.sha512" - }, - "Markdig.Signed/0.22.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7x3FqS3wk8DXyQLuflD47tBs6+ly6k4VtoDCzlDWfy7XHVsBIi7eGYEM15sPAcwSCQjOksNWE8U5r2v0Sk5FzQ==", - "path": "markdig.signed/0.22.0", - "hashPath": "markdig.signed.0.22.0.nupkg.sha512" - }, - "Microsoft.ApplicationInsights/2.18.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-milJB3VOCoC4EWmpE/Co9cOJ7SV6Ji6VqV4Rf5UlqL9QCg+rAX1y+3Y+j1Gu/j4IExYiPq7SEKqkP2BFnEu6Vw==", - "path": "microsoft.applicationinsights/2.18.0", - "hashPath": "microsoft.applicationinsights.2.18.0.nupkg.sha512" - }, - "Microsoft.Bcl.AsyncInterfaces/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W8DPQjkMScOMTtJbPwmPyj9c3zYSFGawDW3jwlBOOsnY+EzZFLgNQ/UMkK35JmkNOVPdCyPr2Tw7Vv9N+KA3ZQ==", - "path": "microsoft.bcl.asyncinterfaces/5.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Analyzers/3.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA==", - "path": "microsoft.codeanalysis.analyzers/3.3.2", - "hashPath": "microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Common/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SMREwaVD5SzatlWhh9aahQAtSWdb63NcE//f+bQzgHSECU6xtDtaxk0kwV+asdFfr6HtW38UeO6jvqdfzudg3w==", - "path": "microsoft.codeanalysis.common/4.0.1", - "hashPath": "microsoft.codeanalysis.common.4.0.1.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Q9RxxydPpUElj/x1/qykDTUGsRoKbJG8H5XUSeMGmMu54fBiuX1xyanom9caa1oQfh5JIW1BgLxobSaWs4WyHQ==", - "path": "microsoft.codeanalysis.csharp/4.0.1", - "hashPath": "microsoft.codeanalysis.csharp.4.0.1.nupkg.sha512" - }, - "Microsoft.CSharp/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==", - "path": "microsoft.csharp/4.3.0", - "hashPath": "microsoft.csharp.4.3.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", - "path": "microsoft.extensions.dependencyinjection/6.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", - "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", - "path": "microsoft.extensions.logging/6.0.0", - "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", - "path": "microsoft.extensions.logging.abstractions/6.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Debug/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-M9g/JixseSZATJE9tcMn9uzoD4+DbSglivFqVx8YkRJ7VVPmnvCEbOZ0AAaxsL1EKyI4cz07DXOOJExxNsUOHw==", - "path": "microsoft.extensions.logging.debug/6.0.0", - "hashPath": "microsoft.extensions.logging.debug.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.ObjectPool/5.0.10": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pp9tbGqIhdEXL6Q1yJl+zevAJSq4BsxqhS1GXzBvEsEz9DDNu9GLNzgUy2xyFc4YjB4m4Ff2YEWTnvQvVYdkvQ==", - "path": "microsoft.extensions.objectpool/5.0.10", - "hashPath": "microsoft.extensions.objectpool.5.0.10.nupkg.sha512" - }, - "Microsoft.Extensions.Options/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", - "path": "microsoft.extensions.options/6.0.0", - "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", - "path": "microsoft.extensions.primitives/6.0.0", - "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" - }, - "Microsoft.Management.Infrastructure/2.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IaKZRNBBv3sdrmBWd+aqwHq8cVHk/3WgWFAN/dt40MRY9rbtHiDfTTmaEN0tGTmQqGCGDo/ncntA8MvFMvcsRw==", - "path": "microsoft.management.infrastructure/2.0.0", - "hashPath": "microsoft.management.infrastructure.2.0.0.nupkg.sha512" - }, - "Microsoft.Management.Infrastructure.CimCmdlets/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xe1x237SCyrjpmW1mP1T69/OOc/gtU66P8wVC+b4/u7Hz7fIO6B8P5yVQQfb79rAe1GocruIpQlX4KXTFQf09w==", - "path": "microsoft.management.infrastructure.cimcmdlets/7.2.1", - "hashPath": "microsoft.management.infrastructure.cimcmdlets.7.2.1.nupkg.sha512" - }, - "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-p0lslMX5bdWLxO2P7ao+rjAMOB0LEwPYpzvdCQ2OEYgX2NxFpQ8ILvqPGnYlTAb53rT8gu5DyIol1HboHFYfxQ==", - "path": "microsoft.management.infrastructure.runtime.unix/2.0.0", - "hashPath": "microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512" - }, - "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vjBWQeDOjgernkrOdbEgn7M70SF7hof7ORdKPSlL06Uc15+oYdth5dZju9KsgUoti/cwnkZTiwtDx/lRtay0sA==", - "path": "microsoft.management.infrastructure.runtime.win/2.0.0", - "hashPath": "microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Windows.ApiSets/1.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==", - "path": "microsoft.netcore.windows.apisets/1.0.1", - "hashPath": "microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512" - }, - "Microsoft.PowerShell.Commands.Diagnostics/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Bgw4Egv7cnYUTWAy6koxg+0+/8K6rqUdlAiAxuJby9FeDPZQFfqCHQqlyP9JDa6lvbtmeBx1btFDx6Kh8bxdwQ==", - "path": "microsoft.powershell.commands.diagnostics/7.2.1", - "hashPath": "microsoft.powershell.commands.diagnostics.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.Commands.Management/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YAMrGDF2QTg6Gwz07+m1+BnmcYsPyywfY4J8nOpImfXZLLNhD7zQQP0orNHu9WPPV3/+E33qUyPj5J3ugCMk6A==", - "path": "microsoft.powershell.commands.management/7.2.1", - "hashPath": "microsoft.powershell.commands.management.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.Commands.Utility/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PU15IxUJd7nSacTstlxqJoEeGlI+BH6cUKTppkkIIxEj7EfwC5nD1qTL41xye63BFeZmOFeqAhMI6LtJUd875g==", - "path": "microsoft.powershell.commands.utility/7.2.1", - "hashPath": "microsoft.powershell.commands.utility.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.ConsoleHost/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uAPSsTmkOa7na1+OAPF87yBRwD1Ka/qXThoyrlvP9ihzMWfHM52k3MuKVEGi04VP3Wdi7U4Rzkr3svxDDmkHgA==", - "path": "microsoft.powershell.consolehost/7.2.1", - "hashPath": "microsoft.powershell.consolehost.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.CoreCLR.Eventing/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fUz7InjavqKtslkQN828nWbZLnmmJRL9rn4b3e/XXdx0BcN+65x/pSgMnehwDVGIoqUPUMXN54eDo4HRVcLA5g==", - "path": "microsoft.powershell.coreclr.eventing/7.2.1", - "hashPath": "microsoft.powershell.coreclr.eventing.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.MarkdownRender/7.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1vqDtdX9RCGsMWCbzp0CIxZW3slWgq8mYHDfUlUKzmkV57fMAn4m0Gy2OtsqopZzrOiVJci+QCWx5FB7BVpMlw==", - "path": "microsoft.powershell.markdownrender/7.2.0", - "hashPath": "microsoft.powershell.markdownrender.7.2.0.nupkg.sha512" - }, - "Microsoft.PowerShell.Native/7.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TauOu3bYr4DRh9HpH3+fgaL+y2GY47KLsgU6qX1NDLqHshdEaCCjiF0N5sDEgCEhSb38FwWhpdFTIQvoOcYCXQ==", - "path": "microsoft.powershell.native/7.2.0", - "hashPath": "microsoft.powershell.native.7.2.0.nupkg.sha512" - }, - "Microsoft.PowerShell.SDK/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UufIcywqI/22p0oqC5qg+yDoW39U2JAQyaHxy2Tr/h0hdWuFimtmhxp/FDXTxszgOdobtjcrCkSzqcoNmu/vQQ==", - "path": "microsoft.powershell.sdk/7.2.1", - "hashPath": "microsoft.powershell.sdk.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.Security/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GV3RuuOmXHAaEjeBcyixdzUIAQvHW6xgoWwafzTe97DbhI+N1sg4fa/FQ9pd8lqG+kkWxGwTy1VgudXX6rhUkg==", - "path": "microsoft.powershell.security/7.2.1", - "hashPath": "microsoft.powershell.security.7.2.1.nupkg.sha512" - }, - "Microsoft.Win32.Registry/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", - "path": "microsoft.win32.registry/4.7.0", - "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry.AccessControl/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UoE+eeuBKL+GFHxHV3FjHlY5K8Wr/IR7Ee/a2oDNqFodF1iMqyt5hIs0U9Z217AbWrHrNle4750kD03hv1IMZw==", - "path": "microsoft.win32.registry.accesscontrol/6.0.0", - "hashPath": "microsoft.win32.registry.accesscontrol.6.0.0.nupkg.sha512" - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", - "path": "microsoft.win32.systemevents/6.0.0", - "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" - }, - "Microsoft.Windows.Compatibility/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9esuK5JqnjkDgO9/AHesyJSG0aKwpfLVzTw6nIGYhqE91VLxZyv3HKulNoPVy/NOuyAaf1kE4FKtdZDzdd/SLw==", - "path": "microsoft.windows.compatibility/6.0.0", - "hashPath": "microsoft.windows.compatibility.6.0.0.nupkg.sha512" - }, - "Microsoft.WSMan.Management/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vMOJMof4eLql180G4PmTurN8h8+VmPaf1l/Tqq+GI7HYyNv140iY3/Z18MiZA4dRG14qghLNo5JxtTolY7b4og==", - "path": "microsoft.wsman.management/7.2.1", - "hashPath": "microsoft.wsman.management.7.2.1.nupkg.sha512" - }, - "Microsoft.WSMan.Runtime/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v14vzUXIg7opXoQI8Eb82dvsRwBNylZ44lvyXOBSRCiVfvMhyTqE8bpPWbwwmQ5JZRnG/dP5/aOYuu9l163fyQ==", - "path": "microsoft.wsman.runtime/7.2.1", - "hashPath": "microsoft.wsman.runtime.7.2.1.nupkg.sha512" - }, - "Namotion.Reflection/2.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tZCe/UrSBAMW8A4TjD/SlpRHaWjnHlSWdyRuOXhf3yrE0OX+4fXg0uzj7mwFDclXznfCGRAZbP+akPt4G/mclw==", - "path": "namotion.reflection/2.0.3", - "hashPath": "namotion.reflection.2.0.3.nupkg.sha512" - }, - "Newtonsoft.Json/13.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", - "path": "newtonsoft.json/13.0.1", - "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" - }, - "NJsonSchema/10.5.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vr2CbySuXh74TQFU0rGJYZOS492xOE64cPXdB7a0cfXJb/N45Bf4v7sd4LOla0jNhgc5V/B61Ko3qecriL195w==", - "path": "njsonschema/10.5.2", - "hashPath": "njsonschema.10.5.2.nupkg.sha512" - }, - "NLog/4.7.13": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AvoGpCuq36B+0wY313XA6gC+YeMvk24rqF8P+HS9fInBGOjCzPjpXp2ln9ATZjPOJtXgHfc8zNmTjyswFGLxvg==", - "path": "nlog/4.7.13", - "hashPath": "nlog.4.7.13.nupkg.sha512" - }, - "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-75q52H7CSpgIoIDwXb9o833EvBZIXJ0mdPhz1E6jSisEXUBlSCPalC29cj3EXsjpuDwr0dj1LRXZepIQH/oL4Q==", - "path": "runtime.linux-arm.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.linux-arm.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xn2bMThmXr3CsvOYmS8ex2Yz1xo+kcnhVg2iVhS9PlmqjZPAkrEo/I40wjrBZH/tU4kvH0s1AE8opAvQ3KIS8g==", - "path": "runtime.linux-arm64.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.linux-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-16nbNXwv0sC+gLGIuecri0skjuh6R1maIJggsaNP7MQBcbVcEfWFUOkEnsnvoLEjy0XerfibuRptfQ8AmdIcWA==", - "path": "runtime.linux-x64.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.linux-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.native.System.Data.SqlClient.sni/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", - "path": "runtime.native.system.data.sqlclient.sni/4.7.0", - "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512" - }, - "runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KaaXlpOcuZjMdmyF5wzzx3b+PRKIzt6A5Ax9dKenPDQbVJAFpev+casD0BIig1pBcbs3zx7CqWemzUJKAeHdSQ==", - "path": "runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fXG12NodG1QrCdoaeSQ1gVnk/koi4WYY4jZtarMkZeQMyReBm1nZlSRoPnUjLr2ZR36TiMjpcGnQfxymieUe7w==", - "path": "runtime.osx-arm64.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.osx-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/As+zPY49+dSUXkh+fTUbyPhqrdGN//evLxo4Vue88pfh1BHZgF7q4kMblTkxYvwR6Vi03zSYxysSFktO8/SDQ==", - "path": "runtime.osx-x64.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.osx-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", - "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", - "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" - }, - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", - "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", - "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" - }, - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", - "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", - "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" - }, - "System.CodeDom/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", - "path": "system.codedom/6.0.0", - "hashPath": "system.codedom.6.0.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.Immutable/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", - "path": "system.collections.immutable/5.0.0", - "hashPath": "system.collections.immutable.5.0.0.nupkg.sha512" - }, - "System.ComponentModel.Composition/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-60Qv+F7oxomOjJeTDA5Z4iCyFbQ0B/2Mi5HT+13pxxq0lVnu2ipbWMzFB+RWKr3wWKA8BSncXr9PH/fECwMX5Q==", - "path": "system.componentmodel.composition/6.0.0", - "hashPath": "system.componentmodel.composition.6.0.0.nupkg.sha512" - }, - "System.ComponentModel.Composition.Registration/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+i3RLlOgTsf15VeADBPpzPyRiXq71aLSuzdHeNtmq9f6BwpF3OWhB76p0WDUNCa3Z+SLD4dJbBM9yAep7kQCGA==", - "path": "system.componentmodel.composition.registration/6.0.0", - "hashPath": "system.componentmodel.composition.registration.6.0.0.nupkg.sha512" - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", - "path": "system.configuration.configurationmanager/6.0.0", - "hashPath": "system.configuration.configurationmanager.6.0.0.nupkg.sha512" - }, - "System.Data.Odbc/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pnZjwe0Qwr1Rnp7NExd5zz4YwXJrYuAbWNKjEQpTzCEg6f/L5DYJS7w3hG3vgSj1t/r79UL390YzXIklf1VuQQ==", - "path": "system.data.odbc/6.0.0", - "hashPath": "system.data.odbc.6.0.0.nupkg.sha512" - }, - "System.Data.OleDb/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LQ8PjTIF1LtrrlGiyiTVjAkQtTWKm9GSNnygIlWjhN9y88s7xhy6DUNDDkmQQ9f6ex7mA4k0Tl97lz/CklaiLg==", - "path": "system.data.oledb/6.0.0", - "hashPath": "system.data.oledb.6.0.0.nupkg.sha512" - }, - "System.Data.SqlClient/4.8.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yERfVLXAY0QbylAgaGLByYN0hFxX28aeEQ0hUgJO+Ntn1AfmWl5HHUoYJA0Yl9HhIUUJHVaS/Sw/RLZr5aaC+A==", - "path": "system.data.sqlclient/4.8.3", - "hashPath": "system.data.sqlclient.4.8.3.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", - "path": "system.diagnostics.diagnosticsource/6.0.0", - "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" - }, - "System.Diagnostics.EventLog/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", - "path": "system.diagnostics.eventlog/6.0.0", - "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512" - }, - "System.Diagnostics.PerformanceCounter/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-gbeE5tNp/oB7O8kTTLh3wPPJCxpNOphXPTWVs1BsYuFOYapFijWuh0LYw1qnDo4gwDUYPXOmpTIhvtxisGsYOQ==", - "path": "system.diagnostics.performancecounter/6.0.0", - "hashPath": "system.diagnostics.performancecounter.6.0.0.nupkg.sha512" - }, - "System.DirectoryServices/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kp/Op0nxDVGlElDKh8TsXO0GKXftQgAB6sJk0wUetZK1Rr0Pbd86Tn7AllLLlROFZa4BTl/LVHakljtGELFzCg==", - "path": "system.directoryservices/6.0.0", - "hashPath": "system.directoryservices.6.0.0.nupkg.sha512" - }, - "System.DirectoryServices.AccountManagement/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2iKkY6VC4WX6H13N8WhH2SRUfWCwg2KZR5w9JIS9cw9N8cZhT7VXxHX0L6OX6Po419aSu2LWrJE9tu6b+cUnPA==", - "path": "system.directoryservices.accountmanagement/6.0.0", - "hashPath": "system.directoryservices.accountmanagement.6.0.0.nupkg.sha512" - }, - "System.DirectoryServices.Protocols/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-++WKU7HQPo/FJdhywWw+q2lLjcVAGVw5XLH9kRCV+4DvkhVAcHCksh0ezIqwNROmaU9LMJN0d/LAdeWXu3pi6Q==", - "path": "system.directoryservices.protocols/6.0.0", - "hashPath": "system.directoryservices.protocols.6.0.0.nupkg.sha512" - }, - "System.Drawing.Common/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", - "path": "system.drawing.common/6.0.0", - "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" - }, - "System.Dynamic.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", - "path": "system.dynamic.runtime/4.3.0", - "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" - }, - "System.Formats.Asn1/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA==", - "path": "system.formats.asn1/6.0.0", - "hashPath": "system.formats.asn1.6.0.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.Packaging/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-C7OkTRIjqIjAKu6ef/fuj8ynCZTPcTYZnvHaq48bniACgXXJogmEoIc56YCDNTc14xhsbLmgpS3KP+evbsUa2g==", - "path": "system.io.packaging/6.0.0", - "hashPath": "system.io.packaging.6.0.0.nupkg.sha512" - }, - "System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dRyGI7fUESar5ZLIpiBOaaNLW7YyOBGftjj5Of+xcduC/Rjl7RjhEnWDvvNBmHuF3d0tdXoqdVI/yrVA8f00XA==", - "path": "system.io.ports/6.0.0", - "hashPath": "system.io.ports.6.0.0.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "path": "system.linq.expressions/4.3.0", - "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" - }, - "System.Management/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sHsESYMmPDhQuOC66h6AEOs/XowzKsbT9srMbX71TCXP58hkpn1BqBjdmKj1+DCA/WlBETX1K5WjQHwmV0Txrg==", - "path": "system.management/6.0.0", - "hashPath": "system.management.6.0.0.nupkg.sha512" - }, - "System.Management.Automation/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YlTE+q14vQ1YU//A5+/Jwl5+L5r6uOVIWuB4D/T9r80AaCeUAZMMvTKjgvIr9lwkovwQflVL+1JfBAi9f0q0KA==", - "path": "system.management.automation/7.2.1", - "hashPath": "system.management.automation.7.2.1.nupkg.sha512" - }, - "System.Memory/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", - "path": "system.memory/4.5.4", - "hashPath": "system.memory.4.5.4.nupkg.sha512" - }, - "System.Net.Http.WinHttpHandler/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jubNN9jH4NzVrvEf4fGwESLBsfH8whWNbHMhgM6IwA8UCt6+/M19bbOHc21JhigvC2HQKCl8HKGZMcBtIpzqIg==", - "path": "system.net.http.winhttphandler/6.0.0", - "hashPath": "system.net.http.winhttphandler.6.0.0.nupkg.sha512" - }, - "System.Numerics.Vectors/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", - "path": "system.numerics.vectors/4.5.0", - "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "path": "system.objectmodel/4.3.0", - "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" - }, - "System.Private.ServiceModel/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d3RjkrtpjUQ63PzFmm/SZ4aOXeJNP+8YW5QeP0lCJy8iX4xlHdlNLWTF9sRn9SmrFTK757kQXT9Op/R4l858uw==", - "path": "system.private.servicemodel/4.9.0", - "hashPath": "system.private.servicemodel.4.9.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Context/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vi+Gb41oyOYie7uLSsjRmfRg3bryUg5DssJvj3gDUl0D8z6ipSm6/yi/XNx2rcS5iVMvHcwRUHjcx7ixv0K3/w==", - "path": "system.reflection.context/6.0.0", - "hashPath": "system.reflection.context.6.0.0.nupkg.sha512" - }, - "System.Reflection.DispatchProxy/4.7.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-C1sMLwIG6ILQ2bmOT4gh62V6oJlyF4BlHcVMrOoor49p0Ji2tA8QAoqyMcIhAdH6OHKJ8m7BU+r4LK2CUEOKqw==", - "path": "system.reflection.dispatchproxy/4.7.1", - "hashPath": "system.reflection.dispatchproxy.4.7.1.nupkg.sha512" - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "path": "system.reflection.emit/4.3.0", - "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "path": "system.reflection.emit.lightweight/4.3.0", - "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Metadata/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==", - "path": "system.reflection.metadata/5.0.0", - "hashPath": "system.reflection.metadata.5.0.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.Caching/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==", - "path": "system.runtime.caching/6.0.0", - "hashPath": "system.runtime.caching.6.0.0.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Security.AccessControl/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", - "path": "system.security.accesscontrol/6.0.0", - "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Pkcs/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-elM3x+xSRhzQysiqo85SbidJJ2YbZlnvmh+53TuSZHsD7dNuuEWser+9EFtY+rYupBwkq2avc6ZCO3/6qACgmg==", - "path": "system.security.cryptography.pkcs/6.0.0", - "hashPath": "system.security.cryptography.pkcs.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", - "path": "system.security.cryptography.protecteddata/6.0.0", - "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Xml/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-puJ4UCh9JVRwOCyCIcq71JY6Axr8Sp8E2GjTIU1Fj8hm4+oX6NEoyGFGa/+pBG8SrVxbQPSj7hvtaREyTHHsmw==", - "path": "system.security.cryptography.xml/6.0.0", - "hashPath": "system.security.cryptography.xml.6.0.0.nupkg.sha512" - }, - "System.Security.Permissions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", - "path": "system.security.permissions/6.0.0", - "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" - }, - "System.Security.Principal.Windows/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", - "path": "system.security.principal.windows/5.0.0", - "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" - }, - "System.ServiceModel.Duplex/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Yb8MFiJxBBtm2JnfS/5SxYzm2HqkEmHu5xeaVIHXy83sNpty9wc30JifH2xgda821D6nr1UctbwbdZqN4LBUKQ==", - "path": "system.servicemodel.duplex/4.9.0", - "hashPath": "system.servicemodel.duplex.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.Http/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z+s3RkLNzJ31fDXAjqXdXp67FqsNG4V3Md3r7FOrzMkHmg61gY8faEfTFPBLxU9tax1HPWt6IHVAquXBKySJaw==", - "path": "system.servicemodel.http/4.9.0", - "hashPath": "system.servicemodel.http.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.NetTcp/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nXgnnkrZERUF/KwmoLwZPkc7fqgiq94DXkmUZBvDNh/LdZquDvjy2NbhJLElpApOa5x8zEoQoBZyJ2PqNC39qg==", - "path": "system.servicemodel.nettcp/4.9.0", - "hashPath": "system.servicemodel.nettcp.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.Primitives/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LTFPVdS8Nf76xg/wRZkDa+2Q+GnjTOmwkTlwuoetwX37mAfYnGkf7p8ydhpDwVmomNljpUOhUUGxfjQyd5YcOg==", - "path": "system.servicemodel.primitives/4.9.0", - "hashPath": "system.servicemodel.primitives.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.Security/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iurpbSmPgotHps94VQ6acvL6hU2gjiuBmQI7PwLLN76jsbSpUcahT0PglccKIAwoMujATk/LWtAapBHpwCFn2g==", - "path": "system.servicemodel.security/4.9.0", - "hashPath": "system.servicemodel.security.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.Syndication/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cp1mMNG87iJtE0oHXFtfWT6cfski2JNo5iU0siTPi/uN2k1CIJI6FE4jr4v3got2dzt7wBq17fSy44btun9GiA==", - "path": "system.servicemodel.syndication/6.0.0", - "hashPath": "system.servicemodel.syndication.6.0.0.nupkg.sha512" - }, - "System.ServiceProcess.ServiceController/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qMBvG8ZFbkXoe0Z5/D7FAAadfPkH2v7vSuh2xsLf3U6jNoejpIdeV18A0htiASsLK1CCAc/p59kaLXlt2yB1gw==", - "path": "system.serviceprocess.servicecontroller/6.0.0", - "hashPath": "system.serviceprocess.servicecontroller.6.0.0.nupkg.sha512" - }, - "System.Speech/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GQovERMrNP0Vbtgk8LzH4PlFS6lqHgsL9WkUmv8Kkxa0m0vNakitytpHZlfJ9WR7n9WKLXh68nn2kyL9mflnLg==", - "path": "system.speech/6.0.0", - "hashPath": "system.speech.6.0.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.CodePages/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "path": "system.text.encoding.codepages/6.0.0", - "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512" - }, - "System.Text.Encodings.Web/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", - "path": "system.text.encodings.web/6.0.0", - "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.AccessControl/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2258mqWesMch/xCpcnjJBgJP33yhpZLGLbEOm01qwq0efG4b+NG8c9sxYOWNxmDQ82swXrnQRl1Yp2wC1NrfZA==", - "path": "system.threading.accesscontrol/6.0.0", - "hashPath": "system.threading.accesscontrol.6.0.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", - "path": "system.threading.tasks.extensions/4.5.4", - "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" - }, - "System.Web.Services.Description/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d20B3upsWddwSG5xF3eQLs0cAV3tXDsBNqP4kh02ylfgZwqfpf4f/9KiZVIGIoxULt2cKqxWs+U4AdNAJ7L8cQ==", - "path": "system.web.services.description/4.9.0", - "hashPath": "system.web.services.description.4.9.0.nupkg.sha512" - }, - "System.Windows.Extensions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", - "path": "system.windows.extensions/6.0.0", - "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" - }, - "Typin/3.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BV/TvL7a2c8FHBFc3YiWEzQua2NitFY5JnE30zJxo2nQrHeZuJYruZ7H+sT+/cnBLjsDr/mUpYtIS1HRTJQ3xg==", - "path": "typin/3.1.0", - "hashPath": "typin.3.1.0.nupkg.sha512" - }, - "Typin.Core/3.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0M44paHjcQuVTMCyfySqklbfVcQ38GfFGBkeKz0E+zhXdV0wD9tI5GwZdjUPOGlqhOmP7CHh452JSgJK2hc57A==", - "path": "typin.core/3.1.0", - "hashPath": "typin.core.3.1.0.nupkg.sha512" - }, - "YamlDotNet/11.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tBt8K+korVfrjH9wyDEhiLKxbs8qoLCLIFwvYgkSUuMC9//w3z0cFQ8LQAI/5MCKq+BMil0cfRTRvPeE7eXhQw==", - "path": "yamldotnet/11.2.1", - "hashPath": "yamldotnet.11.2.1.nupkg.sha512" - }, - "Linguard.Core/2.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Linguard.Log/2.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/linguard/Cli/bin/Debug/net6.0/Linguard.Cli.dll b/linguard/Cli/bin/Debug/net6.0/Linguard.Cli.dll deleted file mode 100644 index 5de6843..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/Linguard.Cli.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/Linguard.Cli.exe b/linguard/Cli/bin/Debug/net6.0/Linguard.Cli.exe deleted file mode 100644 index e8c7022..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/Linguard.Cli.exe and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/Linguard.Cli.pdb b/linguard/Cli/bin/Debug/net6.0/Linguard.Cli.pdb deleted file mode 100644 index 4a718f4..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/Linguard.Cli.pdb and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/Linguard.Cli.runtimeconfig.json b/linguard/Cli/bin/Debug/net6.0/Linguard.Cli.runtimeconfig.json deleted file mode 100644 index 4986d16..0000000 --- a/linguard/Cli/bin/Debug/net6.0/Linguard.Cli.runtimeconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net6.0", - "framework": { - "name": "Microsoft.NETCore.App", - "version": "6.0.0" - } - } -} \ No newline at end of file diff --git a/linguard/Cli/bin/Debug/net6.0/Linguard.Core.dll b/linguard/Cli/bin/Debug/net6.0/Linguard.Core.dll deleted file mode 100644 index f622876..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/Linguard.Core.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/Linguard.Core.pdb b/linguard/Cli/bin/Debug/net6.0/Linguard.Core.pdb deleted file mode 100644 index 5896cce..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/Linguard.Core.pdb and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/Linguard.Log.dll b/linguard/Cli/bin/Debug/net6.0/Linguard.Log.dll deleted file mode 100644 index 561b728..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/Linguard.Log.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/Linguard.Log.pdb b/linguard/Cli/bin/Debug/net6.0/Linguard.Log.pdb deleted file mode 100644 index ef5cdfa..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/Linguard.Log.pdb and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/Markdig.Signed.dll b/linguard/Cli/bin/Debug/net6.0/Markdig.Signed.dll deleted file mode 100644 index 722a399..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/Markdig.Signed.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/Microsoft.ApplicationInsights.dll b/linguard/Cli/bin/Debug/net6.0/Microsoft.ApplicationInsights.dll deleted file mode 100644 index 8ef5eef..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/Microsoft.ApplicationInsights.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll b/linguard/Cli/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll deleted file mode 100644 index be25bdb..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.dll b/linguard/Cli/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.dll deleted file mode 100644 index 581191d..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/Microsoft.CodeAnalysis.dll b/linguard/Cli/bin/Debug/net6.0/Microsoft.CodeAnalysis.dll deleted file mode 100644 index c653dc8..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/Microsoft.CodeAnalysis.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll deleted file mode 100644 index b4ee93d..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll b/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll deleted file mode 100644 index 97525f7..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll b/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll deleted file mode 100644 index bb27a2f..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.Logging.Debug.dll b/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.Logging.Debug.dll deleted file mode 100644 index 6fc456c..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.Logging.Debug.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll b/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll deleted file mode 100644 index 9e2d7f9..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.ObjectPool.dll b/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.ObjectPool.dll deleted file mode 100644 index 730dead..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.ObjectPool.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.Options.dll b/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.Options.dll deleted file mode 100644 index 604b602..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.Options.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll b/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll deleted file mode 100644 index 1b2c43a..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/Microsoft.PowerShell.MarkdownRender.dll b/linguard/Cli/bin/Debug/net6.0/Microsoft.PowerShell.MarkdownRender.dll deleted file mode 100644 index 68f0076..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/Microsoft.PowerShell.MarkdownRender.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/Microsoft.Win32.Registry.AccessControl.dll b/linguard/Cli/bin/Debug/net6.0/Microsoft.Win32.Registry.AccessControl.dll deleted file mode 100644 index b598181..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/Microsoft.Win32.Registry.AccessControl.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll b/linguard/Cli/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll deleted file mode 100644 index 3ab5850..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/NJsonSchema.dll b/linguard/Cli/bin/Debug/net6.0/NJsonSchema.dll deleted file mode 100644 index 0e6ee5b..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/NJsonSchema.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/NLog.config b/linguard/Cli/bin/Debug/net6.0/NLog.config deleted file mode 100644 index 5a581ee..0000000 --- a/linguard/Cli/bin/Debug/net6.0/NLog.config +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/linguard/Cli/bin/Debug/net6.0/NLog.dll b/linguard/Cli/bin/Debug/net6.0/NLog.dll deleted file mode 100644 index 4aa35e7..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/NLog.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/Namotion.Reflection.dll b/linguard/Cli/bin/Debug/net6.0/Namotion.Reflection.dll deleted file mode 100644 index 39dbbfa..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/Namotion.Reflection.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/Newtonsoft.Json.dll b/linguard/Cli/bin/Debug/net6.0/Newtonsoft.Json.dll deleted file mode 100644 index 1ffeabe..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/Newtonsoft.Json.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.CodeDom.dll b/linguard/Cli/bin/Debug/net6.0/System.CodeDom.dll deleted file mode 100644 index 54c82b6..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.CodeDom.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.ComponentModel.Composition.Registration.dll b/linguard/Cli/bin/Debug/net6.0/System.ComponentModel.Composition.Registration.dll deleted file mode 100644 index 586e1af..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.ComponentModel.Composition.Registration.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.ComponentModel.Composition.dll b/linguard/Cli/bin/Debug/net6.0/System.ComponentModel.Composition.dll deleted file mode 100644 index 3e063b3..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.ComponentModel.Composition.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll b/linguard/Cli/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll deleted file mode 100644 index d67c8a8..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Data.Odbc.dll b/linguard/Cli/bin/Debug/net6.0/System.Data.Odbc.dll deleted file mode 100644 index 5101278..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Data.OleDb.dll b/linguard/Cli/bin/Debug/net6.0/System.Data.OleDb.dll deleted file mode 100644 index f7840cd..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.Data.OleDb.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Data.SqlClient.dll b/linguard/Cli/bin/Debug/net6.0/System.Data.SqlClient.dll deleted file mode 100644 index d03f8a1..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.Data.SqlClient.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Diagnostics.EventLog.dll b/linguard/Cli/bin/Debug/net6.0/System.Diagnostics.EventLog.dll deleted file mode 100644 index 8a65e71..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.Diagnostics.EventLog.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Diagnostics.PerformanceCounter.dll b/linguard/Cli/bin/Debug/net6.0/System.Diagnostics.PerformanceCounter.dll deleted file mode 100644 index e9092d7..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.Diagnostics.PerformanceCounter.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.DirectoryServices.AccountManagement.dll b/linguard/Cli/bin/Debug/net6.0/System.DirectoryServices.AccountManagement.dll deleted file mode 100644 index 77183e0..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.DirectoryServices.AccountManagement.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.DirectoryServices.Protocols.dll b/linguard/Cli/bin/Debug/net6.0/System.DirectoryServices.Protocols.dll deleted file mode 100644 index d62b127..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.DirectoryServices.Protocols.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.DirectoryServices.dll b/linguard/Cli/bin/Debug/net6.0/System.DirectoryServices.dll deleted file mode 100644 index 803611c..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.DirectoryServices.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Drawing.Common.dll b/linguard/Cli/bin/Debug/net6.0/System.Drawing.Common.dll deleted file mode 100644 index be6915e..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.Drawing.Common.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.IO.Packaging.dll b/linguard/Cli/bin/Debug/net6.0/System.IO.Packaging.dll deleted file mode 100644 index 007253e..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.IO.Packaging.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.IO.Ports.dll b/linguard/Cli/bin/Debug/net6.0/System.IO.Ports.dll deleted file mode 100644 index e10e943..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.IO.Ports.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Management.dll b/linguard/Cli/bin/Debug/net6.0/System.Management.dll deleted file mode 100644 index fae6cf1..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.Management.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Net.Http.WinHttpHandler.dll b/linguard/Cli/bin/Debug/net6.0/System.Net.Http.WinHttpHandler.dll deleted file mode 100644 index 2490b06..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.Net.Http.WinHttpHandler.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Net.IPNetwork.dll b/linguard/Cli/bin/Debug/net6.0/System.Net.IPNetwork.dll deleted file mode 100644 index 9b94f0c..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.Net.IPNetwork.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Private.ServiceModel.dll b/linguard/Cli/bin/Debug/net6.0/System.Private.ServiceModel.dll deleted file mode 100644 index 82e7a91..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.Private.ServiceModel.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Reflection.Context.dll b/linguard/Cli/bin/Debug/net6.0/System.Reflection.Context.dll deleted file mode 100644 index 3faa973..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.Reflection.Context.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Runtime.Caching.dll b/linguard/Cli/bin/Debug/net6.0/System.Runtime.Caching.dll deleted file mode 100644 index 14826eb..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.Runtime.Caching.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Security.Cryptography.Pkcs.dll b/linguard/Cli/bin/Debug/net6.0/System.Security.Cryptography.Pkcs.dll deleted file mode 100644 index c2bb12e..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.Security.Cryptography.Pkcs.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll b/linguard/Cli/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll deleted file mode 100644 index 1ba8770..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Security.Cryptography.Xml.dll b/linguard/Cli/bin/Debug/net6.0/System.Security.Cryptography.Xml.dll deleted file mode 100644 index 96d460e..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.Security.Cryptography.Xml.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Security.Permissions.dll b/linguard/Cli/bin/Debug/net6.0/System.Security.Permissions.dll deleted file mode 100644 index 39dd4df..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.Security.Permissions.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.Duplex.dll b/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.Duplex.dll deleted file mode 100644 index 7eeafd5..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.Duplex.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.Http.dll b/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.Http.dll deleted file mode 100644 index 79aab9d..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.Http.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.NetTcp.dll b/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.NetTcp.dll deleted file mode 100644 index a59b27e..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.NetTcp.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.Primitives.dll b/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.Primitives.dll deleted file mode 100644 index 8c32245..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.Primitives.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.Security.dll b/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.Security.dll deleted file mode 100644 index 5f2fc73..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.Security.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.Syndication.dll b/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.Syndication.dll deleted file mode 100644 index 0dab5e1..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.Syndication.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.dll b/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.dll deleted file mode 100644 index e7849b5..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.ServiceProcess.ServiceController.dll b/linguard/Cli/bin/Debug/net6.0/System.ServiceProcess.ServiceController.dll deleted file mode 100644 index 3e5508c..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.ServiceProcess.ServiceController.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Speech.dll b/linguard/Cli/bin/Debug/net6.0/System.Speech.dll deleted file mode 100644 index 9d14819..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.Speech.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Threading.AccessControl.dll b/linguard/Cli/bin/Debug/net6.0/System.Threading.AccessControl.dll deleted file mode 100644 index b6d69a4..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.Threading.AccessControl.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Web.Services.Description.dll b/linguard/Cli/bin/Debug/net6.0/System.Web.Services.Description.dll deleted file mode 100644 index c230b5c..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.Web.Services.Description.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Windows.Extensions.dll b/linguard/Cli/bin/Debug/net6.0/System.Windows.Extensions.dll deleted file mode 100644 index c3e8844..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/System.Windows.Extensions.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/Typin.Core.dll b/linguard/Cli/bin/Debug/net6.0/Typin.Core.dll deleted file mode 100644 index 58f476f..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/Typin.Core.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/Typin.dll b/linguard/Cli/bin/Debug/net6.0/Typin.dll deleted file mode 100644 index 67662ab..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/Typin.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/YamlDotNet.dll b/linguard/Cli/bin/Debug/net6.0/YamlDotNet.dll deleted file mode 100644 index 76b7999..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/YamlDotNet.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index d0282cc..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index fd3063e..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/cs/System.Private.ServiceModel.resources.dll b/linguard/Cli/bin/Debug/net6.0/cs/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 2cedcf5..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/cs/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/cs/System.Web.Services.Description.resources.dll b/linguard/Cli/bin/Debug/net6.0/cs/System.Web.Services.Description.resources.dll deleted file mode 100644 index efe25cb..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/cs/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index e079e05..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 54aa47d..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/de/System.Private.ServiceModel.resources.dll b/linguard/Cli/bin/Debug/net6.0/de/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 3dc63b8..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/de/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/de/System.Web.Services.Description.resources.dll b/linguard/Cli/bin/Debug/net6.0/de/System.Web.Services.Description.resources.dll deleted file mode 100644 index 1f9fae9..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/de/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 4afd9fa..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 2d6218e..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/es/System.Private.ServiceModel.resources.dll b/linguard/Cli/bin/Debug/net6.0/es/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 65078e9..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/es/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/es/System.Web.Services.Description.resources.dll b/linguard/Cli/bin/Debug/net6.0/es/System.Web.Services.Description.resources.dll deleted file mode 100644 index edfce43..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/es/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 93a31c1..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index a22b8d5..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/fr/System.Private.ServiceModel.resources.dll b/linguard/Cli/bin/Debug/net6.0/fr/System.Private.ServiceModel.resources.dll deleted file mode 100644 index a2ad076..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/fr/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/fr/System.Web.Services.Description.resources.dll b/linguard/Cli/bin/Debug/net6.0/fr/System.Web.Services.Description.resources.dll deleted file mode 100644 index a9e94e0..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/fr/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 7f9325d..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index e71779f..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/it/System.Private.ServiceModel.resources.dll b/linguard/Cli/bin/Debug/net6.0/it/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 7bb0d14..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/it/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/it/System.Web.Services.Description.resources.dll b/linguard/Cli/bin/Debug/net6.0/it/System.Web.Services.Description.resources.dll deleted file mode 100644 index d8b5101..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/it/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 58a375d..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 8c8510d..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ja/System.Private.ServiceModel.resources.dll b/linguard/Cli/bin/Debug/net6.0/ja/System.Private.ServiceModel.resources.dll deleted file mode 100644 index c92e54a..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ja/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ja/System.Web.Services.Description.resources.dll b/linguard/Cli/bin/Debug/net6.0/ja/System.Web.Services.Description.resources.dll deleted file mode 100644 index d166bd0..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ja/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 3b3f0ed..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 66458d5..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ko/System.Private.ServiceModel.resources.dll b/linguard/Cli/bin/Debug/net6.0/ko/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 5f09fb1..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ko/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ko/System.Web.Services.Description.resources.dll b/linguard/Cli/bin/Debug/net6.0/ko/System.Web.Services.Description.resources.dll deleted file mode 100644 index 7acc280..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ko/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/linguard-cli.log b/linguard/Cli/bin/Debug/net6.0/linguard-cli.log deleted file mode 100644 index d1cff66..0000000 --- a/linguard/Cli/bin/Debug/net6.0/linguard-cli.log +++ /dev/null @@ -1,110 +0,0 @@ -2022-02-05 20:43:56.9009 [INFO] CliStartup(CliStartup.cs:38): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... -2022-02-05 20:43:57.1973 [WARN] CliStartup(CliStartup.cs:44): No configuration file found. Using defaults. -2022-02-05 20:44:32.1672 [INFO] CliStartup(CliStartup.cs:38): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... -2022-02-05 20:44:32.4211 [WARN] CliStartup(CliStartup.cs:44): No configuration file found. Using defaults. -2022-02-05 20:45:38.0960 [INFO] CliStartup(CliStartup.cs:38): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... -2022-02-05 20:45:38.3627 [WARN] CliStartup(CliStartup.cs:44): No configuration file found. Using defaults. -2022-02-05 20:45:48.7568 [INFO] CliStartup(CliStartup.cs:38): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... -2022-02-05 20:45:49.0308 [WARN] CliStartup(CliStartup.cs:44): No configuration file found. Using defaults. -2022-02-05 20:47:43.0146 [INFO] CliStartup(CliStartup.cs:38): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... -2022-02-05 20:47:43.2919 [WARN] CliStartup(CliStartup.cs:44): No configuration file found. Using defaults. -2022-02-05 20:47:43.4941 [INFO] AddInterface(AddInterface.cs:71): Added interface ''. -2022-02-05 21:31:34.4901 [INFO] CliStartup(CliStartup.cs:41): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... -2022-02-05 21:31:34.7796 [WARN] CliStartup(CliStartup.cs:47): No configuration file found. Using defaults. -2022-02-05 21:31:35.5127 [INFO] AddInterface(AddInterface.cs:73): Added interface 'Amira9'. -2022-02-05 21:32:31.6621 [INFO] CliStartup(CliStartup.cs:41): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... -2022-02-05 21:32:32.0871 [WARN] CliStartup(CliStartup.cs:47): No configuration file found. Using defaults. -2022-02-05 21:32:32.6144 [INFO] AddInterface(AddInterface.cs:73): Added interface 'Laurence61'. -2022-02-05 21:32:38.6962 [INFO] CliStartup(CliStartup.cs:41): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... -2022-02-05 21:32:39.0421 [WARN] CliStartup(CliStartup.cs:47): No configuration file found. Using defaults. -2022-02-05 21:32:39.5559 [INFO] AddInterface(AddInterface.cs:73): Added interface 'Lamar_Cartwright83'. -2022-02-05 21:33:48.8615 [INFO] CliStartup(CliStartup.cs:41): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... -2022-02-05 21:33:49.2829 [WARN] CliStartup(CliStartup.cs:47): No configuration file found. Using defaults. -2022-02-05 21:33:49.7679 [INFO] AddInterface(AddInterface.cs:73): Added interface 'Camron55'. -2022-02-05 21:34:32.5084 [INFO] CliStartup(CliStartup.cs:41): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... -2022-02-05 21:34:32.8470 [WARN] CliStartup(CliStartup.cs:47): No configuration file found. Using defaults. -2022-02-05 21:34:33.2909 [INFO] AddInterface(AddInterface.cs:73): Added interface 'Weston44'. -2022-02-06 12:07:17.6583 [INFO] CliStartup(CliStartup.cs:41): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... -2022-02-06 12:07:18.6334 [WARN] CliStartup(CliStartup.cs:47): No configuration file found. Using defaults. -2022-02-06 12:14:09.4427 [INFO] CliStartup(CliStartup.cs:41): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... -2022-02-06 12:14:09.7271 [WARN] CliStartup(CliStartup.cs:47): No configuration file found. Using defaults. -2022-02-06 12:17:39.6079 [INFO] CliStartup(CliStartup.cs:41): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... -2022-02-06 12:17:39.9013 [WARN] CliStartup(CliStartup.cs:47): No configuration file found. Using defaults. -2022-02-06 12:33:47.9941 [INFO] ConfigurationSetupMiddleware(ConfigurationSetupMiddleware.cs:24): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... -2022-02-06 12:33:53.7264 [WARN] ConfigurationSetupMiddleware(ConfigurationSetupMiddleware.cs:30): No configuration file found. Using defaults. -2022-02-06 12:35:19.4477 [INFO] ConfigurationSetupMiddleware(ConfigurationSetupMiddleware.cs:24): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... -2022-02-06 12:35:19.7691 [WARN] ConfigurationSetupMiddleware(ConfigurationSetupMiddleware.cs:30): No configuration file found. Using defaults. -2022-02-06 12:36:58.1370 [INFO] ConfigurationSetupMiddleware(ConfigurationSetupMiddleware.cs:24): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... -2022-02-06 12:36:58.4897 [WARN] ConfigurationSetupMiddleware(ConfigurationSetupMiddleware.cs:30): No configuration file found. Using defaults. -2022-02-06 12:38:32.2333 [INFO] ConfigurationSetupMiddleware(ConfigurationSetupMiddleware.cs:24): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... -2022-02-06 12:38:32.5682 [WARN] ConfigurationSetupMiddleware(ConfigurationSetupMiddleware.cs:30): No configuration file found. Using defaults. -2022-02-06 12:42:56.1706 [INFO] d__5(ConfigurationSetupMiddleware.cs:24): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... -2022-02-06 12:42:56.5299 [WARN] d__5(ConfigurationSetupMiddleware.cs:30): No configuration file found. Using defaults. -2022-02-06 12:42:57.1188 [INFO] AddInterface(AddInterface.cs:72): Added interface 'Kelley.Davis'. -2022-02-06 12:59:41.0848 [INFO] d__5(ConfigurationSetupMiddleware.cs:24): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... -2022-02-06 12:59:41.4412 [WARN] d__5(ConfigurationSetupMiddleware.cs:30): No configuration file found. Using defaults. -2022-02-07 20:45:55.0462 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... -2022-02-07 20:47:22.3540 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... -2022-02-07 20:48:03.5747 [WARN] d__4(ConfigurationSetupMiddleware.cs:24): Unable to load configuration. Using defaults. -2022-02-07 20:49:03.7825 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... -2022-02-07 20:49:04.0677 [WARN] d__4(ConfigurationSetupMiddleware.cs:24): Unable to load configuration. Using defaults. -2022-02-07 20:54:54.4416 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... -2022-02-07 20:54:54.7016 [WARN] d__4(ConfigurationSetupMiddleware.cs:24): Unable to load configuration. Using defaults. -2022-02-07 20:59:27.7731 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... -2022-02-07 20:59:28.0455 [WARN] d__4(ConfigurationSetupMiddleware.cs:24): Unable to load configuration. Using defaults. -2022-02-07 21:06:02.4092 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... -2022-02-07 21:06:02.6578 [WARN] d__4(ConfigurationSetupMiddleware.cs:24): Unable to load configuration. Using defaults. -2022-02-07 21:06:32.5130 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... -2022-02-07 21:06:32.7422 [WARN] d__4(ConfigurationSetupMiddleware.cs:24): Unable to load configuration. Using defaults. -2022-02-07 21:10:41.7825 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... -2022-02-07 21:10:42.0061 [WARN] d__4(ConfigurationSetupMiddleware.cs:24): Unable to load configuration. Using defaults. -2022-02-07 21:12:43.0068 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... -2022-02-07 21:12:43.2342 [WARN] d__4(ConfigurationSetupMiddleware.cs:24): Unable to load configuration. Using defaults. -2022-02-07 21:14:24.3137 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... -2022-02-07 21:14:24.5478 [WARN] d__4(ConfigurationSetupMiddleware.cs:24): Unable to load configuration. Using defaults. -2022-02-07 21:27:35.0334 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... -2022-02-07 21:27:35.3099 [WARN] d__4(ConfigurationSetupMiddleware.cs:24): Unable to load configuration. Using defaults. -2022-02-07 21:32:18.9229 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... -2022-02-07 21:32:19.2057 [WARN] d__4(ConfigurationSetupMiddleware.cs:24): Unable to load configuration. Using defaults. -2022-02-09 15:43:03.5802 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... -2022-02-09 15:43:03.9520 [WARN] d__4(ConfigurationSetupMiddleware.cs:24): Unable to load configuration. Using defaults. -2022-02-09 16:00:32.0500 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... -2022-02-09 16:00:32.2051 [WARN] d__4(ConfigurationSetupMiddleware.cs:24): Unable to load configuration. Using defaults. -2022-02-09 16:00:35.3847 [INFO] AddInterfaceCommand(AddInterfaceCommand.cs:77): Added interface 'wg0'. -2022-02-09 16:03:26.4849 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... -2022-02-09 16:03:26.8709 [WARN] d__4(ConfigurationSetupMiddleware.cs:24): Unable to load configuration. Using defaults. -2022-02-09 16:04:08.4566 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... -2022-02-09 16:04:08.7332 [WARN] d__4(ConfigurationSetupMiddleware.cs:24): Unable to load configuration. Using defaults. -2022-02-09 16:05:37.0187 [INFO] AddInterfaceCommand(AddInterfaceCommand.cs:77): Added interface 'wg0'. -2022-02-09 16:06:44.1584 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... -2022-02-09 16:06:44.4178 [WARN] d__4(ConfigurationSetupMiddleware.cs:24): Unable to load configuration. Using defaults. -2022-02-09 16:07:23.1012 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... -2022-02-09 16:07:23.9905 [INFO] d__4(ConfigurationSetupMiddleware.cs:25): Configuration loaded. -2022-02-09 16:09:38.7805 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... -2022-02-09 16:10:12.6996 [INFO] d__4(ConfigurationSetupMiddleware.cs:25): Configuration loaded. -2022-02-09 16:13:06.6158 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... -2022-02-09 16:13:07.7222 [INFO] d__4(ConfigurationSetupMiddleware.cs:25): Configuration loaded. -2022-02-09 16:14:48.3850 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... -2022-02-09 16:14:49.5654 [INFO] d__4(ConfigurationSetupMiddleware.cs:25): Configuration loaded. -2022-02-09 16:16:35.6003 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... -2022-02-09 16:16:36.7637 [INFO] d__4(ConfigurationSetupMiddleware.cs:25): Configuration loaded. -2022-02-09 16:17:26.2312 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... -2022-02-09 16:18:55.8357 [INFO] d__4(ConfigurationSetupMiddleware.cs:25): Configuration loaded. -2022-02-09 16:19:55.2805 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... -2022-02-09 16:19:56.5076 [INFO] d__4(ConfigurationSetupMiddleware.cs:25): Configuration loaded. -2022-02-09 16:21:16.9102 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... -2022-02-09 16:21:18.2166 [INFO] d__4(ConfigurationSetupMiddleware.cs:25): Configuration loaded. -2022-02-09 16:24:54.9312 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... -2022-02-09 16:24:56.1015 [INFO] d__4(ConfigurationSetupMiddleware.cs:25): Configuration loaded. -2022-02-09 16:28:31.6920 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... -2022-02-09 16:28:32.8631 [INFO] d__4(ConfigurationSetupMiddleware.cs:25): Configuration loaded. -2022-02-09 16:29:27.7931 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... -2022-02-09 16:29:28.9697 [INFO] d__4(ConfigurationSetupMiddleware.cs:25): Configuration loaded. -2022-02-09 16:42:02.1747 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... -2022-02-09 16:42:03.4889 [INFO] d__4(ConfigurationSetupMiddleware.cs:25): Configuration loaded. -2022-02-09 16:53:18.2199 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... -2022-02-09 16:53:19.4836 [INFO] d__4(ConfigurationSetupMiddleware.cs:25): Configuration loaded. -2022-02-09 16:53:35.7414 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... -2022-02-09 16:53:36.9863 [INFO] d__4(ConfigurationSetupMiddleware.cs:25): Configuration loaded. -2022-02-09 17:57:43.6916 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... -2022-02-09 17:57:44.4380 [INFO] d__4(ConfigurationSetupMiddleware.cs:25): Configuration loaded. diff --git a/linguard/Cli/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 0c6175e..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 82ff47c..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/pl/System.Private.ServiceModel.resources.dll b/linguard/Cli/bin/Debug/net6.0/pl/System.Private.ServiceModel.resources.dll deleted file mode 100644 index bcdbbbb..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/pl/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/pl/System.Web.Services.Description.resources.dll b/linguard/Cli/bin/Debug/net6.0/pl/System.Web.Services.Description.resources.dll deleted file mode 100644 index 421c859..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/pl/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 2d2ccbe..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index b583d8e..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/pt-BR/System.Private.ServiceModel.resources.dll b/linguard/Cli/bin/Debug/net6.0/pt-BR/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 6138c5d..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/pt-BR/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/pt-BR/System.Web.Services.Description.resources.dll b/linguard/Cli/bin/Debug/net6.0/pt-BR/System.Web.Services.Description.resources.dll deleted file mode 100644 index 8d4c892..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/pt-BR/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/Linguard.Cli.dll b/linguard/Cli/bin/Debug/net6.0/ref/Linguard.Cli.dll deleted file mode 100644 index 7069384..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/Linguard.Cli.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/Microsoft.CSharp.dll b/linguard/Cli/bin/Debug/net6.0/ref/Microsoft.CSharp.dll deleted file mode 100644 index 00529c3..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/Microsoft.CSharp.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/Microsoft.VisualBasic.Core.dll b/linguard/Cli/bin/Debug/net6.0/ref/Microsoft.VisualBasic.Core.dll deleted file mode 100644 index d37bdc6..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/Microsoft.VisualBasic.Core.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/Microsoft.VisualBasic.dll b/linguard/Cli/bin/Debug/net6.0/ref/Microsoft.VisualBasic.dll deleted file mode 100644 index eb198db..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/Microsoft.VisualBasic.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/Microsoft.Win32.Primitives.dll b/linguard/Cli/bin/Debug/net6.0/ref/Microsoft.Win32.Primitives.dll deleted file mode 100644 index e39072e..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/Microsoft.Win32.Primitives.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/Microsoft.Win32.Registry.dll b/linguard/Cli/bin/Debug/net6.0/ref/Microsoft.Win32.Registry.dll deleted file mode 100644 index 0e4ca23..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/Microsoft.Win32.Registry.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.AppContext.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.AppContext.dll deleted file mode 100644 index 949e26a..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.AppContext.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Buffers.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Buffers.dll deleted file mode 100644 index 0ba2017..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Buffers.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Collections.Concurrent.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Collections.Concurrent.dll deleted file mode 100644 index a34bdfd..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Collections.Concurrent.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Collections.Immutable.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Collections.Immutable.dll deleted file mode 100644 index 3559d71..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Collections.Immutable.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Collections.NonGeneric.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Collections.NonGeneric.dll deleted file mode 100644 index 0ff1e9e..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Collections.NonGeneric.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Collections.Specialized.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Collections.Specialized.dll deleted file mode 100644 index 9e63d8f..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Collections.Specialized.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Collections.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Collections.dll deleted file mode 100644 index c563b3d..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Collections.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.Annotations.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.Annotations.dll deleted file mode 100644 index e719616..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.Annotations.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.DataAnnotations.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.DataAnnotations.dll deleted file mode 100644 index e92b9ec..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.DataAnnotations.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.EventBasedAsync.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.EventBasedAsync.dll deleted file mode 100644 index c13cab7..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.EventBasedAsync.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.Primitives.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.Primitives.dll deleted file mode 100644 index 2c8ac32..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.Primitives.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.TypeConverter.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.TypeConverter.dll deleted file mode 100644 index 8af874e..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.TypeConverter.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.dll deleted file mode 100644 index dedec7c..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Configuration.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Configuration.dll deleted file mode 100644 index 54fdf89..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Configuration.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Console.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Console.dll deleted file mode 100644 index 5934da2..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Console.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Core.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Core.dll deleted file mode 100644 index b5abba6..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Core.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Data.Common.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Data.Common.dll deleted file mode 100644 index fb6df46..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Data.Common.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Data.DataSetExtensions.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Data.DataSetExtensions.dll deleted file mode 100644 index e5afb2e..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Data.DataSetExtensions.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Data.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Data.dll deleted file mode 100644 index e54bdf1..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Data.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.Contracts.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.Contracts.dll deleted file mode 100644 index b2a4266..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.Contracts.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.Debug.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.Debug.dll deleted file mode 100644 index a0cd3f8..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.Debug.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.DiagnosticSource.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.DiagnosticSource.dll deleted file mode 100644 index 39a6217..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.DiagnosticSource.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.FileVersionInfo.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.FileVersionInfo.dll deleted file mode 100644 index 439c771..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.FileVersionInfo.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.Process.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.Process.dll deleted file mode 100644 index 2091f8c..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.Process.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.StackTrace.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.StackTrace.dll deleted file mode 100644 index 4b5a3d7..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.StackTrace.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.TextWriterTraceListener.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.TextWriterTraceListener.dll deleted file mode 100644 index 1a5cbf2..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.TextWriterTraceListener.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.Tools.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.Tools.dll deleted file mode 100644 index 335c9c1..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.Tools.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.TraceSource.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.TraceSource.dll deleted file mode 100644 index 749ba40..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.TraceSource.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.Tracing.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.Tracing.dll deleted file mode 100644 index 338074d..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.Tracing.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Drawing.Primitives.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Drawing.Primitives.dll deleted file mode 100644 index 8c0a332..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Drawing.Primitives.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Drawing.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Drawing.dll deleted file mode 100644 index b226cf3..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Drawing.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Dynamic.Runtime.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Dynamic.Runtime.dll deleted file mode 100644 index 70edfa6..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Dynamic.Runtime.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Formats.Asn1.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Formats.Asn1.dll deleted file mode 100644 index 8625760..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Formats.Asn1.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Globalization.Calendars.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Globalization.Calendars.dll deleted file mode 100644 index 21a0037..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Globalization.Calendars.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Globalization.Extensions.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Globalization.Extensions.dll deleted file mode 100644 index 0dd96b7..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Globalization.Extensions.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Globalization.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Globalization.dll deleted file mode 100644 index 1c2e682..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Globalization.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Compression.Brotli.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Compression.Brotli.dll deleted file mode 100644 index 297977e..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Compression.Brotli.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Compression.FileSystem.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Compression.FileSystem.dll deleted file mode 100644 index 6586130..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Compression.FileSystem.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Compression.ZipFile.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Compression.ZipFile.dll deleted file mode 100644 index 6c9be3c..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Compression.ZipFile.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Compression.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Compression.dll deleted file mode 100644 index 832d832..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Compression.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.FileSystem.AccessControl.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.FileSystem.AccessControl.dll deleted file mode 100644 index 37f5c30..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.FileSystem.AccessControl.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.FileSystem.DriveInfo.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.FileSystem.DriveInfo.dll deleted file mode 100644 index 3fafa94..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.FileSystem.DriveInfo.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.FileSystem.Primitives.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.FileSystem.Primitives.dll deleted file mode 100644 index 7e7c838..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.FileSystem.Primitives.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.FileSystem.Watcher.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.FileSystem.Watcher.dll deleted file mode 100644 index 413f9b4..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.FileSystem.Watcher.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.FileSystem.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.FileSystem.dll deleted file mode 100644 index e2be89f..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.FileSystem.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.IsolatedStorage.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.IsolatedStorage.dll deleted file mode 100644 index a17e9fc..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.IsolatedStorage.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.MemoryMappedFiles.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.MemoryMappedFiles.dll deleted file mode 100644 index 2d4175d..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.MemoryMappedFiles.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Pipes.AccessControl.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Pipes.AccessControl.dll deleted file mode 100644 index 8627e1d..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Pipes.AccessControl.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Pipes.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Pipes.dll deleted file mode 100644 index 401b732..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Pipes.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.UnmanagedMemoryStream.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.UnmanagedMemoryStream.dll deleted file mode 100644 index 9c49c70..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.UnmanagedMemoryStream.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.dll deleted file mode 100644 index 02ce4e2..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Linq.Expressions.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Linq.Expressions.dll deleted file mode 100644 index 65c06c3..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Linq.Expressions.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Linq.Parallel.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Linq.Parallel.dll deleted file mode 100644 index 02a5fa6..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Linq.Parallel.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Linq.Queryable.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Linq.Queryable.dll deleted file mode 100644 index 0eeb7c8..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Linq.Queryable.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Linq.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Linq.dll deleted file mode 100644 index 2a86c79..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Linq.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Memory.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Memory.dll deleted file mode 100644 index 388044d..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Memory.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Http.Json.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Http.Json.dll deleted file mode 100644 index 22997ef..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Http.Json.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Http.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Http.dll deleted file mode 100644 index abaf3da..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Http.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.HttpListener.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.HttpListener.dll deleted file mode 100644 index 55c3152..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.HttpListener.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Mail.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Mail.dll deleted file mode 100644 index 8c06ec8..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Mail.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.NameResolution.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.NameResolution.dll deleted file mode 100644 index 98dd2d8..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.NameResolution.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.NetworkInformation.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.NetworkInformation.dll deleted file mode 100644 index 842064d..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.NetworkInformation.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Ping.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Ping.dll deleted file mode 100644 index 0d4d3a9..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Ping.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Primitives.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Primitives.dll deleted file mode 100644 index d54f4bd..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Primitives.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Requests.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Requests.dll deleted file mode 100644 index f314471..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Requests.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Security.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Security.dll deleted file mode 100644 index 4e348d7..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Security.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.ServicePoint.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.ServicePoint.dll deleted file mode 100644 index 6077da1..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.ServicePoint.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Sockets.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Sockets.dll deleted file mode 100644 index 1af0691..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Sockets.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.WebClient.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.WebClient.dll deleted file mode 100644 index 6a4a572..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.WebClient.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.WebHeaderCollection.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.WebHeaderCollection.dll deleted file mode 100644 index 114289b..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.WebHeaderCollection.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.WebProxy.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.WebProxy.dll deleted file mode 100644 index d65ea58..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.WebProxy.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.WebSockets.Client.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.WebSockets.Client.dll deleted file mode 100644 index 5717169..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.WebSockets.Client.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.WebSockets.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.WebSockets.dll deleted file mode 100644 index 5bfa921..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.WebSockets.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.dll deleted file mode 100644 index 62feba4..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Numerics.Vectors.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Numerics.Vectors.dll deleted file mode 100644 index 2c3a984..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Numerics.Vectors.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Numerics.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Numerics.dll deleted file mode 100644 index 5d186c8..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Numerics.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.ObjectModel.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.ObjectModel.dll deleted file mode 100644 index f92cc11..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.ObjectModel.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.DispatchProxy.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.DispatchProxy.dll deleted file mode 100644 index b888c4b..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.DispatchProxy.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Emit.ILGeneration.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Emit.ILGeneration.dll deleted file mode 100644 index 81911c6..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Emit.ILGeneration.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Emit.Lightweight.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Emit.Lightweight.dll deleted file mode 100644 index 045952c..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Emit.Lightweight.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Emit.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Emit.dll deleted file mode 100644 index e579588..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Emit.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Extensions.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Extensions.dll deleted file mode 100644 index 7987d1d..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Extensions.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Metadata.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Metadata.dll deleted file mode 100644 index 50158de..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Metadata.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Primitives.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Primitives.dll deleted file mode 100644 index d9210c0..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Primitives.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.TypeExtensions.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.TypeExtensions.dll deleted file mode 100644 index 792c8c8..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.TypeExtensions.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.dll deleted file mode 100644 index 3021f73..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Resources.Reader.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Resources.Reader.dll deleted file mode 100644 index e46173b..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Resources.Reader.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Resources.ResourceManager.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Resources.ResourceManager.dll deleted file mode 100644 index fc44423..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Resources.ResourceManager.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Resources.Writer.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Resources.Writer.dll deleted file mode 100644 index 68980f9..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Resources.Writer.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.Unsafe.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.Unsafe.dll deleted file mode 100644 index 546930e..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.Unsafe.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.VisualC.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.VisualC.dll deleted file mode 100644 index 277cb81..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.VisualC.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Extensions.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Extensions.dll deleted file mode 100644 index 441841e..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Extensions.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Handles.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Handles.dll deleted file mode 100644 index 70e3278..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Handles.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll deleted file mode 100644 index 89f8d39..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.InteropServices.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.InteropServices.dll deleted file mode 100644 index a39d097..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.InteropServices.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Intrinsics.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Intrinsics.dll deleted file mode 100644 index c9fcd40..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Intrinsics.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Loader.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Loader.dll deleted file mode 100644 index f109988..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Loader.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Numerics.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Numerics.dll deleted file mode 100644 index 89937d1..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Numerics.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Serialization.Formatters.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Serialization.Formatters.dll deleted file mode 100644 index 5438ce3..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Serialization.Formatters.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Serialization.Json.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Serialization.Json.dll deleted file mode 100644 index 399a512..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Serialization.Json.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Serialization.Primitives.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Serialization.Primitives.dll deleted file mode 100644 index c402e8a..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Serialization.Primitives.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Serialization.Xml.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Serialization.Xml.dll deleted file mode 100644 index 84fffc5..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Serialization.Xml.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Serialization.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Serialization.dll deleted file mode 100644 index 1c1891a..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Serialization.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.dll deleted file mode 100644 index 921a08b..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.AccessControl.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.AccessControl.dll deleted file mode 100644 index 2c6f9f4..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.AccessControl.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Claims.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Claims.dll deleted file mode 100644 index b6297f6..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Claims.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.Algorithms.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.Algorithms.dll deleted file mode 100644 index 4b89540..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.Algorithms.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.Cng.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.Cng.dll deleted file mode 100644 index e76a578..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.Cng.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.Csp.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.Csp.dll deleted file mode 100644 index 2ceae69..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.Csp.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.Encoding.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.Encoding.dll deleted file mode 100644 index a975809..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.Encoding.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.OpenSsl.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.OpenSsl.dll deleted file mode 100644 index df3a3a9..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.OpenSsl.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.Primitives.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.Primitives.dll deleted file mode 100644 index 21222a6..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.Primitives.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.X509Certificates.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.X509Certificates.dll deleted file mode 100644 index eee372d..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.X509Certificates.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Principal.Windows.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Principal.Windows.dll deleted file mode 100644 index 9a3798b..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Principal.Windows.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Principal.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Principal.dll deleted file mode 100644 index 0dbfa46..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Principal.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.SecureString.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.SecureString.dll deleted file mode 100644 index 7299b40..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.SecureString.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.dll deleted file mode 100644 index b83e96a..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.ServiceModel.Web.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.ServiceModel.Web.dll deleted file mode 100644 index a4d4e0f..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.ServiceModel.Web.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.ServiceProcess.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.ServiceProcess.dll deleted file mode 100644 index 86c09dc..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.ServiceProcess.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Text.Encoding.CodePages.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Text.Encoding.CodePages.dll deleted file mode 100644 index 5ce72b1..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Text.Encoding.CodePages.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Text.Encoding.Extensions.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Text.Encoding.Extensions.dll deleted file mode 100644 index 05e497a..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Text.Encoding.Extensions.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Text.Encoding.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Text.Encoding.dll deleted file mode 100644 index 46c5400..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Text.Encoding.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Text.Encodings.Web.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Text.Encodings.Web.dll deleted file mode 100644 index f2b10eb..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Text.Encodings.Web.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Text.Json.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Text.Json.dll deleted file mode 100644 index 37851d2..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Text.Json.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Text.RegularExpressions.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Text.RegularExpressions.dll deleted file mode 100644 index 983cbbd..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Text.RegularExpressions.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Channels.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Channels.dll deleted file mode 100644 index 34ae646..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Channels.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Overlapped.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Overlapped.dll deleted file mode 100644 index 9092609..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Overlapped.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Tasks.Dataflow.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Tasks.Dataflow.dll deleted file mode 100644 index 0731d06..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Tasks.Dataflow.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Tasks.Extensions.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Tasks.Extensions.dll deleted file mode 100644 index e5840ae..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Tasks.Extensions.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Tasks.Parallel.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Tasks.Parallel.dll deleted file mode 100644 index 5bec78b..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Tasks.Parallel.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Tasks.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Tasks.dll deleted file mode 100644 index 04704d0..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Tasks.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Thread.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Thread.dll deleted file mode 100644 index de9a348..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Thread.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.ThreadPool.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.ThreadPool.dll deleted file mode 100644 index efab9c3..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.ThreadPool.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Timer.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Timer.dll deleted file mode 100644 index 718a039..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Timer.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.dll deleted file mode 100644 index d697919..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Transactions.Local.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Transactions.Local.dll deleted file mode 100644 index 03df1fb..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Transactions.Local.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Transactions.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Transactions.dll deleted file mode 100644 index 1bd2e0a..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Transactions.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.ValueTuple.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.ValueTuple.dll deleted file mode 100644 index b6103f6..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.ValueTuple.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Web.HttpUtility.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Web.HttpUtility.dll deleted file mode 100644 index c77ebab..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Web.HttpUtility.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Web.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Web.dll deleted file mode 100644 index d04d5e3..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Web.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Windows.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Windows.dll deleted file mode 100644 index 9133038..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Windows.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.Linq.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.Linq.dll deleted file mode 100644 index d8aa5cd..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.Linq.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.ReaderWriter.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.ReaderWriter.dll deleted file mode 100644 index 66f199d..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.ReaderWriter.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.Serialization.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.Serialization.dll deleted file mode 100644 index 92bc678..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.Serialization.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.XDocument.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.XDocument.dll deleted file mode 100644 index 5ba2260..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.XDocument.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.XPath.XDocument.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.XPath.XDocument.dll deleted file mode 100644 index be27c4e..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.XPath.XDocument.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.XPath.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.XPath.dll deleted file mode 100644 index 22482d8..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.XPath.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.XmlDocument.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.XmlDocument.dll deleted file mode 100644 index 20d0fac..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.XmlDocument.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.XmlSerializer.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.XmlSerializer.dll deleted file mode 100644 index 0a1664c..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.XmlSerializer.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.dll deleted file mode 100644 index f2b768e..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.dll deleted file mode 100644 index 9e8d0a4..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/System.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/WindowsBase.dll b/linguard/Cli/bin/Debug/net6.0/ref/WindowsBase.dll deleted file mode 100644 index 1032969..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/WindowsBase.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/mscorlib.dll b/linguard/Cli/bin/Debug/net6.0/ref/mscorlib.dll deleted file mode 100644 index 31e8f9b..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/mscorlib.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/netstandard.dll b/linguard/Cli/bin/Debug/net6.0/ref/netstandard.dll deleted file mode 100644 index 1452256..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ref/netstandard.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 08d18ad..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 0d0a62d..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ru/System.Private.ServiceModel.resources.dll b/linguard/Cli/bin/Debug/net6.0/ru/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 11f804c..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ru/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/ru/System.Web.Services.Description.resources.dll b/linguard/Cli/bin/Debug/net6.0/ru/System.Web.Services.Description.resources.dll deleted file mode 100644 index a43bf0d..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/ru/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll deleted file mode 100644 index 8e0d27d..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/illumos/lib/net6.0/System.Data.Odbc.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/illumos/lib/net6.0/System.Data.Odbc.dll deleted file mode 100644 index 86425c9..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/illumos/lib/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/ios/lib/net6.0/System.Data.Odbc.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/ios/lib/net6.0/System.Data.Odbc.dll deleted file mode 100644 index 72945c5..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/ios/lib/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/linux-arm/native/libSystem.IO.Ports.Native.so b/linguard/Cli/bin/Debug/net6.0/runtimes/linux-arm/native/libSystem.IO.Ports.Native.so deleted file mode 100644 index 78b5008..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/linux-arm/native/libSystem.IO.Ports.Native.so and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/linux-arm/native/libpsl-native.so b/linguard/Cli/bin/Debug/net6.0/runtimes/linux-arm/native/libpsl-native.so deleted file mode 100644 index eb7876d..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/linux-arm/native/libpsl-native.so and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so b/linguard/Cli/bin/Debug/net6.0/runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so deleted file mode 100644 index dd85d2d..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/linux-arm64/native/libpsl-native.so b/linguard/Cli/bin/Debug/net6.0/runtimes/linux-arm64/native/libpsl-native.so deleted file mode 100644 index ed4929b..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/linux-arm64/native/libpsl-native.so and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/linux-musl-x64/native/libpsl-native.so b/linguard/Cli/bin/Debug/net6.0/runtimes/linux-musl-x64/native/libpsl-native.so deleted file mode 100644 index 222670d..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/linux-musl-x64/native/libpsl-native.so and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/linux-x64/native/libSystem.IO.Ports.Native.so b/linguard/Cli/bin/Debug/net6.0/runtimes/linux-x64/native/libSystem.IO.Ports.Native.so deleted file mode 100644 index 9dbd44e..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/linux-x64/native/libSystem.IO.Ports.Native.so and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/linux-x64/native/libmi.so b/linguard/Cli/bin/Debug/net6.0/runtimes/linux-x64/native/libmi.so deleted file mode 100644 index e87da8d..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/linux-x64/native/libmi.so and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/linux-x64/native/libpsl-native.so b/linguard/Cli/bin/Debug/net6.0/runtimes/linux-x64/native/libpsl-native.so deleted file mode 100644 index c04a0e3..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/linux-x64/native/libpsl-native.so and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/linux-x64/native/libpsrpclient.so b/linguard/Cli/bin/Debug/net6.0/runtimes/linux-x64/native/libpsrpclient.so deleted file mode 100644 index 029ac86..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/linux-x64/native/libpsrpclient.so and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.Data.Odbc.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.Data.Odbc.dll deleted file mode 100644 index 6e67ec3..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll deleted file mode 100644 index 75139e1..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib b/linguard/Cli/bin/Debug/net6.0/runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib deleted file mode 100644 index 974ae77..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib b/linguard/Cli/bin/Debug/net6.0/runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib deleted file mode 100644 index 96ba9bf..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.Data.Odbc.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.Data.Odbc.dll deleted file mode 100644 index eef28b5..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll deleted file mode 100644 index 3a64667..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/osx/native/libmi.dylib b/linguard/Cli/bin/Debug/net6.0/runtimes/osx/native/libmi.dylib deleted file mode 100644 index 71880e4..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/osx/native/libmi.dylib and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/osx/native/libpsl-native.dylib b/linguard/Cli/bin/Debug/net6.0/runtimes/osx/native/libpsl-native.dylib deleted file mode 100644 index f4df8f4..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/osx/native/libpsl-native.dylib and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/osx/native/libpsrpclient.dylib b/linguard/Cli/bin/Debug/net6.0/runtimes/osx/native/libpsrpclient.dylib deleted file mode 100644 index 13680bf..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/osx/native/libpsrpclient.dylib and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/solaris/lib/net6.0/System.Data.Odbc.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/solaris/lib/net6.0/System.Data.Odbc.dll deleted file mode 100644 index e283d99..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/solaris/lib/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/tvos/lib/net6.0/System.Data.Odbc.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/tvos/lib/net6.0/System.Data.Odbc.dll deleted file mode 100644 index 9648360..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/tvos/lib/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll deleted file mode 100644 index 93d7ef2..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll deleted file mode 100644 index 3258453..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll deleted file mode 100644 index 8cedac7..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll deleted file mode 100644 index 0ca804c..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll deleted file mode 100644 index 60f30e3..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 deleted file mode 100644 index 53e9bc5..0000000 --- a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 +++ /dev/null @@ -1,14 +0,0 @@ -@{ -GUID="56D66100-99A0-4FFC-A12D-EEE9A6718AEF" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -FunctionsToExport = @() -CmdletsToExport="Start-Transcript", "Stop-Transcript" -AliasesToExport = @() -NestedModules="Microsoft.PowerShell.ConsoleHost.dll" -HelpInfoURI = 'https://aka.ms/powershell72-help' -} diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 deleted file mode 100644 index 8d4d985..0000000 --- a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 +++ /dev/null @@ -1,60 +0,0 @@ -@{ -GUID="EEFCB906-B326-4E99-9F54-8B4BB6EF3C6D" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -NestedModules="Microsoft.PowerShell.Commands.Management.dll" -HelpInfoURI = 'https://aka.ms/powershell72-help' -FunctionsToExport = @() -AliasesToExport = @("gcb", "gtz", "scb") -CmdletsToExport=@("Add-Content", - "Clear-Content", - "Clear-ItemProperty", - "Join-Path", - "Convert-Path", - "Copy-ItemProperty", - "Get-ChildItem", - "Get-Clipboard", - "Set-Clipboard", - "Get-Content", - "Get-ItemProperty", - "Get-ItemPropertyValue", - "Move-ItemProperty", - "Get-Location", - "Set-Location", - "Push-Location", - "Pop-Location", - "New-PSDrive", - "Remove-PSDrive", - "Get-PSDrive", - "Get-Item", - "New-Item", - "Set-Item", - "Remove-Item", - "Move-Item", - "Rename-Item", - "Copy-Item", - "Clear-Item", - "Invoke-Item", - "Get-PSProvider", - "New-ItemProperty", - "Split-Path", - "Test-Path", - "Get-Process", - "Stop-Process", - "Wait-Process", - "Debug-Process", - "Start-Process", - "Test-Connection", - "Remove-ItemProperty", - "Rename-ItemProperty", - "Resolve-Path", - "Set-Content", - "Set-ItemProperty", - "Get-TimeZone", - "Stop-Computer", - "Restart-Computer") -} diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 deleted file mode 100644 index 9c9f978..0000000 --- a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 +++ /dev/null @@ -1,14 +0,0 @@ -@{ -GUID="A94C8C7E-9810-47C0-B8AF-65089C13A35A" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -FunctionsToExport = @() -CmdletsToExport="Get-Credential", "Get-ExecutionPolicy", "Set-ExecutionPolicy", "ConvertFrom-SecureString", "ConvertTo-SecureString", "Get-PfxCertificate" , "Protect-CmsMessage", "Unprotect-CmsMessage", "Get-CmsMessage" -AliasesToExport = @() -NestedModules="Microsoft.PowerShell.Security.dll" -HelpInfoURI = 'https://aka.ms/powershell72-help' -} diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 deleted file mode 100644 index 8efcaa0..0000000 --- a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 +++ /dev/null @@ -1,34 +0,0 @@ -@{ -GUID = "1DA87E53-152B-403E-98DC-74D7B4D63D59" -Author = "PowerShell" -CompanyName = "Microsoft Corporation" -Copyright = "Copyright (c) Microsoft Corporation." -ModuleVersion = "7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion = "3.0" -CmdletsToExport = @( - 'Export-Alias', 'Get-Alias', 'Import-Alias', 'New-Alias', 'Remove-Alias', 'Set-Alias', 'Export-Clixml', - 'Import-Clixml', 'Measure-Command', 'Trace-Command', 'ConvertFrom-Csv', 'ConvertTo-Csv', 'Export-Csv', - 'Import-Csv', 'Get-Culture', 'Format-Custom', 'Get-Date', 'Set-Date', 'Write-Debug', 'Wait-Debugger', - 'Register-EngineEvent', 'Write-Error', 'Get-Event', 'New-Event', 'Remove-Event', 'Unregister-Event', - 'Wait-Event', 'Get-EventSubscriber', 'Invoke-Expression', 'Out-File', 'Get-FileHash', 'Export-FormatData', - 'Get-FormatData', 'Update-FormatData', 'New-Guid', 'Format-Hex', 'Get-Host', 'Read-Host', 'Write-Host', - 'ConvertTo-Html', 'Write-Information', 'ConvertFrom-Json', 'ConvertTo-Json', 'Test-Json', 'Format-List', - 'Import-LocalizedData', 'Send-MailMessage', 'ConvertFrom-Markdown', 'Show-Markdown', 'Get-MarkdownOption', - 'Set-MarkdownOption', 'Add-Member', 'Get-Member', 'Compare-Object', 'Group-Object', 'Measure-Object', - 'New-Object', 'Select-Object', 'Sort-Object', 'Tee-Object', 'Register-ObjectEvent', 'Write-Output', - 'Import-PowerShellDataFile', 'Write-Progress', 'Disable-PSBreakpoint', 'Enable-PSBreakpoint', - 'Get-PSBreakpoint', 'Remove-PSBreakpoint', 'Set-PSBreakpoint', 'Get-PSCallStack', 'Export-PSSession', - 'Import-PSSession', 'Get-Random', 'Invoke-RestMethod', 'Debug-Runspace', 'Get-Runspace', - 'Disable-RunspaceDebug', 'Enable-RunspaceDebug', 'Get-RunspaceDebug', 'Start-Sleep', 'Join-String', - 'Out-String', 'Select-String', 'ConvertFrom-StringData', 'Format-Table', 'New-TemporaryFile', 'New-TimeSpan', - 'Get-TraceSource', 'Set-TraceSource', 'Add-Type', 'Get-TypeData', 'Remove-TypeData', 'Update-TypeData', - 'Get-UICulture', 'Get-Unique', 'Get-Uptime', 'Clear-Variable', 'Get-Variable', 'New-Variable', - 'Remove-Variable', 'Set-Variable', 'Get-Verb', 'Write-Verbose', 'Write-Warning', 'Invoke-WebRequest', - 'Format-Wide', 'ConvertTo-Xml', 'Select-Xml', 'Get-Error', 'Update-List', 'Unblock-File' -) -FunctionsToExport = @() -AliasesToExport = @('fhx') -NestedModules = @("Microsoft.PowerShell.Commands.Utility.dll") -HelpInfoURI = 'https://aka.ms/powershell72-help' -} diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll deleted file mode 100644 index 9e26473..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.IO.Ports.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.IO.Ports.dll deleted file mode 100644 index 8e7b399..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.IO.Ports.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Management.Automation.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Management.Automation.dll deleted file mode 100644 index a5f1912..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Management.Automation.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll deleted file mode 100644 index ad2a602..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 78105ed..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index 2e7bf94..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index ac47598..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll deleted file mode 100644 index 56a149b..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll deleted file mode 100644 index f60631c..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/native/mi.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/native/mi.dll deleted file mode 100644 index 7228cd0..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/native/mi.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/native/miutils.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/native/miutils.dll deleted file mode 100644 index ab98cbf..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/native/miutils.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/native/pwrshplugin.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/native/pwrshplugin.dll deleted file mode 100644 index 0eec871..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/native/pwrshplugin.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index 50860ab..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 9dbe56e..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll deleted file mode 100644 index a78573d..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll deleted file mode 100644 index b148487..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/mi.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/mi.dll deleted file mode 100644 index eb971a1..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/mi.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/miutils.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/miutils.dll deleted file mode 100644 index 0d3985d..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/miutils.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/pwrshplugin.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/pwrshplugin.dll deleted file mode 100644 index f36ee7d..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/pwrshplugin.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/sni.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/sni.dll deleted file mode 100644 index 7b8f9d8..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/sni.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll deleted file mode 100644 index 9d148cf..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-x64/native/pwrshplugin.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-x64/native/pwrshplugin.dll deleted file mode 100644 index 74da742..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win-x64/native/pwrshplugin.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-x64/native/sni.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-x64/native/sni.dll deleted file mode 100644 index c1a05a5..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win-x64/native/sni.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll deleted file mode 100644 index 79a3085..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-x86/native/pwrshplugin.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-x86/native/pwrshplugin.dll deleted file mode 100644 index 200bf77..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win-x86/native/pwrshplugin.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-x86/native/sni.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-x86/native/sni.dll deleted file mode 100644 index 5fc21ac..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win-x86/native/sni.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll deleted file mode 100644 index c8ff3c8..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll deleted file mode 100644 index 997d268..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll deleted file mode 100644 index 1e4a567..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll deleted file mode 100644 index 3e7ffc4..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll deleted file mode 100644 index 3dfb631..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll deleted file mode 100644 index fa3247a..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll deleted file mode 100644 index b6dc868..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll deleted file mode 100644 index 8ed4dde..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll deleted file mode 100644 index b6a87a7..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll deleted file mode 100644 index 9896fd3..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll deleted file mode 100644 index 18eb223..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll deleted file mode 100644 index 66af198..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/CimCmdlets/CimCmdlets.psd1 b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/CimCmdlets/CimCmdlets.psd1 deleted file mode 100644 index 9c74ac8..0000000 --- a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/CimCmdlets/CimCmdlets.psd1 +++ /dev/null @@ -1,233 +0,0 @@ -@{ -GUID="{Fb6cc51d-c096-4b38-b78d-0fed6277096a}" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -RootModule="Microsoft.Management.Infrastructure.CimCmdlets" -RequiredAssemblies="Microsoft.Management.Infrastructure.CimCmdlets.dll","Microsoft.Management.Infrastructure.Dll" -FunctionsToExport = @() -CmdletsToExport= "Get-CimAssociatedInstance", "Get-CimClass", "Get-CimInstance", "Get-CimSession", "Invoke-CimMethod", - "New-CimInstance","New-CimSession","New-CimSessionOption","Register-CimIndicationEvent","Remove-CimInstance", - "Remove-CimSession","Set-CimInstance", - "Export-BinaryMiLog","Import-BinaryMiLog" -AliasesToExport = "gcim","scim","ncim", "rcim","icim","gcai","rcie","ncms","rcms","gcms","ncso","gcls" -HelpInfoUri="https://aka.ms/powershell72-help" -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCDVr9wtf0/6ef8P -# 7Oewmh6e4caAvboErstvAWik/E+xjqCCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQggKe1Wa+d -# fYvru2vipTPxs79u032BOtU/CXLz68NBYs0wQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQB0Sx7LIYYO505eD5CAwvSG6wwrjjzKL/MSFiL9Nh0Q -# YDyFIX4UsB617gQ/OLzvBaXpzuGbkzdtbxGuknwe5pNeLgzdAPj8f3aMfNM7JnL0 -# Pu6HUmHuaD11aY9bOOoddRWRZDGoSMXaPXvTHGXo8lk672+n6e2SNB28QG1ASAt7 -# 20qZLgr0ujUBlUe4zyg5MxZseqjEGR3bsUSltPOu2F107jcNqj1YZ/HXJHCAniSd -# XdMRipCWeydTNPpPLCWVtcjTyxXnJoDbTEVtyOpFx/0YxCgazCDY0ae+QKzp7sNe -# qbnNd30/F9pJ2S3hu9z9RcpgxbYDIHchMVO970sQOyvNoYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIAaCwImJ8DxZ2FNq1L4wuBej3xtvL6SPai8XFzEz -# uLyVAgZhlV4Kp6EYEzIwMjExMjA4MjEwNDEzLjk2M1owBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046MkFENC00QjkyLUZBMDExJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYZ45RmJ+CRL -# zAABAAABhjANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3MzlaFw0yMzAxMjYxOTI3MzlaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjJBRDQtNEI5Mi1GQTAxMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwI3G2Wpv -# 6B4IjAfrgfJpndPOPYO1Yd8+vlfoIxMW3gdCDT+zIbafg14pOu0t0ekUQx60p7Pa -# dH4OjnqNIE1q6ldH9ntj1gIdl4Hq4rdEHTZ6JFdE24DSbVoqqR+R4Iw4w3GPbfc2 -# Q3kfyyFyj+DOhmCWw/FZiTVTlT4bdejyAW6r/Jn4fr3xLjbvhITatr36VyyzgQ0Y -# 4Wr73H3gUcLjYu0qiHutDDb6+p+yDBGmKFznOW8wVt7D+u2VEJoE6JlK0EpVLZus -# dSzhecuUwJXxb2uygAZXlsa/fHlwW9YnlBqMHJ+im9HuK5X4x8/5B5dkuIoX5lWG -# jFMbD2A6Lu/PmUB4hK0CF5G1YaUtBrME73DAKkypk7SEm3BlJXwY/GrVoXWYUGEH -# yfrkLkws0RoEMpoIEgebZNKqjRynRJgR4fPCKrEhwEiTTAc4DXGci4HHOm64EQ1g -# /SDHMFqIKVSxoUbkGbdKNKHhmahuIrAy4we9s7rZJskveZYZiDmtAtBt/gQojxbZ -# 1vO9C11SthkrmkkTMLQf9cDzlVEBeu6KmHX2Sze6ggne3I4cy/5IULnHZ3rM4ZpJ -# c0s2KpGLHaVrEQy4x/mAn4yaYfgeH3MEAWkVjy/qTDh6cDCF/gyz3TaQDtvFnAK7 -# 0LqtbEvBPdBpeCG/hk9l0laYzwiyyGY/HqMCAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBQZtqNFA+9mdEu/h33UhHMN6whcLjAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQDD7mehJY3fTHKC4hj+wBWB8544 -# uaJiMMIHnhK9ONTM7VraTYzx0U/TcLJ6gxw1tRzM5uu8kswJNlHNp7RedsAiwviV -# QZV9AL8IbZRLJTwNehCwk+BVcY2gh3ZGZmx8uatPZrRueyhhTTD2PvFVLrfwh2li -# DG/dEPNIHTKj79DlEcPIWoOCUp7p0ORMwQ95kVaibpX89pvjhPl2Fm0CBO3pXXJg -# 0bydpQ5dDDTv/qb0+WYF/vNVEU/MoMEQqlUWWuXECTqx6TayJuLJ6uU7K5QyTkQ/ -# l24IhGjDzf5AEZOrINYzkWVyNfUOpIxnKsWTBN2ijpZ/Tun5qrmo9vNIDT0lobgn -# ulae17NaEO9oiEJJH1tQ353dhuRi+A00PR781iYlzF5JU1DrEfEyNx8CWgERi90L -# KsYghZBCDjQ3DiJjfUZLqONeHrJfcmhz5/bfm8+aAaUPpZFeP0g0Iond6XNk4YiY -# bWPFoofc0LwcqSALtuIAyz6f3d+UaZZsp41U4hCIoGj6hoDIuU839bo/mZ/AgESw -# GxIXs0gZU6A+2qIUe60QdA969wWSzucKOisng9HCSZLF1dqc3QUawr0C0U41784K -# o9vckAG3akwYuVGcs6hM/SqEhoe9jHwe4Xp81CrTB1l9+EIdukCbP0kyzx0WZzte -# eiDN5rdiiQR9mBJuljCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046MkFENC00Qjky -# LUZBMDExJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVAAGu2DRzWkKljmXySX1korHL4fMnoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tXMCIY -# DzIwMjExMjA5MDM1MTUxWhgPMjAyMTEyMTAwMzUxNTFaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi1cCAQAwCgIBAAICFmICAf8wBwIBAAICEh0wCgIFAOVc3NcC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQAcxjpqy9KLSwM37+FXLc0BH8vQ -# bi/JiOUtzx1U3w8DY7ed3asVEpLwGzUKiZ6rI29ZJuKH6YlwiWrAcHP9QgQnWNwg -# LXWMiZLEeOE63JCAWeL4odLTq1DKced93+APIOfcpQ1ap6X/BY4fKpscksm/q98S -# mmAs+7pjsbcUGpWLtzGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABhnjlGYn4JEvMAAEAAAGGMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEINEG -# q0+SCFYCT6sOQMZPpgnAOe4W2XF/PwFbVzs1WLMVMIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgGpmI4LIsCFTGiYyfRAR7m7Fa2guxVNIw17mcAiq8Qn4wgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYZ45RmJ+CRL -# zAABAAABhjAiBCAUmIgeNWf4KXB+/obIOhBMrPwiJ83+1ebXflyLLm9rjjANBgkq -# hkiG9w0BAQsFAASCAgBXBmO2FJAq4az5Z1fXe3nTGflWCimqnMzUudZ0JD5Omi9t -# KDRFGDjYxgAo4r26b3zc73bN/7kkUkJwwdDc2RsABuzjHa04XSfIbry8JwBw7utB -# lwotvUH6Wa22GXu0POFqMEywdRl2x4XM04hgdUfZdWznuVRzZACn1NIfYhjmsL97 -# WMTYX7dx4OVEIFWriI/R5+8p0IXDgLe3AxdrTSedGeQFgsbEvLRkVmU0m3Qsb3Qb -# V+Ds1llgS06AFYlJzgcSbBdr/6gU7V1s3EcH2z4GjPCs2rYmVIZ6XCwkn0no2vc9 -# jEHbLtaBZ7VJ/r3Xvbj/GEYdUbGgVAIdpDFnBKsamV/Z2X9eZZSIxjTnBdh4fdkJ -# 29TRUahZywqEtJWP7LOvjlIHK3Ri9AxxkJrGDhIyvJeOGT6fzT/SvWeHkAoqeGpp -# lqXzs/p5d1rsqFAST8pTTWVXItcmO84qO3+1is32A9nh1ngDva7RGXdsh3+kkobP -# eZkn0HnUxV0OUYgINHsDiCeDhwfElDpvix6/F+1S3yApsfT10k09qOWKBAxq1P7p -# j2Iih/xwZUTOwsPHTvczh8yrOAwVQoWiHKgNKXE4GyZmNAV2oUH0goTkTjqCOw7z -# /7UFMEhbEHABlSIKOQU/1hXDY4d07sfBlWPHskx8A+Yq7rTeFVPcXSnUUcqjcg== -# SIG # End signature block diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml deleted file mode 100644 index 8887031..0000000 --- a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml +++ /dev/null @@ -1,294 +0,0 @@ - - - - - - - - Counter - - Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSampleSet - - - - - - 25 - left - - - - left - 100 - - - - - - - - Timestamp - - - Readings - - - - - - - - Counter - - Microsoft.PowerShell.Commands.GetCounter.CounterFileInfo - - - - - 30 - left - - - 30 - left - - - 30 - left - - - - - - - - OldestRecord - - - NewestRecord - - - SampleCount - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml deleted file mode 100644 index 3cb0478..0000000 --- a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml +++ /dev/null @@ -1,336 +0,0 @@ - - - - - Default - - System.Diagnostics.Eventing.Reader.EventLogRecord - - - ProviderName - - - - - - 25 - - - 8 - right - - - 16 - - - - - - - - - TimeCreated - - - Id - - - LevelDisplayName - - - Message - - - - - - - - - Default - - System.Diagnostics.Eventing.Reader.EventLogConfiguration - - - - - - - 9 - - - - 18 - right - - - - 11 - right - - - - - - - - LogMode - - - MaximumSizeInBytes - - - RecordCount - - - LogName - - - - - - - - Default - - System.Diagnostics.Eventing.Reader.ProviderMetadata - - - - - - - Name - - - LogLinks - - - Opcodes - - - Tasks - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml deleted file mode 100644 index a365f67..0000000 --- a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml +++ /dev/null @@ -1,354 +0,0 @@ - - - - - - System.Diagnostics.Eventing.Reader.EventLogConfiguration - - - PSStandardMembers - - - DefaultDisplayPropertySet - - LogName - MaximumSizeInBytes - RecordCount - LogMode - - - - - - - - System.Diagnostics.Eventing.Reader.EventLogRecord - - - PSStandardMembers - - - DefaultDisplayPropertySet - - TimeCreated - ProviderName - Id - Message - - - - - - - - System.Diagnostics.Eventing.Reader.ProviderMetadata - - - ProviderName - Name - - - PSStandardMembers - - - DefaultDisplayPropertySet - - Name - LogLinks - - - - - - - - Microsoft.PowerShell.Commands.GetCounter.CounterSet - - - Counter - Paths - - - - - Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSample - - - PSStandardMembers - - - DefaultDisplayPropertySet - - Path - InstanceName - CookedValue - - - - - - - - Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSampleSet - - - PSStandardMembers - - - DefaultDisplayPropertySet - - Timestamp - Readings - - - - - - - - Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSampleSet - - - Readings - - $strPaths = "" - foreach ($ctr in $this.CounterSamples) - { - $strPaths += ($ctr.Path + " :" + "`n") - $strPaths += ($ctr.CookedValue.ToString() + "`n`n") - } - return $strPaths - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1 b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1 deleted file mode 100644 index 880d7aa..0000000 --- a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1 +++ /dev/null @@ -1,231 +0,0 @@ -@{ -GUID="CA046F10-CA64-4740-8FF9-2565DBA61A4F" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -FunctionsToExport = @() -CmdletsToExport="Get-WinEvent", "New-WinEvent", "Get-Counter" -AliasesToExport = @() -NestedModules="Microsoft.PowerShell.Commands.Diagnostics.dll" -TypesToProcess="GetEvent.types.ps1xml" -FormatsToProcess="Event.format.ps1xml", "Diagnostics.format.ps1xml" -HelpInfoURI = 'https://aka.ms/powershell72-help' -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCDPn0/Kw53z57yO -# 1TekDBJE1OmAf8RR94VaWe+Hq0qiG6CCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgODWoe2T6 -# RL6c8rlTHF90KQETb+lXsgMFPg5sa5qcVO8wQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQArTuRkyGCIWatxzP2XmCe8MGk2psH1zX2CtsCxq8Ap -# llWPArMeb/LjOcajbM5kypCRRAbwRz6aDbnQHt8odHEoRZU7pTPP6Gi5YLzfXy5B -# 0ww61qNEDWQD3Js4U0r/D5Bvbm0ewiX+JmBEh1lhTJYzIp8iXuTH3qe9bhKKb++x -# iTOWvO8/HgtkFqax0G4FyoGpyhcxGzGI0hzjTE+8qabrKI0VtLQ4FlvNluxrfISs -# nx56dtXmf0jiOSCWuGbtKydeTR6wtK8b8RfXdSfUfI2TbFk+nuTk9OADnpMxw87X -# rpiALWuM8oSYj9xv4oUCw6fsjnuryMRoM59K86mOjXkEoYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIBHzUJcs5FFt55Hx994HtkOYw1sXWAszphHUNgXU -# AU+vAgZhlV4Kp54YEzIwMjExMjA4MjEwNDEzLjc5NlowBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046MkFENC00QjkyLUZBMDExJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYZ45RmJ+CRL -# zAABAAABhjANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3MzlaFw0yMzAxMjYxOTI3MzlaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjJBRDQtNEI5Mi1GQTAxMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwI3G2Wpv -# 6B4IjAfrgfJpndPOPYO1Yd8+vlfoIxMW3gdCDT+zIbafg14pOu0t0ekUQx60p7Pa -# dH4OjnqNIE1q6ldH9ntj1gIdl4Hq4rdEHTZ6JFdE24DSbVoqqR+R4Iw4w3GPbfc2 -# Q3kfyyFyj+DOhmCWw/FZiTVTlT4bdejyAW6r/Jn4fr3xLjbvhITatr36VyyzgQ0Y -# 4Wr73H3gUcLjYu0qiHutDDb6+p+yDBGmKFznOW8wVt7D+u2VEJoE6JlK0EpVLZus -# dSzhecuUwJXxb2uygAZXlsa/fHlwW9YnlBqMHJ+im9HuK5X4x8/5B5dkuIoX5lWG -# jFMbD2A6Lu/PmUB4hK0CF5G1YaUtBrME73DAKkypk7SEm3BlJXwY/GrVoXWYUGEH -# yfrkLkws0RoEMpoIEgebZNKqjRynRJgR4fPCKrEhwEiTTAc4DXGci4HHOm64EQ1g -# /SDHMFqIKVSxoUbkGbdKNKHhmahuIrAy4we9s7rZJskveZYZiDmtAtBt/gQojxbZ -# 1vO9C11SthkrmkkTMLQf9cDzlVEBeu6KmHX2Sze6ggne3I4cy/5IULnHZ3rM4ZpJ -# c0s2KpGLHaVrEQy4x/mAn4yaYfgeH3MEAWkVjy/qTDh6cDCF/gyz3TaQDtvFnAK7 -# 0LqtbEvBPdBpeCG/hk9l0laYzwiyyGY/HqMCAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBQZtqNFA+9mdEu/h33UhHMN6whcLjAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQDD7mehJY3fTHKC4hj+wBWB8544 -# uaJiMMIHnhK9ONTM7VraTYzx0U/TcLJ6gxw1tRzM5uu8kswJNlHNp7RedsAiwviV -# QZV9AL8IbZRLJTwNehCwk+BVcY2gh3ZGZmx8uatPZrRueyhhTTD2PvFVLrfwh2li -# DG/dEPNIHTKj79DlEcPIWoOCUp7p0ORMwQ95kVaibpX89pvjhPl2Fm0CBO3pXXJg -# 0bydpQ5dDDTv/qb0+WYF/vNVEU/MoMEQqlUWWuXECTqx6TayJuLJ6uU7K5QyTkQ/ -# l24IhGjDzf5AEZOrINYzkWVyNfUOpIxnKsWTBN2ijpZ/Tun5qrmo9vNIDT0lobgn -# ulae17NaEO9oiEJJH1tQ353dhuRi+A00PR781iYlzF5JU1DrEfEyNx8CWgERi90L -# KsYghZBCDjQ3DiJjfUZLqONeHrJfcmhz5/bfm8+aAaUPpZFeP0g0Iond6XNk4YiY -# bWPFoofc0LwcqSALtuIAyz6f3d+UaZZsp41U4hCIoGj6hoDIuU839bo/mZ/AgESw -# GxIXs0gZU6A+2qIUe60QdA969wWSzucKOisng9HCSZLF1dqc3QUawr0C0U41784K -# o9vckAG3akwYuVGcs6hM/SqEhoe9jHwe4Xp81CrTB1l9+EIdukCbP0kyzx0WZzte -# eiDN5rdiiQR9mBJuljCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046MkFENC00Qjky -# LUZBMDExJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVAAGu2DRzWkKljmXySX1korHL4fMnoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tXMCIY -# DzIwMjExMjA5MDM1MTUxWhgPMjAyMTEyMTAwMzUxNTFaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi1cCAQAwCgIBAAICFmICAf8wBwIBAAICEh0wCgIFAOVc3NcC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQAcxjpqy9KLSwM37+FXLc0BH8vQ -# bi/JiOUtzx1U3w8DY7ed3asVEpLwGzUKiZ6rI29ZJuKH6YlwiWrAcHP9QgQnWNwg -# LXWMiZLEeOE63JCAWeL4odLTq1DKced93+APIOfcpQ1ap6X/BY4fKpscksm/q98S -# mmAs+7pjsbcUGpWLtzGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABhnjlGYn4JEvMAAEAAAGGMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIIOe -# Fteykp3uhjp/CbUuslldSIpFBtmy2s0K3N7X+v4KMIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgGpmI4LIsCFTGiYyfRAR7m7Fa2guxVNIw17mcAiq8Qn4wgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYZ45RmJ+CRL -# zAABAAABhjAiBCAUmIgeNWf4KXB+/obIOhBMrPwiJ83+1ebXflyLLm9rjjANBgkq -# hkiG9w0BAQsFAASCAgBf6Fat07wOy6aoLnxthDrldarQW8T2Ds6iTbNLhloJSJ1O -# Iu3QX6b7ktkdWHUtcOrW6wQ5y/EpoKQgPvT4+bs6e9QgdZqsz31NAecxGcivBfQz -# nxE8j6o46ky4HWO46ppqFjrz4ENa0ELpE8LC4fQC2h4N1EQPNkh9MQMunYZSK2Ck -# ritrVAuivl6vaeuVJyNBh0G20owR+ZDTocTnZYnOi4DqgKsrqe/8Q+kmQPmMZpig -# 3brD1Lg5JT/0zGlwNqvarcBJHRidNXrVJLxiHIcDTg4rwD+T4FN8EAbg+ioyv47T -# I6Ob7+gcrL2UdhVkZSUSqdVQVIX1V2SvP41TSHx7UCptCG0MaPiWYN5IGFlSKdRf -# hDv8Qb1cjW/wq3yQMBQBkV1g7CO48FoHlOl45b7dzXvn0b8LsYj2+gYfqzbJqacZ -# FOCrSVKIq5rlJAFKYra81Lzuryl3hpeXsREPc80w6gBZuwtq3ML/Z0YN7/rQQTs2 -# tsGyS4Ti76HltquYmkkQEfan1uk0RU91wujLFd7KZ3urFVvjqsqH9zSpxp7pCKT7 -# Sh6wf0zmG4SBX5DVQ0sHERamwpv6dqdDuadT3j9hnmsktM8uozim4Zzz0KI4DN1p -# IJE2x0YOHgYqr91aJMwULeVv3gGpcMUx6d08hSS6RDA7ne+UhH226yoyJsaYcQ== -# SIG # End signature block diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 deleted file mode 100644 index 5d9ffc6..0000000 --- a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 +++ /dev/null @@ -1,229 +0,0 @@ -@{ -GUID="56D66100-99A0-4FFC-A12D-EEE9A6718AEF" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -FunctionsToExport = @() -CmdletsToExport="Start-Transcript", "Stop-Transcript" -AliasesToExport = @() -NestedModules="Microsoft.PowerShell.ConsoleHost.dll" -HelpInfoURI = 'https://aka.ms/powershell72-help' -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCCAN6qOMSgIZSKy -# niFjiV1FZGi6ofshkAXyBqiHSReb1aCCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgkynSeA0x -# XjLakAqmd0XMmOd0Xz2RQ1n1Heu6kO1y5N0wQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQBp+M1foZUndpZVBWaBgxj5ssitpnOInfqiMoO3MG1s -# H2bxWJO09yPVWWu1/hkCjpRID00eSBj71TcZ/C1ZkQimhy2bxMM7YjngYf1A20r7 -# Luw3ZbAOPs92h91TG0a1L2PJa7rjJy57BgwnHFTgNrWkCR7VXElf2LnjCbONyJPy -# rVNLQaGGM78KKhd6Tp2LDd+R8sT19o2lD5bBrVubPim3XifI6hn4f66a1no72w3S -# 9ol7radXalJgKkxKzQnAVHPiOB+GAL/J457mswnvP+eRD/kUlEPsFRCVEMKejOdo -# 69jQhGOZJH0CuLU1HlhzU6X/poT4dnIJ9d+aCMX0cfE6oYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIJb96bqFa1hrFgpYPU2ayB0LEBtlTfOe8EwuWTs9 -# L81TAgZhlV4jeFAYEzIwMjExMjA4MjEwNDEzLjY4NVowBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046OEQ0MS00QkY3LUIzQjcxJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYguzcaBQeG8 -# KgABAAABiDANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3NDBaFw0yMzAxMjYxOTI3NDBaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjhENDEtNEJGNy1CM0I3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAmucQCAQm -# kcXHyDrV4S88VeJg2XGqNKcWpsrapRKFWchhjLsf/M9XN9bgznLN48BXPAtOlwoe -# dB2kN4bZdPP3KdRNbYq1tNFUh8UnmjCCr+CjLlrigHcmS0R+rsN2gBMXlLEZh2W/ -# COuD9VOLsb2P2jDp433V4rUAAUW82M7rg81d3OcctO+1XW1h3EtbQtS6QEkw6DYI -# uvfX7Aw8jXHZnsMugP8ZA1otprpTNUh/zRWC7CJyBzymQIDSCdWhVfD4shxe+Rs6 -# 1axf27bTg5H/V/SkNd9hzM6Nq/y2OjDKrLtuN9hS53569uhTNQeAhAVDfeHpEzlM -# vtXOyX6MTme3jnHdHPj6GLT9AMRIrAf96hPYOiPEBvHtrg6MpiI3+l6NlbSOs16/ -# FTeljT1+sdsWGtFTZvea9pAqV1aB795aDkmZ6sRm5jtdnVazfoWrHd3vDeh35WV0 -# 8vW4TlOfEcV2+KbairPxaFkJ4+tlsJ+MfsVOiTr/ZnDgaMaHnzzogelI3AofDU9I -# TbMkTtTxrLPygTbRdtbptrnLzBn2jzR4TJfkQo+hzWuaMu5OtMZiKV2I5MO0m1mK -# uUAgoq+442Lw8CQuj9EC2F8nTbJb2NcUDg+74dgJis/P8Ba/OrlxW+Trgc6TPGxC -# OtT739UqeslvWD6rNQ6UEO9f7vWDkhd2vtsCAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBRkebVQxKO7zru9+o27GjPljMlKSjAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQBAEFrb+1gIJsv/GKLS2zavm2ek -# 177mk4yu6BuS6ViIuL0e20YN2ddXeiUhEdhk3FRto/GD93k5SIyNJ6X+p8uQMOxI -# 23YOSdyEzLJwh7+ftu0If8y3x6AJ0S1d12OZ7fsYqljHUeccneS9DWqipHk8uM8m -# 2ZbBhRnUN8M4iqg4roJGmZKZ9Fc8Z7ZHJgM97i7fIyA9hJH017z25WrDJlxapD5d -# mMyNyzzfAVqaByemCoBn4VkRCGNISx0xRlcb93W6ENhJF1NBjMl3cKVEHW4d8Y0N -# ZhpdXDteLk9HgbJyeCI2fN9GBrCS1B1ak+194PGiZKL8+gtK7NorAoAMQvFkYgrH -# rWCYfjV6PouC3N+A6wOBrckVOHT9PUIDK5ADCH4ZraQideS9LD/imKHM3I4iazPk -# ocHcFHB9yo5d9lMJZ+pnAAWglQQjMWhUqnE/llA+EqjbO0lAxlmUtVioVUswhT3p -# K6DjFRXM/LUxwTttufz1zBjELkRIZ8uCy1YkMxfBFwEos/QFIlDaFSvUn4IiWZA3 -# VLfAEjy51iJwK2jSIHw+1bjCI+FBHcCTRH2pP3+h5DlQ5AZ/dvcfNrATP1wwz25I -# r8KgKObHRCIYH4VI2VrmOboSHFG79JbHdkPVSjfLxTuTsoh5FzoU1t5urG0rwulo -# ZZFZxTkrxfyTkhvmjDCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046OEQ0MS00QkY3 -# LUIzQjcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVAOE8isx8IBeVPSweD805l5Qdeg5CoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tIMCIY -# DzIwMjExMjA5MDM1MTM2WhgPMjAyMTEyMTAwMzUxMzZaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi0gCAQAwCgIBAAICIScCAf8wBwIBAAICEdowCgIFAOVc3MgC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQBeVbaPZ5ldfNGhiFwP5ALaZGmV -# 4LkTqmcDT5yUk6p3tceYyxhPwMQqshcKt1fSrFqX5J8uNBeTWEpB5D/YyrXGHu/K -# a4Wj/8+nv32LXimt561Ygktjq90QX/Vha0BnifzfBTf/k64ZmtV6FMmvNI9MjNm3 -# QmHj495BbEuSWI20HzGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABiC7NxoFB4bwqAAEAAAGIMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIB5r -# VcRB53ajDn0amN283eZmOuFxfZ1ddPxQGZnO2OCZMIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgZune7awGN0aEgvjP7JyO3NKl7hstX8ChhrKmXtJJQKUwgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYguzcaBQeG8 -# KgABAAABiDAiBCDnGsQwLYuvrNs0JZQ8D1YCe56drKP5aPf/ndr94faZkzANBgkq -# hkiG9w0BAQsFAASCAgBi8EWq1+2L+qQJjtUAiYvFYQS2GX/DAratlOcGOSYqL81P -# DXuByUFsrXsBKqXmeuAfWiNeLWOpiGvy10qNldd/AsVdVrba72n8rzGLQ1od91L4 -# CljkSRtcq/LmvjdWPqa+ySqda1OpsD80ZOFstCnTysY9S6SDqvWgZYr+UtRJsng4 -# jp8cUCQBAcjQ1N/dHGUAs/Tvfr5kHdDGynKKMGdDEUKtM2jjznIIWnxPzZoyXEi4 -# 8ePyJ/mTh3grNa3oOSGxuC+8ejye9Bc4JPSYYzhzJw+M0LAgBLQxj/HdYiuGIK7w -# TOUrqctErkPgosq1NdUAqQZakDXVpouiB+FTez3hiR2QAY1uR5lHvGD9zJValYMH -# OQEzjO5Bh+2cauVdMp012ULRJBIcVVrjUcSihcyD6EbUlyzu0VQFNFANkbFpqsf6 -# gS9p4j//r8AfQv8xwyy2N0Ql5caRRf5Vlfjp8c2ikMMvY19A53qBKs+aE093B+4Z -# 72wg2wnorYKun9fGpnfs+JufmnDf64O8a9pXV+XM9lVmgmWb0ScKAxn+N9dZrwD7 -# DbjlvSnLEUciHzyEO9wQ8/gu3L6E2Ugho+AbIDStmNhSIQiMDJblWZk5aLc8SGPr -# tts+mmDoB+lun57BwYPZKhgmnekQ9j9tCZaDKWa/ocKNByI+2+YBrNev3M37rQ== -# SIG # End signature block diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 deleted file mode 100644 index 5d2f511..0000000 --- a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 +++ /dev/null @@ -1,289 +0,0 @@ -@{ -GUID="EEFCB906-B326-4E99-9F54-8B4BB6EF3C6D" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -NestedModules="Microsoft.PowerShell.Commands.Management.dll" -HelpInfoURI = 'https://aka.ms/powershell72-help' -FunctionsToExport = @() -AliasesToExport = @("gcb", "gin", "gtz", "scb", "stz") -CmdletsToExport=@("Add-Content", - "Clear-Content", - "Get-Clipboard", - "Set-Clipboard", - "Clear-ItemProperty", - "Join-Path", - "Convert-Path", - "Copy-ItemProperty", - "Get-ChildItem", - "Get-Content", - "Get-ItemProperty", - "Get-ItemPropertyValue", - "Move-ItemProperty", - "Get-Location", - "Set-Location", - "Push-Location", - "Pop-Location", - "New-PSDrive", - "Remove-PSDrive", - "Get-PSDrive", - "Get-Item", - "New-Item", - "Set-Item", - "Remove-Item", - "Move-Item", - "Rename-Item", - "Copy-Item", - "Clear-Item", - "Invoke-Item", - "Get-PSProvider", - "New-ItemProperty", - "Split-Path", - "Test-Path", - "Test-Connection", - "Get-Process", - "Stop-Process", - "Wait-Process", - "Debug-Process", - "Start-Process", - "Remove-ItemProperty", - "Rename-ItemProperty", - "Resolve-Path", - "Get-Service", - "Stop-Service", - "Start-Service", - "Suspend-Service", - "Resume-Service", - "Restart-Service", - "Set-Service", - "New-Service", - "Remove-Service", - "Set-Content", - "Set-ItemProperty", - "Restart-Computer", - "Stop-Computer", - "Rename-Computer", - "Get-ComputerInfo", - "Get-TimeZone", - "Set-TimeZone", - "Get-HotFix", - "Clear-RecycleBin") -} - -# SIG # Begin signature block -# MIInuAYJKoZIhvcNAQcCoIInqTCCJ6UCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCAOkUHfBYP8n8JI -# rFMR/Pi6BPlAC/b/pz0LBmd3yrLJC6CCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjTCCGYkCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgbwKAFcUU -# n/a8C1e7lODkKydexiPQBTRqAUaY8lpIXxYwQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQAS8cDlYOVWF3oFPi1M2yWWdC1wbCMgPa2utU2WgHpJ -# FdgkgR5zgZhKx2APsR5uSgSfvs9YfPYm8+NRMvxAYm4e/Bf1JgTP9gsgqxQ/xXB+ -# NqOASjMjv7v+wTLPMa/i//jTTxjqcmHebx0tVR6f0Fpr9BU7PxW996xh2vKdxVnV -# YXxHwAmhJ1TxUaZC0hVRtriJrBfAsuQ2g/aCn5wZ6YXKVJ63IBZ+jnivf80fnSYc -# t+Zl4LqAiaSvpQ7GgPo/RggihGdWk+AuZCcY9SOJYAypK3Hvu4KHy4+5GEW3+9LI -# uQ3+9k1MG+Xng2uR0sDenzNJN89weif/W6AwmTwRl69ToYIXFzCCFxMGCisGAQQB -# gjcDAwExghcDMIIW/wYJKoZIhvcNAQcCoIIW8DCCFuwCAQMxDzANBglghkgBZQME -# AgEFADCCAVcGCyqGSIb3DQEJEAEEoIIBRgSCAUIwggE+AgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIGUlM1IvDbHn/VrMmR6UJYC2nOP4lY0xhCVtPuKI -# CRBSAgZhlV4jeGYYETIwMjExMjA4MjEwNDE0LjdaMASAAgH0oIHYpIHVMIHSMQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNy -# b3NvZnQgSXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxl -# cyBUU1MgRVNOOjhENDEtNEJGNy1CM0I3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGlt -# ZS1TdGFtcCBTZXJ2aWNloIIRaDCCBxQwggT8oAMCAQICEzMAAAGILs3GgUHhvCoA -# AQAAAYgwDQYJKoZIhvcNAQELBQAwfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldh -# c2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBD -# b3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIw -# MTAwHhcNMjExMDI4MTkyNzQwWhcNMjMwMTI2MTkyNzQwWjCB0jELMAkGA1UEBhMC -# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV -# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEtMCsGA1UECxMkTWljcm9zb2Z0IEly -# ZWxhbmQgT3BlcmF0aW9ucyBMaW1pdGVkMSYwJAYDVQQLEx1UaGFsZXMgVFNTIEVT -# Tjo4RDQxLTRCRjctQjNCNzElMCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAg -# U2VydmljZTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAJrnEAgEJpHF -# x8g61eEvPFXiYNlxqjSnFqbK2qUShVnIYYy7H/zPVzfW4M5yzePAVzwLTpcKHnQd -# pDeG2XTz9ynUTW2KtbTRVIfFJ5owgq/goy5a4oB3JktEfq7DdoATF5SxGYdlvwjr -# g/VTi7G9j9ow6eN91eK1AAFFvNjO64PNXdznHLTvtV1tYdxLW0LUukBJMOg2CLr3 -# 1+wMPI1x2Z7DLoD/GQNaLaa6UzVIf80Vguwicgc8pkCA0gnVoVXw+LIcXvkbOtWs -# X9u204OR/1f0pDXfYczOjav8tjowyqy7bjfYUud+evboUzUHgIQFQ33h6RM5TL7V -# zsl+jE5nt45x3Rz4+hi0/QDESKwH/eoT2DojxAbx7a4OjKYiN/pejZW0jrNevxU3 -# pY09frHbFhrRU2b3mvaQKldWge/eWg5JmerEZuY7XZ1Ws36Fqx3d7w3od+VldPL1 -# uE5TnxHFdvim2oqz8WhZCePrZbCfjH7FTok6/2Zw4GjGh5886IHpSNwKHw1PSE2z -# JE7U8ayz8oE20XbW6ba5y8wZ9o80eEyX5EKPoc1rmjLuTrTGYildiOTDtJtZirlA -# IKKvuONi8PAkLo/RAthfJ02yW9jXFA4Pu+HYCYrPz/AWvzq5cVvk64HOkzxsQjrU -# +9/VKnrJb1g+qzUOlBDvX+71g5IXdr7bAgMBAAGjggE2MIIBMjAdBgNVHQ4EFgQU -# ZHm1UMSju867vfqNuxoz5YzJSkowHwYDVR0jBBgwFoAUn6cVXQBeYl2D9OXSZacb -# UzUZ6XIwXwYDVR0fBFgwVjBUoFKgUIZOaHR0cDovL3d3dy5taWNyb3NvZnQuY29t -# L3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwVGltZS1TdGFtcCUyMFBDQSUyMDIwMTAo -# MSkuY3JsMGwGCCsGAQUFBwEBBGAwXjBcBggrBgEFBQcwAoZQaHR0cDovL3d3dy5t -# aWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9NaWNyb3NvZnQlMjBUaW1lLVN0YW1w -# JTIwUENBJTIwMjAxMCgxKS5jcnQwDAYDVR0TAQH/BAIwADATBgNVHSUEDDAKBggr -# BgEFBQcDCDANBgkqhkiG9w0BAQsFAAOCAgEAQBBa2/tYCCbL/xii0ts2r5tnpNe+ -# 5pOMrugbkulYiLi9HttGDdnXV3olIRHYZNxUbaPxg/d5OUiMjSel/qfLkDDsSNt2 -# DknchMyycIe/n7btCH/Mt8egCdEtXddjme37GKpYx1HnHJ3kvQ1qoqR5PLjPJtmW -# wYUZ1DfDOIqoOK6CRpmSmfRXPGe2RyYDPe4u3yMgPYSR9Ne89uVqwyZcWqQ+XZjM -# jcs83wFamgcnpgqAZ+FZEQhjSEsdMUZXG/d1uhDYSRdTQYzJd3ClRB1uHfGNDWYa -# XVw7Xi5PR4GycngiNnzfRgawktQdWpPtfeDxomSi/PoLSuzaKwKADELxZGIKx61g -# mH41ej6LgtzfgOsDga3JFTh0/T1CAyuQAwh+Ga2kInXkvSw/4pihzNyOImsz5KHB -# 3BRwfcqOXfZTCWfqZwAFoJUEIzFoVKpxP5ZQPhKo2ztJQMZZlLVYqFVLMIU96Sug -# 4xUVzPy1McE7bbn89cwYxC5ESGfLgstWJDMXwRcBKLP0BSJQ2hUr1J+CIlmQN1S3 -# wBI8udYicCto0iB8PtW4wiPhQR3Ak0R9qT9/oeQ5UOQGf3b3HzawEz9cMM9uSK/C -# oCjmx0QiGB+FSNla5jm6EhxRu/SWx3ZD1Uo3y8U7k7KIeRc6FNbebqxtK8LpaGWR -# WcU5K8X8k5Ib5owwggdxMIIFWaADAgECAhMzAAAAFcXna54Cm0mZAAAAAAAVMA0G -# CSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3Rv -# bjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0 -# aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3Jp -# dHkgMjAxMDAeFw0yMTA5MzAxODIyMjVaFw0zMDA5MzAxODMyMjVaMHwxCzAJBgNV -# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w -# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m -# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC -# CgKCAgEA5OGmTOe0ciELeaLL1yR5vQ7VgtP97pwHB9KpbE51yMo1V/YBf2xK4OK9 -# uT4XYDP/XE/HZveVU3Fa4n5KWv64NmeFRiMMtY0Tz3cywBAY6GB9alKDRLemjkZr -# BxTzxXb1hlDcwUTIcVxRMTegCjhuje3XD9gmU3w5YQJ6xKr9cmmvHaus9ja+NSZk -# 2pg7uhp7M62AW36MEBydUv626GIl3GoPz130/o5Tz9bshVZN7928jaTjkY+yOSxR -# nOlwaQ3KNi1wjjHINSi947SHJMPgyY9+tVSP3PoFVZhtaDuaRr3tpK56KTesy+uD -# RedGbsoy1cCGMFxPLOJiss254o2I5JasAUq7vnGpF1tnYN74kpEeHT39IM9zfUGa -# RnXNxF803RKJ1v2lIH1+/NmeRd+2ci/bfV+AutuqfjbsNkz2K26oElHovwUDo9Fz -# pk03dJQcNIIP8BDyt0cY7afomXw/TNuvXsLz1dhzPUNOwTM5TI4CvEJoLhDqhFFG -# 4tG9ahhaYQFzymeiXtcodgLiMxhy16cg8ML6EgrXY28MyTZki1ugpoMhXV8wdJGU -# lNi5UPkLiWHzNgY1GIRH29wb0f2y1BzFa/ZcUlFdEtsluq9QBXpsxREdcu+N+VLE -# hReTwDwV2xo3xwgVGD94q0W29R6HXtqPnhZyacaue7e3PmriLq0CAwEAAaOCAd0w -# ggHZMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFCqnUv5kxJq+ -# gpE8RjUpzxD/LwTuMB0GA1UdDgQWBBSfpxVdAF5iXYP05dJlpxtTNRnpcjBcBgNV -# HSAEVTBTMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wEwYDVR0l -# BAwwCgYIKwYBBQUHAwgwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P -# BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU1fZWy4/oolxiaNE9 -# lJBb186aGMQwVgYDVR0fBE8wTTBLoEmgR4ZFaHR0cDovL2NybC5taWNyb3NvZnQu -# Y29tL3BraS9jcmwvcHJvZHVjdHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYtMjMuY3Js -# MFoGCCsGAQUFBwEBBE4wTDBKBggrBgEFBQcwAoY+aHR0cDovL3d3dy5taWNyb3Nv -# ZnQuY29tL3BraS9jZXJ0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5jcnQwDQYJ -# KoZIhvcNAQELBQADggIBAJ1VffwqreEsH2cBMSRb4Z5yS/ypb+pcFLY+TkdkeLEG -# k5c9MTO1OdfCcTY/2mRsfNB1OW27DzHkwo/7bNGhlBgi7ulmZzpTTd2YurYeeNg2 -# LpypglYAA7AFvonoaeC6Ce5732pvvinLbtg/SHUB2RjebYIM9W0jVOR4U3UkV7nd -# n/OOPcbzaN9l9qRWqveVtihVJ9AkvUCgvxm2EhIRXT0n4ECWOKz3+SmJw7wXsFSF -# QrP8DJ6LGYnn8AtqgcKBGUIZUnWKNsIdw2FzLixre24/LAl4FOmRsqlb30mjdAy8 -# 7JGA0j3mSj5mO0+7hvoyGtmW9I/2kQH2zsZ0/fZMcm8Qq3UwxTSwethQ/gpY3UA8 -# x1RtnWN0SCyxTkctwRQEcb9k+SS+c23Kjgm9swFXSVRk2XPXfx5bRAGOWhmRaw2f -# pCjcZxkoJLo4S5pu+yFUa2pFEUep8beuyOiJXk+d0tBMdrVXVAmxaQFEfnyhYWxz -# /gq77EFmPWn9y8FBSX5+k77L+DvktxW/tM4+pTFRhLy/AsGConsXHRWJjXD+57XQ -# KBqJC4822rpM+Zv/Cuk0+CQ1ZyvgDbjmjJnW4SLq8CdCPSWU5nR0W2rRnj7tfqAx -# M328y+l7vzhwRNGQ8cirOoo6CGJ/2XBjU02N7oJtpQUQwXEGahC0HVUzWLOhcGby -# oYIC1zCCAkACAQEwggEAoYHYpIHVMIHSMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQgSXJlbGFuZCBPcGVyYXRp -# b25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1MgRVNOOjhENDEtNEJGNy1C -# M0I3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNloiMKAQEw -# BwYFKw4DAhoDFQDhPIrMfCAXlT0sHg/NOZeUHXoOQqCBgzCBgKR+MHwxCzAJBgNV -# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w -# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m -# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMA0GCSqGSIb3DQEBBQUAAgUA5VuLSDAiGA8y -# MDIxMTIwOTAzNTEzNloYDzIwMjExMjEwMDM1MTM2WjB3MD0GCisGAQQBhFkKBAEx -# LzAtMAoCBQDlW4tIAgEAMAoCAQACAiEnAgH/MAcCAQACAhHaMAoCBQDlXNzIAgEA -# MDYGCisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEAAgMHoSChCjAI -# AgEAAgMBhqAwDQYJKoZIhvcNAQEFBQADgYEAXlW2j2eZXXzRoYhcD+QC2mRpleC5 -# E6pnA0+clJOqd7XHmMsYT8DEKrIXCrdX0qxal+SfLjQXk1hKQeQ/2Mq1xh7vymuF -# o//Pp799i14preetWIJLY6vdEF/1YWtAZ4n83wU3/5OuGZrVehTJrzSPTIzZt0Jh -# 4+PeQWxLkliNtB8xggQNMIIECQIBATCBkzB8MQswCQYDVQQGEwJVUzETMBEGA1UE -# CBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9z -# b2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQ -# Q0EgMjAxMAITMwAAAYguzcaBQeG8KgABAAABiDANBglghkgBZQMEAgEFAKCCAUow -# GgYJKoZIhvcNAQkDMQ0GCyqGSIb3DQEJEAEEMC8GCSqGSIb3DQEJBDEiBCAAZlzS -# rT4vVB7wRIbsGvay4ACd2gPSgT3yS7r8RrU5XTCB+gYLKoZIhvcNAQkQAi8xgeow -# gecwgeQwgb0EIGbp3u2sBjdGhIL4z+ycjtzSpe4bLV/AoYaypl7SSUClMIGYMIGA -# pH4wfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcT -# B1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UE -# AxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTACEzMAAAGILs3GgUHhvCoA -# AQAAAYgwIgQg5xrEMC2Lr6zbNCWUPA9WAnuenayj+Wj3/53a/eH2mZMwDQYJKoZI -# hvcNAQELBQAEggIAOr4i66ksCOJ3Rw8xoMzAdJVQl257tTcsAl9f6cACnWS8wb5g -# W+fRBFGeoxzjBgn34Rn0NPmfz5+vx9D314QAmjWt//l6S8hmldXyUlrixC6aOGik -# +CRaSnhf0CY2o3vBSYsYV3gJx0PSnDq6/T2B+S9TY90hvl+NgkzCNBnyLEDPgDXB -# e9XQi88hUWqZxpjaTmAI26+fr9z7AMrtnA4hxEzDbh6VGDhXKZ4F//b3E6Xj6ppB -# AJBmkEH42AnDBuFGEr2iLkKbU25t0ZuD7whLQ7CaQ8yVOppTuG4kqNbsUmIPzxtI -# wlznjxAV7nN+BrIuNmraWiBmszVsqSm1FhcZBBL3jj98szffT9zmcRKwPKlO8J88 -# mHFY0io9zXsE8Cv87ezrCIDVhbIm3gHj8dMr8tiWmo9ejacYgEZSGNBAwdku6O+G -# PZ1WsWBQ1MNLRtye9FWMqGog7yqeb/iHtJH3hH7MFLgXMVHuKjI7rcIGlWKOyTbA -# Cllth+6In3BRDC/VUiSKD6SfVYyEjKdLM3dURYi/NzUJ3tapoE4DUBYt2xZlDEGO -# j/L2KpzIlyi5MhU3YZwTkAZwSNqmPKZ+f5w6j0cOhilqTOYMmVB5OycslZv6ODcW -# pcGpnK6b2QNfFMEvtGrIvflWQC95c9hwlJ2O3Fuh5Hroza3f7PgYUmrxctU= -# SIG # End signature block diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 deleted file mode 100644 index b3dd852..0000000 --- a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 +++ /dev/null @@ -1,229 +0,0 @@ -@{ -GUID="A94C8C7E-9810-47C0-B8AF-65089C13A35A" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -FunctionsToExport = @() -CmdletsToExport="Get-Acl", "Set-Acl", "Get-PfxCertificate", "Get-Credential", "Get-ExecutionPolicy", "Set-ExecutionPolicy", "Get-AuthenticodeSignature", "Set-AuthenticodeSignature", "ConvertFrom-SecureString", "ConvertTo-SecureString", "Get-CmsMessage", "Unprotect-CmsMessage", "Protect-CmsMessage" , "New-FileCatalog" , "Test-FileCatalog" -AliasesToExport = @() -NestedModules="Microsoft.PowerShell.Security.dll" -HelpInfoURI = 'https://aka.ms/powershell72-help' -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCD++xTkW7oivoiQ -# gqU/R85f/MwSI1hVEeaegSriXP6+BqCCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgWHV5GUzu -# +l9zI1GEYPanTVvtHVRaoSkM2bZBhM+rt9YwQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQByeqL4g0Ci96GXfmQN8rvCAtpT2N0neMZ9mozeBeyF -# 5hYxQhatRKLDNrOJei542+AM9l8AmsmKtJvtE8wJUkVGZqxBSiMwv7nV1uMQgVhK -# crEIUsmJO+EStsx+gA3VyfugAElJEJtTInobbDPofwO4DS8xUBpW/OLaq3XVjRga -# JOh7s7RMx+7Gysq96jaguaW2H2llklxhsKZwf3Mdi+/5BhF8tIevEqPuk4ly1oXh -# qY4/BD0pFNygoTWMp6ecxNQM2EE1N1j3y30h36Gsk5aDMeUFrRNtFFWFF1HbrbH3 -# thOhL/rqSQkbxAR2CNSGQtzrNuLF+1/xJEHXgBNGyEWioYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIC9rz69tGAbCMg2r367oWNBEt5XvxdFCe04Dw8cQ -# hWtJAgZhlV5AOHEYEzIwMjExMjA4MjEwNDE0Ljc5MVowBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046M0JENC00QjgwLTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYm0v4YwhBxL -# jwABAAABiTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3NDFaFw0yMzAxMjYxOTI3NDFaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjNCRDQtNEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvQZXxZFm -# a6plmuOyvNpV8xONOwcYolZG/BjyZWGSk5JOGaLyrKId5VxVHWHlsmJE4Svnzsdp -# sKmVx8otONveIUFvSceEZp8VXmu5m1fu8L7c+3lwXcibjccqtEvtQslokQVx0r+L -# 54abrNDarwFG73IaRidIS1i9c+unJ8oYyhDRLrCysFAVxyQhPNZkWK7Z8/VGukaK -# LAWHXCh/+R53h42gFL+9/mAALxzCXXuofi8f/XKCm7xNwVc1hONCCz6oq94AufzV -# NkkIW4brUQgYpCcJm9U0XNmQvtropYDn9UtY8YQ0NKenXPtdgLHdQ8Nnv3igErKL -# rWI0a5n5jjdKfwk+8mvakqdZmlOseeOS1XspQNJAK1uZllAITcnQZOcO5ofjOQ33 -# ujWckAXdz+/x3o7l4AU/TSOMzGZMwhUdtVwC3dSbItpSVFgnjM2COEJ9zgCadvOi -# rGDLN471jZI2jClkjsJTdgPk343TQA4JFvds/unZq0uLr+niZ3X44OBx2x+gVlln -# 2c4UbZXNueA4yS1TJGbbJFIILAmTUA9Auj5eISGTbNiyWx79HnCOTar39QEKozm4 -# LnTmDXy0/KI/H/nYZGKuTHfckP28wQS06rD+fDS5xLwcRMCW92DkHXmtbhGyRilB -# OL5LxZelQfxt54wl4WUC0AdAEolPekODwO8CAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBSXbx+zR1p4IIAeguA6rHKkrfl7UDAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQCOtLdpWUI4KwfLLrfaKrLB92Dq -# bAspGWM41TaO4Jl+sHxPo522uu3GKQCjmkRWreHtlfyy9kOk7LWax3k3ke8Gtfet -# fbh7qH0LeV2XOWg39BOnHf6mTcZq7FYSZZch1JDQjc98+Odlow+oWih0Dbt4CV/e -# 19ZcE+1n1zzWkskUEd0f5jPIUis33p+vkY8szduAtCcIcPFUhI8Hb5alPUAPMjGz -# wKb7NIKbnf8j8cP18As5IveckF0oh1cw63RY/vPK62LDYdpi7WnG2ObvngfWVKtw -# iwTI4jHj2cO9q37HDe/PPl216gSpUZh0ap24mKmMDfcKp1N4mEdsxz4oseOrPYeF -# sHHWJFJ6Aivvqn70KTeJpp5r+DxSqbeSy0mxIUOq/lAaUxgNSQVUX26t8r+fciko -# fKv23WHrtRV3t7rVTsB9YzrRaiikmz68K5HWdt9MqULxPQPo+ppZ0LRqkOae466+ -# UKRY0JxWtdrMc5vHlHZfnqjawj/RsM2S6Q6fa9T9CnY1Nz7DYBG3yZJyCPFsrgU0 -# 5s9ljqfsSptpFdUh9R4ce+L71SWDLM2x/1MFLLHAMbXsEp8KloEGtaDULnxtfS2t -# YhfuKGqRXoEfDPAMnIdTvQPh3GHQ4SjkkBARHL0MY75alhGTKHWjC2aLVOo8obKI -# Bk8hfnFDUf/EyVw4uTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0JENC00Qjgw -# LTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVACGlCa3ketyeuey7bJNpWkMuiCcQoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tYMCIY -# DzIwMjExMjA5MDM1MTUyWhgPMjAyMTEyMTAwMzUxNTJaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi1gCAQAwCgIBAAICHvwCAf8wBwIBAAICETcwCgIFAOVc3NgC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQCbF/Q1IJzqUwQBkXn+GjUxZzVN -# O+9p1fpL7W8dEy9/m1L7dl968KiYqfO5rekvXeSUDTFYrkS/r0w8p2ZZ7d0TMtJt -# TrKmc85aRmxtSvCNAS2stE2sS2Y5np5+/02w3DDn3Nni6vvF8nsuiIlbiyHrGQrC -# 9eis1rpLSNvXisSYoDGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABibS/hjCEHEuPAAEAAAGJMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIM9O -# ao85t+tQMGnb/NodpJQMwx5JXiYYilGmLk9FSvn+MIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgZndHMdxQV1VsbpWHOTHqWEycvcRJm7cY69l/UmT8j0UwgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYm0v4YwhBxL -# jwABAAABiTAiBCCErc3WAJDL+6+RTcx4qvTV2Dv0bP6a0jmZjnUp3u9sbzANBgkq -# hkiG9w0BAQsFAASCAgCzngLNnPmqawyfurGD6pabQJgWV4nP5zle9pu9tx4c1pTi -# SKAeREqAeOs5Bcg46nHpP+Flb+4BQ68zc2JUv1p1P7OlmpKshGEd1Sgpj0izHI8E -# JW8lmMXuRudxbw/761rpDKViWtWQ1lzxhyDeqJw1tiGIAcbX7P26zcoC+jp19GlY -# DaXcIJDZM/u5UUKDtKNSBIvTX+UDfuAEAwmH37GcuHTnvm1txdDZF2DNEn9Jzj7y -# TvHglap7FeMIvo/Um4cLq8xdSJxOYbGGQ5qCdc6vIGXC8HebpR3bIPxldyKDPdpd -# LdvDD0k+rnDHmMsmgQuihIG8rDiadJ/7YtexaDNm4aYRa8PD5SabeUwi94eYZ4a7 -# 25ZkBy6FQAY13i0RgSRicx2Ryowd0Hg0DWSAfHSJc5CnL7qWNTOhwvX7wEUGbe/0 -# 1GZR+ZYiJRO83/lQAEurvVJuEZ3dKTpeJB4FOP6oIc76pL3GvW9XINxo49WiIbzl -# YEToH4oTa5F5vUCvF2Wa5tDlpa60LFSJDP1VyWCYPP+sflKLkYvG3PmXSYYbCprL -# yS0rypa9ACBp7Q2rZTa1s3j7jtNa3Fa5RZ9gAulFkUVVZ+F0Pm7aUvnRAf54+Ri6 -# aoF9G+flQpzZn8nYCRFfiqcQ9wKPA6lZBGEqzGBLAZqzsmmrSgcwVjdN6ZwqYg== -# SIG # End signature block diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 deleted file mode 100644 index 927c504..0000000 --- a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 +++ /dev/null @@ -1,248 +0,0 @@ -@{ -GUID = "1DA87E53-152B-403E-98DC-74D7B4D63D59" -Author = "PowerShell" -CompanyName = "Microsoft Corporation" -Copyright = "Copyright (c) Microsoft Corporation." -ModuleVersion = "7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion = "3.0" -CmdletsToExport = @( - 'Export-Alias', 'Get-Alias', 'Import-Alias', 'New-Alias', 'Remove-Alias', 'Set-Alias', 'Export-Clixml', 'Import-Clixml', - 'Measure-Command', 'Trace-Command', 'ConvertFrom-Csv', 'ConvertTo-Csv', 'Export-Csv', 'Import-Csv', 'Get-Culture', - 'Format-Custom', 'Get-Date', 'Set-Date', 'Write-Debug', 'Wait-Debugger', 'Register-EngineEvent', 'Write-Error', - 'Get-Event', 'New-Event', 'Remove-Event', 'Unregister-Event', 'Wait-Event', 'Get-EventSubscriber', 'Invoke-Expression', - 'Out-File', 'Unblock-File', 'Get-FileHash', 'Export-FormatData', 'Get-FormatData', 'Update-FormatData', 'New-Guid', - 'Format-Hex', 'Get-Host', 'Read-Host', 'Write-Host', 'ConvertTo-Html', 'Write-Information', 'ConvertFrom-Json', - 'ConvertTo-Json', 'Test-Json', 'Format-List', 'Import-LocalizedData', 'Send-MailMessage', 'ConvertFrom-Markdown', - 'Show-Markdown', 'Get-MarkdownOption', 'Set-MarkdownOption', 'Add-Member', 'Get-Member', 'Compare-Object', 'Group-Object', - 'Measure-Object', 'New-Object', 'Select-Object', 'Sort-Object', 'Tee-Object', 'Register-ObjectEvent', 'Write-Output', - 'Import-PowerShellDataFile', 'Write-Progress', 'Disable-PSBreakpoint', 'Enable-PSBreakpoint', 'Get-PSBreakpoint', - 'Remove-PSBreakpoint', 'Set-PSBreakpoint', 'Get-PSCallStack', 'Export-PSSession', 'Import-PSSession', 'Get-Random', - 'Invoke-RestMethod', 'Debug-Runspace', 'Get-Runspace', 'Disable-RunspaceDebug', 'Enable-RunspaceDebug', - 'Get-RunspaceDebug', 'ConvertFrom-SddlString', 'Start-Sleep', 'Join-String', 'Out-String', 'Select-String', - 'ConvertFrom-StringData', 'Format-Table', 'New-TemporaryFile', 'New-TimeSpan', 'Get-TraceSource', 'Set-TraceSource', - 'Add-Type', 'Get-TypeData', 'Remove-TypeData', 'Update-TypeData', 'Get-UICulture', 'Get-Unique', 'Get-Uptime', - 'Clear-Variable', 'Get-Variable', 'New-Variable', 'Remove-Variable', 'Set-Variable', 'Get-Verb', 'Write-Verbose', - 'Write-Warning', 'Invoke-WebRequest', 'Format-Wide', 'ConvertTo-Xml', 'Select-Xml', 'Get-Error', 'Update-List', - 'Out-GridView', 'Show-Command', 'Out-Printer' -) -FunctionsToExport = @() -AliasesToExport = @('fhx') -NestedModules = @("Microsoft.PowerShell.Commands.Utility.dll") -HelpInfoURI = 'https://aka.ms/powershell72-help' -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCBA95ukw/cTrslZ -# 8GEROXuMEYH1RJd2ZOe5U1EPFSWVsaCCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgqoEvsipU -# dEXkK33kvZSyP9Cx3IROdWp1ndiqGNS27hEwQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQBHzboagxcQ8L50vNYxDsscrvzcGeLtxdwkaQTW10v2 -# aTPJXDVIFjRwioUbqfGvtBDaq9QFgLBcV3qb5zGL0K33nlBa4+dK0AgYlbbkpnSp -# l9l3tTHoSRiKtFdmpIpsRQPXGZ5c6iGkicQNtX/D2c6SBQ++qayvldFZcU16y/4C -# IUzeFA8TYMYRJnGQRC7BG1xqAWztt+WIUGlO5kQOnuNYczbq/zvBrT5nBRwhqcQQ -# YzJRwkNf2F+G88rnBESxNxegRusbUX+v3bwsa6uxxLpSeqSDD3JasgCzS1eaTBYn -# NXGeHxHdweiG14ABsGjSbxT+wtB6eeNj0ymmsYJdm7ApoYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIIEUntqZM075d/Xv5VtLazUG/C8XTr8E5AIBTLPG -# 2f+4AgZhlV5AOGMYEzIwMjExMjA4MjEwNDE0LjMzOFowBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046M0JENC00QjgwLTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYm0v4YwhBxL -# jwABAAABiTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3NDFaFw0yMzAxMjYxOTI3NDFaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjNCRDQtNEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvQZXxZFm -# a6plmuOyvNpV8xONOwcYolZG/BjyZWGSk5JOGaLyrKId5VxVHWHlsmJE4Svnzsdp -# sKmVx8otONveIUFvSceEZp8VXmu5m1fu8L7c+3lwXcibjccqtEvtQslokQVx0r+L -# 54abrNDarwFG73IaRidIS1i9c+unJ8oYyhDRLrCysFAVxyQhPNZkWK7Z8/VGukaK -# LAWHXCh/+R53h42gFL+9/mAALxzCXXuofi8f/XKCm7xNwVc1hONCCz6oq94AufzV -# NkkIW4brUQgYpCcJm9U0XNmQvtropYDn9UtY8YQ0NKenXPtdgLHdQ8Nnv3igErKL -# rWI0a5n5jjdKfwk+8mvakqdZmlOseeOS1XspQNJAK1uZllAITcnQZOcO5ofjOQ33 -# ujWckAXdz+/x3o7l4AU/TSOMzGZMwhUdtVwC3dSbItpSVFgnjM2COEJ9zgCadvOi -# rGDLN471jZI2jClkjsJTdgPk343TQA4JFvds/unZq0uLr+niZ3X44OBx2x+gVlln -# 2c4UbZXNueA4yS1TJGbbJFIILAmTUA9Auj5eISGTbNiyWx79HnCOTar39QEKozm4 -# LnTmDXy0/KI/H/nYZGKuTHfckP28wQS06rD+fDS5xLwcRMCW92DkHXmtbhGyRilB -# OL5LxZelQfxt54wl4WUC0AdAEolPekODwO8CAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBSXbx+zR1p4IIAeguA6rHKkrfl7UDAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQCOtLdpWUI4KwfLLrfaKrLB92Dq -# bAspGWM41TaO4Jl+sHxPo522uu3GKQCjmkRWreHtlfyy9kOk7LWax3k3ke8Gtfet -# fbh7qH0LeV2XOWg39BOnHf6mTcZq7FYSZZch1JDQjc98+Odlow+oWih0Dbt4CV/e -# 19ZcE+1n1zzWkskUEd0f5jPIUis33p+vkY8szduAtCcIcPFUhI8Hb5alPUAPMjGz -# wKb7NIKbnf8j8cP18As5IveckF0oh1cw63RY/vPK62LDYdpi7WnG2ObvngfWVKtw -# iwTI4jHj2cO9q37HDe/PPl216gSpUZh0ap24mKmMDfcKp1N4mEdsxz4oseOrPYeF -# sHHWJFJ6Aivvqn70KTeJpp5r+DxSqbeSy0mxIUOq/lAaUxgNSQVUX26t8r+fciko -# fKv23WHrtRV3t7rVTsB9YzrRaiikmz68K5HWdt9MqULxPQPo+ppZ0LRqkOae466+ -# UKRY0JxWtdrMc5vHlHZfnqjawj/RsM2S6Q6fa9T9CnY1Nz7DYBG3yZJyCPFsrgU0 -# 5s9ljqfsSptpFdUh9R4ce+L71SWDLM2x/1MFLLHAMbXsEp8KloEGtaDULnxtfS2t -# YhfuKGqRXoEfDPAMnIdTvQPh3GHQ4SjkkBARHL0MY75alhGTKHWjC2aLVOo8obKI -# Bk8hfnFDUf/EyVw4uTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0JENC00Qjgw -# LTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVACGlCa3ketyeuey7bJNpWkMuiCcQoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tYMCIY -# DzIwMjExMjA5MDM1MTUyWhgPMjAyMTEyMTAwMzUxNTJaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi1gCAQAwCgIBAAICHvwCAf8wBwIBAAICETcwCgIFAOVc3NgC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQCbF/Q1IJzqUwQBkXn+GjUxZzVN -# O+9p1fpL7W8dEy9/m1L7dl968KiYqfO5rekvXeSUDTFYrkS/r0w8p2ZZ7d0TMtJt -# TrKmc85aRmxtSvCNAS2stE2sS2Y5np5+/02w3DDn3Nni6vvF8nsuiIlbiyHrGQrC -# 9eis1rpLSNvXisSYoDGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABibS/hjCEHEuPAAEAAAGJMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEINjr -# jaYjHvF5zcuiSPmsJnfGwWcQHYP/2CYeqIoTLbM/MIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgZndHMdxQV1VsbpWHOTHqWEycvcRJm7cY69l/UmT8j0UwgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYm0v4YwhBxL -# jwABAAABiTAiBCCErc3WAJDL+6+RTcx4qvTV2Dv0bP6a0jmZjnUp3u9sbzANBgkq -# hkiG9w0BAQsFAASCAgBlISYxvNqg3TVBqRooVDAWRo+EMXUl4mBMwOvnI755iHjz -# ksXBl+FBaJdTbgfrrbkqVuTFgjnA7/1hzx8FuYRnz7aS7yWbUamn2DKeVHfcmL4w -# luTTDqklOtM/LNUOi2iRHQHG2+bi8OvJIavShvbjjv9telA3MY+ONzP+2t7H2ESf -# 7Sht+eH7Il5Wc9p2QB1o2iMaRK+TZoE1petI8ZxSJn0F6rFdBGIOI1mhNaZTZGuk -# UVAe9v6kd5k9BQZ1mfLCVf+A86Ul66fvrwAtETiuFMWYQhbnRWRLElWVUA/3zIS4 -# MVVyPlFjINt2m980WlIgHkt+K+cSbEtIUZ4Scpt/Tf9K0Kd2PEV+2z5n7xbwDPhy -# uczGyZm+0/NH6HDWrr74wX7+UJQzHGU7cP6yIDk/MJF5+E6ahKx6XfJYB2TK28qi -# K0g2HqkFhgS6zvnoNZNpWd28UKH9TLZIyWY9I7jKEMxP6jLzPugPYsL8pxvJLsAI -# /vn5Go+lLdNHUykJgB2ChUKsm3x1aUrSpGiW8UJ5xUiJ5RB1nFfUv0AWHcouYl92 -# FJhWIn3qaZExP6R7NijbAMyoYChcDgPrOGseESmfGZuVFbhE7gMai1VIRCLnmBoK -# Der+JOgsWW/eHU9nN5uuyP6uqtP01F5eayK++qjH+B9xQAJNq79RVXVvyaNZlw== -# SIG # End signature block diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1 b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1 deleted file mode 100644 index a370f4c..0000000 --- a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1 +++ /dev/null @@ -1,230 +0,0 @@ -@{ -GUID="766204A6-330E-4263-A7AB-46C87AFC366C" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -FunctionsToExport = @() -CmdletsToExport="Disable-WSManCredSSP", "Enable-WSManCredSSP", "Get-WSManCredSSP", "Set-WSManQuickConfig", "Test-WSMan", "Invoke-WSManAction", "Connect-WSMan", "Disconnect-WSMan", "Get-WSManInstance", "Set-WSManInstance", "Remove-WSManInstance", "New-WSManInstance", "New-WSManSessionOption" -AliasesToExport = @() -NestedModules="Microsoft.WSMan.Management.dll" -FormatsToProcess="WSMan.format.ps1xml" -HelpInfoURI = 'https://aka.ms/powershell72-help' -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCB+Ujs/uIRQu9NJ -# wrRJEY/iIf48rrMaCNk+CtkIzIqDVqCCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgypxuMQwq -# 1eGPEmRm52ViV1FEshB3MTFlVOkKoUKOQmgwQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQBwQLkeEMe+dK/nBzeh5yKFRrxpey/F+58vzZS97hfh -# rOZPhi6B29T/8kJqtTW8EVhdy+XNARi5JYKvFt6cO1TFJlb9H6ncq7TAYPV6ue/R -# 1CmnXltjWiRYZAibhN3Y7Yq+pnqIskQb8LI499I2Sg8JLuvRXBYqUb6F4wZ/vgH2 -# Vz/dHRgonqNkI94s5mOFXG0TX3/JzQD+xj3NWFNeOUCLsQQ0k7EA2pcF9odFgyNS -# QY0KGk3Bu+KcQUxmPdbgtIoM1ebLvINLR3mpD6xeWuusLS2NXX/7x3otBPyC17R2 -# hjh5a4lKYQH16inEdSg6jGkMXymnKOPRAmXZnFI9FET1oYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIGqYa00kDq7cefzR97imqg4FhBGef4q3IvGpky5C -# NPnvAgZhlV5AOG4YEzIwMjExMjA4MjEwNDE0LjYwN1owBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046M0JENC00QjgwLTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYm0v4YwhBxL -# jwABAAABiTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3NDFaFw0yMzAxMjYxOTI3NDFaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjNCRDQtNEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvQZXxZFm -# a6plmuOyvNpV8xONOwcYolZG/BjyZWGSk5JOGaLyrKId5VxVHWHlsmJE4Svnzsdp -# sKmVx8otONveIUFvSceEZp8VXmu5m1fu8L7c+3lwXcibjccqtEvtQslokQVx0r+L -# 54abrNDarwFG73IaRidIS1i9c+unJ8oYyhDRLrCysFAVxyQhPNZkWK7Z8/VGukaK -# LAWHXCh/+R53h42gFL+9/mAALxzCXXuofi8f/XKCm7xNwVc1hONCCz6oq94AufzV -# NkkIW4brUQgYpCcJm9U0XNmQvtropYDn9UtY8YQ0NKenXPtdgLHdQ8Nnv3igErKL -# rWI0a5n5jjdKfwk+8mvakqdZmlOseeOS1XspQNJAK1uZllAITcnQZOcO5ofjOQ33 -# ujWckAXdz+/x3o7l4AU/TSOMzGZMwhUdtVwC3dSbItpSVFgnjM2COEJ9zgCadvOi -# rGDLN471jZI2jClkjsJTdgPk343TQA4JFvds/unZq0uLr+niZ3X44OBx2x+gVlln -# 2c4UbZXNueA4yS1TJGbbJFIILAmTUA9Auj5eISGTbNiyWx79HnCOTar39QEKozm4 -# LnTmDXy0/KI/H/nYZGKuTHfckP28wQS06rD+fDS5xLwcRMCW92DkHXmtbhGyRilB -# OL5LxZelQfxt54wl4WUC0AdAEolPekODwO8CAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBSXbx+zR1p4IIAeguA6rHKkrfl7UDAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQCOtLdpWUI4KwfLLrfaKrLB92Dq -# bAspGWM41TaO4Jl+sHxPo522uu3GKQCjmkRWreHtlfyy9kOk7LWax3k3ke8Gtfet -# fbh7qH0LeV2XOWg39BOnHf6mTcZq7FYSZZch1JDQjc98+Odlow+oWih0Dbt4CV/e -# 19ZcE+1n1zzWkskUEd0f5jPIUis33p+vkY8szduAtCcIcPFUhI8Hb5alPUAPMjGz -# wKb7NIKbnf8j8cP18As5IveckF0oh1cw63RY/vPK62LDYdpi7WnG2ObvngfWVKtw -# iwTI4jHj2cO9q37HDe/PPl216gSpUZh0ap24mKmMDfcKp1N4mEdsxz4oseOrPYeF -# sHHWJFJ6Aivvqn70KTeJpp5r+DxSqbeSy0mxIUOq/lAaUxgNSQVUX26t8r+fciko -# fKv23WHrtRV3t7rVTsB9YzrRaiikmz68K5HWdt9MqULxPQPo+ppZ0LRqkOae466+ -# UKRY0JxWtdrMc5vHlHZfnqjawj/RsM2S6Q6fa9T9CnY1Nz7DYBG3yZJyCPFsrgU0 -# 5s9ljqfsSptpFdUh9R4ce+L71SWDLM2x/1MFLLHAMbXsEp8KloEGtaDULnxtfS2t -# YhfuKGqRXoEfDPAMnIdTvQPh3GHQ4SjkkBARHL0MY75alhGTKHWjC2aLVOo8obKI -# Bk8hfnFDUf/EyVw4uTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0JENC00Qjgw -# LTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVACGlCa3ketyeuey7bJNpWkMuiCcQoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tYMCIY -# DzIwMjExMjA5MDM1MTUyWhgPMjAyMTEyMTAwMzUxNTJaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi1gCAQAwCgIBAAICHvwCAf8wBwIBAAICETcwCgIFAOVc3NgC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQCbF/Q1IJzqUwQBkXn+GjUxZzVN -# O+9p1fpL7W8dEy9/m1L7dl968KiYqfO5rekvXeSUDTFYrkS/r0w8p2ZZ7d0TMtJt -# TrKmc85aRmxtSvCNAS2stE2sS2Y5np5+/02w3DDn3Nni6vvF8nsuiIlbiyHrGQrC -# 9eis1rpLSNvXisSYoDGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABibS/hjCEHEuPAAEAAAGJMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIN1F -# wmeehZy4wMNXqLnULVbk4oVsB3cWo9ryHOQxmYoPMIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgZndHMdxQV1VsbpWHOTHqWEycvcRJm7cY69l/UmT8j0UwgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYm0v4YwhBxL -# jwABAAABiTAiBCCErc3WAJDL+6+RTcx4qvTV2Dv0bP6a0jmZjnUp3u9sbzANBgkq -# hkiG9w0BAQsFAASCAgAWjRg7KzoR7Kd4cPnoMh490c1gOoabocbdzphBISFn24S4 -# Nomokt8QSkLypqSgMe0FQyCku8urnNIhX6CA1FObkCe+DFM9FFaOHNY3Lqv4oVGW -# O2nCjMXPxj8FMZM7UyZB11zPMhPHaleWP0UQPuqEf/d6V8vbh23OyZ9RfYUKft+m -# zKsR+gnqKtrmAuqLSrwoo/6JvgchTRqV+ODeDc1l3JfbhQW+6hFryB3RSAau+Msg -# n/QwOqIYCYJl/t7kV/Ze7WF97Kc294zbuRT4LTMccfms19oeACHoZpU2H7JWSEZn -# MTMnaEVlM+9ylAgC4wxiEsXlJCI5K167HTpkfR3/9/4hJo+5Pmacd0HQjpP6zDqw -# a8sveaOAmaI0eRC6ByG00sBwPmbRTRvDA4Dc2b3bKqINgkZpM7/NFmclkho4jvF0 -# XJ4jk/Ul2rvaQtTrWY0ZCITR79XpLpRZMukTFTybSZrE+bERy3eK/KNee4Wbt6wz -# 86sci4DvgqPc1nBsX0Y5iWhiPA2I9rXH36iH7ZI7D/I4+0qEWLxfsLNTUthwb8Zg -# 1ukHkIyEk14gOar+Exf4MRZ8slf1518X2zoCj6ZeYfXB8pRz/+N7w8rEtbKCjX+U -# dyI16Oy8vNwWWZRdoG6e2rMmvDDSTz34db1DymXU+a92+q/qcwFAkl1dPVTn5Q== -# SIG # End signature block diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml deleted file mode 100644 index 8907c23..0000000 --- a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml +++ /dev/null @@ -1,451 +0,0 @@ - - - - - - - System.Xml.XmlElement#http://schemas.dmtf.org/wbem/wsman/identity/1/wsmanidentity.xsd#IdentifyResponse - - System.Xml.XmlElement#http://schemas.dmtf.org/wbem/wsman/identity/1/wsmanidentity.xsd#IdentifyResponse - - - - - - - wsmid - - - ProtocolVersion - - - ProductVendor - - - ProductVersion - - - - - - - - Microsoft.WSMan.Management.WSManConfigElement - - Microsoft.WSMan.Management.WSManConfigElement - - - PSParentPath - - - - - - - 15 - - - - 30 - - - - - - - TypeNameOfElement - - - Name - - - - - - - - Microsoft.WSMan.Management.WSManConfigContainerElement - - Microsoft.WSMan.Management.WSManConfigContainerElement - - - PSParentPath - - - - - - - 15 - - - - 35 - - - - - - - - - - TypeNameOfElement - - - Keys - - - Name - - - - - - - - Microsoft.WSMan.Management.WSManConfigLeafElement - - Microsoft.WSMan.Management.WSManConfigLeafElement - - - PSParentPath - - - - - - - 15 - - - - 30 - - - - 15 - - - - - - - - - - TypeNameOfElement - - - Name - - - SourceOfValue - - - Value - - - - - - - - Microsoft.WSMan.Management.WSManConfigLeafElement#InitParams - - Microsoft.WSMan.Management.WSManConfigLeafElement#InitParams - - - PSParentPath - - - - - - - 30 - - - - 20 - - - - - - - Name - - - Value - - - - - - - - Microsoft.WSMan.Management.WSManConfigContainerElement#ComputerLevel - - Microsoft.WSMan.Management.WSManConfigContainerElement#ComputerLevel - - - PSParentPath - - - - - - - 45 - - - - 20 - - - - - - - Name - - - TypeNameOfElement - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psd1 b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psd1 deleted file mode 100644 index 626dc3a..0000000 --- a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psd1 +++ /dev/null @@ -1,207 +0,0 @@ -@{ - GUID="c61d6278-02a3-4618-ae37-a524d40a7f44 " - Author="PowerShell" - CompanyName="Microsoft Corporation" - Copyright="Copyright (c) Microsoft Corporation." - ModuleVersion="7.0.0.0" - CompatiblePSEditions = @("Core") - PowerShellVersion="3.0" - ModuleToProcess="PSDiagnostics.psm1" - FunctionsToExport="Disable-PSTrace","Disable-PSWSManCombinedTrace","Disable-WSManTrace","Enable-PSTrace","Enable-PSWSManCombinedTrace","Enable-WSManTrace","Get-LogProperties","Set-LogProperties","Start-Trace","Stop-Trace" - CmdletsToExport = @() - AliasesToExport = @() - HelpInfoUri="https://aka.ms/powershell72-help" -} - -# SIG # Begin signature block -# MIIjkQYJKoZIhvcNAQcCoIIjgjCCI34CAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCD/dfsIexbywzf4 -# vgDANLKxbLCeK+0wW4ZnFQP22V0sXqCCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIVZjCCFWICAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgoT0Qfn6u -# IFQn6DGWcQzw34/4HzFrnEYbuu3YQlqVoaQwQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQCt/xkRVxP7BXqiUQi+IuzI0bokgJJBF15CLUb5UcOl -# ojrCl4Rx34i0hAAoWt5uOvUG37LQEGnKm5DEgRwG5d+R8SHjAZxk83VzPAg9c7S/ -# GLe8AdcLJ4L5rjGb5YReU+eIPGNvrcZu8JYN2dlBO1nY6axLwonRTpQj43J7wrWd -# InSCbV8CnUfK4/lgftJ5P7SCNLe7Enjv8dQOahg3B4BMReQxHm/SZWgSGb8t++wI -# ZWCw6sRh+XjE63P3VzhAp8Z8KOR3TSCE4Bt5tfy8xDbmePlVrK3GKoVVq4RkVn96 -# 4TRCHvs3RZTQm57yJ2NplI10zIqZz2geZRns5nVGDHcYoYIS8DCCEuwGCisGAQQB -# gjcDAwExghLcMIIS2AYJKoZIhvcNAQcCoIISyTCCEsUCAQMxDzANBglghkgBZQME -# AgEFADCCAVQGCyqGSIb3DQEJEAEEoIIBQwSCAT8wggE7AgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIG5NKJe+omftR+S4BYKgAMTO7Tl6rem9xPJkoE7D -# yZYZAgZhk97zjjgYEjIwMjExMjA4MjEwNDE0Ljg2WjAEgAIB9KCB1KSB0TCBzjEL -# MAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1v -# bmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEpMCcGA1UECxMgTWlj -# cm9zb2Z0IE9wZXJhdGlvbnMgUHVlcnRvIFJpY28xJjAkBgNVBAsTHVRoYWxlcyBU -# U1MgRVNOOjMyQkQtRTNENS0zQjFEMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1T -# dGFtcCBTZXJ2aWNloIIORDCCBPUwggPdoAMCAQICEzMAAAFi0P4C8wHlzUkAAAAA -# AWIwDQYJKoZIhvcNAQELBQAwfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hp -# bmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jw -# b3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAw -# HhcNMjEwMTE0MTkwMjIyWhcNMjIwNDExMTkwMjIyWjCBzjELMAkGA1UEBhMCVVMx -# EzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoT -# FU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEpMCcGA1UECxMgTWljcm9zb2Z0IE9wZXJh -# dGlvbnMgUHVlcnRvIFJpY28xJjAkBgNVBAsTHVRoYWxlcyBUU1MgRVNOOjMyQkQt -# RTNENS0zQjFEMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNl -# MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA74ah1Pa5wvcyvYNCy/YQ -# s1tK8rIGlh1Qq1QFaJmYVXLXykb+m5yCStzmL227wJjsalZX8JA2YcbaZV5Icwm9 -# vAJz8AC/sk/dsUK3pmDvkhtVI04YDV6otuZCILpQB9Ipcs3d0e1Dl2KKFvdibOk0 -# /0rRxU9l+/Yxeb5lVTRERLxzI+Rd6Xv5QQYT6Sp2IE0N1vzIFd3yyO773T5XifNg -# L5lZbtIUnYUVmUBKlVoemO/54aiFeVBpIG+YzhDTF7cuHNAzxWIbP1wt4VIqAV9J -# juqLMvvBSD56pi8NTKM9fxrERAeaTS2HbfBYfmnRZ27Czjeo0ijQ5DSZGi0ErvWf -# KQIDAQABo4IBGzCCARcwHQYDVR0OBBYEFMvEShFgSkO3OnzgHlaVk3aQ/iprMB8G -# A1UdIwQYMBaAFNVjOlyKMZDzQ3t8RhvFM2hahW1VMFYGA1UdHwRPME0wS6BJoEeG -# RWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Rp -# bVN0YVBDQV8yMDEwLTA3LTAxLmNybDBaBggrBgEFBQcBAQROMEwwSgYIKwYBBQUH -# MAKGPmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljVGltU3Rh -# UENBXzIwMTAtMDctMDEuY3J0MAwGA1UdEwEB/wQCMAAwEwYDVR0lBAwwCgYIKwYB -# BQUHAwgwDQYJKoZIhvcNAQELBQADggEBAC1BrcOhdhtb9xcAJtxVIUZ7iALwZewX -# FIdPcmDAVT810k5xuRwVNW9Onq+WZO8ebqwiOSdEEHReLU0FOo/DbS7q79PsKdz/ -# PSBPqZ/1ysjRVH0L5HUK2N7NgpkR1lnt+41BaOzJ+00OFDL5GqeqvK3RWh7MtqWF -# 6KKcfNkP/hjiFlg9/S7xNK/Vl8q10HB5YbdBTQun8j1Jsih6YMb3tFQsxw++ra5+ -# FSnc4yJhAYvVaqTKRKepEmwzYhwDiXh2ag80/p0uDkOvs1WhgogwidpBVmNLAMxm -# FavK9+LNfRKvPIuCQw+EsxWR8vFBBJDfs14WTsXVF94CQ1YCHqYI5EEwggZxMIIE -# WaADAgECAgphCYEqAAAAAAACMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJV -# UzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UE -# ChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9v -# dCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgMjAxMDAeFw0xMDA3MDEyMTM2NTVaFw0y -# NTA3MDEyMTQ2NTVaMHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9u -# MRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRp -# b24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwMIIBIjAN -# BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqR0NvHcRijog7PwTl/X6f2mUa3RU -# ENWlCgCChfvtfGhLLF/Fw+Vhwna3PmYrW/AVUycEMR9BGxqVHc4JE458YTBZsTBE -# D/FgiIRUQwzXTbg4CLNC3ZOs1nMwVyaCo0UN0Or1R4HNvyRgMlhgRvJYR4YyhB50 -# YWeRX4FUsc+TTJLBxKZd0WETbijGGvmGgLvfYfxGwScdJGcSchohiq9LZIlQYrFd -# /XcfPfBXday9ikJNQFHRD5wGPmd/9WbAA5ZEfu/QS/1u5ZrKsajyeioKMfDaTgaR -# togINeh4HLDpmc085y9Euqf03GS9pAHBIAmTeM38vMDJRF1eFpwBBU8iTQIDAQAB -# o4IB5jCCAeIwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFNVjOlyKMZDzQ3t8 -# RhvFM2hahW1VMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB -# hjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFNX2VsuP6KJcYmjRPZSQW9fO -# mhjEMFYGA1UdHwRPME0wS6BJoEeGRWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w -# a2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNybDBaBggr -# BgEFBQcBAQROMEwwSgYIKwYBBQUHMAKGPmh0dHA6Ly93d3cubWljcm9zb2Z0LmNv -# bS9wa2kvY2VydHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYtMjMuY3J0MIGgBgNVHSAB -# Af8EgZUwgZIwgY8GCSsGAQQBgjcuAzCBgTA9BggrBgEFBQcCARYxaHR0cDovL3d3 -# dy5taWNyb3NvZnQuY29tL1BLSS9kb2NzL0NQUy9kZWZhdWx0Lmh0bTBABggrBgEF -# BQcCAjA0HjIgHQBMAGUAZwBhAGwAXwBQAG8AbABpAGMAeQBfAFMAdABhAHQAZQBt -# AGUAbgB0AC4gHTANBgkqhkiG9w0BAQsFAAOCAgEAB+aIUQ3ixuCYP4FxAz2do6Eh -# b7Prpsz1Mb7PBeKp/vpXbRkws8LFZslq3/Xn8Hi9x6ieJeP5vO1rVFcIK1GCRBL7 -# uVOMzPRgEop2zEBAQZvcXBf/XPleFzWYJFZLdO9CEMivv3/Gf/I3fVo/HPKZeUqR -# UgCvOA8X9S95gWXZqbVr5MfO9sp6AG9LMEQkIjzP7QOllo9ZKby2/QThcJ8ySif9 -# Va8v/rbljjO7Yl+a21dA6fHOmWaQjP9qYn/dxUoLkSbiOewZSnFjnXshbcOco6I8 -# +n99lmqQeKZt0uGc+R38ONiU9MalCpaGpL2eGq4EQoO4tYCbIjggtSXlZOz39L9+ -# Y1klD3ouOVd2onGqBooPiRa6YacRy5rYDkeagMXQzafQ732D8OE7cQnfXXSYIghh -# 2rBQHm+98eEA3+cxB6STOvdlR3jo+KhIq/fecn5ha293qYHLpwmsObvsxsvYgrRy -# zR30uIUBHoD7G4kqVDmyW9rIDVWZeodzOwjmmC3qjeAzLhIp9cAvVCch98isTtoo -# uLGp25ayp0Kiyc8ZQU3ghvkqmqMRZjDTu3QyS99je/WZii8bxyGvWbWu3EQ8l1Bx -# 16HSxVXjad5XwdHeMMD9zOZN+w2/XU/pnR4ZOC+8z1gFLu8NoFA12u8JJxzVs341 -# Hgi62jbb01+P3nSISRKhggLSMIICOwIBATCB/KGB1KSB0TCBzjELMAkGA1UEBhMC -# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV -# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEpMCcGA1UECxMgTWljcm9zb2Z0IE9w -# ZXJhdGlvbnMgUHVlcnRvIFJpY28xJjAkBgNVBAsTHVRoYWxlcyBUU1MgRVNOOjMy -# QkQtRTNENS0zQjFEMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2 -# aWNloiMKAQEwBwYFKw4DAhoDFQCas/oKGtvPRrHuznufk+indULyDKCBgzCBgKR+ -# MHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMT -# HU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwMA0GCSqGSIb3DQEBBQUAAgUA -# 5Vtd4DAiGA8yMDIxMTIwODIwMzc1MloYDzIwMjExMjA5MjAzNzUyWjB3MD0GCisG -# AQQBhFkKBAExLzAtMAoCBQDlW13gAgEAMAoCAQACAiXlAgH/MAcCAQACAhIPMAoC -# BQDlXK9gAgEAMDYGCisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEA -# AgMHoSChCjAIAgEAAgMBhqAwDQYJKoZIhvcNAQEFBQADgYEAM2SMFWUY36bc2OtE -# Rp28goB1/JaCRplwIWPeW6MSG1c3i2g4X2GIc4vvRrc834fuuJ+Qm07NFeRHQA61 -# lJAHbTlZBMdkDILSVP+20NGOy6B3k5K1WMfGN0Et9EQJpvfEJaB2F4d+LCCNd/MM -# dXEvG2iFxgW3C4TCWZENGlxsa5ExggMNMIIDCQIBATCBkzB8MQswCQYDVQQGEwJV -# UzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UE -# ChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGlt -# ZS1TdGFtcCBQQ0EgMjAxMAITMwAAAWLQ/gLzAeXNSQAAAAABYjANBglghkgBZQME -# AgEFAKCCAUowGgYJKoZIhvcNAQkDMQ0GCyqGSIb3DQEJEAEEMC8GCSqGSIb3DQEJ -# BDEiBCB66+Xkbn3ewO+BRQNGeKLsT3CZTxRw6oyH+Hqt0XKBjzCB+gYLKoZIhvcN -# AQkQAi8xgeowgecwgeQwgb0EIIqqGJX7PA0OulTsNEHsyLnvGLoYE1iwaOBmqrap -# UwoyMIGYMIGApH4wfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24x -# EDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlv -# bjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTACEzMAAAFi -# 0P4C8wHlzUkAAAAAAWIwIgQgPmj2PBaeW66dmUvg/M3GbG9dSU9ROIZo6V1zy7iW -# 604wDQYJKoZIhvcNAQELBQAEggEA6MvaPUzarjssGW9T9f6ohr8y3PWDaJKtB/jB -# siPN63Ektk0b2P1aJLd+FV3f3m4dq25TfYZEIliZtog2M9YOce/24reMnhBbyWwO -# tVGurL4kJQ2+z3qsASFQvZxc4O2NVFQDyyued5Y4+imuQGM3u4TOo5DSTCsvqw89 -# P5J99wB5W9hifpU65qjBROE+LNY6aMF0bIGeDbqb0m9cPe8JE2gZN+SMQQ9kzTUm -# eLAuoyvdm6wGrsx8/xgC2XFHA47DLev3lgUfx6FczxiRna/aI6Y8oqY+Z/R5Vd/L -# vZwZYPSInN7G2gVwJV9/VzLkLQ5hjDJrDMAyZ1smJnQAdnVlLg== -# SIG # End signature block diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psm1 b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psm1 deleted file mode 100644 index f4c16f0..0000000 --- a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psm1 +++ /dev/null @@ -1,663 +0,0 @@ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. - -<# - PowerShell Diagnostics Module - This module contains a set of wrapper scripts that - enable a user to use ETW tracing in Windows - PowerShell. - #> - -$script:Logman="$env:windir\system32\logman.exe" -$script:wsmanlogfile = "$env:windir\system32\wsmtraces.log" -$script:wsmprovfile = "$env:windir\system32\wsmtraceproviders.txt" -$script:wsmsession = "wsmlog" -$script:pssession = "PSTrace" -$script:psprovidername="Microsoft-Windows-PowerShell" -$script:wsmprovidername = "Microsoft-Windows-WinRM" -$script:oplog = "/Operational" -$script:analyticlog="/Analytic" -$script:debuglog="/Debug" -$script:wevtutil="$env:windir\system32\wevtutil.exe" -$script:slparam = "sl" -$script:glparam = "gl" - -function Start-Trace -{ - Param( - [Parameter(Mandatory=$true, - Position=0)] - [string] - $SessionName, - [Parameter(Position=1)] - [ValidateNotNullOrEmpty()] - [string] - $OutputFilePath, - [Parameter(Position=2)] - [ValidateNotNullOrEmpty()] - [string] - $ProviderFilePath, - [Parameter()] - [Switch] - $ETS, - [Parameter()] - [ValidateSet("bin", "bincirc", "csv", "tsv", "sql")] - $Format, - [Parameter()] - [int] - $MinBuffers=0, - [Parameter()] - [int] - $MaxBuffers=256, - [Parameter()] - [int] - $BufferSizeInKB = 0, - [Parameter()] - [int] - $MaxLogFileSizeInMB=0 - ) - - Process - { - $executestring = " start $SessionName" - - if ($ETS) - { - $executestring += " -ets" - } - - if ($null -ne $OutputFilePath) - { - $executestring += " -o ""$OutputFilePath""" - } - - if ($null -ne $ProviderFilePath) - { - $executestring += " -pf ""$ProviderFilePath""" - } - - if ($null -ne $Format) - { - $executestring += " -f $Format" - } - - if ($MinBuffers -ne 0 -or $MaxBuffers -ne 256) - { - $executestring += " -nb $MinBuffers $MaxBuffers" - } - - if ($BufferSizeInKB -ne 0) - { - $executestring += " -bs $BufferSizeInKB" - } - - if ($MaxLogFileSizeInMB -ne 0) - { - $executestring += " -max $MaxLogFileSizeInMB" - } - - & $script:Logman $executestring.Split(" ") - } -} - -function Stop-Trace -{ - param( - [Parameter(Mandatory=$true, - Position=0)] - $SessionName, - [Parameter()] - [switch] - $ETS - ) - - Process - { - if ($ETS) - { - & $script:Logman update $SessionName -ets - & $script:Logman stop $SessionName -ets - } - else - { - & $script:Logman update $SessionName - & $script:Logman stop $SessionName - } - } -} - -function Enable-WSManTrace -{ - - # winrm - "{04c6e16d-b99f-4a3a-9b3e-b8325bbc781e} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii - - # winrsmgr - "{c0a36be8-a515-4cfa-b2b6-2676366efff7} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - # WinrsExe - "{f1cab2c0-8beb-4fa2-90e1-8f17e0acdd5d} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - # WinrsCmd - "{03992646-3dfe-4477-80e3-85936ace7abb} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - # IPMIPrv - "{651d672b-e11f-41b7-add3-c2f6a4023672} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - #IpmiDrv - "{D5C6A3E9-FA9C-434e-9653-165B4FC869E4} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - # WSManProvHost - "{6e1b64d7-d3be-4651-90fb-3583af89d7f1} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - # Event Forwarding - "{6FCDF39A-EF67-483D-A661-76D715C6B008} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - Start-Trace -SessionName $script:wsmsession -ETS -OutputFilePath $script:wsmanlogfile -Format bincirc -MinBuffers 16 -MaxBuffers 256 -BufferSizeInKB 64 -MaxLogFileSizeInMB 256 -ProviderFilePath $script:wsmprovfile -} - -function Disable-WSManTrace -{ - Stop-Trace $script:wsmsession -ETS -} - -function Enable-PSWSManCombinedTrace -{ - param ( - [switch] $DoNotOverwriteExistingTrace - ) - - $provfile = [io.path]::GetTempFilename() - - $traceFileName = [string][Guid]::NewGuid() - if ($DoNotOverwriteExistingTrace) { - $fileName = [string][guid]::newguid() - $logfile = $PSHOME + "\\Traces\\PSTrace_$fileName.etl" - } else { - $logfile = $PSHOME + "\\Traces\\PSTrace.etl" - } - - "Microsoft-Windows-PowerShell 0 5" | Out-File $provfile -Encoding ascii - "Microsoft-Windows-WinRM 0 5" | Out-File $provfile -Encoding ascii -Append - - if (!(Test-Path $PSHOME\Traces)) - { - New-Item -ItemType Directory -Force $PSHOME\Traces | Out-Null - } - - if (Test-Path $logfile) - { - Remove-Item -Force $logfile | Out-Null - } - - Start-Trace -SessionName $script:pssession -OutputFilePath $logfile -ProviderFilePath $provfile -ETS - - Remove-Item $provfile -Force -ea 0 -} - -function Disable-PSWSManCombinedTrace -{ - Stop-Trace -SessionName $script:pssession -ETS -} - -function Set-LogProperties -{ - param( - [Parameter(Mandatory=$true, Position=0, ValueFromPipeline=$true)] - [Microsoft.PowerShell.Diagnostics.LogDetails] - $LogDetails, - [switch] $Force - ) - - Process - { - if ($LogDetails.AutoBackup -and !$LogDetails.Retention) - { - throw (New-Object System.InvalidOperationException) - } - - $enabled = $LogDetails.Enabled.ToString() - $retention = $LogDetails.Retention.ToString() - $autobackup = $LogDetails.AutoBackup.ToString() - $maxLogSize = $LogDetails.MaxLogSize.ToString() - $osVersion = [Version] (Get-CimInstance Win32_OperatingSystem).Version - - if (($LogDetails.Type -eq "Analytic") -or ($LogDetails.Type -eq "Debug")) - { - if ($LogDetails.Enabled) - { - if($osVersion -lt 6.3.7600) - { - & $script:wevtutil $script:slparam $LogDetails.Name -e:$Enabled - } - else - { - & $script:wevtutil /q:$Force $script:slparam $LogDetails.Name -e:$Enabled - } - } - else - { - if($osVersion -lt 6.3.7600) - { - & $script:wevtutil $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ms:$MaxLogSize - } - else - { - & $script:wevtutil /q:$Force $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ms:$MaxLogSize - } - } - } - else - { - if($osVersion -lt 6.3.7600) - { - & $script:wevtutil $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ab:$AutoBackup -ms:$MaxLogSize - } - else - { - & $script:wevtutil /q:$Force $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ab:$AutoBackup -ms:$MaxLogSize - } - } - } -} - -function ConvertTo-Bool([string]$value) -{ - if ($value -ieq "true") - { - return $true - } - else - { - return $false - } -} - -function Get-LogProperties -{ - param( - [Parameter(Mandatory=$true, ValueFromPipeline=$true, Position=0)] $Name - ) - - Process - { - $details = & $script:wevtutil $script:glparam $Name - $indexes = @(1,2,8,9,10) - $value = @() - foreach($index in $indexes) - { - $value += @(($details[$index].SubString($details[$index].IndexOf(":")+1)).Trim()) - } - - $enabled = ConvertTo-Bool $value[0] - $retention = ConvertTo-Bool $value[2] - $autobackup = ConvertTo-Bool $value[3] - - New-Object Microsoft.PowerShell.Diagnostics.LogDetails $Name, $enabled, $value[1], $retention, $autobackup, $value[4] - } -} - -function Enable-PSTrace -{ - param( - [switch] $Force, - [switch] $AnalyticOnly - ) - - $Properties = Get-LogProperties ($script:psprovidername + $script:analyticlog) - - if (!$Properties.Enabled) { - $Properties.Enabled = $true - if ($Force) { - Set-LogProperties $Properties -Force - } else { - Set-LogProperties $Properties - } - } - - if (!$AnalyticOnly) { - $Properties = Get-LogProperties ($script:psprovidername + $script:debuglog) - if (!$Properties.Enabled) { - $Properties.Enabled = $true - if ($Force) { - Set-LogProperties $Properties -Force - } else { - Set-LogProperties $Properties - } - } - } -} - -function Disable-PSTrace -{ - param( - [switch] $AnalyticOnly - ) - $Properties = Get-LogProperties ($script:psprovidername + $script:analyticlog) - if ($Properties.Enabled) { - $Properties.Enabled = $false - Set-LogProperties $Properties - } - - if (!$AnalyticOnly) { - $Properties = Get-LogProperties ($script:psprovidername + $script:debuglog) - if ($Properties.Enabled) { - $Properties.Enabled = $false - Set-LogProperties $Properties - } - } -} -Add-Type @" -using System; - -namespace Microsoft.PowerShell.Diagnostics -{ - public class LogDetails - { - public string Name - { - get - { - return name; - } - } - private string name; - - public bool Enabled - { - get - { - return enabled; - } - set - { - enabled = value; - } - } - private bool enabled; - - public string Type - { - get - { - return type; - } - } - private string type; - - public bool Retention - { - get - { - return retention; - } - set - { - retention = value; - } - } - private bool retention; - - public bool AutoBackup - { - get - { - return autoBackup; - } - set - { - autoBackup = value; - } - } - private bool autoBackup; - - public int MaxLogSize - { - get - { - return maxLogSize; - } - set - { - maxLogSize = value; - } - } - private int maxLogSize; - - public LogDetails(string name, bool enabled, string type, bool retention, bool autoBackup, int maxLogSize) - { - this.name = name; - this.enabled = enabled; - this.type = type; - this.retention = retention; - this.autoBackup = autoBackup; - this.maxLogSize = maxLogSize; - } - } -} -"@ - -if (Get-Command logman.exe -Type Application -ErrorAction SilentlyContinue) -{ - Export-ModuleMember Disable-PSTrace, Disable-PSWSManCombinedTrace, Disable-WSManTrace, Enable-PSTrace, Enable-PSWSManCombinedTrace, Enable-WSManTrace, Get-LogProperties, Set-LogProperties, Start-Trace, Stop-Trace -} -else -{ - # Currently we only support these cmdlets as logman.exe is not available on systems like Nano and IoT - Export-ModuleMember Disable-PSTrace, Enable-PSTrace, Get-LogProperties, Set-LogProperties -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCBzuFp8c8UN6ilP -# /hSmUPDtAUbo8uWTs6wUbaR/ZpM1B6CCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgSB3jjVY/ -# WMZ8WHFGDewy2JQLkkMsgxe7OQ9hGxl1POAwQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQDECdQe+dGfTQ9+1MUoap76UXkZqRUtWJtHANEX9QRF -# zu/zYxq/dvy7faWSumOPbC+fRwu+83u+3CYadkq+B7I6NDeWqTacnJnPk+uV78yi -# UnGjJx9i8cu6fUBS7HhFg1+VS5IZsor64K33Etj9NPBvVxW/AdbcA1Vm1/HCcnfC -# ZVVP8SUsEQsnksf1sgEix5zjYP5yoRrc7zZ31CsfFUseccW0GbjWVellm+JVYQR8 -# PyRw/UvU9wBEGmoG05yKQHMtIQzbgamTF+mFpvvLdNamUk2kTBtPw8esiUQSQSKT -# 893Bw7LCuWiqo8pwi1U45lsh2/5GrxKGyLwQY3vXep01oYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIEeWczI88EUPcg8HePXnLkMZtTRhTovyeZypUyUE -# AkF4AgZhlV5AOFwYEzIwMjExMjA4MjEwNDE0LjA2NVowBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046M0JENC00QjgwLTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYm0v4YwhBxL -# jwABAAABiTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3NDFaFw0yMzAxMjYxOTI3NDFaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjNCRDQtNEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvQZXxZFm -# a6plmuOyvNpV8xONOwcYolZG/BjyZWGSk5JOGaLyrKId5VxVHWHlsmJE4Svnzsdp -# sKmVx8otONveIUFvSceEZp8VXmu5m1fu8L7c+3lwXcibjccqtEvtQslokQVx0r+L -# 54abrNDarwFG73IaRidIS1i9c+unJ8oYyhDRLrCysFAVxyQhPNZkWK7Z8/VGukaK -# LAWHXCh/+R53h42gFL+9/mAALxzCXXuofi8f/XKCm7xNwVc1hONCCz6oq94AufzV -# NkkIW4brUQgYpCcJm9U0XNmQvtropYDn9UtY8YQ0NKenXPtdgLHdQ8Nnv3igErKL -# rWI0a5n5jjdKfwk+8mvakqdZmlOseeOS1XspQNJAK1uZllAITcnQZOcO5ofjOQ33 -# ujWckAXdz+/x3o7l4AU/TSOMzGZMwhUdtVwC3dSbItpSVFgnjM2COEJ9zgCadvOi -# rGDLN471jZI2jClkjsJTdgPk343TQA4JFvds/unZq0uLr+niZ3X44OBx2x+gVlln -# 2c4UbZXNueA4yS1TJGbbJFIILAmTUA9Auj5eISGTbNiyWx79HnCOTar39QEKozm4 -# LnTmDXy0/KI/H/nYZGKuTHfckP28wQS06rD+fDS5xLwcRMCW92DkHXmtbhGyRilB -# OL5LxZelQfxt54wl4WUC0AdAEolPekODwO8CAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBSXbx+zR1p4IIAeguA6rHKkrfl7UDAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQCOtLdpWUI4KwfLLrfaKrLB92Dq -# bAspGWM41TaO4Jl+sHxPo522uu3GKQCjmkRWreHtlfyy9kOk7LWax3k3ke8Gtfet -# fbh7qH0LeV2XOWg39BOnHf6mTcZq7FYSZZch1JDQjc98+Odlow+oWih0Dbt4CV/e -# 19ZcE+1n1zzWkskUEd0f5jPIUis33p+vkY8szduAtCcIcPFUhI8Hb5alPUAPMjGz -# wKb7NIKbnf8j8cP18As5IveckF0oh1cw63RY/vPK62LDYdpi7WnG2ObvngfWVKtw -# iwTI4jHj2cO9q37HDe/PPl216gSpUZh0ap24mKmMDfcKp1N4mEdsxz4oseOrPYeF -# sHHWJFJ6Aivvqn70KTeJpp5r+DxSqbeSy0mxIUOq/lAaUxgNSQVUX26t8r+fciko -# fKv23WHrtRV3t7rVTsB9YzrRaiikmz68K5HWdt9MqULxPQPo+ppZ0LRqkOae466+ -# UKRY0JxWtdrMc5vHlHZfnqjawj/RsM2S6Q6fa9T9CnY1Nz7DYBG3yZJyCPFsrgU0 -# 5s9ljqfsSptpFdUh9R4ce+L71SWDLM2x/1MFLLHAMbXsEp8KloEGtaDULnxtfS2t -# YhfuKGqRXoEfDPAMnIdTvQPh3GHQ4SjkkBARHL0MY75alhGTKHWjC2aLVOo8obKI -# Bk8hfnFDUf/EyVw4uTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0JENC00Qjgw -# LTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVACGlCa3ketyeuey7bJNpWkMuiCcQoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tYMCIY -# DzIwMjExMjA5MDM1MTUyWhgPMjAyMTEyMTAwMzUxNTJaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi1gCAQAwCgIBAAICHvwCAf8wBwIBAAICETcwCgIFAOVc3NgC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQCbF/Q1IJzqUwQBkXn+GjUxZzVN -# O+9p1fpL7W8dEy9/m1L7dl968KiYqfO5rekvXeSUDTFYrkS/r0w8p2ZZ7d0TMtJt -# TrKmc85aRmxtSvCNAS2stE2sS2Y5np5+/02w3DDn3Nni6vvF8nsuiIlbiyHrGQrC -# 9eis1rpLSNvXisSYoDGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABibS/hjCEHEuPAAEAAAGJMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIE9C -# YLePpB7z2n25zIz6S9czmnMvqhq9zWDUWGRetdy3MIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgZndHMdxQV1VsbpWHOTHqWEycvcRJm7cY69l/UmT8j0UwgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYm0v4YwhBxL -# jwABAAABiTAiBCCErc3WAJDL+6+RTcx4qvTV2Dv0bP6a0jmZjnUp3u9sbzANBgkq -# hkiG9w0BAQsFAASCAgCLuF4LX6ghAt1uercf24wmzMJ22FHRyklnWLILmQXDOSwZ -# bLzptb/gXN2KtDnQU3xF02SLNfmPvFCYkU7l9pYTmDQ18Pm6GtnwLMke8xbMlWsl -# 2gZCMMI3Q40kidzeZ3yYggxf5a+YP0JI3rcgZuRDnEeJ69oUqVvD/sWPTuWqKV7V -# 2jb5gnLURKrzDKPYf1trvb7M2oRkxXToLOEtbsHI2O46WJCbGrYlERk6Sp8+nmPD -# oQ7Lz8Vq5xXn3L8z3QqDI0UCdxxd32JBQbzMZ21xI+JgljiGXv3TSrtz+0M88mLM -# m+Kf7LHqDN3v6xfGI+AWD5KPfxzLekMmtTIlkeA93MolkgeFfkx5BpqbWLrbd63S -# RzhF88sZt47hwzoDfn4DMzFOrtbJqbdVWcVtIgY07AmWUSvpNtXgljty4kzg1rHV -# v2m6ezcnQa0D9a8WQJSd+gRfD6BEmDBOyGL7w49Tcgp2vZiWWdnHrWeRXMp+N4Fs -# 4IbQ51teHXISCvqZoVaz8/jEvWPftKkwcXuM89+S7hN4NMq0zpON1lizLV/FPP7p -# bpAQuaBgSY2f0Hfyko8JAH/KJFpmuzjTTcUAwvru2dsCdakB4kd6k6JHpu+XjWez -# M4lfX7MZegJiXfCQ8QBIKwg80WLwjJjjHrvTap+yPG9goxm6Nzh+UftgAcz+Qw== -# SIG # End signature block diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.Odbc.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.Odbc.dll deleted file mode 100644 index cc9c1da..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.OleDb.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.OleDb.dll deleted file mode 100644 index 95d3e71..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.OleDb.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll deleted file mode 100644 index bc23526..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll deleted file mode 100644 index 03b44f1..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll deleted file mode 100644 index 235a22f..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll deleted file mode 100644 index 58eacf8..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll deleted file mode 100644 index 7f910de..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.dll deleted file mode 100644 index 650007c..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll deleted file mode 100644 index 7c9e87b..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.IO.Ports.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.IO.Ports.dll deleted file mode 100644 index b678ac4..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.IO.Ports.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.Automation.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.Automation.dll deleted file mode 100644 index 0c2333e..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.Automation.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.dll deleted file mode 100644 index 3e409fa..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll deleted file mode 100644 index 2b6fda4..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll deleted file mode 100644 index bdca76d..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll deleted file mode 100644 index 10c0dd8..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll deleted file mode 100644 index 332dbfa..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll deleted file mode 100644 index 8a6feee..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Speech.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Speech.dll deleted file mode 100644 index b551f9c..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Speech.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Threading.AccessControl.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Threading.AccessControl.dll deleted file mode 100644 index 8109eae..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Threading.AccessControl.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll deleted file mode 100644 index 69f0d1b..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll deleted file mode 100644 index d92be8f..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index c70b1d3..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 6d14e76..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll deleted file mode 100644 index 2e5c7ea..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x64/native/mi.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x64/native/mi.dll deleted file mode 100644 index f169cbe..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x64/native/mi.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x64/native/miutils.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x64/native/miutils.dll deleted file mode 100644 index f9c9d3f..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x64/native/miutils.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index e1819d5..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 13d9f3b..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll deleted file mode 100644 index 434e1f4..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x86/native/mi.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x86/native/mi.dll deleted file mode 100644 index cfa3846..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x86/native/mi.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x86/native/miutils.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x86/native/miutils.dll deleted file mode 100644 index 6a6fdd1..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x86/native/miutils.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index c70b1d3..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 6d14e76..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll deleted file mode 100644 index 90fc1b2..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x64/native/mi.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x64/native/mi.dll deleted file mode 100644 index 75de9d2..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x64/native/mi.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x64/native/miutils.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x64/native/miutils.dll deleted file mode 100644 index d6d3465..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x64/native/miutils.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index e1819d5..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 13d9f3b..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll deleted file mode 100644 index 7a2fe92..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x86/native/mi.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x86/native/mi.dll deleted file mode 100644 index f0f556f..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x86/native/mi.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x86/native/miutils.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x86/native/miutils.dll deleted file mode 100644 index 19dbafc..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x86/native/miutils.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index c70b1d3..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 6d14e76..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x64/native/mi.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x64/native/mi.dll deleted file mode 100644 index 34043ba..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x64/native/mi.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x64/native/miutils.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x64/native/miutils.dll deleted file mode 100644 index 0579e97..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x64/native/miutils.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index e1819d5..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 13d9f3b..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x86/native/mi.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x86/native/mi.dll deleted file mode 100644 index f303e1e..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x86/native/mi.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x86/native/miutils.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x86/native/miutils.dll deleted file mode 100644 index d305891..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x86/native/miutils.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index c70b1d3..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 6d14e76..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll deleted file mode 100644 index 8af4889..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x64/native/mi.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x64/native/mi.dll deleted file mode 100644 index 46dedce..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x64/native/mi.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x64/native/miutils.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x64/native/miutils.dll deleted file mode 100644 index 3c8ebbd..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x64/native/miutils.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index e1819d5..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 13d9f3b..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll deleted file mode 100644 index 9dcbfd1..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x86/native/mi.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x86/native/mi.dll deleted file mode 100644 index 087163a..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x86/native/mi.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x86/native/miutils.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x86/native/miutils.dll deleted file mode 100644 index 21ad782..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x86/native/miutils.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 56f6a16..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 81ce1fc..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/tr/System.Private.ServiceModel.resources.dll b/linguard/Cli/bin/Debug/net6.0/tr/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 4a0bd6f..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/tr/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/tr/System.Web.Services.Description.resources.dll b/linguard/Cli/bin/Debug/net6.0/tr/System.Web.Services.Description.resources.dll deleted file mode 100644 index 7917190..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/tr/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index ffe2682..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index d17ccb3..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/zh-Hans/System.Private.ServiceModel.resources.dll b/linguard/Cli/bin/Debug/net6.0/zh-Hans/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 8e8fe2e..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/zh-Hans/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/zh-Hans/System.Web.Services.Description.resources.dll b/linguard/Cli/bin/Debug/net6.0/zh-Hans/System.Web.Services.Description.resources.dll deleted file mode 100644 index 903dca8..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/zh-Hans/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 2efe878..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 62c7b50..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/zh-Hant/System.Private.ServiceModel.resources.dll b/linguard/Cli/bin/Debug/net6.0/zh-Hant/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 2001bc8..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/zh-Hant/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Cli/bin/Debug/net6.0/zh-Hant/System.Web.Services.Description.resources.dll b/linguard/Cli/bin/Debug/net6.0/zh-Hant/System.Web.Services.Description.resources.dll deleted file mode 100644 index 6bf5a85..0000000 Binary files a/linguard/Cli/bin/Debug/net6.0/zh-Hant/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Cli/obj/Cli.csproj.nuget.dgspec.json b/linguard/Cli/obj/Cli.csproj.nuget.dgspec.json deleted file mode 100644 index 6488d2c..0000000 --- a/linguard/Cli/obj/Cli.csproj.nuget.dgspec.json +++ /dev/null @@ -1,222 +0,0 @@ -{ - "format": 1, - "restore": { - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj": {} - }, - "projects": { - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj": { - "version": "2.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj", - "projectName": "Linguard.Cli", - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj", - "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": { - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj": { - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "CommandLineParser": { - "target": "Package", - "version": "[2.8.0, )" - }, - "FluentValidation": { - "target": "Package", - "version": "[10.3.6, )" - }, - "Typin": { - "target": "Package", - "version": "[3.1.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" - } - } - }, - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj": { - "version": "2.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj", - "projectName": "Linguard.Core", - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj", - "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": { - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj": { - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "Bogus": { - "target": "Package", - "version": "[34.0.1, )" - }, - "ByteSize": { - "target": "Package", - "version": "[2.1.1, )" - }, - "FluentValidation": { - "target": "Package", - "version": "[10.3.6, )" - }, - "IPNetwork2": { - "target": "Package", - "version": "[2.5.386, )" - }, - "Microsoft.PowerShell.SDK": { - "target": "Package", - "version": "[7.2.1, )" - }, - "System.Management.Automation": { - "target": "Package", - "version": "[7.2.1, )" - }, - "YamlDotNet": { - "target": "Package", - "version": "[11.2.1, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" - } - } - }, - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj": { - "version": "2.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj", - "projectName": "Linguard.Log", - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj", - "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "NLog": { - "target": "Package", - "version": "[4.7.13, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/linguard/Cli/obj/Cli.csproj.nuget.g.props b/linguard/Cli/obj/Cli.csproj.nuget.g.props deleted file mode 100644 index 4890622..0000000 --- a/linguard/Cli/obj/Cli.csproj.nuget.g.props +++ /dev/null @@ -1,18 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\theyu\.nuget\packages\ - PackageReference - 6.0.0 - - - - - - C:\Users\theyu\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.2 - - \ No newline at end of file diff --git a/linguard/Cli/obj/Cli.csproj.nuget.g.targets b/linguard/Cli/obj/Cli.csproj.nuget.g.targets deleted file mode 100644 index 3dc06ef..0000000 --- a/linguard/Cli/obj/Cli.csproj.nuget.g.targets +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/linguard/Cli/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/linguard/Cli/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs deleted file mode 100644 index 36203c7..0000000 --- a/linguard/Cli/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/linguard/Cli/obj/Debug/net6.0/Cli.AssemblyInfo.cs b/linguard/Cli/obj/Debug/net6.0/Cli.AssemblyInfo.cs deleted file mode 100644 index 73b0f17..0000000 --- a/linguard/Cli/obj/Debug/net6.0/Cli.AssemblyInfo.cs +++ /dev/null @@ -1,22 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("José Antonio Mazón San Bartolomé")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("2.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("2.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("Linguard")] -[assembly: System.Reflection.AssemblyTitleAttribute("Linguard.Cli")] -[assembly: System.Reflection.AssemblyVersionAttribute("2.0.0.0")] - -// Generado por la clase WriteCodeFragment de MSBuild. - diff --git a/linguard/Cli/obj/Debug/net6.0/Cli.AssemblyInfoInputs.cache b/linguard/Cli/obj/Debug/net6.0/Cli.AssemblyInfoInputs.cache deleted file mode 100644 index ecd13b4..0000000 --- a/linguard/Cli/obj/Debug/net6.0/Cli.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -e93bb398f884ef112e0e0a3ad277cd22a7383632 diff --git a/linguard/Cli/obj/Debug/net6.0/Cli.GeneratedMSBuildEditorConfig.editorconfig b/linguard/Cli/obj/Debug/net6.0/Cli.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 7f1e5c9..0000000 --- a/linguard/Cli/obj/Debug/net6.0/Cli.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,10 +0,0 @@ -is_global = true -build_property.TargetFramework = net6.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = Linguard.Cli -build_property.ProjectDir = C:\Users\theyu\repos\linguard\Linguard\Cli\ diff --git a/linguard/Cli/obj/Debug/net6.0/Cli.GlobalUsings.g.cs b/linguard/Cli/obj/Debug/net6.0/Cli.GlobalUsings.g.cs deleted file mode 100644 index 8578f3d..0000000 --- a/linguard/Cli/obj/Debug/net6.0/Cli.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -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/linguard/Cli/obj/Debug/net6.0/Cli.Program.g.cs b/linguard/Cli/obj/Debug/net6.0/Cli.Program.g.cs deleted file mode 100644 index b49441c..0000000 Binary files a/linguard/Cli/obj/Debug/net6.0/Cli.Program.g.cs and /dev/null differ diff --git a/linguard/Cli/obj/Debug/net6.0/Cli.assets.cache b/linguard/Cli/obj/Debug/net6.0/Cli.assets.cache deleted file mode 100644 index ab63974..0000000 Binary files a/linguard/Cli/obj/Debug/net6.0/Cli.assets.cache and /dev/null differ diff --git a/linguard/Cli/obj/Debug/net6.0/Cli.csproj.AssemblyReference.cache b/linguard/Cli/obj/Debug/net6.0/Cli.csproj.AssemblyReference.cache deleted file mode 100644 index d6c0809..0000000 Binary files a/linguard/Cli/obj/Debug/net6.0/Cli.csproj.AssemblyReference.cache and /dev/null differ diff --git a/linguard/Cli/obj/Debug/net6.0/Cli.csproj.CopyComplete b/linguard/Cli/obj/Debug/net6.0/Cli.csproj.CopyComplete deleted file mode 100644 index e69de29..0000000 diff --git a/linguard/Cli/obj/Debug/net6.0/Cli.csproj.CoreCompileInputs.cache b/linguard/Cli/obj/Debug/net6.0/Cli.csproj.CoreCompileInputs.cache deleted file mode 100644 index 223e8d0..0000000 --- a/linguard/Cli/obj/Debug/net6.0/Cli.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -a44eea4834973ae1dc05baaafab7ae35712a94bb diff --git a/linguard/Cli/obj/Debug/net6.0/Cli.csproj.FileListAbsolute.txt b/linguard/Cli/obj/Debug/net6.0/Cli.csproj.FileListAbsolute.txt deleted file mode 100644 index 8966702..0000000 --- a/linguard/Cli/obj/Debug/net6.0/Cli.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,875 +0,0 @@ -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\Microsoft.CSharp.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\Microsoft.VisualBasic.Core.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\Microsoft.VisualBasic.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\Microsoft.Win32.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\Microsoft.Win32.Registry.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.AppContext.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Buffers.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Collections.Concurrent.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Collections.Immutable.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Collections.NonGeneric.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Collections.Specialized.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Collections.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.ComponentModel.Annotations.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.ComponentModel.DataAnnotations.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.ComponentModel.EventBasedAsync.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.ComponentModel.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.ComponentModel.TypeConverter.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.ComponentModel.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Configuration.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Console.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Core.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Data.Common.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Data.DataSetExtensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Data.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.Contracts.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.Debug.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.DiagnosticSource.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.FileVersionInfo.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.Process.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.StackTrace.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.TextWriterTraceListener.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.Tools.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.TraceSource.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.Tracing.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Drawing.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Drawing.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Dynamic.Runtime.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Formats.Asn1.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Globalization.Calendars.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Globalization.Extensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Globalization.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.Compression.Brotli.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.Compression.FileSystem.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.Compression.ZipFile.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.Compression.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.FileSystem.AccessControl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.FileSystem.DriveInfo.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.FileSystem.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.FileSystem.Watcher.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.FileSystem.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.IsolatedStorage.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.MemoryMappedFiles.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.Pipes.AccessControl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.Pipes.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.UnmanagedMemoryStream.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Linq.Expressions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Linq.Parallel.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Linq.Queryable.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Linq.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Memory.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.Http.Json.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.Http.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.HttpListener.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.Mail.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.NameResolution.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.NetworkInformation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.Ping.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.Requests.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.Security.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.ServicePoint.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.Sockets.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.WebClient.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.WebHeaderCollection.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.WebProxy.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.WebSockets.Client.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.WebSockets.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Numerics.Vectors.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Numerics.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.ObjectModel.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.DispatchProxy.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.Emit.ILGeneration.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.Emit.Lightweight.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.Emit.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.Extensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.Metadata.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.TypeExtensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Resources.Reader.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Resources.ResourceManager.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Resources.Writer.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.CompilerServices.Unsafe.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.CompilerServices.VisualC.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Extensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Handles.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.InteropServices.RuntimeInformation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.InteropServices.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Intrinsics.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Loader.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Numerics.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Serialization.Formatters.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Serialization.Json.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Serialization.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Serialization.Xml.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Serialization.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.AccessControl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Claims.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Cryptography.Algorithms.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Cryptography.Cng.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Cryptography.Csp.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Cryptography.Encoding.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Cryptography.OpenSsl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Cryptography.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Cryptography.X509Certificates.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Principal.Windows.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Principal.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.SecureString.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.ServiceModel.Web.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.ServiceProcess.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Text.Encoding.CodePages.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Text.Encoding.Extensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Text.Encoding.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Text.Encodings.Web.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Text.Json.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Text.RegularExpressions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.Channels.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.Overlapped.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.Tasks.Dataflow.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.Tasks.Extensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.Tasks.Parallel.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.Tasks.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.Thread.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.ThreadPool.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.Timer.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Transactions.Local.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Transactions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.ValueTuple.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Web.HttpUtility.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Web.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Windows.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.Linq.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.ReaderWriter.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.Serialization.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.XDocument.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.XPath.XDocument.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.XPath.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.XmlDocument.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.XmlSerializer.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\WindowsBase.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\mscorlib.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\netstandard.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\CimCmdlets\CimCmdlets.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Diagnostics.format.ps1xml -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Event.format.ps1xml -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\GetEvent.types.ps1xml -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Microsoft.PowerShell.Diagnostics.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\Microsoft.WSMan.Management.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\WSMan.format.ps1xml -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psm1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Linguard.Cli.exe -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Linguard.Cli.deps.json -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Linguard.Cli.runtimeconfig.json -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Linguard.Cli.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\Linguard.Cli.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Linguard.Cli.pdb -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Net.IPNetwork.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Markdig.Signed.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Microsoft.ApplicationInsights.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Microsoft.Bcl.AsyncInterfaces.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Microsoft.CodeAnalysis.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Microsoft.CodeAnalysis.CSharp.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Microsoft.Extensions.ObjectPool.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Microsoft.PowerShell.MarkdownRender.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Microsoft.Win32.Registry.AccessControl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Microsoft.Win32.SystemEvents.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Namotion.Reflection.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Newtonsoft.Json.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\NJsonSchema.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.CodeDom.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.ComponentModel.Composition.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.ComponentModel.Composition.Registration.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Configuration.ConfigurationManager.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Data.OleDb.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Data.SqlClient.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Diagnostics.EventLog.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Diagnostics.PerformanceCounter.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.DirectoryServices.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.DirectoryServices.AccountManagement.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.DirectoryServices.Protocols.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Drawing.Common.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.IO.Packaging.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.IO.Ports.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Management.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Net.Http.WinHttpHandler.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Private.ServiceModel.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Reflection.Context.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Runtime.Caching.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Security.Cryptography.Pkcs.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Security.Cryptography.ProtectedData.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Security.Cryptography.Xml.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Security.Permissions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.ServiceModel.Duplex.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.ServiceModel.Http.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.ServiceModel.NetTcp.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.ServiceModel.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.ServiceModel.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.ServiceModel.Security.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.ServiceModel.Syndication.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.ServiceProcess.ServiceController.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Speech.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Threading.AccessControl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Web.Services.Description.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Windows.Extensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\YamlDotNet.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\cs\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\de\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\es\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\fr\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\it\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ja\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ko\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\pl\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\pt-BR\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ru\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\tr\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\cs\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\de\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\es\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\fr\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\it\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ja\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ko\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\pl\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\pt-BR\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ru\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\tr\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\zh-Hans\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\zh-Hant\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\cs\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\de\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\es\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\fr\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\it\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ja\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ko\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\pl\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\pt-BR\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ru\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\tr\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\zh-Hans\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\zh-Hant\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Management.Infrastructure.CimCmdlets.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm64\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm64\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x64\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x64\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x86\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x86\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x64\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x64\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x86\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x86\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win8-x64\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win8-x64\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win8-x86\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win8-x86\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x64\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x64\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x86\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x86\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Diagnostics.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.CoreCLR.Eventing.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-arm\native\libpsl-native.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-arm64\native\libpsl-native.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-musl-x64\native\libpsl-native.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-x64\native\libmi.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-x64\native\libpsl-native.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-x64\native\libpsrpclient.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\osx\native\libmi.dylib -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\osx\native\libpsl-native.dylib -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\osx\native\libpsrpclient.dylib -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm\native\PowerShell.Core.Instrumentation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm\native\pwrshplugin.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm64\native\PowerShell.Core.Instrumentation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm64\native\pwrshplugin.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-x64\native\PowerShell.Core.Instrumentation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-x64\native\pwrshplugin.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-x86\native\PowerShell.Core.Instrumentation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-x86\native\pwrshplugin.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.SDK.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.SDK.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Security.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Security.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Win32.Registry.AccessControl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.WSMan.Management.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.WSMan.Runtime.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-arm\native\libSystem.IO.Ports.Native.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-arm64\native\libSystem.IO.Ports.Native.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-x64\native\libSystem.IO.Ports.Native.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\osx-arm64\native\libSystem.IO.Ports.Native.dylib -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\osx-x64\native\libSystem.IO.Ports.Native.dylib -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm64\native\sni.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-x64\native\sni.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-x86\native\sni.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\freebsd\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\illumos\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\ios\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\linux\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\osx\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\solaris\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\tvos\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Data.OleDb.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.Messages.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.PerformanceCounter.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.AccountManagement.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\linux\lib\net6.0\System.DirectoryServices.Protocols.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\osx\lib\net6.0\System.DirectoryServices.Protocols.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.Protocols.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.IO.Ports.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.IO.Ports.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Management.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.Management.Automation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Management.Automation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Net.Http.WinHttpHandler.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Runtime.Caching.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Security.Cryptography.Pkcs.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.ServiceProcess.ServiceController.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Speech.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Threading.AccessControl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Linguard.Core.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Linguard.Log.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Linguard.Core.pdb -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Linguard.Log.pdb -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\obj\Debug\net6.0\Cli.csproj.AssemblyReference.cache -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\obj\Debug\net6.0\Cli.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\obj\Debug\net6.0\Cli.AssemblyInfoInputs.cache -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\obj\Debug\net6.0\Cli.AssemblyInfo.cs -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\obj\Debug\net6.0\Cli.csproj.CoreCompileInputs.cache -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\obj\Debug\net6.0\Cli.csproj.CopyComplete -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\obj\Debug\net6.0\Linguard.Cli.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\obj\Debug\net6.0\ref\Linguard.Cli.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\obj\Debug\net6.0\Linguard.Cli.pdb -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\obj\Debug\net6.0\Cli.genruntimeconfig.cache -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\NLog.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\NLog.config -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\CommandLine.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Microsoft.Extensions.DependencyInjection.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Microsoft.Extensions.Logging.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Microsoft.Extensions.Logging.Abstractions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Microsoft.Extensions.Logging.Debug.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Microsoft.Extensions.Options.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Microsoft.Extensions.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Typin.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Typin.Core.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Bogus.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\FluentValidation.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\Microsoft.CSharp.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\Microsoft.VisualBasic.Core.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\Microsoft.VisualBasic.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\Microsoft.Win32.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\Microsoft.Win32.Registry.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.AppContext.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Buffers.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Collections.Concurrent.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Collections.Immutable.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Collections.NonGeneric.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Collections.Specialized.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Collections.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.ComponentModel.Annotations.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.ComponentModel.DataAnnotations.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.ComponentModel.EventBasedAsync.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.ComponentModel.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.ComponentModel.TypeConverter.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.ComponentModel.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Configuration.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Console.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Core.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Data.Common.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Data.DataSetExtensions.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Data.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.Contracts.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.Debug.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.DiagnosticSource.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.FileVersionInfo.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.Process.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.StackTrace.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.TextWriterTraceListener.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.Tools.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.TraceSource.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.Tracing.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Drawing.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Drawing.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Dynamic.Runtime.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Formats.Asn1.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Globalization.Calendars.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Globalization.Extensions.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Globalization.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.Compression.Brotli.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.Compression.FileSystem.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.Compression.ZipFile.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.Compression.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.FileSystem.AccessControl.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.FileSystem.DriveInfo.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.FileSystem.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.FileSystem.Watcher.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.FileSystem.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.IsolatedStorage.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.MemoryMappedFiles.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.Pipes.AccessControl.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.Pipes.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.UnmanagedMemoryStream.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Linq.Expressions.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Linq.Parallel.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Linq.Queryable.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Linq.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Memory.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.Http.Json.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.Http.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.HttpListener.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.Mail.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.NameResolution.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.NetworkInformation.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.Ping.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.Requests.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.Security.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.ServicePoint.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.Sockets.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.WebClient.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.WebHeaderCollection.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.WebProxy.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.WebSockets.Client.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.WebSockets.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Numerics.Vectors.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Numerics.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.ObjectModel.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.DispatchProxy.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.Emit.ILGeneration.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.Emit.Lightweight.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.Emit.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.Extensions.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.Metadata.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.TypeExtensions.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Resources.Reader.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Resources.ResourceManager.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Resources.Writer.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.CompilerServices.Unsafe.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.CompilerServices.VisualC.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Extensions.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Handles.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.InteropServices.RuntimeInformation.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.InteropServices.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Intrinsics.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Loader.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Numerics.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Serialization.Formatters.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Serialization.Json.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Serialization.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Serialization.Xml.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Serialization.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.AccessControl.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Claims.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Cryptography.Algorithms.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Cryptography.Cng.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Cryptography.Csp.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Cryptography.Encoding.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Cryptography.OpenSsl.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Cryptography.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Cryptography.X509Certificates.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Principal.Windows.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Principal.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.SecureString.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.ServiceModel.Web.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.ServiceProcess.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Text.Encoding.CodePages.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Text.Encoding.Extensions.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Text.Encoding.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Text.Encodings.Web.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Text.Json.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Text.RegularExpressions.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.Channels.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.Overlapped.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.Tasks.Dataflow.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.Tasks.Extensions.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.Tasks.Parallel.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.Tasks.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.Thread.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.ThreadPool.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.Timer.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Transactions.Local.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Transactions.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.ValueTuple.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Web.HttpUtility.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Web.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Windows.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.Linq.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.ReaderWriter.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.Serialization.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.XDocument.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.XPath.XDocument.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.XPath.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.XmlDocument.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.XmlSerializer.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\WindowsBase.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\mscorlib.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\netstandard.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\CimCmdlets\CimCmdlets.psd1 -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Diagnostics.format.ps1xml -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Event.format.ps1xml -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\GetEvent.types.ps1xml -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Microsoft.PowerShell.Diagnostics.psd1 -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\Microsoft.WSMan.Management.psd1 -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\WSMan.format.ps1xml -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psd1 -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psm1 -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\NLog.config -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Linguard.Cli.exe -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Linguard.Cli.deps.json -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Linguard.Cli.runtimeconfig.json -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Linguard.Cli.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\Linguard.Cli.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Linguard.Cli.pdb -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Bogus.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\CommandLine.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\FluentValidation.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Net.IPNetwork.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Markdig.Signed.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Microsoft.ApplicationInsights.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Microsoft.Bcl.AsyncInterfaces.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Microsoft.CodeAnalysis.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Microsoft.CodeAnalysis.CSharp.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Microsoft.Extensions.DependencyInjection.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Microsoft.Extensions.Logging.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Microsoft.Extensions.Logging.Abstractions.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Microsoft.Extensions.Logging.Debug.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Microsoft.Extensions.ObjectPool.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Microsoft.Extensions.Options.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Microsoft.Extensions.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Microsoft.PowerShell.MarkdownRender.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Microsoft.Win32.Registry.AccessControl.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Microsoft.Win32.SystemEvents.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Namotion.Reflection.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Newtonsoft.Json.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\NJsonSchema.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\NLog.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.CodeDom.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.ComponentModel.Composition.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.ComponentModel.Composition.Registration.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Configuration.ConfigurationManager.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Data.OleDb.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Data.SqlClient.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Diagnostics.EventLog.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Diagnostics.PerformanceCounter.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.DirectoryServices.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.DirectoryServices.AccountManagement.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.DirectoryServices.Protocols.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Drawing.Common.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.IO.Packaging.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.IO.Ports.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Management.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Net.Http.WinHttpHandler.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Private.ServiceModel.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Reflection.Context.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Runtime.Caching.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Security.Cryptography.Pkcs.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Security.Cryptography.ProtectedData.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Security.Cryptography.Xml.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Security.Permissions.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.ServiceModel.Duplex.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.ServiceModel.Http.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.ServiceModel.NetTcp.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.ServiceModel.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.ServiceModel.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.ServiceModel.Security.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.ServiceModel.Syndication.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.ServiceProcess.ServiceController.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Speech.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Threading.AccessControl.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Web.Services.Description.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Windows.Extensions.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Typin.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Typin.Core.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\YamlDotNet.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\cs\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\de\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\es\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\fr\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\it\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ja\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ko\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\pl\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\pt-BR\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ru\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\tr\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\cs\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\de\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\es\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\fr\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\it\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ja\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ko\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\pl\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\pt-BR\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ru\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\tr\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\zh-Hans\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\zh-Hant\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\cs\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\de\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\es\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\fr\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\it\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ja\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ko\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\pl\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\pt-BR\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ru\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\tr\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\zh-Hans\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\zh-Hant\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Management.Infrastructure.CimCmdlets.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm64\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm64\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x64\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x64\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x86\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x86\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x64\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x64\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x86\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x86\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win8-x64\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win8-x64\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win8-x86\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win8-x86\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x64\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x64\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x86\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x86\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Diagnostics.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.CoreCLR.Eventing.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-arm\native\libpsl-native.so -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-arm64\native\libpsl-native.so -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-musl-x64\native\libpsl-native.so -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-x64\native\libmi.so -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-x64\native\libpsl-native.so -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-x64\native\libpsrpclient.so -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\osx\native\libmi.dylib -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\osx\native\libpsl-native.dylib -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\osx\native\libpsrpclient.dylib -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm\native\PowerShell.Core.Instrumentation.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm\native\pwrshplugin.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm64\native\PowerShell.Core.Instrumentation.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm64\native\pwrshplugin.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-x64\native\PowerShell.Core.Instrumentation.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-x64\native\pwrshplugin.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-x86\native\PowerShell.Core.Instrumentation.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-x86\native\pwrshplugin.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.SDK.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.SDK.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Security.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Security.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Win32.Registry.AccessControl.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.WSMan.Management.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.WSMan.Runtime.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-arm\native\libSystem.IO.Ports.Native.so -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-arm64\native\libSystem.IO.Ports.Native.so -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-x64\native\libSystem.IO.Ports.Native.so -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\osx-arm64\native\libSystem.IO.Ports.Native.dylib -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\osx-x64\native\libSystem.IO.Ports.Native.dylib -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm64\native\sni.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-x64\native\sni.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-x86\native\sni.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\freebsd\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\illumos\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\ios\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\linux\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\osx\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\solaris\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\tvos\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Data.OleDb.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.Messages.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.PerformanceCounter.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.AccountManagement.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\linux\lib\net6.0\System.DirectoryServices.Protocols.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\osx\lib\net6.0\System.DirectoryServices.Protocols.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.Protocols.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.IO.Ports.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.IO.Ports.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Management.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.Management.Automation.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Management.Automation.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Net.Http.WinHttpHandler.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Runtime.Caching.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Security.Cryptography.Pkcs.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.ServiceProcess.ServiceController.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Speech.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Threading.AccessControl.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Linguard.Core.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Linguard.Log.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Linguard.Core.pdb -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Linguard.Log.pdb -C:\Users\theyu\repos\linguard\Linguard\Cli\obj\Debug\net6.0\Cli.csproj.AssemblyReference.cache -C:\Users\theyu\repos\linguard\Linguard\Cli\obj\Debug\net6.0\Cli.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\theyu\repos\linguard\Linguard\Cli\obj\Debug\net6.0\Cli.AssemblyInfoInputs.cache -C:\Users\theyu\repos\linguard\Linguard\Cli\obj\Debug\net6.0\Cli.AssemblyInfo.cs -C:\Users\theyu\repos\linguard\Linguard\Cli\obj\Debug\net6.0\Cli.csproj.CoreCompileInputs.cache -C:\Users\theyu\repos\linguard\Linguard\Cli\obj\Debug\net6.0\Cli.csproj.CopyComplete -C:\Users\theyu\repos\linguard\Linguard\Cli\obj\Debug\net6.0\Linguard.Cli.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\obj\Debug\net6.0\ref\Linguard.Cli.dll -C:\Users\theyu\repos\linguard\Linguard\Cli\obj\Debug\net6.0\Linguard.Cli.pdb -C:\Users\theyu\repos\linguard\Linguard\Cli\obj\Debug\net6.0\Cli.genruntimeconfig.cache -C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ByteSize.dll diff --git a/linguard/Cli/obj/Debug/net6.0/Cli.genruntimeconfig.cache b/linguard/Cli/obj/Debug/net6.0/Cli.genruntimeconfig.cache deleted file mode 100644 index eefb2c8..0000000 --- a/linguard/Cli/obj/Debug/net6.0/Cli.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -9e28c7f9e4075fd91a539e70a8fee676020fd65a diff --git a/linguard/Cli/obj/Debug/net6.0/Linguard.Cli.dll b/linguard/Cli/obj/Debug/net6.0/Linguard.Cli.dll deleted file mode 100644 index 5de6843..0000000 Binary files a/linguard/Cli/obj/Debug/net6.0/Linguard.Cli.dll and /dev/null differ diff --git a/linguard/Cli/obj/Debug/net6.0/Linguard.Cli.pdb b/linguard/Cli/obj/Debug/net6.0/Linguard.Cli.pdb deleted file mode 100644 index 4a718f4..0000000 Binary files a/linguard/Cli/obj/Debug/net6.0/Linguard.Cli.pdb and /dev/null differ diff --git a/linguard/Cli/obj/Debug/net6.0/apphost.exe b/linguard/Cli/obj/Debug/net6.0/apphost.exe deleted file mode 100644 index e8c7022..0000000 Binary files a/linguard/Cli/obj/Debug/net6.0/apphost.exe and /dev/null differ diff --git a/linguard/Cli/obj/Debug/net6.0/ref/Linguard.Cli.dll b/linguard/Cli/obj/Debug/net6.0/ref/Linguard.Cli.dll deleted file mode 100644 index 7069384..0000000 Binary files a/linguard/Cli/obj/Debug/net6.0/ref/Linguard.Cli.dll and /dev/null differ diff --git a/linguard/Cli/obj/project.assets.json b/linguard/Cli/obj/project.assets.json deleted file mode 100644 index 26edb55..0000000 --- a/linguard/Cli/obj/project.assets.json +++ /dev/null @@ -1,7321 +0,0 @@ -{ - "version": 3, - "targets": { - "net6.0": { - "Bogus/34.0.1": { - "type": "package", - "compile": { - "lib/net6.0/Bogus.dll": {} - }, - "runtime": { - "lib/net6.0/Bogus.dll": {} - } - }, - "ByteSize/2.1.1": { - "type": "package", - "compile": { - "lib/net5.0/ByteSize.dll": {} - }, - "runtime": { - "lib/net5.0/ByteSize.dll": {} - } - }, - "CommandLineParser/2.8.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/CommandLine.dll": {} - }, - "runtime": { - "lib/netstandard2.0/CommandLine.dll": {} - } - }, - "FluentValidation/10.3.6": { - "type": "package", - "compile": { - "lib/net6.0/FluentValidation.dll": {} - }, - "runtime": { - "lib/net6.0/FluentValidation.dll": {} - } - }, - "IPNetwork2/2.5.386": { - "type": "package", - "compile": { - "lib/net5.0/System.Net.IPNetwork.dll": {} - }, - "runtime": { - "lib/net5.0/System.Net.IPNetwork.dll": {} - } - }, - "Markdig.Signed/0.22.0": { - "type": "package", - "compile": { - "lib/netcoreapp3.1/Markdig.Signed.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Markdig.Signed.dll": {} - } - }, - "Microsoft.ApplicationInsights/2.18.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.DiagnosticSource": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {} - } - }, - "Microsoft.Bcl.AsyncInterfaces/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} - } - }, - "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": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {} - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.CodeAnalysis.Common": "[4.0.1]" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {} - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CSharp/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netstandard1.3/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "compile": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "Microsoft.Extensions.Logging/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "System.Diagnostics.DiagnosticSource": "6.0.0" - }, - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "Microsoft.Extensions.Logging.Debug/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "6.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {} - } - }, - "Microsoft.Extensions.ObjectPool/5.0.10": { - "type": "package", - "compile": { - "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": {} - }, - "runtime": { - "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": {} - } - }, - "Microsoft.Extensions.Options/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} - } - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "compile": { - "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} - }, - "runtime": { - "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "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": {} - }, - "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": {} - }, - "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": {} - }, - "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": {} - }, - "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": {} - }, - "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": {} - }, - "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": {}, - "ref/net6.0/Microsoft.PowerShell.ConsoleHost.dll": {}, - "ref/net6.0/System.Management.Automation.dll": {} - }, - "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": {} - }, - "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/_._": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {} - }, - "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": {} - }, - "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": {} - }, - "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": {} - }, - "runtime": { - "lib/netstandard2.0/Namotion.Reflection.dll": {} - } - }, - "Newtonsoft.Json/13.0.1": { - "type": "package", - "compile": { - "lib/netstandard2.0/Newtonsoft.Json.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": {} - } - }, - "NJsonSchema/10.5.2": { - "type": "package", - "dependencies": { - "Namotion.Reflection": "2.0.3", - "Newtonsoft.Json": "9.0.1" - }, - "compile": { - "lib/netstandard2.0/NJsonSchema.dll": {} - }, - "runtime": { - "lib/netstandard2.0/NJsonSchema.dll": {} - } - }, - "NLog/4.7.13": { - "type": "package", - "compile": { - "lib/netstandard2.0/NLog.dll": {} - }, - "runtime": { - "lib/netstandard2.0/NLog.dll": {} - } - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.CodeDom.dll": {} - }, - "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/_._": {} - } - }, - "System.Collections.Immutable/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Collections.Immutable.dll": {} - } - }, - "System.ComponentModel.Composition/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.ComponentModel.Composition.dll": {} - }, - "runtime": { - "lib/net6.0/System.ComponentModel.Composition.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.ComponentModel.Composition.Registration.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Configuration.ConfigurationManager.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Data.Odbc.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Data.OleDb.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/netcoreapp2.1/System.Data.SqlClient.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - } - }, - "System.Diagnostics.DiagnosticSource/6.0.0": { - "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {} - }, - "runtime": { - "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Diagnostics.EventLog/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Diagnostics.EventLog.dll": {} - }, - "runtime": { - "lib/net6.0/System.Diagnostics.EventLog.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.DirectoryServices.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.DirectoryServices.AccountManagement.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.DirectoryServices.Protocols.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Drawing.Common.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} - } - }, - "System.Formats.Asn1/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Formats.Asn1.dll": {} - }, - "runtime": { - "lib/net6.0/System.Formats.Asn1.dll": {} - }, - "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/_._": {} - } - }, - "System.IO/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.IO.dll": {} - } - }, - "System.IO.Packaging/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.IO.Packaging.dll": {} - }, - "runtime": { - "lib/net6.0/System.IO.Packaging.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.IO.Ports.dll": {} - }, - "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/_._": {} - }, - "runtime": { - "lib/netstandard1.6/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.Linq.Expressions.dll": {} - } - }, - "System.Management/6.0.0": { - "type": "package", - "dependencies": { - "System.CodeDom": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Management.dll": {} - }, - "runtime": { - "lib/net6.0/System.Management.dll": {} - }, - "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": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Net.Http.WinHttpHandler.dll": {} - }, - "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": {} - }, - "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": {} - }, - "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": {} - } - }, - "System.Reflection.Context/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/net6.0/System.Reflection.Context.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Reflection.DispatchProxy/4.7.1": { - "type": "package", - "compile": { - "ref/netstandard2.0/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/netcoreapp2.0/System.Reflection.DispatchProxy.dll": {} - } - }, - "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/_._": {} - }, - "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/_._": {} - }, - "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/_._": {} - }, - "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/_._": {} - } - }, - "System.Reflection.Metadata/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/_._": {} - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - } - }, - "System.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.dll": {} - } - }, - "System.Runtime.Caching/6.0.0": { - "type": "package", - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Runtime.Caching.dll": {} - }, - "runtime": { - "lib/net6.0/System.Runtime.Caching.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} - }, - "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/_._": {} - } - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - } - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - }, - "compile": { - "ref/netcoreapp1.1/_._": {} - } - }, - "System.Security.AccessControl/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Security.AccessControl.dll": {} - }, - "runtime": { - "lib/net6.0/System.Security.AccessControl.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Security.Cryptography.Pkcs.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Security.Cryptography.Xml.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Security.Permissions.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Security.Principal.Windows/5.0.0": { - "type": "package", - "compile": { - "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.ServiceModel.Duplex/4.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": {} - } - }, - "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": {} - } - }, - "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": {} - } - }, - "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": {}, - "lib/net6.0/System.ServiceModel.dll": {} - } - }, - "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": {} - } - }, - "System.ServiceModel.Syndication/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.ServiceModel.Syndication.dll": {} - }, - "runtime": { - "lib/net6.0/System.ServiceModel.Syndication.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.ServiceProcess.ServiceController.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Speech.dll": {} - }, - "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": {} - } - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Text.Encoding.CodePages.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Text.Encodings.Web.dll": {} - }, - "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/_._": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Threading.AccessControl.dll": {} - }, - "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": {} - } - }, - "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": {} - }, - "runtime": { - "lib/netstandard2.0/System.Web.Services.Description.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Windows.Extensions.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "Typin/3.1.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "6.0.0", - "Microsoft.Extensions.Logging.Debug": "6.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "Typin.Core": "3.1.0" - }, - "compile": { - "lib/net6.0/Typin.dll": {} - }, - "runtime": { - "lib/net6.0/Typin.dll": {} - } - }, - "Typin.Core/3.1.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "6.0.0" - }, - "compile": { - "lib/net6.0/Typin.Core.dll": {} - }, - "runtime": { - "lib/net6.0/Typin.Core.dll": {} - } - }, - "YamlDotNet/11.2.1": { - "type": "package", - "compile": { - "lib/netstandard2.1/YamlDotNet.dll": {} - }, - "runtime": { - "lib/netstandard2.1/YamlDotNet.dll": {} - } - }, - "Linguard.Core/2.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v6.0", - "dependencies": { - "Bogus": "34.0.1", - "ByteSize": "2.1.1", - "FluentValidation": "10.3.6", - "IPNetwork2": "2.5.386", - "Linguard.Log": "2.0.0", - "Microsoft.PowerShell.SDK": "7.2.1", - "System.Management.Automation": "7.2.1", - "YamlDotNet": "11.2.1" - }, - "compile": { - "bin/placeholder/Linguard.Core.dll": {} - }, - "runtime": { - "bin/placeholder/Linguard.Core.dll": {} - } - }, - "Linguard.Log/2.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v6.0", - "dependencies": { - "NLog": "4.7.13" - }, - "compile": { - "bin/placeholder/Linguard.Log.dll": {} - }, - "runtime": { - "bin/placeholder/Linguard.Log.dll": {} - } - } - } - }, - "libraries": { - "Bogus/34.0.1": { - "sha512": "49iq7QrD0wb7V4/FcK8p3dWdJxNUbojaqK9L6KRvdikIuRjt38EsNp7QXICcYdbYw01K8BHUdxlnTNn/YX3qDA==", - "type": "package", - "path": "bogus/34.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "bogus.34.0.1.nupkg.sha512", - "bogus.nuspec", - "lib/net40/Bogus.dll", - "lib/net40/Bogus.xml", - "lib/net6.0/Bogus.dll", - "lib/net6.0/Bogus.xml", - "lib/netstandard1.3/Bogus.dll", - "lib/netstandard1.3/Bogus.xml", - "lib/netstandard2.0/Bogus.dll", - "lib/netstandard2.0/Bogus.xml" - ] - }, - "ByteSize/2.1.1": { - "sha512": "D+Y3NpbHrW21vZwwegeWf/8iAg2Mr0s7n1su8Ysho+O9dctJ5/EkWUi19QVxc6+nZl080gGTXBP/Nz0twSI3dA==", - "type": "package", - "path": "bytesize/2.1.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "bytesize.2.1.1.nupkg.sha512", - "bytesize.nuspec", - "lib/net45/ByteSize.dll", - "lib/net45/ByteSize.xml", - "lib/net5.0/ByteSize.dll", - "lib/net5.0/ByteSize.xml", - "lib/netstandard1.0/ByteSize.dll", - "lib/netstandard1.0/ByteSize.xml", - "lib/netstandard2.0/ByteSize.dll", - "lib/netstandard2.0/ByteSize.xml", - "lib/netstandard2.1/ByteSize.dll", - "lib/netstandard2.1/ByteSize.xml" - ] - }, - "CommandLineParser/2.8.0": { - "sha512": "eco2HlKQBY4Joz9odHigzGpVzv6pjsXnY5lziioMveQxr+i2Z7xYcIOMeZTgYiqnMtMAbXMXsVhrNfWO5vJS8Q==", - "type": "package", - "path": "commandlineparser/2.8.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "CommandLine20.png", - "License.md", - "README.md", - "commandlineparser.2.8.0.nupkg.sha512", - "commandlineparser.nuspec", - "lib/net40/CommandLine.dll", - "lib/net40/CommandLine.xml", - "lib/net45/CommandLine.dll", - "lib/net45/CommandLine.xml", - "lib/net461/CommandLine.dll", - "lib/net461/CommandLine.xml", - "lib/netstandard2.0/CommandLine.dll", - "lib/netstandard2.0/CommandLine.xml" - ] - }, - "FluentValidation/10.3.6": { - "sha512": "iMd370ZDx6ydm8t7bIFdRbSKX0e42lpvCtifUSbTSXOk5iKjmgl7HU0PXBhIWQAyIRi3gCwfMI9luj8H6K+byw==", - "type": "package", - "path": "fluentvalidation/10.3.6", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "fluent-validation-icon.png", - "fluentvalidation.10.3.6.nupkg.sha512", - "fluentvalidation.nuspec", - "lib/net5.0/FluentValidation.dll", - "lib/net5.0/FluentValidation.xml", - "lib/net6.0/FluentValidation.dll", - "lib/net6.0/FluentValidation.xml", - "lib/netstandard2.0/FluentValidation.dll", - "lib/netstandard2.0/FluentValidation.xml", - "lib/netstandard2.1/FluentValidation.dll", - "lib/netstandard2.1/FluentValidation.xml" - ] - }, - "IPNetwork2/2.5.386": { - "sha512": "6ihnNm82vyJsUYYfR2BRTziY/mQ5UGLsQZuhdSYPeTlbQLhBW/4BC9hBz3h5bFDn8PkVw9dP0cpv9brIBmk4Fw==", - "type": "package", - "path": "ipnetwork2/2.5.386", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE", - "ipnetwork2.2.5.386.nupkg.sha512", - "ipnetwork2.nuspec", - "lib/net40/System.Net.IPNetwork.dll", - "lib/net40/System.Net.IPNetwork.xml", - "lib/net45/System.Net.IPNetwork.dll", - "lib/net45/System.Net.IPNetwork.xml", - "lib/net46/System.Net.IPNetwork.dll", - "lib/net46/System.Net.IPNetwork.xml", - "lib/net47/System.Net.IPNetwork.dll", - "lib/net47/System.Net.IPNetwork.xml", - "lib/net48/System.Net.IPNetwork.dll", - "lib/net48/System.Net.IPNetwork.xml", - "lib/net5.0/System.Net.IPNetwork.dll", - "lib/net5.0/System.Net.IPNetwork.xml", - "lib/netcoreapp3.1/System.Net.IPNetwork.dll", - "lib/netcoreapp3.1/System.Net.IPNetwork.xml", - "lib/netstandard1.6/System.Net.IPNetwork.dll", - "lib/netstandard1.6/System.Net.IPNetwork.xml", - "lib/netstandard2.0/System.Net.IPNetwork.dll", - "lib/netstandard2.0/System.Net.IPNetwork.xml", - "lib/netstandard2.1/System.Net.IPNetwork.dll", - "lib/netstandard2.1/System.Net.IPNetwork.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.DependencyInjection/6.0.0": { - "sha512": "k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/Microsoft.Extensions.DependencyInjection.dll", - "lib/net461/Microsoft.Extensions.DependencyInjection.xml", - "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", - "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", - "microsoft.extensions.dependencyinjection.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", - "microsoft.extensions.dependencyinjection.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging/6.0.0": { - "sha512": "eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", - "type": "package", - "path": "microsoft.extensions.logging/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Logging.dll", - "lib/net461/Microsoft.Extensions.Logging.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", - "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", - "microsoft.extensions.logging.6.0.0.nupkg.sha512", - "microsoft.extensions.logging.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging.Abstractions/6.0.0": { - "sha512": "/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", - "type": "package", - "path": "microsoft.extensions.logging.abstractions/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", - "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", - "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", - "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", - "build/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", - "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512", - "microsoft.extensions.logging.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging.Debug/6.0.0": { - "sha512": "M9g/JixseSZATJE9tcMn9uzoD4+DbSglivFqVx8YkRJ7VVPmnvCEbOZ0AAaxsL1EKyI4cz07DXOOJExxNsUOHw==", - "type": "package", - "path": "microsoft.extensions.logging.debug/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Logging.Debug.dll", - "lib/net461/Microsoft.Extensions.Logging.Debug.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml", - "microsoft.extensions.logging.debug.6.0.0.nupkg.sha512", - "microsoft.extensions.logging.debug.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "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.Extensions.Options/6.0.0": { - "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", - "type": "package", - "path": "microsoft.extensions.options/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Options.dll", - "lib/net461/Microsoft.Extensions.Options.xml", - "lib/netstandard2.0/Microsoft.Extensions.Options.dll", - "lib/netstandard2.0/Microsoft.Extensions.Options.xml", - "lib/netstandard2.1/Microsoft.Extensions.Options.dll", - "lib/netstandard2.1/Microsoft.Extensions.Options.xml", - "microsoft.extensions.options.6.0.0.nupkg.sha512", - "microsoft.extensions.options.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", - "type": "package", - "path": "microsoft.extensions.primitives/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/Microsoft.Extensions.Primitives.dll", - "lib/net461/Microsoft.Extensions.Primitives.xml", - "lib/net6.0/Microsoft.Extensions.Primitives.dll", - "lib/net6.0/Microsoft.Extensions.Primitives.xml", - "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll", - "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", - "microsoft.extensions.primitives.6.0.0.nupkg.sha512", - "microsoft.extensions.primitives.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "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.1": { - "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", - "type": "package", - "path": "newtonsoft.json/13.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.md", - "lib/net20/Newtonsoft.Json.dll", - "lib/net20/Newtonsoft.Json.xml", - "lib/net35/Newtonsoft.Json.dll", - "lib/net35/Newtonsoft.Json.xml", - "lib/net40/Newtonsoft.Json.dll", - "lib/net40/Newtonsoft.Json.xml", - "lib/net45/Newtonsoft.Json.dll", - "lib/net45/Newtonsoft.Json.xml", - "lib/netstandard1.0/Newtonsoft.Json.dll", - "lib/netstandard1.0/Newtonsoft.Json.xml", - "lib/netstandard1.3/Newtonsoft.Json.dll", - "lib/netstandard1.3/Newtonsoft.Json.xml", - "lib/netstandard2.0/Newtonsoft.Json.dll", - "lib/netstandard2.0/Newtonsoft.Json.xml", - "newtonsoft.json.13.0.1.nupkg.sha512", - "newtonsoft.json.nuspec", - "packageIcon.png" - ] - }, - "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" - ] - }, - "NLog/4.7.13": { - "sha512": "AvoGpCuq36B+0wY313XA6gC+YeMvk24rqF8P+HS9fInBGOjCzPjpXp2ln9ATZjPOJtXgHfc8zNmTjyswFGLxvg==", - "type": "package", - "path": "nlog/4.7.13", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/monoandroid44/NLog.dll", - "lib/monoandroid44/NLog.xml", - "lib/net35/NLog.dll", - "lib/net35/NLog.xml", - "lib/net40-client/NLog.dll", - "lib/net40-client/NLog.xml", - "lib/net45/NLog.dll", - "lib/net45/NLog.xml", - "lib/netstandard1.3/NLog.dll", - "lib/netstandard1.3/NLog.xml", - "lib/netstandard1.5/NLog.dll", - "lib/netstandard1.5/NLog.xml", - "lib/netstandard2.0/NLog.dll", - "lib/netstandard2.0/NLog.xml", - "lib/sl4/NLog.dll", - "lib/sl4/NLog.xml", - "lib/sl5/NLog.dll", - "lib/sl5/NLog.xml", - "lib/wp8/NLog.dll", - "lib/wp8/NLog.xml", - "lib/xamarinios10/NLog.dll", - "lib/xamarinios10/NLog.xml", - "nlog.4.7.13.nupkg.sha512", - "nlog.nuspec" - ] - }, - "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" - ] - }, - "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/6.0.0": { - "sha512": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", - "type": "package", - "path": "system.diagnostics.diagnosticsource/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Diagnostics.DiagnosticSource.dll", - "lib/net461/System.Diagnostics.DiagnosticSource.xml", - "lib/net5.0/System.Diagnostics.DiagnosticSource.dll", - "lib/net5.0/System.Diagnostics.DiagnosticSource.xml", - "lib/net6.0/System.Diagnostics.DiagnosticSource.dll", - "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", - "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", - "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", - "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", - "system.diagnostics.diagnosticsource.nuspec", - "useSharedDesignerContext.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.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" - ] - }, - "Typin/3.1.0": { - "sha512": "BV/TvL7a2c8FHBFc3YiWEzQua2NitFY5JnE30zJxo2nQrHeZuJYruZ7H+sT+/cnBLjsDr/mUpYtIS1HRTJQ3xg==", - "type": "package", - "path": "typin/3.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net5.0/Typin.dll", - "lib/net5.0/Typin.xml", - "lib/net6.0/Typin.dll", - "lib/net6.0/Typin.xml", - "lib/netstandard2.0/Typin.dll", - "lib/netstandard2.0/Typin.xml", - "lib/netstandard2.1/Typin.dll", - "lib/netstandard2.1/Typin.xml", - "typin-favicon-64px.png", - "typin.3.1.0.nupkg.sha512", - "typin.nuspec" - ] - }, - "Typin.Core/3.1.0": { - "sha512": "0M44paHjcQuVTMCyfySqklbfVcQ38GfFGBkeKz0E+zhXdV0wD9tI5GwZdjUPOGlqhOmP7CHh452JSgJK2hc57A==", - "type": "package", - "path": "typin.core/3.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net5.0/Typin.Core.dll", - "lib/net5.0/Typin.Core.xml", - "lib/net6.0/Typin.Core.dll", - "lib/net6.0/Typin.Core.xml", - "lib/netstandard2.0/Typin.Core.dll", - "lib/netstandard2.0/Typin.Core.xml", - "lib/netstandard2.1/Typin.Core.dll", - "lib/netstandard2.1/Typin.Core.xml", - "typin-favicon-64px.png", - "typin.core.3.1.0.nupkg.sha512", - "typin.core.nuspec" - ] - }, - "YamlDotNet/11.2.1": { - "sha512": "tBt8K+korVfrjH9wyDEhiLKxbs8qoLCLIFwvYgkSUuMC9//w3z0cFQ8LQAI/5MCKq+BMil0cfRTRvPeE7eXhQw==", - "type": "package", - "path": "yamldotnet/11.2.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.txt", - "images/yamldotnet.png", - "lib/net20/YamlDotNet.dll", - "lib/net20/YamlDotNet.xml", - "lib/net35-client/YamlDotNet.dll", - "lib/net35-client/YamlDotNet.xml", - "lib/net35/YamlDotNet.dll", - "lib/net35/YamlDotNet.xml", - "lib/net45/YamlDotNet.dll", - "lib/net45/YamlDotNet.xml", - "lib/netstandard1.3/YamlDotNet.dll", - "lib/netstandard1.3/YamlDotNet.xml", - "lib/netstandard2.1/YamlDotNet.dll", - "lib/netstandard2.1/YamlDotNet.xml", - "yamldotnet.11.2.1.nupkg.sha512", - "yamldotnet.nuspec" - ] - }, - "Linguard.Core/2.0.0": { - "type": "project", - "path": "../Core/Core.csproj", - "msbuildProject": "../Core/Core.csproj" - }, - "Linguard.Log/2.0.0": { - "type": "project", - "path": "../Log/Log.csproj", - "msbuildProject": "../Log/Log.csproj" - } - }, - "projectFileDependencyGroups": { - "net6.0": [ - "CommandLineParser >= 2.8.0", - "FluentValidation >= 10.3.6", - "Linguard.Core >= 2.0.0", - "Typin >= 3.1.0" - ] - }, - "packageFolders": { - "C:\\Users\\theyu\\.nuget\\packages\\": {} - }, - "project": { - "version": "2.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj", - "projectName": "Linguard.Cli", - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj", - "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": { - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj": { - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "CommandLineParser": { - "target": "Package", - "version": "[2.8.0, )" - }, - "FluentValidation": { - "target": "Package", - "version": "[10.3.6, )" - }, - "Typin": { - "target": "Package", - "version": "[3.1.0, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/linguard/Cli/obj/project.nuget.cache b/linguard/Cli/obj/project.nuget.cache deleted file mode 100644 index 72272f4..0000000 --- a/linguard/Cli/obj/project.nuget.cache +++ /dev/null @@ -1,140 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "6Q6hWpTSKRSJhdMBo6q/LzszotKauKsgpAEPAuAUpaKaF78Ns0bcYV2iA5Ou6VGkPagvmwCdDTuIgQDpsrR42A==", - "success": true, - "projectFilePath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj", - "expectedPackageFiles": [ - "C:\\Users\\theyu\\.nuget\\packages\\bogus\\34.0.1\\bogus.34.0.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\bytesize\\2.1.1\\bytesize.2.1.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\commandlineparser\\2.8.0\\commandlineparser.2.8.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\fluentvalidation\\10.3.6\\fluentvalidation.10.3.6.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\ipnetwork2\\2.5.386\\ipnetwork2.2.5.386.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\markdig.signed\\0.22.0\\markdig.signed.0.22.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.applicationinsights\\2.18.0\\microsoft.applicationinsights.2.18.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\5.0.0\\microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.2\\microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.codeanalysis.common\\4.0.1\\microsoft.codeanalysis.common.4.0.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.0.1\\microsoft.codeanalysis.csharp.4.0.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.csharp\\4.3.0\\microsoft.csharp.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\6.0.0\\microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.logging\\6.0.0\\microsoft.extensions.logging.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\6.0.0\\microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.logging.debug\\6.0.0\\microsoft.extensions.logging.debug.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.objectpool\\5.0.10\\microsoft.extensions.objectpool.5.0.10.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.options\\6.0.0\\microsoft.extensions.options.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0\\microsoft.extensions.primitives.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.management.infrastructure\\2.0.0\\microsoft.management.infrastructure.2.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.management.infrastructure.cimcmdlets\\7.2.1\\microsoft.management.infrastructure.cimcmdlets.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.management.infrastructure.runtime.unix\\2.0.0\\microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.management.infrastructure.runtime.win\\2.0.0\\microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.netcore.windows.apisets\\1.0.1\\microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.commands.diagnostics\\7.2.1\\microsoft.powershell.commands.diagnostics.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.commands.management\\7.2.1\\microsoft.powershell.commands.management.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.commands.utility\\7.2.1\\microsoft.powershell.commands.utility.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.consolehost\\7.2.1\\microsoft.powershell.consolehost.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.coreclr.eventing\\7.2.1\\microsoft.powershell.coreclr.eventing.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.markdownrender\\7.2.0\\microsoft.powershell.markdownrender.7.2.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.native\\7.2.0\\microsoft.powershell.native.7.2.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.sdk\\7.2.1\\microsoft.powershell.sdk.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.security\\7.2.1\\microsoft.powershell.security.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.win32.registry.accesscontrol\\6.0.0\\microsoft.win32.registry.accesscontrol.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.windows.compatibility\\6.0.0\\microsoft.windows.compatibility.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.wsman.management\\7.2.1\\microsoft.wsman.management.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.wsman.runtime\\7.2.1\\microsoft.wsman.runtime.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\namotion.reflection\\2.0.3\\namotion.reflection.2.0.3.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\njsonschema\\10.5.2\\njsonschema.10.5.2.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\nlog\\4.7.13\\nlog.4.7.13.nupkg.sha512", - "C:\\Users\\theyu\\.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\\theyu\\.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\\theyu\\.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\\theyu\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.7.0\\runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.native.system.io.ports\\6.0.0\\runtime.native.system.io.ports.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.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\\theyu\\.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\\theyu\\.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\\theyu\\.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\\theyu\\.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\\theyu\\.nuget\\packages\\system.codedom\\6.0.0\\system.codedom.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.componentmodel.composition\\6.0.0\\system.componentmodel.composition.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.componentmodel.composition.registration\\6.0.0\\system.componentmodel.composition.registration.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.0\\system.configuration.configurationmanager.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.data.odbc\\6.0.0\\system.data.odbc.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.data.oledb\\6.0.0\\system.data.oledb.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.data.sqlclient\\4.8.3\\system.data.sqlclient.4.8.3.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.0\\system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.eventlog\\6.0.0\\system.diagnostics.eventlog.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.performancecounter\\6.0.0\\system.diagnostics.performancecounter.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.directoryservices\\6.0.0\\system.directoryservices.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.directoryservices.accountmanagement\\6.0.0\\system.directoryservices.accountmanagement.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.directoryservices.protocols\\6.0.0\\system.directoryservices.protocols.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.formats.asn1\\6.0.0\\system.formats.asn1.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.io.packaging\\6.0.0\\system.io.packaging.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.io.ports\\6.0.0\\system.io.ports.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.management\\6.0.0\\system.management.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.management.automation\\7.2.1\\system.management.automation.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.net.http.winhttphandler\\6.0.0\\system.net.http.winhttphandler.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.private.servicemodel\\4.9.0\\system.private.servicemodel.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.context\\6.0.0\\system.reflection.context.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.dispatchproxy\\4.7.1\\system.reflection.dispatchproxy.4.7.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.metadata\\5.0.0\\system.reflection.metadata.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.caching\\6.0.0\\system.runtime.caching.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.pkcs\\6.0.0\\system.security.cryptography.pkcs.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.protecteddata\\6.0.0\\system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.xml\\6.0.0\\system.security.cryptography.xml.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.duplex\\4.9.0\\system.servicemodel.duplex.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.http\\4.9.0\\system.servicemodel.http.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.nettcp\\4.9.0\\system.servicemodel.nettcp.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.primitives\\4.9.0\\system.servicemodel.primitives.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.security\\4.9.0\\system.servicemodel.security.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.syndication\\6.0.0\\system.servicemodel.syndication.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.serviceprocess.servicecontroller\\6.0.0\\system.serviceprocess.servicecontroller.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.speech\\6.0.0\\system.speech.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.text.encoding.codepages\\6.0.0\\system.text.encoding.codepages.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.text.encodings.web\\6.0.0\\system.text.encodings.web.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.threading.accesscontrol\\6.0.0\\system.threading.accesscontrol.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.web.services.description\\4.9.0\\system.web.services.description.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\typin\\3.1.0\\typin.3.1.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\typin.core\\3.1.0\\typin.core.3.1.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\yamldotnet\\11.2.1\\yamldotnet.11.2.1.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/linguard/Cli/obj/project.packagespec.json b/linguard/Cli/obj/project.packagespec.json deleted file mode 100644 index c232dcc..0000000 --- a/linguard/Cli/obj/project.packagespec.json +++ /dev/null @@ -1 +0,0 @@ -"restore":{"projectUniqueName":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj","projectName":"Linguard.Cli","projectPath":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj","outputPath":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net6.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net6.0":{"targetAlias":"net6.0","projectReferences":{"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj":{"projectPath":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net6.0":{"targetAlias":"net6.0","dependencies":{"CommandLineParser":{"target":"Package","version":"[2.8.0, )"},"FluentValidation":{"target":"Package","version":"[10.3.6, )"},"Typin":{"target":"Package","version":"[3.1.0, )"}},"imports":["net461","net462","net47","net471","net472","net48"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/linguard/Cli/obj/rider.project.restore.info b/linguard/Cli/obj/rider.project.restore.info deleted file mode 100644 index d0aa958..0000000 --- a/linguard/Cli/obj/rider.project.restore.info +++ /dev/null @@ -1 +0,0 @@ -16455551442888369 \ No newline at end of file diff --git a/linguard/Core.Test/bin/Debug/net6.0/Bogus.dll b/linguard/Core.Test/bin/Debug/net6.0/Bogus.dll deleted file mode 100644 index 84e6073..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/Bogus.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Castle.Core.dll b/linguard/Core.Test/bin/Debug/net6.0/Castle.Core.dll deleted file mode 100644 index 527172e..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/Castle.Core.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Core.Test.deps.json b/linguard/Core.Test/bin/Debug/net6.0/Core.Test.deps.json deleted file mode 100644 index f65452c..0000000 --- a/linguard/Core.Test/bin/Debug/net6.0/Core.Test.deps.json +++ /dev/null @@ -1,4249 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v6.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v6.0": { - "Core.Test/1.0.0": { - "dependencies": { - "FluentAssertions": "6.4.0", - "FluentValidation": "10.3.6", - "IPNetwork2": "2.5.386", - "Linguard.Core": "2.0.0", - "Microsoft.NET.Test.Sdk": "16.11.0", - "Moq": "4.16.1", - "coverlet.msbuild": "3.1.2", - "xunit": "2.4.1", - "xunit.runner.visualstudio": "2.4.3" - }, - "runtime": { - "Core.Test.dll": {} - } - }, - "Bogus/34.0.1": { - "runtime": { - "lib/net6.0/Bogus.dll": { - "assemblyVersion": "34.0.1.0", - "fileVersion": "34.0.1.0" - } - } - }, - "ByteSize/2.1.1": { - "runtime": { - "lib/net5.0/ByteSize.dll": { - "assemblyVersion": "2.1.1.0", - "fileVersion": "2.1.1.0" - } - } - }, - "Castle.Core/4.4.0": { - "dependencies": { - "NETStandard.Library": "1.6.1", - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel": "4.3.0", - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Diagnostics.TraceSource": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, - "runtime": { - "lib/netstandard1.5/Castle.Core.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.4.0.0" - } - } - }, - "coverlet.msbuild/3.1.2": {}, - "FluentAssertions/6.4.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "runtime": { - "lib/netcoreapp3.0/FluentAssertions.dll": { - "assemblyVersion": "6.4.0.0", - "fileVersion": "6.4.0.0" - } - } - }, - "FluentValidation/10.3.6": { - "runtime": { - "lib/net6.0/FluentValidation.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "10.3.6.0" - } - } - }, - "IPNetwork2/2.5.386": { - "runtime": { - "lib/net5.0/System.Net.IPNetwork.dll": { - "assemblyVersion": "2.5.386.0", - "fileVersion": "2.5.386.0" - } - } - }, - "Markdig.Signed/0.22.0": { - "runtime": { - "lib/netcoreapp3.1/Markdig.Signed.dll": { - "assemblyVersion": "0.22.0.0", - "fileVersion": "0.22.0.0" - } - } - }, - "Microsoft.ApplicationInsights/2.18.0": { - "dependencies": { - "System.Diagnostics.DiagnosticSource": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": { - "assemblyVersion": "2.18.0.315", - "fileVersion": "2.18.0.315" - } - } - }, - "Microsoft.Bcl.AsyncInterfaces/5.0.0": { - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.CodeAnalysis.Analyzers/3.3.2": {}, - "Microsoft.CodeAnalysis.Common/4.0.1": { - "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": "6.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.0.121.55815" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp/4.0.1": { - "dependencies": { - "Microsoft.CodeAnalysis.Common": "4.0.1" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.0.121.55815" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeCoverage/16.11.0": { - "runtime": { - "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "16.1000.21.27002" - } - } - }, - "Microsoft.CSharp/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "Microsoft.Extensions.ObjectPool/5.0.10": { - "runtime": { - "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.1021.41022" - } - } - }, - "Microsoft.Management.Infrastructure/2.0.0": { - "dependencies": { - "Microsoft.Management.Infrastructure.Runtime.Unix": "2.0.0", - "Microsoft.Management.Infrastructure.Runtime.Win": "2.0.0" - } - }, - "Microsoft.Management.Infrastructure.CimCmdlets/7.2.1": { - "dependencies": { - "System.Management.Automation": "7.2.1" - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.0.0.0" - } - } - }, - "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { - "runtimeTargets": { - "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win-arm", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win-arm", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win-arm64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win-arm64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win10-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win10-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win10-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win10-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win7-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win7-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win7-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win7-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win8-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win8-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win8-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win8-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win81-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win81-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win81-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win81-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm/native/mi.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm/native/miutils.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/native/mi.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/native/miutils.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win10-x64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/native/mi.dll": { - "rid": "win10-x64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/native/miutils.dll": { - "rid": "win10-x64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win10-x86", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/native/mi.dll": { - "rid": "win10-x86", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/native/miutils.dll": { - "rid": "win10-x86", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win7-x64", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x64/native/mi.dll": { - "rid": "win7-x64", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x64/native/miutils.dll": { - "rid": "win7-x64", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win7-x86", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x86/native/mi.dll": { - "rid": "win7-x86", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x86/native/miutils.dll": { - "rid": "win7-x86", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win8-x64/native/mi.dll": { - "rid": "win8-x64", - "assetType": "native", - "fileVersion": "6.2.9200.22812" - }, - "runtimes/win8-x64/native/miutils.dll": { - "rid": "win8-x64", - "assetType": "native", - "fileVersion": "6.2.9200.22812" - }, - "runtimes/win8-x86/native/mi.dll": { - "rid": "win8-x86", - "assetType": "native", - "fileVersion": "6.2.9200.22812" - }, - "runtimes/win8-x86/native/miutils.dll": { - "rid": "win8-x86", - "assetType": "native", - "fileVersion": "6.2.9200.22812" - }, - "runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win81-x64", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x64/native/mi.dll": { - "rid": "win81-x64", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x64/native/miutils.dll": { - "rid": "win81-x64", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win81-x86", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x86/native/mi.dll": { - "rid": "win81-x86", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x86/native/miutils.dll": { - "rid": "win81-x86", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - } - } - }, - "Microsoft.NET.Test.Sdk/16.11.0": { - "dependencies": { - "Microsoft.CodeCoverage": "16.11.0", - "Microsoft.TestPlatform.TestHost": "16.11.0" - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "Microsoft.NETCore.Windows.ApiSets/1.0.1": {}, - "Microsoft.PowerShell.Commands.Diagnostics/7.2.1": { - "dependencies": { - "System.Management.Automation": "7.2.1" - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.Commands.Management/7.2.1": { - "dependencies": { - "Microsoft.PowerShell.Security": "7.2.1", - "System.ServiceProcess.ServiceController": "6.0.0" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.Commands.Utility/7.2.1": { - "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" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.ConsoleHost/7.2.1": { - "dependencies": { - "System.Management.Automation": "7.2.1" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.CoreCLR.Eventing/7.2.1": { - "dependencies": { - "System.Diagnostics.EventLog": "6.0.0" - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.MarkdownRender/7.2.0": { - "dependencies": { - "Markdig.Signed": "0.22.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll": { - "assemblyVersion": "7.2.0.0", - "fileVersion": "7.2.0.0" - } - } - }, - "Microsoft.PowerShell.Native/7.2.0": { - "runtimeTargets": { - "runtimes/linux-arm/native/libpsl-native.so": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm64/native/libpsl-native.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libpsl-native.so": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libmi.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libpsl-native.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libpsrpclient.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libmi.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libpsl-native.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libpsrpclient.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-arm/native/pwrshplugin.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-arm64/native/pwrshplugin.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-x64/native/pwrshplugin.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-x86/native/pwrshplugin.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - } - } - }, - "Microsoft.PowerShell.SDK/7.2.1": { - "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" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.Security/7.2.1": { - "dependencies": { - "System.Management.Automation": "7.2.1" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.TestPlatform.ObjectModel/16.11.0": { - "dependencies": { - "NuGet.Frameworks": "5.0.0", - "System.Reflection.Metadata": "5.0.0" - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - } - }, - "resources": { - "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.TestPlatform.TestHost/16.11.0": { - "dependencies": { - "Microsoft.TestPlatform.ObjectModel": "16.11.0", - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netcoreapp2.1/testhost.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - } - }, - "resources": { - "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.Win32.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "Microsoft.Win32.Registry/4.7.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Security.Principal.Windows": "5.0.0" - } - }, - "Microsoft.Win32.Registry.AccessControl/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "runtime": { - "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Windows.Compatibility/6.0.0": { - "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" - } - }, - "Microsoft.WSMan.Management/7.2.1": { - "dependencies": { - "Microsoft.WSMan.Runtime": "7.2.1", - "System.Management.Automation": "7.2.1", - "System.ServiceProcess.ServiceController": "6.0.0" - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.WSMan.Runtime/7.2.1": { - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Moq/4.16.1": { - "dependencies": { - "Castle.Core": "4.4.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.1/Moq.dll": { - "assemblyVersion": "4.16.0.0", - "fileVersion": "4.16.1.0" - } - } - }, - "Namotion.Reflection/2.0.3": { - "dependencies": { - "Microsoft.CSharp": "4.3.0" - }, - "runtime": { - "lib/netstandard2.0/Namotion.Reflection.dll": { - "assemblyVersion": "2.0.3.0", - "fileVersion": "2.0.3.0" - } - } - }, - "NETStandard.Library/1.6.1": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.Compression.ZipFile": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Net.Sockets": "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.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Timer": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0" - } - }, - "Newtonsoft.Json/13.0.1": { - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.1.25517" - } - } - }, - "NJsonSchema/10.5.2": { - "dependencies": { - "Namotion.Reflection": "2.0.3", - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/netstandard2.0/NJsonSchema.dll": { - "assemblyVersion": "10.5.2.0", - "fileVersion": "10.5.2.0" - } - } - }, - "NLog/4.7.13": { - "runtime": { - "lib/netstandard2.0/NLog.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.7.13.493" - } - } - }, - "NuGet.Frameworks/5.0.0": { - "runtime": { - "lib/netstandard2.0/NuGet.Frameworks.dll": { - "assemblyVersion": "5.0.0.6", - "fileVersion": "5.0.0.5923" - } - } - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": { - "runtimeTargets": { - "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": { - "runtimeTargets": { - "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": { - "runtimeTargets": { - "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.native.System/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Data.SqlClient.sni/4.7.0": { - "dependencies": { - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" - } - }, - "runtime.native.System.IO.Compression/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.IO.Ports/6.0.0": { - "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.native.System.Net.Http/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "dependencies": { - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": { - "runtimeTargets": { - "runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib": { - "rid": "osx-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": { - "runtimeTargets": { - "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "runtimeTargets": { - "runtimes/win-arm64/native/sni.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "4.6.25512.1" - } - } - }, - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "runtimeTargets": { - "runtimes/win-x64/native/sni.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "4.6.25512.1" - } - } - }, - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "runtimeTargets": { - "runtimes/win-x86/native/sni.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "4.6.25512.1" - } - } - }, - "System.AppContext/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Buffers/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.CodeDom/6.0.0": { - "runtime": { - "lib/net6.0/System.CodeDom.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Collections.Concurrent/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Collections.Immutable/5.0.0": {}, - "System.Collections.NonGeneric/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Collections.Specialized/4.3.0": { - "dependencies": { - "System.Collections.NonGeneric": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.ComponentModel/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.ComponentModel.Composition/6.0.0": { - "runtime": { - "lib/net6.0/System.ComponentModel.Composition.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.ComponentModel.Composition.Registration/6.0.0": { - "dependencies": { - "System.ComponentModel.Composition": "6.0.0", - "System.Reflection.Context": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.ComponentModel.Composition.Registration.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.ComponentModel.Primitives/4.3.0": { - "dependencies": { - "System.ComponentModel": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.NonGeneric": "4.3.0", - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel": "4.3.0", - "System.ComponentModel.Primitives": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "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.Threading": "4.3.0" - } - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "dependencies": { - "System.Security.Cryptography.ProtectedData": "6.0.0", - "System.Security.Permissions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Configuration.ConfigurationManager.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Console/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Data.Odbc/6.0.0": { - "dependencies": { - "System.Text.Encoding.CodePages": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Data.Odbc.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll": { - "rid": "freebsd", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/illumos/lib/net6.0/System.Data.Odbc.dll": { - "rid": "illumos", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/ios/lib/net6.0/System.Data.Odbc.dll": { - "rid": "ios", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/linux/lib/net6.0/System.Data.Odbc.dll": { - "rid": "linux", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/osx/lib/net6.0/System.Data.Odbc.dll": { - "rid": "osx", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/solaris/lib/net6.0/System.Data.Odbc.dll": { - "rid": "solaris", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/tvos/lib/net6.0/System.Data.Odbc.dll": { - "rid": "tvos", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.Data.Odbc.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Data.OleDb/6.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0", - "System.Diagnostics.PerformanceCounter": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Data.OleDb.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Data.OleDb.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Data.SqlClient/4.8.3": { - "dependencies": { - "Microsoft.Win32.Registry": "4.7.0", - "System.Security.Principal.Windows": "5.0.0", - "runtime.native.System.Data.SqlClient.sni": "4.7.0" - }, - "runtime": { - "lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "assemblyVersion": "4.6.1.3", - "fileVersion": "4.700.21.41603" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "4.6.1.3", - "fileVersion": "4.700.21.41603" - }, - "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.6.1.3", - "fileVersion": "4.700.21.41603" - } - } - }, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.DiagnosticSource/5.0.0": {}, - "System.Diagnostics.EventLog/6.0.0": { - "runtime": { - "lib/net6.0/System.Diagnostics.EventLog.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "0.0.0.0" - }, - "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Diagnostics.PerformanceCounter/6.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Diagnostics.Tools/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.TraceSource/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "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", - "runtime.native.System": "4.3.0" - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.DirectoryServices/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Security.Permissions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.DirectoryServices.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.DirectoryServices.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.DirectoryServices.AccountManagement/6.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0", - "System.DirectoryServices": "6.0.0", - "System.DirectoryServices.Protocols": "6.0.0", - "System.Security.AccessControl": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.DirectoryServices.AccountManagement.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.DirectoryServices.Protocols/6.0.0": { - "runtime": { - "lib/net6.0/System.DirectoryServices.Protocols.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll": { - "rid": "linux", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll": { - "rid": "osx", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Drawing.Common/6.0.0": { - "dependencies": { - "Microsoft.Win32.SystemEvents": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Drawing.Common.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Dynamic.Runtime/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.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" - } - }, - "System.Formats.Asn1/6.0.0": {}, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Calendars/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Globalization": "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.IO/4.3.0": { - "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" - } - }, - "System.IO.Compression/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Buffers": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.IO.Compression": "4.3.0" - } - }, - "System.IO.Compression.ZipFile/4.3.0": { - "dependencies": { - "System.Buffers": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.IO.FileSystem/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.IO.Packaging/6.0.0": { - "runtime": { - "lib/net6.0/System.IO.Packaging.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.IO.Ports/6.0.0": { - "dependencies": { - "runtime.native.System.IO.Ports": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.IO.Ports.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.IO.Ports.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.IO.Ports.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Linq.Expressions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.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" - } - }, - "System.Management/6.0.0": { - "dependencies": { - "System.CodeDom": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Management.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Management.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Management.Automation/7.2.1": { - "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" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.Management.Automation.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/System.Management.Automation.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "System.Memory/4.5.4": {}, - "System.Net.Http/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "5.0.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Net.Http.WinHttpHandler/6.0.0": { - "runtime": { - "lib/net6.0/System.Net.Http.WinHttpHandler.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Net.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Net.Sockets/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Numerics.Vectors/4.5.0": {}, - "System.ObjectModel/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Private.ServiceModel/4.9.0": { - "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": "6.0.0", - "System.Security.Principal.Windows": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Private.ServiceModel.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - }, - "resources": { - "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": { - "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" - } - }, - "System.Reflection.Context/6.0.0": { - "runtime": { - "lib/net6.0/System.Reflection.Context.dll": { - "assemblyVersion": "4.0.3.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Reflection.DispatchProxy/4.7.1": {}, - "System.Reflection.Emit/4.3.0": { - "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" - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Metadata/5.0.0": {}, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.Caching/6.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Runtime.Caching.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "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" - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - } - }, - "System.Runtime.Numerics/4.3.0": { - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Security.AccessControl/6.0.0": {}, - "System.Security.Cryptography.Algorithms/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.Apple": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.Cng/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Security.Cryptography.Csp/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.Pkcs/6.0.0": { - "dependencies": { - "System.Formats.Asn1": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Security.Cryptography.Pkcs.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "runtime": { - "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "4.3.0", - "System.Security.Cryptography.Csp": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.Xml/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Security.Cryptography.Pkcs": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Security.Cryptography.Xml.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Permissions/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Windows.Extensions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Security.Permissions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Principal.Windows/5.0.0": {}, - "System.ServiceModel.Duplex/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0", - "System.ServiceModel.Primitives": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.Duplex.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.Http/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0", - "System.ServiceModel.Primitives": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.Http.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.NetTcp/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0", - "System.ServiceModel.Primitives": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.NetTcp.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.Primitives/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.Primitives.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - }, - "lib/net6.0/System.ServiceModel.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.Security/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0", - "System.ServiceModel.Primitives": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.Security.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.Syndication/6.0.0": { - "runtime": { - "lib/net6.0/System.ServiceModel.Syndication.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.ServiceProcess.ServiceController/6.0.0": { - "dependencies": { - "System.Diagnostics.EventLog": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.ServiceProcess.ServiceController.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Speech/6.0.0": { - "runtime": { - "lib/net6.0/System.Speech.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Speech.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding.CodePages/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "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.Text.Encodings.Web/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Text.RegularExpressions/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.AccessControl/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Threading.AccessControl.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Threading.AccessControl.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks.Extensions/4.5.4": {}, - "System.Threading.Timer/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Web.Services.Description/4.9.0": { - "runtime": { - "lib/netstandard2.0/System.Web.Services.Description.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - }, - "resources": { - "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": { - "dependencies": { - "System.Drawing.Common": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Windows.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "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.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.5.4" - } - }, - "System.Xml.XDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - }, - "System.Xml.XmlDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - }, - "xunit/2.4.1": { - "dependencies": { - "xunit.analyzers": "0.10.0", - "xunit.assert": "2.4.1", - "xunit.core": "2.4.1" - } - }, - "xunit.abstractions/2.0.3": { - "runtime": { - "lib/netstandard2.0/xunit.abstractions.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.0.0.0" - } - } - }, - "xunit.analyzers/0.10.0": {}, - "xunit.assert/2.4.1": { - "dependencies": { - "NETStandard.Library": "1.6.1" - }, - "runtime": { - "lib/netstandard1.1/xunit.assert.dll": { - "assemblyVersion": "2.4.1.0", - "fileVersion": "2.4.1.0" - } - } - }, - "xunit.core/2.4.1": { - "dependencies": { - "xunit.extensibility.core": "2.4.1", - "xunit.extensibility.execution": "2.4.1" - } - }, - "xunit.extensibility.core/2.4.1": { - "dependencies": { - "NETStandard.Library": "1.6.1", - "xunit.abstractions": "2.0.3" - }, - "runtime": { - "lib/netstandard1.1/xunit.core.dll": { - "assemblyVersion": "2.4.1.0", - "fileVersion": "2.4.1.0" - } - } - }, - "xunit.extensibility.execution/2.4.1": { - "dependencies": { - "NETStandard.Library": "1.6.1", - "xunit.extensibility.core": "2.4.1" - }, - "runtime": { - "lib/netstandard1.1/xunit.execution.dotnet.dll": { - "assemblyVersion": "2.4.1.0", - "fileVersion": "2.4.1.0" - } - } - }, - "xunit.runner.visualstudio/2.4.3": {}, - "YamlDotNet/11.2.1": { - "runtime": { - "lib/netstandard2.1/YamlDotNet.dll": { - "assemblyVersion": "11.0.0.0", - "fileVersion": "11.2.1.0" - } - } - }, - "Linguard.Core/2.0.0": { - "dependencies": { - "Bogus": "34.0.1", - "ByteSize": "2.1.1", - "FluentValidation": "10.3.6", - "IPNetwork2": "2.5.386", - "Linguard.Log": "2.0.0", - "Microsoft.PowerShell.SDK": "7.2.1", - "System.Management.Automation": "7.2.1", - "YamlDotNet": "11.2.1" - }, - "runtime": { - "Linguard.Core.dll": {} - } - }, - "Linguard.Log/2.0.0": { - "dependencies": { - "NLog": "4.7.13" - }, - "runtime": { - "Linguard.Log.dll": {} - } - } - } - }, - "libraries": { - "Core.Test/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Bogus/34.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-49iq7QrD0wb7V4/FcK8p3dWdJxNUbojaqK9L6KRvdikIuRjt38EsNp7QXICcYdbYw01K8BHUdxlnTNn/YX3qDA==", - "path": "bogus/34.0.1", - "hashPath": "bogus.34.0.1.nupkg.sha512" - }, - "ByteSize/2.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-D+Y3NpbHrW21vZwwegeWf/8iAg2Mr0s7n1su8Ysho+O9dctJ5/EkWUi19QVxc6+nZl080gGTXBP/Nz0twSI3dA==", - "path": "bytesize/2.1.1", - "hashPath": "bytesize.2.1.1.nupkg.sha512" - }, - "Castle.Core/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", - "path": "castle.core/4.4.0", - "hashPath": "castle.core.4.4.0.nupkg.sha512" - }, - "coverlet.msbuild/3.1.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QhM0fnDtmIMImY7oxyQ/kh1VYtRxPyRVeLwRUGuUvI6Xp83pSYG9gerK8WgJj4TzUl7ISziADUGtIWKhtlbkbQ==", - "path": "coverlet.msbuild/3.1.2", - "hashPath": "coverlet.msbuild.3.1.2.nupkg.sha512" - }, - "FluentAssertions/6.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KOJE1UD7ndxoZAdmOraiUFLdcdGTArGQW8WYN+vwrC3mdt2G/B7gmsMOozgXKiNSh3fpD/Xp/0mhonRh8vrZKw==", - "path": "fluentassertions/6.4.0", - "hashPath": "fluentassertions.6.4.0.nupkg.sha512" - }, - "FluentValidation/10.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iMd370ZDx6ydm8t7bIFdRbSKX0e42lpvCtifUSbTSXOk5iKjmgl7HU0PXBhIWQAyIRi3gCwfMI9luj8H6K+byw==", - "path": "fluentvalidation/10.3.6", - "hashPath": "fluentvalidation.10.3.6.nupkg.sha512" - }, - "IPNetwork2/2.5.386": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6ihnNm82vyJsUYYfR2BRTziY/mQ5UGLsQZuhdSYPeTlbQLhBW/4BC9hBz3h5bFDn8PkVw9dP0cpv9brIBmk4Fw==", - "path": "ipnetwork2/2.5.386", - "hashPath": "ipnetwork2.2.5.386.nupkg.sha512" - }, - "Markdig.Signed/0.22.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7x3FqS3wk8DXyQLuflD47tBs6+ly6k4VtoDCzlDWfy7XHVsBIi7eGYEM15sPAcwSCQjOksNWE8U5r2v0Sk5FzQ==", - "path": "markdig.signed/0.22.0", - "hashPath": "markdig.signed.0.22.0.nupkg.sha512" - }, - "Microsoft.ApplicationInsights/2.18.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-milJB3VOCoC4EWmpE/Co9cOJ7SV6Ji6VqV4Rf5UlqL9QCg+rAX1y+3Y+j1Gu/j4IExYiPq7SEKqkP2BFnEu6Vw==", - "path": "microsoft.applicationinsights/2.18.0", - "hashPath": "microsoft.applicationinsights.2.18.0.nupkg.sha512" - }, - "Microsoft.Bcl.AsyncInterfaces/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W8DPQjkMScOMTtJbPwmPyj9c3zYSFGawDW3jwlBOOsnY+EzZFLgNQ/UMkK35JmkNOVPdCyPr2Tw7Vv9N+KA3ZQ==", - "path": "microsoft.bcl.asyncinterfaces/5.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Analyzers/3.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA==", - "path": "microsoft.codeanalysis.analyzers/3.3.2", - "hashPath": "microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Common/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SMREwaVD5SzatlWhh9aahQAtSWdb63NcE//f+bQzgHSECU6xtDtaxk0kwV+asdFfr6HtW38UeO6jvqdfzudg3w==", - "path": "microsoft.codeanalysis.common/4.0.1", - "hashPath": "microsoft.codeanalysis.common.4.0.1.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Q9RxxydPpUElj/x1/qykDTUGsRoKbJG8H5XUSeMGmMu54fBiuX1xyanom9caa1oQfh5JIW1BgLxobSaWs4WyHQ==", - "path": "microsoft.codeanalysis.csharp/4.0.1", - "hashPath": "microsoft.codeanalysis.csharp.4.0.1.nupkg.sha512" - }, - "Microsoft.CodeCoverage/16.11.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wf6lpAeCqP0KFfbDVtfL50lr7jY1gq0+0oSphyksfLOEygMDXqnaxHK5LPFtMEhYSEtgXdNyXNnEddOqQQUdlQ==", - "path": "microsoft.codecoverage/16.11.0", - "hashPath": "microsoft.codecoverage.16.11.0.nupkg.sha512" - }, - "Microsoft.CSharp/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==", - "path": "microsoft.csharp/4.3.0", - "hashPath": "microsoft.csharp.4.3.0.nupkg.sha512" - }, - "Microsoft.Extensions.ObjectPool/5.0.10": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pp9tbGqIhdEXL6Q1yJl+zevAJSq4BsxqhS1GXzBvEsEz9DDNu9GLNzgUy2xyFc4YjB4m4Ff2YEWTnvQvVYdkvQ==", - "path": "microsoft.extensions.objectpool/5.0.10", - "hashPath": "microsoft.extensions.objectpool.5.0.10.nupkg.sha512" - }, - "Microsoft.Management.Infrastructure/2.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IaKZRNBBv3sdrmBWd+aqwHq8cVHk/3WgWFAN/dt40MRY9rbtHiDfTTmaEN0tGTmQqGCGDo/ncntA8MvFMvcsRw==", - "path": "microsoft.management.infrastructure/2.0.0", - "hashPath": "microsoft.management.infrastructure.2.0.0.nupkg.sha512" - }, - "Microsoft.Management.Infrastructure.CimCmdlets/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xe1x237SCyrjpmW1mP1T69/OOc/gtU66P8wVC+b4/u7Hz7fIO6B8P5yVQQfb79rAe1GocruIpQlX4KXTFQf09w==", - "path": "microsoft.management.infrastructure.cimcmdlets/7.2.1", - "hashPath": "microsoft.management.infrastructure.cimcmdlets.7.2.1.nupkg.sha512" - }, - "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-p0lslMX5bdWLxO2P7ao+rjAMOB0LEwPYpzvdCQ2OEYgX2NxFpQ8ILvqPGnYlTAb53rT8gu5DyIol1HboHFYfxQ==", - "path": "microsoft.management.infrastructure.runtime.unix/2.0.0", - "hashPath": "microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512" - }, - "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vjBWQeDOjgernkrOdbEgn7M70SF7hof7ORdKPSlL06Uc15+oYdth5dZju9KsgUoti/cwnkZTiwtDx/lRtay0sA==", - "path": "microsoft.management.infrastructure.runtime.win/2.0.0", - "hashPath": "microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512" - }, - "Microsoft.NET.Test.Sdk/16.11.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-f4mbG1SUSkNWF5p7B3Y8ZxMsvKhxCmpZhdl+w6tMtLSUGE7Izi1syU6TkmKOvB2BV66pdbENConFAISOix4ohQ==", - "path": "microsoft.net.test.sdk/16.11.0", - "hashPath": "microsoft.net.test.sdk.16.11.0.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Windows.ApiSets/1.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==", - "path": "microsoft.netcore.windows.apisets/1.0.1", - "hashPath": "microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512" - }, - "Microsoft.PowerShell.Commands.Diagnostics/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Bgw4Egv7cnYUTWAy6koxg+0+/8K6rqUdlAiAxuJby9FeDPZQFfqCHQqlyP9JDa6lvbtmeBx1btFDx6Kh8bxdwQ==", - "path": "microsoft.powershell.commands.diagnostics/7.2.1", - "hashPath": "microsoft.powershell.commands.diagnostics.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.Commands.Management/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YAMrGDF2QTg6Gwz07+m1+BnmcYsPyywfY4J8nOpImfXZLLNhD7zQQP0orNHu9WPPV3/+E33qUyPj5J3ugCMk6A==", - "path": "microsoft.powershell.commands.management/7.2.1", - "hashPath": "microsoft.powershell.commands.management.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.Commands.Utility/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PU15IxUJd7nSacTstlxqJoEeGlI+BH6cUKTppkkIIxEj7EfwC5nD1qTL41xye63BFeZmOFeqAhMI6LtJUd875g==", - "path": "microsoft.powershell.commands.utility/7.2.1", - "hashPath": "microsoft.powershell.commands.utility.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.ConsoleHost/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uAPSsTmkOa7na1+OAPF87yBRwD1Ka/qXThoyrlvP9ihzMWfHM52k3MuKVEGi04VP3Wdi7U4Rzkr3svxDDmkHgA==", - "path": "microsoft.powershell.consolehost/7.2.1", - "hashPath": "microsoft.powershell.consolehost.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.CoreCLR.Eventing/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fUz7InjavqKtslkQN828nWbZLnmmJRL9rn4b3e/XXdx0BcN+65x/pSgMnehwDVGIoqUPUMXN54eDo4HRVcLA5g==", - "path": "microsoft.powershell.coreclr.eventing/7.2.1", - "hashPath": "microsoft.powershell.coreclr.eventing.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.MarkdownRender/7.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1vqDtdX9RCGsMWCbzp0CIxZW3slWgq8mYHDfUlUKzmkV57fMAn4m0Gy2OtsqopZzrOiVJci+QCWx5FB7BVpMlw==", - "path": "microsoft.powershell.markdownrender/7.2.0", - "hashPath": "microsoft.powershell.markdownrender.7.2.0.nupkg.sha512" - }, - "Microsoft.PowerShell.Native/7.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TauOu3bYr4DRh9HpH3+fgaL+y2GY47KLsgU6qX1NDLqHshdEaCCjiF0N5sDEgCEhSb38FwWhpdFTIQvoOcYCXQ==", - "path": "microsoft.powershell.native/7.2.0", - "hashPath": "microsoft.powershell.native.7.2.0.nupkg.sha512" - }, - "Microsoft.PowerShell.SDK/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UufIcywqI/22p0oqC5qg+yDoW39U2JAQyaHxy2Tr/h0hdWuFimtmhxp/FDXTxszgOdobtjcrCkSzqcoNmu/vQQ==", - "path": "microsoft.powershell.sdk/7.2.1", - "hashPath": "microsoft.powershell.sdk.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.Security/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GV3RuuOmXHAaEjeBcyixdzUIAQvHW6xgoWwafzTe97DbhI+N1sg4fa/FQ9pd8lqG+kkWxGwTy1VgudXX6rhUkg==", - "path": "microsoft.powershell.security/7.2.1", - "hashPath": "microsoft.powershell.security.7.2.1.nupkg.sha512" - }, - "Microsoft.TestPlatform.ObjectModel/16.11.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EiknJx9N9Z30gs7R+HHhki7fA8EiiM3pwD1vkw3bFsBC8kdVq/O7mHf1hrg5aJp+ASO6BoOzQueD2ysfTOy/Bg==", - "path": "microsoft.testplatform.objectmodel/16.11.0", - "hashPath": "microsoft.testplatform.objectmodel.16.11.0.nupkg.sha512" - }, - "Microsoft.TestPlatform.TestHost/16.11.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/Q+R0EcCJE8JaYCk+bGReicw/xrB0HhecrYrUcLbn95BnAlaTJrZhoLkUhvtKTAVtqX/AIKWXYtutiU/Q6QUgg==", - "path": "microsoft.testplatform.testhost/16.11.0", - "hashPath": "microsoft.testplatform.testhost.16.11.0.nupkg.sha512" - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", - "path": "microsoft.win32.primitives/4.3.0", - "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", - "path": "microsoft.win32.registry/4.7.0", - "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry.AccessControl/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UoE+eeuBKL+GFHxHV3FjHlY5K8Wr/IR7Ee/a2oDNqFodF1iMqyt5hIs0U9Z217AbWrHrNle4750kD03hv1IMZw==", - "path": "microsoft.win32.registry.accesscontrol/6.0.0", - "hashPath": "microsoft.win32.registry.accesscontrol.6.0.0.nupkg.sha512" - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", - "path": "microsoft.win32.systemevents/6.0.0", - "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" - }, - "Microsoft.Windows.Compatibility/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9esuK5JqnjkDgO9/AHesyJSG0aKwpfLVzTw6nIGYhqE91VLxZyv3HKulNoPVy/NOuyAaf1kE4FKtdZDzdd/SLw==", - "path": "microsoft.windows.compatibility/6.0.0", - "hashPath": "microsoft.windows.compatibility.6.0.0.nupkg.sha512" - }, - "Microsoft.WSMan.Management/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vMOJMof4eLql180G4PmTurN8h8+VmPaf1l/Tqq+GI7HYyNv140iY3/Z18MiZA4dRG14qghLNo5JxtTolY7b4og==", - "path": "microsoft.wsman.management/7.2.1", - "hashPath": "microsoft.wsman.management.7.2.1.nupkg.sha512" - }, - "Microsoft.WSMan.Runtime/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v14vzUXIg7opXoQI8Eb82dvsRwBNylZ44lvyXOBSRCiVfvMhyTqE8bpPWbwwmQ5JZRnG/dP5/aOYuu9l163fyQ==", - "path": "microsoft.wsman.runtime/7.2.1", - "hashPath": "microsoft.wsman.runtime.7.2.1.nupkg.sha512" - }, - "Moq/4.16.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bw3R9q8cVNhWXNpnvWb0OGP4HadS4zvClq+T1zf7AF+tLY1haZ2AvbHidQekf4PDv1T40c6brZeT/V0IBq7cEQ==", - "path": "moq/4.16.1", - "hashPath": "moq.4.16.1.nupkg.sha512" - }, - "Namotion.Reflection/2.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tZCe/UrSBAMW8A4TjD/SlpRHaWjnHlSWdyRuOXhf3yrE0OX+4fXg0uzj7mwFDclXznfCGRAZbP+akPt4G/mclw==", - "path": "namotion.reflection/2.0.3", - "hashPath": "namotion.reflection.2.0.3.nupkg.sha512" - }, - "NETStandard.Library/1.6.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", - "path": "netstandard.library/1.6.1", - "hashPath": "netstandard.library.1.6.1.nupkg.sha512" - }, - "Newtonsoft.Json/13.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", - "path": "newtonsoft.json/13.0.1", - "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" - }, - "NJsonSchema/10.5.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vr2CbySuXh74TQFU0rGJYZOS492xOE64cPXdB7a0cfXJb/N45Bf4v7sd4LOla0jNhgc5V/B61Ko3qecriL195w==", - "path": "njsonschema/10.5.2", - "hashPath": "njsonschema.10.5.2.nupkg.sha512" - }, - "NLog/4.7.13": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AvoGpCuq36B+0wY313XA6gC+YeMvk24rqF8P+HS9fInBGOjCzPjpXp2ln9ATZjPOJtXgHfc8zNmTjyswFGLxvg==", - "path": "nlog/4.7.13", - "hashPath": "nlog.4.7.13.nupkg.sha512" - }, - "NuGet.Frameworks/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c5JVjuVAm4f7E9Vj+v09Z9s2ZsqFDjBpcsyS3M9xRo0bEdm/LVZSzLxxNvfvAwRiiE8nwe1h2G4OwiwlzFKXlA==", - "path": "nuget.frameworks/5.0.0", - "hashPath": "nuget.frameworks.5.0.0.nupkg.sha512" - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", - "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", - "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", - "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-75q52H7CSpgIoIDwXb9o833EvBZIXJ0mdPhz1E6jSisEXUBlSCPalC29cj3EXsjpuDwr0dj1LRXZepIQH/oL4Q==", - "path": "runtime.linux-arm.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.linux-arm.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xn2bMThmXr3CsvOYmS8ex2Yz1xo+kcnhVg2iVhS9PlmqjZPAkrEo/I40wjrBZH/tU4kvH0s1AE8opAvQ3KIS8g==", - "path": "runtime.linux-arm64.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.linux-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-16nbNXwv0sC+gLGIuecri0skjuh6R1maIJggsaNP7MQBcbVcEfWFUOkEnsnvoLEjy0XerfibuRptfQ8AmdIcWA==", - "path": "runtime.linux-x64.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.linux-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.native.System/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "path": "runtime.native.system/4.3.0", - "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Data.SqlClient.sni/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", - "path": "runtime.native.system.data.sqlclient.sni/4.7.0", - "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512" - }, - "runtime.native.System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", - "path": "runtime.native.system.io.compression/4.3.0", - "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" - }, - "runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KaaXlpOcuZjMdmyF5wzzx3b+PRKIzt6A5Ax9dKenPDQbVJAFpev+casD0BIig1pBcbs3zx7CqWemzUJKAeHdSQ==", - "path": "runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.native.System.Net.Http/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", - "path": "runtime.native.system.net.http/4.3.0", - "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", - "path": "runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", - "path": "runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", - "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", - "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fXG12NodG1QrCdoaeSQ1gVnk/koi4WYY4jZtarMkZeQMyReBm1nZlSRoPnUjLr2ZR36TiMjpcGnQfxymieUe7w==", - "path": "runtime.osx-arm64.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.osx-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/As+zPY49+dSUXkh+fTUbyPhqrdGN//evLxo4Vue88pfh1BHZgF7q4kMblTkxYvwR6Vi03zSYxysSFktO8/SDQ==", - "path": "runtime.osx-x64.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.osx-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", - "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", - "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", - "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", - "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", - "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", - "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" - }, - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", - "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", - "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" - }, - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", - "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", - "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" - }, - "System.AppContext/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", - "path": "system.appcontext/4.3.0", - "hashPath": "system.appcontext.4.3.0.nupkg.sha512" - }, - "System.Buffers/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", - "path": "system.buffers/4.3.0", - "hashPath": "system.buffers.4.3.0.nupkg.sha512" - }, - "System.CodeDom/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", - "path": "system.codedom/6.0.0", - "hashPath": "system.codedom.6.0.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", - "path": "system.collections.concurrent/4.3.0", - "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" - }, - "System.Collections.Immutable/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", - "path": "system.collections.immutable/5.0.0", - "hashPath": "system.collections.immutable.5.0.0.nupkg.sha512" - }, - "System.Collections.NonGeneric/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", - "path": "system.collections.nongeneric/4.3.0", - "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" - }, - "System.Collections.Specialized/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", - "path": "system.collections.specialized/4.3.0", - "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" - }, - "System.ComponentModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", - "path": "system.componentmodel/4.3.0", - "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.Composition/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-60Qv+F7oxomOjJeTDA5Z4iCyFbQ0B/2Mi5HT+13pxxq0lVnu2ipbWMzFB+RWKr3wWKA8BSncXr9PH/fECwMX5Q==", - "path": "system.componentmodel.composition/6.0.0", - "hashPath": "system.componentmodel.composition.6.0.0.nupkg.sha512" - }, - "System.ComponentModel.Composition.Registration/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+i3RLlOgTsf15VeADBPpzPyRiXq71aLSuzdHeNtmq9f6BwpF3OWhB76p0WDUNCa3Z+SLD4dJbBM9yAep7kQCGA==", - "path": "system.componentmodel.composition.registration/6.0.0", - "hashPath": "system.componentmodel.composition.registration.6.0.0.nupkg.sha512" - }, - "System.ComponentModel.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", - "path": "system.componentmodel.primitives/4.3.0", - "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", - "path": "system.componentmodel.typeconverter/4.3.0", - "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", - "path": "system.configuration.configurationmanager/6.0.0", - "hashPath": "system.configuration.configurationmanager.6.0.0.nupkg.sha512" - }, - "System.Console/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", - "path": "system.console/4.3.0", - "hashPath": "system.console.4.3.0.nupkg.sha512" - }, - "System.Data.Odbc/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pnZjwe0Qwr1Rnp7NExd5zz4YwXJrYuAbWNKjEQpTzCEg6f/L5DYJS7w3hG3vgSj1t/r79UL390YzXIklf1VuQQ==", - "path": "system.data.odbc/6.0.0", - "hashPath": "system.data.odbc.6.0.0.nupkg.sha512" - }, - "System.Data.OleDb/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LQ8PjTIF1LtrrlGiyiTVjAkQtTWKm9GSNnygIlWjhN9y88s7xhy6DUNDDkmQQ9f6ex7mA4k0Tl97lz/CklaiLg==", - "path": "system.data.oledb/6.0.0", - "hashPath": "system.data.oledb.6.0.0.nupkg.sha512" - }, - "System.Data.SqlClient/4.8.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yERfVLXAY0QbylAgaGLByYN0hFxX28aeEQ0hUgJO+Ntn1AfmWl5HHUoYJA0Yl9HhIUUJHVaS/Sw/RLZr5aaC+A==", - "path": "system.data.sqlclient/4.8.3", - "hashPath": "system.data.sqlclient.4.8.3.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==", - "path": "system.diagnostics.diagnosticsource/5.0.0", - "hashPath": "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512" - }, - "System.Diagnostics.EventLog/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", - "path": "system.diagnostics.eventlog/6.0.0", - "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512" - }, - "System.Diagnostics.PerformanceCounter/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-gbeE5tNp/oB7O8kTTLh3wPPJCxpNOphXPTWVs1BsYuFOYapFijWuh0LYw1qnDo4gwDUYPXOmpTIhvtxisGsYOQ==", - "path": "system.diagnostics.performancecounter/6.0.0", - "hashPath": "system.diagnostics.performancecounter.6.0.0.nupkg.sha512" - }, - "System.Diagnostics.Tools/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", - "path": "system.diagnostics.tools/4.3.0", - "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.TraceSource/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", - "path": "system.diagnostics.tracesource/4.3.0", - "hashPath": "system.diagnostics.tracesource.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", - "path": "system.diagnostics.tracing/4.3.0", - "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" - }, - "System.DirectoryServices/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kp/Op0nxDVGlElDKh8TsXO0GKXftQgAB6sJk0wUetZK1Rr0Pbd86Tn7AllLLlROFZa4BTl/LVHakljtGELFzCg==", - "path": "system.directoryservices/6.0.0", - "hashPath": "system.directoryservices.6.0.0.nupkg.sha512" - }, - "System.DirectoryServices.AccountManagement/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2iKkY6VC4WX6H13N8WhH2SRUfWCwg2KZR5w9JIS9cw9N8cZhT7VXxHX0L6OX6Po419aSu2LWrJE9tu6b+cUnPA==", - "path": "system.directoryservices.accountmanagement/6.0.0", - "hashPath": "system.directoryservices.accountmanagement.6.0.0.nupkg.sha512" - }, - "System.DirectoryServices.Protocols/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-++WKU7HQPo/FJdhywWw+q2lLjcVAGVw5XLH9kRCV+4DvkhVAcHCksh0ezIqwNROmaU9LMJN0d/LAdeWXu3pi6Q==", - "path": "system.directoryservices.protocols/6.0.0", - "hashPath": "system.directoryservices.protocols.6.0.0.nupkg.sha512" - }, - "System.Drawing.Common/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", - "path": "system.drawing.common/6.0.0", - "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" - }, - "System.Dynamic.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", - "path": "system.dynamic.runtime/4.3.0", - "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" - }, - "System.Formats.Asn1/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA==", - "path": "system.formats.asn1/6.0.0", - "hashPath": "system.formats.asn1.6.0.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", - "path": "system.globalization.calendars/4.3.0", - "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", - "path": "system.globalization.extensions/4.3.0", - "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", - "path": "system.io.compression/4.3.0", - "hashPath": "system.io.compression.4.3.0.nupkg.sha512" - }, - "System.IO.Compression.ZipFile/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", - "path": "system.io.compression.zipfile/4.3.0", - "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "path": "system.io.filesystem/4.3.0", - "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "path": "system.io.filesystem.primitives/4.3.0", - "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" - }, - "System.IO.Packaging/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-C7OkTRIjqIjAKu6ef/fuj8ynCZTPcTYZnvHaq48bniACgXXJogmEoIc56YCDNTc14xhsbLmgpS3KP+evbsUa2g==", - "path": "system.io.packaging/6.0.0", - "hashPath": "system.io.packaging.6.0.0.nupkg.sha512" - }, - "System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dRyGI7fUESar5ZLIpiBOaaNLW7YyOBGftjj5Of+xcduC/Rjl7RjhEnWDvvNBmHuF3d0tdXoqdVI/yrVA8f00XA==", - "path": "system.io.ports/6.0.0", - "hashPath": "system.io.ports.6.0.0.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "path": "system.linq.expressions/4.3.0", - "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" - }, - "System.Management/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sHsESYMmPDhQuOC66h6AEOs/XowzKsbT9srMbX71TCXP58hkpn1BqBjdmKj1+DCA/WlBETX1K5WjQHwmV0Txrg==", - "path": "system.management/6.0.0", - "hashPath": "system.management.6.0.0.nupkg.sha512" - }, - "System.Management.Automation/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YlTE+q14vQ1YU//A5+/Jwl5+L5r6uOVIWuB4D/T9r80AaCeUAZMMvTKjgvIr9lwkovwQflVL+1JfBAi9f0q0KA==", - "path": "system.management.automation/7.2.1", - "hashPath": "system.management.automation.7.2.1.nupkg.sha512" - }, - "System.Memory/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", - "path": "system.memory/4.5.4", - "hashPath": "system.memory.4.5.4.nupkg.sha512" - }, - "System.Net.Http/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", - "path": "system.net.http/4.3.0", - "hashPath": "system.net.http.4.3.0.nupkg.sha512" - }, - "System.Net.Http.WinHttpHandler/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jubNN9jH4NzVrvEf4fGwESLBsfH8whWNbHMhgM6IwA8UCt6+/M19bbOHc21JhigvC2HQKCl8HKGZMcBtIpzqIg==", - "path": "system.net.http.winhttphandler/6.0.0", - "hashPath": "system.net.http.winhttphandler.6.0.0.nupkg.sha512" - }, - "System.Net.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", - "path": "system.net.primitives/4.3.0", - "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" - }, - "System.Net.Sockets/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", - "path": "system.net.sockets/4.3.0", - "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" - }, - "System.Numerics.Vectors/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", - "path": "system.numerics.vectors/4.5.0", - "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "path": "system.objectmodel/4.3.0", - "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" - }, - "System.Private.ServiceModel/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d3RjkrtpjUQ63PzFmm/SZ4aOXeJNP+8YW5QeP0lCJy8iX4xlHdlNLWTF9sRn9SmrFTK757kQXT9Op/R4l858uw==", - "path": "system.private.servicemodel/4.9.0", - "hashPath": "system.private.servicemodel.4.9.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Context/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vi+Gb41oyOYie7uLSsjRmfRg3bryUg5DssJvj3gDUl0D8z6ipSm6/yi/XNx2rcS5iVMvHcwRUHjcx7ixv0K3/w==", - "path": "system.reflection.context/6.0.0", - "hashPath": "system.reflection.context.6.0.0.nupkg.sha512" - }, - "System.Reflection.DispatchProxy/4.7.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-C1sMLwIG6ILQ2bmOT4gh62V6oJlyF4BlHcVMrOoor49p0Ji2tA8QAoqyMcIhAdH6OHKJ8m7BU+r4LK2CUEOKqw==", - "path": "system.reflection.dispatchproxy/4.7.1", - "hashPath": "system.reflection.dispatchproxy.4.7.1.nupkg.sha512" - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "path": "system.reflection.emit/4.3.0", - "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "path": "system.reflection.emit.lightweight/4.3.0", - "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Metadata/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==", - "path": "system.reflection.metadata/5.0.0", - "hashPath": "system.reflection.metadata.5.0.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.Caching/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==", - "path": "system.runtime.caching/6.0.0", - "hashPath": "system.runtime.caching.6.0.0.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", - "path": "system.runtime.interopservices.runtimeinformation/4.3.0", - "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", - "path": "system.runtime.numerics/4.3.0", - "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" - }, - "System.Security.AccessControl/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", - "path": "system.security.accesscontrol/6.0.0", - "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", - "path": "system.security.cryptography.algorithms/4.3.0", - "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Cng/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", - "path": "system.security.cryptography.cng/4.3.0", - "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Csp/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", - "path": "system.security.cryptography.csp/4.3.0", - "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", - "path": "system.security.cryptography.encoding/4.3.0", - "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", - "path": "system.security.cryptography.openssl/4.3.0", - "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Pkcs/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-elM3x+xSRhzQysiqo85SbidJJ2YbZlnvmh+53TuSZHsD7dNuuEWser+9EFtY+rYupBwkq2avc6ZCO3/6qACgmg==", - "path": "system.security.cryptography.pkcs/6.0.0", - "hashPath": "system.security.cryptography.pkcs.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", - "path": "system.security.cryptography.primitives/4.3.0", - "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", - "path": "system.security.cryptography.protecteddata/6.0.0", - "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", - "path": "system.security.cryptography.x509certificates/4.3.0", - "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Xml/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-puJ4UCh9JVRwOCyCIcq71JY6Axr8Sp8E2GjTIU1Fj8hm4+oX6NEoyGFGa/+pBG8SrVxbQPSj7hvtaREyTHHsmw==", - "path": "system.security.cryptography.xml/6.0.0", - "hashPath": "system.security.cryptography.xml.6.0.0.nupkg.sha512" - }, - "System.Security.Permissions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", - "path": "system.security.permissions/6.0.0", - "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" - }, - "System.Security.Principal.Windows/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", - "path": "system.security.principal.windows/5.0.0", - "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" - }, - "System.ServiceModel.Duplex/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Yb8MFiJxBBtm2JnfS/5SxYzm2HqkEmHu5xeaVIHXy83sNpty9wc30JifH2xgda821D6nr1UctbwbdZqN4LBUKQ==", - "path": "system.servicemodel.duplex/4.9.0", - "hashPath": "system.servicemodel.duplex.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.Http/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z+s3RkLNzJ31fDXAjqXdXp67FqsNG4V3Md3r7FOrzMkHmg61gY8faEfTFPBLxU9tax1HPWt6IHVAquXBKySJaw==", - "path": "system.servicemodel.http/4.9.0", - "hashPath": "system.servicemodel.http.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.NetTcp/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nXgnnkrZERUF/KwmoLwZPkc7fqgiq94DXkmUZBvDNh/LdZquDvjy2NbhJLElpApOa5x8zEoQoBZyJ2PqNC39qg==", - "path": "system.servicemodel.nettcp/4.9.0", - "hashPath": "system.servicemodel.nettcp.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.Primitives/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LTFPVdS8Nf76xg/wRZkDa+2Q+GnjTOmwkTlwuoetwX37mAfYnGkf7p8ydhpDwVmomNljpUOhUUGxfjQyd5YcOg==", - "path": "system.servicemodel.primitives/4.9.0", - "hashPath": "system.servicemodel.primitives.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.Security/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iurpbSmPgotHps94VQ6acvL6hU2gjiuBmQI7PwLLN76jsbSpUcahT0PglccKIAwoMujATk/LWtAapBHpwCFn2g==", - "path": "system.servicemodel.security/4.9.0", - "hashPath": "system.servicemodel.security.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.Syndication/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cp1mMNG87iJtE0oHXFtfWT6cfski2JNo5iU0siTPi/uN2k1CIJI6FE4jr4v3got2dzt7wBq17fSy44btun9GiA==", - "path": "system.servicemodel.syndication/6.0.0", - "hashPath": "system.servicemodel.syndication.6.0.0.nupkg.sha512" - }, - "System.ServiceProcess.ServiceController/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qMBvG8ZFbkXoe0Z5/D7FAAadfPkH2v7vSuh2xsLf3U6jNoejpIdeV18A0htiASsLK1CCAc/p59kaLXlt2yB1gw==", - "path": "system.serviceprocess.servicecontroller/6.0.0", - "hashPath": "system.serviceprocess.servicecontroller.6.0.0.nupkg.sha512" - }, - "System.Speech/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GQovERMrNP0Vbtgk8LzH4PlFS6lqHgsL9WkUmv8Kkxa0m0vNakitytpHZlfJ9WR7n9WKLXh68nn2kyL9mflnLg==", - "path": "system.speech/6.0.0", - "hashPath": "system.speech.6.0.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.CodePages/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "path": "system.text.encoding.codepages/6.0.0", - "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512" - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "path": "system.text.encoding.extensions/4.3.0", - "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" - }, - "System.Text.Encodings.Web/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", - "path": "system.text.encodings.web/6.0.0", - "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "path": "system.text.regularexpressions/4.3.0", - "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.AccessControl/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2258mqWesMch/xCpcnjJBgJP33yhpZLGLbEOm01qwq0efG4b+NG8c9sxYOWNxmDQ82swXrnQRl1Yp2wC1NrfZA==", - "path": "system.threading.accesscontrol/6.0.0", - "hashPath": "system.threading.accesscontrol.6.0.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", - "path": "system.threading.tasks.extensions/4.5.4", - "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" - }, - "System.Threading.Timer/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", - "path": "system.threading.timer/4.3.0", - "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" - }, - "System.Web.Services.Description/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d20B3upsWddwSG5xF3eQLs0cAV3tXDsBNqP4kh02ylfgZwqfpf4f/9KiZVIGIoxULt2cKqxWs+U4AdNAJ7L8cQ==", - "path": "system.web.services.description/4.9.0", - "hashPath": "system.web.services.description.4.9.0.nupkg.sha512" - }, - "System.Windows.Extensions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", - "path": "system.windows.extensions/6.0.0", - "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "path": "system.xml.readerwriter/4.3.0", - "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", - "path": "system.xml.xdocument/4.3.0", - "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" - }, - "System.Xml.XmlDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", - "path": "system.xml.xmldocument/4.3.0", - "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" - }, - "xunit/2.4.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XNR3Yz9QTtec16O0aKcO6+baVNpXmOnPUxDkCY97J+8krUYxPvXT1szYYEUdKk4sB8GOI2YbAjRIOm8ZnXRfzQ==", - "path": "xunit/2.4.1", - "hashPath": "xunit.2.4.1.nupkg.sha512" - }, - "xunit.abstractions/2.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", - "path": "xunit.abstractions/2.0.3", - "hashPath": "xunit.abstractions.2.0.3.nupkg.sha512" - }, - "xunit.analyzers/0.10.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4/IDFCJfIeg6bix9apmUtIMwvOsiwqdEexeO/R2D4GReIGPLIRODTpId/l4LRSrAJk9lEO3Zx1H0Zx6uohJDNg==", - "path": "xunit.analyzers/0.10.0", - "hashPath": "xunit.analyzers.0.10.0.nupkg.sha512" - }, - "xunit.assert/2.4.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-O/Oe0BS5RmSsM+LQOb041TzuPo5MdH2Rov+qXGS37X+KFG1Hxz7kopYklM5+1Y+tRGeXrOx5+Xne1RuqLFQoyQ==", - "path": "xunit.assert/2.4.1", - "hashPath": "xunit.assert.2.4.1.nupkg.sha512" - }, - "xunit.core/2.4.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Zsj5OMU6JasNGERXZy8s72+pcheG6Q15atS5XpZXqAtULuyQiQ6XNnUsp1gyfC6WgqScqMvySiEHmHcOG6Eg0Q==", - "path": "xunit.core/2.4.1", - "hashPath": "xunit.core.2.4.1.nupkg.sha512" - }, - "xunit.extensibility.core/2.4.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yKZKm/8QNZnBnGZFD9SewkllHBiK0DThybQD/G4PiAmQjKtEZyHi6ET70QPU9KtSMJGRYS6Syk7EyR2EVDU4Kg==", - "path": "xunit.extensibility.core/2.4.1", - "hashPath": "xunit.extensibility.core.2.4.1.nupkg.sha512" - }, - "xunit.extensibility.execution/2.4.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7e/1jqBpcb7frLkB6XDrHCGXAbKN4Rtdb88epYxCSRQuZDRW8UtTfdTEVpdTl8s4T56e07hOBVd4G0OdCxIY2A==", - "path": "xunit.extensibility.execution/2.4.1", - "hashPath": "xunit.extensibility.execution.2.4.1.nupkg.sha512" - }, - "xunit.runner.visualstudio/2.4.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kZZSmOmKA8OBlAJaquPXnJJLM9RwQ27H7BMVqfMLUcTi9xHinWGJiWksa3D4NEtz0wZ/nxd2mogObvBgJKCRhQ==", - "path": "xunit.runner.visualstudio/2.4.3", - "hashPath": "xunit.runner.visualstudio.2.4.3.nupkg.sha512" - }, - "YamlDotNet/11.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tBt8K+korVfrjH9wyDEhiLKxbs8qoLCLIFwvYgkSUuMC9//w3z0cFQ8LQAI/5MCKq+BMil0cfRTRvPeE7eXhQw==", - "path": "yamldotnet/11.2.1", - "hashPath": "yamldotnet.11.2.1.nupkg.sha512" - }, - "Linguard.Core/2.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Linguard.Log/2.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/linguard/Core.Test/bin/Debug/net6.0/Core.Test.dll b/linguard/Core.Test/bin/Debug/net6.0/Core.Test.dll deleted file mode 100644 index c03a86d..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/Core.Test.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Core.Test.pdb b/linguard/Core.Test/bin/Debug/net6.0/Core.Test.pdb deleted file mode 100644 index bc7b96e..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/Core.Test.pdb and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Core.Test.runtimeconfig.json b/linguard/Core.Test/bin/Debug/net6.0/Core.Test.runtimeconfig.json deleted file mode 100644 index 4986d16..0000000 --- a/linguard/Core.Test/bin/Debug/net6.0/Core.Test.runtimeconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net6.0", - "framework": { - "name": "Microsoft.NETCore.App", - "version": "6.0.0" - } - } -} \ No newline at end of file diff --git a/linguard/Core.Test/bin/Debug/net6.0/CoverletSourceRootsMapping b/linguard/Core.Test/bin/Debug/net6.0/CoverletSourceRootsMapping deleted file mode 100644 index 7783657..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/CoverletSourceRootsMapping and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/FluentAssertions.dll b/linguard/Core.Test/bin/Debug/net6.0/FluentAssertions.dll deleted file mode 100644 index 279f957..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/FluentAssertions.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/FluentValidation.dll b/linguard/Core.Test/bin/Debug/net6.0/FluentValidation.dll deleted file mode 100644 index fd90d11..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/FluentValidation.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Linguard.Core.dll b/linguard/Core.Test/bin/Debug/net6.0/Linguard.Core.dll deleted file mode 100644 index f622876..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/Linguard.Core.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Linguard.Core.pdb b/linguard/Core.Test/bin/Debug/net6.0/Linguard.Core.pdb deleted file mode 100644 index 5896cce..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/Linguard.Core.pdb and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Linguard.Log.dll b/linguard/Core.Test/bin/Debug/net6.0/Linguard.Log.dll deleted file mode 100644 index 561b728..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/Linguard.Log.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Linguard.Log.pdb b/linguard/Core.Test/bin/Debug/net6.0/Linguard.Log.pdb deleted file mode 100644 index ef5cdfa..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/Linguard.Log.pdb and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Markdig.Signed.dll b/linguard/Core.Test/bin/Debug/net6.0/Markdig.Signed.dll deleted file mode 100644 index 722a399..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/Markdig.Signed.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.ApplicationInsights.dll b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.ApplicationInsights.dll deleted file mode 100644 index 8ef5eef..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.ApplicationInsights.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll deleted file mode 100644 index be25bdb..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.dll b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.dll deleted file mode 100644 index 581191d..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.CodeAnalysis.dll b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.CodeAnalysis.dll deleted file mode 100644 index c653dc8..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.CodeAnalysis.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.Extensions.ObjectPool.dll b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.Extensions.ObjectPool.dll deleted file mode 100644 index 730dead..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.Extensions.ObjectPool.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.PowerShell.MarkdownRender.dll b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.PowerShell.MarkdownRender.dll deleted file mode 100644 index 68f0076..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.PowerShell.MarkdownRender.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CommunicationUtilities.dll b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CommunicationUtilities.dll deleted file mode 100644 index e4a1476..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CommunicationUtilities.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CoreUtilities.dll b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CoreUtilities.dll deleted file mode 100644 index 2a743a3..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CoreUtilities.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CrossPlatEngine.dll b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CrossPlatEngine.dll deleted file mode 100644 index ae16ead..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CrossPlatEngine.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.TestPlatform.PlatformAbstractions.dll b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.TestPlatform.PlatformAbstractions.dll deleted file mode 100644 index b2f76f6..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.TestPlatform.PlatformAbstractions.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.TestPlatform.Utilities.dll b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.TestPlatform.Utilities.dll deleted file mode 100644 index bf36696..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.TestPlatform.Utilities.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll deleted file mode 100644 index c4f2e09..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.VisualStudio.TestPlatform.Common.dll b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.VisualStudio.TestPlatform.Common.dll deleted file mode 100644 index 340df34..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.VisualStudio.TestPlatform.Common.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll deleted file mode 100644 index 240ff2a..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.Win32.Registry.AccessControl.dll b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.Win32.Registry.AccessControl.dll deleted file mode 100644 index b598181..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.Win32.Registry.AccessControl.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll deleted file mode 100644 index 3ab5850..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Moq.dll b/linguard/Core.Test/bin/Debug/net6.0/Moq.dll deleted file mode 100644 index 5be05c4..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/Moq.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/NJsonSchema.dll b/linguard/Core.Test/bin/Debug/net6.0/NJsonSchema.dll deleted file mode 100644 index 0e6ee5b..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/NJsonSchema.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/NLog.dll b/linguard/Core.Test/bin/Debug/net6.0/NLog.dll deleted file mode 100644 index 4aa35e7..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/NLog.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Namotion.Reflection.dll b/linguard/Core.Test/bin/Debug/net6.0/Namotion.Reflection.dll deleted file mode 100644 index 39dbbfa..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/Namotion.Reflection.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Newtonsoft.Json.dll b/linguard/Core.Test/bin/Debug/net6.0/Newtonsoft.Json.dll deleted file mode 100644 index 1ffeabe..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/Newtonsoft.Json.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/NuGet.Frameworks.dll b/linguard/Core.Test/bin/Debug/net6.0/NuGet.Frameworks.dll deleted file mode 100644 index 0a61a1c..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/NuGet.Frameworks.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.CodeDom.dll b/linguard/Core.Test/bin/Debug/net6.0/System.CodeDom.dll deleted file mode 100644 index 54c82b6..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.CodeDom.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.ComponentModel.Composition.Registration.dll b/linguard/Core.Test/bin/Debug/net6.0/System.ComponentModel.Composition.Registration.dll deleted file mode 100644 index 586e1af..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.ComponentModel.Composition.Registration.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.ComponentModel.Composition.dll b/linguard/Core.Test/bin/Debug/net6.0/System.ComponentModel.Composition.dll deleted file mode 100644 index 3e063b3..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.ComponentModel.Composition.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll deleted file mode 100644 index d67c8a8..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Data.Odbc.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Data.Odbc.dll deleted file mode 100644 index 5101278..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Data.OleDb.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Data.OleDb.dll deleted file mode 100644 index f7840cd..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.Data.OleDb.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Data.SqlClient.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Data.SqlClient.dll deleted file mode 100644 index d03f8a1..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.Data.SqlClient.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Diagnostics.EventLog.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Diagnostics.EventLog.dll deleted file mode 100644 index 8a65e71..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.Diagnostics.EventLog.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Diagnostics.PerformanceCounter.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Diagnostics.PerformanceCounter.dll deleted file mode 100644 index e9092d7..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.Diagnostics.PerformanceCounter.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.DirectoryServices.AccountManagement.dll b/linguard/Core.Test/bin/Debug/net6.0/System.DirectoryServices.AccountManagement.dll deleted file mode 100644 index 77183e0..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.DirectoryServices.AccountManagement.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.DirectoryServices.Protocols.dll b/linguard/Core.Test/bin/Debug/net6.0/System.DirectoryServices.Protocols.dll deleted file mode 100644 index d62b127..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.DirectoryServices.Protocols.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.DirectoryServices.dll b/linguard/Core.Test/bin/Debug/net6.0/System.DirectoryServices.dll deleted file mode 100644 index 803611c..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.DirectoryServices.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Drawing.Common.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Drawing.Common.dll deleted file mode 100644 index be6915e..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.Drawing.Common.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.IO.Packaging.dll b/linguard/Core.Test/bin/Debug/net6.0/System.IO.Packaging.dll deleted file mode 100644 index 007253e..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.IO.Packaging.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.IO.Ports.dll b/linguard/Core.Test/bin/Debug/net6.0/System.IO.Ports.dll deleted file mode 100644 index e10e943..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.IO.Ports.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Management.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Management.dll deleted file mode 100644 index fae6cf1..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.Management.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Net.Http.WinHttpHandler.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Net.Http.WinHttpHandler.dll deleted file mode 100644 index 2490b06..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.Net.Http.WinHttpHandler.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Net.IPNetwork.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Net.IPNetwork.dll deleted file mode 100644 index 9b94f0c..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.Net.IPNetwork.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Private.ServiceModel.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Private.ServiceModel.dll deleted file mode 100644 index 82e7a91..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.Private.ServiceModel.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Reflection.Context.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Reflection.Context.dll deleted file mode 100644 index 3faa973..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.Reflection.Context.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Runtime.Caching.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Runtime.Caching.dll deleted file mode 100644 index 14826eb..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.Runtime.Caching.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Security.Cryptography.Pkcs.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Security.Cryptography.Pkcs.dll deleted file mode 100644 index c2bb12e..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.Security.Cryptography.Pkcs.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll deleted file mode 100644 index 1ba8770..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Security.Cryptography.Xml.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Security.Cryptography.Xml.dll deleted file mode 100644 index 96d460e..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.Security.Cryptography.Xml.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Security.Permissions.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Security.Permissions.dll deleted file mode 100644 index 39dd4df..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.Security.Permissions.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.Duplex.dll b/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.Duplex.dll deleted file mode 100644 index 7eeafd5..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.Duplex.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.Http.dll b/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.Http.dll deleted file mode 100644 index 79aab9d..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.Http.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.NetTcp.dll b/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.NetTcp.dll deleted file mode 100644 index a59b27e..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.NetTcp.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.Primitives.dll b/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.Primitives.dll deleted file mode 100644 index 8c32245..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.Primitives.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.Security.dll b/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.Security.dll deleted file mode 100644 index 5f2fc73..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.Security.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.Syndication.dll b/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.Syndication.dll deleted file mode 100644 index 0dab5e1..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.Syndication.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.dll b/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.dll deleted file mode 100644 index e7849b5..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.ServiceProcess.ServiceController.dll b/linguard/Core.Test/bin/Debug/net6.0/System.ServiceProcess.ServiceController.dll deleted file mode 100644 index 3e5508c..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.ServiceProcess.ServiceController.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Speech.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Speech.dll deleted file mode 100644 index 9d14819..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.Speech.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Threading.AccessControl.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Threading.AccessControl.dll deleted file mode 100644 index b6d69a4..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.Threading.AccessControl.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Web.Services.Description.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Web.Services.Description.dll deleted file mode 100644 index c230b5c..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.Web.Services.Description.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Windows.Extensions.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Windows.Extensions.dll deleted file mode 100644 index c3e8844..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/System.Windows.Extensions.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/YamlDotNet.dll b/linguard/Core.Test/bin/Debug/net6.0/YamlDotNet.dll deleted file mode 100644 index 76b7999..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/YamlDotNet.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index d0282cc..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index fd3063e..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 5c1af97..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index e1c01df..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index ce740a9..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 574f796..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 7a1fec6..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/cs/System.Private.ServiceModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/cs/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 2cedcf5..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/cs/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/cs/System.Web.Services.Description.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/cs/System.Web.Services.Description.resources.dll deleted file mode 100644 index efe25cb..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/cs/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index e079e05..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 54aa47d..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 3d6e0dc..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 0848125..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 2034f65..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 4d0c9fd..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index ed8bc45..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/de/System.Private.ServiceModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/de/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 3dc63b8..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/de/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/de/System.Web.Services.Description.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/de/System.Web.Services.Description.resources.dll deleted file mode 100644 index 1f9fae9..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/de/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 4afd9fa..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 2d6218e..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index c792e28..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 51485bf..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index a4d93b5..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 86cf825..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index fcba277..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/es/System.Private.ServiceModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/es/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 65078e9..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/es/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/es/System.Web.Services.Description.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/es/System.Web.Services.Description.resources.dll deleted file mode 100644 index edfce43..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/es/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 93a31c1..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index a22b8d5..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 0b0764c..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 8708f22..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 8247ff9..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index c15b990..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 0668bcb..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/fr/System.Private.ServiceModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/fr/System.Private.ServiceModel.resources.dll deleted file mode 100644 index a2ad076..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/fr/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/fr/System.Web.Services.Description.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/fr/System.Web.Services.Description.resources.dll deleted file mode 100644 index a9e94e0..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/fr/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 7f9325d..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index e71779f..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index defdb16..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 79e3b5e..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 2536a93..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 61df169..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 9a9115e..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/it/System.Private.ServiceModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/it/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 7bb0d14..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/it/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/it/System.Web.Services.Description.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/it/System.Web.Services.Description.resources.dll deleted file mode 100644 index d8b5101..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/it/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 58a375d..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 8c8510d..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index e1aa3f0..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index da68de3..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index f4fab58..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 2e53ae8..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 09b1d90..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ja/System.Private.ServiceModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ja/System.Private.ServiceModel.resources.dll deleted file mode 100644 index c92e54a..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ja/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ja/System.Web.Services.Description.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ja/System.Web.Services.Description.resources.dll deleted file mode 100644 index d166bd0..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ja/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 3b3f0ed..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 66458d5..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 0bf0154..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 5ef656b..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 3feea7f..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 1599d60..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 6b0b4e8..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ko/System.Private.ServiceModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ko/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 5f09fb1..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ko/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ko/System.Web.Services.Description.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ko/System.Web.Services.Description.resources.dll deleted file mode 100644 index 7acc280..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ko/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 0c6175e..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 82ff47c..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 32121f9..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index e5d2843..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index b9db57e..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index f82d92d..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 526583e..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pl/System.Private.ServiceModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pl/System.Private.ServiceModel.resources.dll deleted file mode 100644 index bcdbbbb..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/pl/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pl/System.Web.Services.Description.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pl/System.Web.Services.Description.resources.dll deleted file mode 100644 index 421c859..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/pl/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 2d2ccbe..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index b583d8e..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 217f281..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index d6385c8..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 0817f52..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index a468b89..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index a9f6887..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pt-BR/System.Private.ServiceModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pt-BR/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 6138c5d..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/pt-BR/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pt-BR/System.Web.Services.Description.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pt-BR/System.Web.Services.Description.resources.dll deleted file mode 100644 index 8d4c892..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/pt-BR/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/Core.Test.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/Core.Test.dll deleted file mode 100644 index 258ba6a..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/Core.Test.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/Microsoft.CSharp.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/Microsoft.CSharp.dll deleted file mode 100644 index 00529c3..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/Microsoft.CSharp.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/Microsoft.VisualBasic.Core.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/Microsoft.VisualBasic.Core.dll deleted file mode 100644 index d37bdc6..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/Microsoft.VisualBasic.Core.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/Microsoft.VisualBasic.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/Microsoft.VisualBasic.dll deleted file mode 100644 index eb198db..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/Microsoft.VisualBasic.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/Microsoft.Win32.Primitives.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/Microsoft.Win32.Primitives.dll deleted file mode 100644 index e39072e..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/Microsoft.Win32.Primitives.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/Microsoft.Win32.Registry.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/Microsoft.Win32.Registry.dll deleted file mode 100644 index 0e4ca23..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/Microsoft.Win32.Registry.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.AppContext.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.AppContext.dll deleted file mode 100644 index 949e26a..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.AppContext.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Buffers.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Buffers.dll deleted file mode 100644 index 0ba2017..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Buffers.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Collections.Concurrent.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Collections.Concurrent.dll deleted file mode 100644 index a34bdfd..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Collections.Concurrent.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Collections.Immutable.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Collections.Immutable.dll deleted file mode 100644 index 3559d71..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Collections.Immutable.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Collections.NonGeneric.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Collections.NonGeneric.dll deleted file mode 100644 index 0ff1e9e..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Collections.NonGeneric.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Collections.Specialized.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Collections.Specialized.dll deleted file mode 100644 index 9e63d8f..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Collections.Specialized.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Collections.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Collections.dll deleted file mode 100644 index c563b3d..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Collections.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.Annotations.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.Annotations.dll deleted file mode 100644 index e719616..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.Annotations.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.DataAnnotations.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.DataAnnotations.dll deleted file mode 100644 index e92b9ec..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.DataAnnotations.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.EventBasedAsync.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.EventBasedAsync.dll deleted file mode 100644 index c13cab7..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.EventBasedAsync.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.Primitives.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.Primitives.dll deleted file mode 100644 index 2c8ac32..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.Primitives.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.TypeConverter.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.TypeConverter.dll deleted file mode 100644 index 8af874e..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.TypeConverter.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.dll deleted file mode 100644 index dedec7c..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Configuration.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Configuration.dll deleted file mode 100644 index 54fdf89..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Configuration.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Console.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Console.dll deleted file mode 100644 index 5934da2..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Console.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Core.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Core.dll deleted file mode 100644 index b5abba6..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Core.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Data.Common.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Data.Common.dll deleted file mode 100644 index fb6df46..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Data.Common.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Data.DataSetExtensions.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Data.DataSetExtensions.dll deleted file mode 100644 index e5afb2e..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Data.DataSetExtensions.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Data.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Data.dll deleted file mode 100644 index e54bdf1..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Data.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.Contracts.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.Contracts.dll deleted file mode 100644 index b2a4266..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.Contracts.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.Debug.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.Debug.dll deleted file mode 100644 index a0cd3f8..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.Debug.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.DiagnosticSource.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.DiagnosticSource.dll deleted file mode 100644 index 39a6217..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.DiagnosticSource.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.FileVersionInfo.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.FileVersionInfo.dll deleted file mode 100644 index 439c771..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.FileVersionInfo.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.Process.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.Process.dll deleted file mode 100644 index 2091f8c..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.Process.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.StackTrace.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.StackTrace.dll deleted file mode 100644 index 4b5a3d7..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.StackTrace.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.TextWriterTraceListener.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.TextWriterTraceListener.dll deleted file mode 100644 index 1a5cbf2..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.TextWriterTraceListener.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.Tools.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.Tools.dll deleted file mode 100644 index 335c9c1..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.Tools.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.TraceSource.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.TraceSource.dll deleted file mode 100644 index 749ba40..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.TraceSource.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.Tracing.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.Tracing.dll deleted file mode 100644 index 338074d..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.Tracing.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Drawing.Primitives.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Drawing.Primitives.dll deleted file mode 100644 index 8c0a332..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Drawing.Primitives.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Drawing.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Drawing.dll deleted file mode 100644 index b226cf3..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Drawing.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Dynamic.Runtime.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Dynamic.Runtime.dll deleted file mode 100644 index 70edfa6..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Dynamic.Runtime.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Formats.Asn1.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Formats.Asn1.dll deleted file mode 100644 index 8625760..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Formats.Asn1.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Globalization.Calendars.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Globalization.Calendars.dll deleted file mode 100644 index 21a0037..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Globalization.Calendars.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Globalization.Extensions.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Globalization.Extensions.dll deleted file mode 100644 index 0dd96b7..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Globalization.Extensions.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Globalization.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Globalization.dll deleted file mode 100644 index 1c2e682..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Globalization.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Compression.Brotli.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Compression.Brotli.dll deleted file mode 100644 index 297977e..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Compression.Brotli.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Compression.FileSystem.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Compression.FileSystem.dll deleted file mode 100644 index 6586130..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Compression.FileSystem.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Compression.ZipFile.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Compression.ZipFile.dll deleted file mode 100644 index 6c9be3c..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Compression.ZipFile.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Compression.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Compression.dll deleted file mode 100644 index 832d832..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Compression.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.AccessControl.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.AccessControl.dll deleted file mode 100644 index 37f5c30..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.AccessControl.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.DriveInfo.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.DriveInfo.dll deleted file mode 100644 index 3fafa94..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.DriveInfo.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.Primitives.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.Primitives.dll deleted file mode 100644 index 7e7c838..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.Primitives.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.Watcher.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.Watcher.dll deleted file mode 100644 index 413f9b4..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.Watcher.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.dll deleted file mode 100644 index e2be89f..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.IsolatedStorage.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.IsolatedStorage.dll deleted file mode 100644 index a17e9fc..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.IsolatedStorage.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.MemoryMappedFiles.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.MemoryMappedFiles.dll deleted file mode 100644 index 2d4175d..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.MemoryMappedFiles.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Pipes.AccessControl.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Pipes.AccessControl.dll deleted file mode 100644 index 8627e1d..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Pipes.AccessControl.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Pipes.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Pipes.dll deleted file mode 100644 index 401b732..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Pipes.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.UnmanagedMemoryStream.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.UnmanagedMemoryStream.dll deleted file mode 100644 index 9c49c70..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.UnmanagedMemoryStream.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.dll deleted file mode 100644 index 02ce4e2..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Linq.Expressions.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Linq.Expressions.dll deleted file mode 100644 index 65c06c3..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Linq.Expressions.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Linq.Parallel.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Linq.Parallel.dll deleted file mode 100644 index 02a5fa6..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Linq.Parallel.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Linq.Queryable.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Linq.Queryable.dll deleted file mode 100644 index 0eeb7c8..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Linq.Queryable.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Linq.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Linq.dll deleted file mode 100644 index 2a86c79..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Linq.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Memory.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Memory.dll deleted file mode 100644 index 388044d..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Memory.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Http.Json.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Http.Json.dll deleted file mode 100644 index 22997ef..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Http.Json.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Http.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Http.dll deleted file mode 100644 index abaf3da..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Http.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.HttpListener.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.HttpListener.dll deleted file mode 100644 index 55c3152..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.HttpListener.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Mail.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Mail.dll deleted file mode 100644 index 8c06ec8..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Mail.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.NameResolution.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.NameResolution.dll deleted file mode 100644 index 98dd2d8..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.NameResolution.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.NetworkInformation.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.NetworkInformation.dll deleted file mode 100644 index 842064d..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.NetworkInformation.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Ping.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Ping.dll deleted file mode 100644 index 0d4d3a9..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Ping.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Primitives.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Primitives.dll deleted file mode 100644 index d54f4bd..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Primitives.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Requests.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Requests.dll deleted file mode 100644 index f314471..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Requests.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Security.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Security.dll deleted file mode 100644 index 4e348d7..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Security.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.ServicePoint.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.ServicePoint.dll deleted file mode 100644 index 6077da1..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.ServicePoint.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Sockets.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Sockets.dll deleted file mode 100644 index 1af0691..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Sockets.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.WebClient.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.WebClient.dll deleted file mode 100644 index 6a4a572..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.WebClient.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.WebHeaderCollection.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.WebHeaderCollection.dll deleted file mode 100644 index 114289b..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.WebHeaderCollection.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.WebProxy.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.WebProxy.dll deleted file mode 100644 index d65ea58..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.WebProxy.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.WebSockets.Client.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.WebSockets.Client.dll deleted file mode 100644 index 5717169..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.WebSockets.Client.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.WebSockets.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.WebSockets.dll deleted file mode 100644 index 5bfa921..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.WebSockets.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.dll deleted file mode 100644 index 62feba4..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Numerics.Vectors.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Numerics.Vectors.dll deleted file mode 100644 index 2c3a984..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Numerics.Vectors.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Numerics.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Numerics.dll deleted file mode 100644 index 5d186c8..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Numerics.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.ObjectModel.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.ObjectModel.dll deleted file mode 100644 index f92cc11..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.ObjectModel.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.DispatchProxy.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.DispatchProxy.dll deleted file mode 100644 index b888c4b..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.DispatchProxy.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.ILGeneration.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.ILGeneration.dll deleted file mode 100644 index 81911c6..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.ILGeneration.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.Lightweight.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.Lightweight.dll deleted file mode 100644 index 045952c..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.Lightweight.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.dll deleted file mode 100644 index e579588..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Extensions.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Extensions.dll deleted file mode 100644 index 7987d1d..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Extensions.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Metadata.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Metadata.dll deleted file mode 100644 index 50158de..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Metadata.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Primitives.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Primitives.dll deleted file mode 100644 index d9210c0..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Primitives.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.TypeExtensions.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.TypeExtensions.dll deleted file mode 100644 index 792c8c8..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.TypeExtensions.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.dll deleted file mode 100644 index 3021f73..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Resources.Reader.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Resources.Reader.dll deleted file mode 100644 index e46173b..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Resources.Reader.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Resources.ResourceManager.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Resources.ResourceManager.dll deleted file mode 100644 index fc44423..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Resources.ResourceManager.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Resources.Writer.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Resources.Writer.dll deleted file mode 100644 index 68980f9..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Resources.Writer.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.Unsafe.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.Unsafe.dll deleted file mode 100644 index 546930e..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.Unsafe.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.VisualC.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.VisualC.dll deleted file mode 100644 index 277cb81..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.VisualC.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Extensions.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Extensions.dll deleted file mode 100644 index 441841e..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Extensions.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Handles.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Handles.dll deleted file mode 100644 index 70e3278..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Handles.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll deleted file mode 100644 index 89f8d39..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.InteropServices.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.InteropServices.dll deleted file mode 100644 index a39d097..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.InteropServices.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Intrinsics.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Intrinsics.dll deleted file mode 100644 index c9fcd40..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Intrinsics.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Loader.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Loader.dll deleted file mode 100644 index f109988..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Loader.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Numerics.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Numerics.dll deleted file mode 100644 index 89937d1..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Numerics.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Formatters.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Formatters.dll deleted file mode 100644 index 5438ce3..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Formatters.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Json.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Json.dll deleted file mode 100644 index 399a512..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Json.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Primitives.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Primitives.dll deleted file mode 100644 index c402e8a..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Primitives.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Xml.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Xml.dll deleted file mode 100644 index 84fffc5..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Xml.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.dll deleted file mode 100644 index 1c1891a..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.dll deleted file mode 100644 index 921a08b..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.AccessControl.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.AccessControl.dll deleted file mode 100644 index 2c6f9f4..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.AccessControl.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Claims.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Claims.dll deleted file mode 100644 index b6297f6..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Claims.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Algorithms.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Algorithms.dll deleted file mode 100644 index 4b89540..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Algorithms.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Cng.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Cng.dll deleted file mode 100644 index e76a578..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Cng.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Csp.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Csp.dll deleted file mode 100644 index 2ceae69..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Csp.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Encoding.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Encoding.dll deleted file mode 100644 index a975809..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Encoding.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.OpenSsl.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.OpenSsl.dll deleted file mode 100644 index df3a3a9..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.OpenSsl.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Primitives.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Primitives.dll deleted file mode 100644 index 21222a6..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Primitives.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.X509Certificates.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.X509Certificates.dll deleted file mode 100644 index eee372d..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.X509Certificates.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Principal.Windows.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Principal.Windows.dll deleted file mode 100644 index 9a3798b..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Principal.Windows.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Principal.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Principal.dll deleted file mode 100644 index 0dbfa46..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Principal.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.SecureString.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.SecureString.dll deleted file mode 100644 index 7299b40..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.SecureString.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.dll deleted file mode 100644 index b83e96a..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.ServiceModel.Web.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.ServiceModel.Web.dll deleted file mode 100644 index a4d4e0f..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.ServiceModel.Web.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.ServiceProcess.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.ServiceProcess.dll deleted file mode 100644 index 86c09dc..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.ServiceProcess.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.Encoding.CodePages.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.Encoding.CodePages.dll deleted file mode 100644 index 5ce72b1..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.Encoding.CodePages.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.Encoding.Extensions.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.Encoding.Extensions.dll deleted file mode 100644 index 05e497a..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.Encoding.Extensions.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.Encoding.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.Encoding.dll deleted file mode 100644 index 46c5400..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.Encoding.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.Encodings.Web.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.Encodings.Web.dll deleted file mode 100644 index f2b10eb..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.Encodings.Web.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.Json.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.Json.dll deleted file mode 100644 index 37851d2..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.Json.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.RegularExpressions.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.RegularExpressions.dll deleted file mode 100644 index 983cbbd..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.RegularExpressions.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Channels.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Channels.dll deleted file mode 100644 index 34ae646..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Channels.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Overlapped.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Overlapped.dll deleted file mode 100644 index 9092609..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Overlapped.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Dataflow.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Dataflow.dll deleted file mode 100644 index 0731d06..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Dataflow.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Extensions.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Extensions.dll deleted file mode 100644 index e5840ae..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Extensions.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Parallel.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Parallel.dll deleted file mode 100644 index 5bec78b..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Parallel.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.dll deleted file mode 100644 index 04704d0..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Thread.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Thread.dll deleted file mode 100644 index de9a348..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Thread.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.ThreadPool.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.ThreadPool.dll deleted file mode 100644 index efab9c3..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.ThreadPool.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Timer.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Timer.dll deleted file mode 100644 index 718a039..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Timer.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.dll deleted file mode 100644 index d697919..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Transactions.Local.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Transactions.Local.dll deleted file mode 100644 index 03df1fb..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Transactions.Local.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Transactions.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Transactions.dll deleted file mode 100644 index 1bd2e0a..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Transactions.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.ValueTuple.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.ValueTuple.dll deleted file mode 100644 index b6103f6..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.ValueTuple.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Web.HttpUtility.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Web.HttpUtility.dll deleted file mode 100644 index c77ebab..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Web.HttpUtility.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Web.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Web.dll deleted file mode 100644 index d04d5e3..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Web.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Windows.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Windows.dll deleted file mode 100644 index 9133038..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Windows.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.Linq.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.Linq.dll deleted file mode 100644 index d8aa5cd..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.Linq.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.ReaderWriter.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.ReaderWriter.dll deleted file mode 100644 index 66f199d..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.ReaderWriter.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.Serialization.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.Serialization.dll deleted file mode 100644 index 92bc678..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.Serialization.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.XDocument.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.XDocument.dll deleted file mode 100644 index 5ba2260..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.XDocument.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.XPath.XDocument.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.XPath.XDocument.dll deleted file mode 100644 index be27c4e..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.XPath.XDocument.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.XPath.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.XPath.dll deleted file mode 100644 index 22482d8..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.XPath.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.XmlDocument.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.XmlDocument.dll deleted file mode 100644 index 20d0fac..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.XmlDocument.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.XmlSerializer.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.XmlSerializer.dll deleted file mode 100644 index 0a1664c..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.XmlSerializer.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.dll deleted file mode 100644 index f2b768e..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.dll deleted file mode 100644 index 9e8d0a4..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/System.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/WindowsBase.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/WindowsBase.dll deleted file mode 100644 index 1032969..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/WindowsBase.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/mscorlib.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/mscorlib.dll deleted file mode 100644 index 31e8f9b..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/mscorlib.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/netstandard.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/netstandard.dll deleted file mode 100644 index 1452256..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ref/netstandard.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 08d18ad..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 0d0a62d..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 191d8b0..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 223ddc1..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 08d3cba..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 945add7..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 794e7f7..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ru/System.Private.ServiceModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ru/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 11f804c..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ru/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ru/System.Web.Services.Description.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ru/System.Web.Services.Description.resources.dll deleted file mode 100644 index a43bf0d..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/ru/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll deleted file mode 100644 index 8e0d27d..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/illumos/lib/net6.0/System.Data.Odbc.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/illumos/lib/net6.0/System.Data.Odbc.dll deleted file mode 100644 index 86425c9..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/illumos/lib/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/ios/lib/net6.0/System.Data.Odbc.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/ios/lib/net6.0/System.Data.Odbc.dll deleted file mode 100644 index 72945c5..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/ios/lib/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-arm/native/libSystem.IO.Ports.Native.so b/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-arm/native/libSystem.IO.Ports.Native.so deleted file mode 100644 index 78b5008..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-arm/native/libSystem.IO.Ports.Native.so and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-arm/native/libpsl-native.so b/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-arm/native/libpsl-native.so deleted file mode 100644 index eb7876d..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-arm/native/libpsl-native.so and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so b/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so deleted file mode 100644 index dd85d2d..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-arm64/native/libpsl-native.so b/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-arm64/native/libpsl-native.so deleted file mode 100644 index ed4929b..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-arm64/native/libpsl-native.so and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-musl-x64/native/libpsl-native.so b/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-musl-x64/native/libpsl-native.so deleted file mode 100644 index 222670d..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-musl-x64/native/libpsl-native.so and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libSystem.IO.Ports.Native.so b/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libSystem.IO.Ports.Native.so deleted file mode 100644 index 9dbd44e..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libSystem.IO.Ports.Native.so and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libmi.so b/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libmi.so deleted file mode 100644 index e87da8d..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libmi.so and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libpsl-native.so b/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libpsl-native.so deleted file mode 100644 index c04a0e3..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libpsl-native.so and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libpsrpclient.so b/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libpsrpclient.so deleted file mode 100644 index 029ac86..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libpsrpclient.so and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.Data.Odbc.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.Data.Odbc.dll deleted file mode 100644 index 6e67ec3..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll deleted file mode 100644 index 75139e1..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib b/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib deleted file mode 100644 index 974ae77..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib b/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib deleted file mode 100644 index 96ba9bf..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.Data.Odbc.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.Data.Odbc.dll deleted file mode 100644 index eef28b5..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll deleted file mode 100644 index 3a64667..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx/native/libmi.dylib b/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx/native/libmi.dylib deleted file mode 100644 index 71880e4..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx/native/libmi.dylib and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx/native/libpsl-native.dylib b/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx/native/libpsl-native.dylib deleted file mode 100644 index f4df8f4..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx/native/libpsl-native.dylib and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx/native/libpsrpclient.dylib b/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx/native/libpsrpclient.dylib deleted file mode 100644 index 13680bf..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx/native/libpsrpclient.dylib and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/solaris/lib/net6.0/System.Data.Odbc.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/solaris/lib/net6.0/System.Data.Odbc.dll deleted file mode 100644 index e283d99..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/solaris/lib/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/tvos/lib/net6.0/System.Data.Odbc.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/tvos/lib/net6.0/System.Data.Odbc.dll deleted file mode 100644 index 9648360..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/tvos/lib/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll deleted file mode 100644 index 93d7ef2..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll deleted file mode 100644 index 3258453..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll deleted file mode 100644 index 8cedac7..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll deleted file mode 100644 index 0ca804c..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll deleted file mode 100644 index 60f30e3..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 deleted file mode 100644 index 53e9bc5..0000000 --- a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 +++ /dev/null @@ -1,14 +0,0 @@ -@{ -GUID="56D66100-99A0-4FFC-A12D-EEE9A6718AEF" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -FunctionsToExport = @() -CmdletsToExport="Start-Transcript", "Stop-Transcript" -AliasesToExport = @() -NestedModules="Microsoft.PowerShell.ConsoleHost.dll" -HelpInfoURI = 'https://aka.ms/powershell72-help' -} diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 deleted file mode 100644 index 8d4d985..0000000 --- a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 +++ /dev/null @@ -1,60 +0,0 @@ -@{ -GUID="EEFCB906-B326-4E99-9F54-8B4BB6EF3C6D" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -NestedModules="Microsoft.PowerShell.Commands.Management.dll" -HelpInfoURI = 'https://aka.ms/powershell72-help' -FunctionsToExport = @() -AliasesToExport = @("gcb", "gtz", "scb") -CmdletsToExport=@("Add-Content", - "Clear-Content", - "Clear-ItemProperty", - "Join-Path", - "Convert-Path", - "Copy-ItemProperty", - "Get-ChildItem", - "Get-Clipboard", - "Set-Clipboard", - "Get-Content", - "Get-ItemProperty", - "Get-ItemPropertyValue", - "Move-ItemProperty", - "Get-Location", - "Set-Location", - "Push-Location", - "Pop-Location", - "New-PSDrive", - "Remove-PSDrive", - "Get-PSDrive", - "Get-Item", - "New-Item", - "Set-Item", - "Remove-Item", - "Move-Item", - "Rename-Item", - "Copy-Item", - "Clear-Item", - "Invoke-Item", - "Get-PSProvider", - "New-ItemProperty", - "Split-Path", - "Test-Path", - "Get-Process", - "Stop-Process", - "Wait-Process", - "Debug-Process", - "Start-Process", - "Test-Connection", - "Remove-ItemProperty", - "Rename-ItemProperty", - "Resolve-Path", - "Set-Content", - "Set-ItemProperty", - "Get-TimeZone", - "Stop-Computer", - "Restart-Computer") -} diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 deleted file mode 100644 index 9c9f978..0000000 --- a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 +++ /dev/null @@ -1,14 +0,0 @@ -@{ -GUID="A94C8C7E-9810-47C0-B8AF-65089C13A35A" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -FunctionsToExport = @() -CmdletsToExport="Get-Credential", "Get-ExecutionPolicy", "Set-ExecutionPolicy", "ConvertFrom-SecureString", "ConvertTo-SecureString", "Get-PfxCertificate" , "Protect-CmsMessage", "Unprotect-CmsMessage", "Get-CmsMessage" -AliasesToExport = @() -NestedModules="Microsoft.PowerShell.Security.dll" -HelpInfoURI = 'https://aka.ms/powershell72-help' -} diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 deleted file mode 100644 index 8efcaa0..0000000 --- a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 +++ /dev/null @@ -1,34 +0,0 @@ -@{ -GUID = "1DA87E53-152B-403E-98DC-74D7B4D63D59" -Author = "PowerShell" -CompanyName = "Microsoft Corporation" -Copyright = "Copyright (c) Microsoft Corporation." -ModuleVersion = "7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion = "3.0" -CmdletsToExport = @( - 'Export-Alias', 'Get-Alias', 'Import-Alias', 'New-Alias', 'Remove-Alias', 'Set-Alias', 'Export-Clixml', - 'Import-Clixml', 'Measure-Command', 'Trace-Command', 'ConvertFrom-Csv', 'ConvertTo-Csv', 'Export-Csv', - 'Import-Csv', 'Get-Culture', 'Format-Custom', 'Get-Date', 'Set-Date', 'Write-Debug', 'Wait-Debugger', - 'Register-EngineEvent', 'Write-Error', 'Get-Event', 'New-Event', 'Remove-Event', 'Unregister-Event', - 'Wait-Event', 'Get-EventSubscriber', 'Invoke-Expression', 'Out-File', 'Get-FileHash', 'Export-FormatData', - 'Get-FormatData', 'Update-FormatData', 'New-Guid', 'Format-Hex', 'Get-Host', 'Read-Host', 'Write-Host', - 'ConvertTo-Html', 'Write-Information', 'ConvertFrom-Json', 'ConvertTo-Json', 'Test-Json', 'Format-List', - 'Import-LocalizedData', 'Send-MailMessage', 'ConvertFrom-Markdown', 'Show-Markdown', 'Get-MarkdownOption', - 'Set-MarkdownOption', 'Add-Member', 'Get-Member', 'Compare-Object', 'Group-Object', 'Measure-Object', - 'New-Object', 'Select-Object', 'Sort-Object', 'Tee-Object', 'Register-ObjectEvent', 'Write-Output', - 'Import-PowerShellDataFile', 'Write-Progress', 'Disable-PSBreakpoint', 'Enable-PSBreakpoint', - 'Get-PSBreakpoint', 'Remove-PSBreakpoint', 'Set-PSBreakpoint', 'Get-PSCallStack', 'Export-PSSession', - 'Import-PSSession', 'Get-Random', 'Invoke-RestMethod', 'Debug-Runspace', 'Get-Runspace', - 'Disable-RunspaceDebug', 'Enable-RunspaceDebug', 'Get-RunspaceDebug', 'Start-Sleep', 'Join-String', - 'Out-String', 'Select-String', 'ConvertFrom-StringData', 'Format-Table', 'New-TemporaryFile', 'New-TimeSpan', - 'Get-TraceSource', 'Set-TraceSource', 'Add-Type', 'Get-TypeData', 'Remove-TypeData', 'Update-TypeData', - 'Get-UICulture', 'Get-Unique', 'Get-Uptime', 'Clear-Variable', 'Get-Variable', 'New-Variable', - 'Remove-Variable', 'Set-Variable', 'Get-Verb', 'Write-Verbose', 'Write-Warning', 'Invoke-WebRequest', - 'Format-Wide', 'ConvertTo-Xml', 'Select-Xml', 'Get-Error', 'Update-List', 'Unblock-File' -) -FunctionsToExport = @() -AliasesToExport = @('fhx') -NestedModules = @("Microsoft.PowerShell.Commands.Utility.dll") -HelpInfoURI = 'https://aka.ms/powershell72-help' -} diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll deleted file mode 100644 index 9e26473..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.IO.Ports.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.IO.Ports.dll deleted file mode 100644 index 8e7b399..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.IO.Ports.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Management.Automation.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Management.Automation.dll deleted file mode 100644 index a5f1912..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Management.Automation.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll deleted file mode 100644 index ad2a602..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 78105ed..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index 2e7bf94..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index ac47598..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll deleted file mode 100644 index 56a149b..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll deleted file mode 100644 index f60631c..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/native/mi.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/native/mi.dll deleted file mode 100644 index 7228cd0..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/native/mi.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/native/miutils.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/native/miutils.dll deleted file mode 100644 index ab98cbf..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/native/miutils.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/native/pwrshplugin.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/native/pwrshplugin.dll deleted file mode 100644 index 0eec871..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/native/pwrshplugin.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index 50860ab..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 9dbe56e..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll deleted file mode 100644 index a78573d..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll deleted file mode 100644 index b148487..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/mi.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/mi.dll deleted file mode 100644 index eb971a1..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/mi.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/miutils.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/miutils.dll deleted file mode 100644 index 0d3985d..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/miutils.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/pwrshplugin.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/pwrshplugin.dll deleted file mode 100644 index f36ee7d..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/pwrshplugin.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/sni.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/sni.dll deleted file mode 100644 index 7b8f9d8..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/sni.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll deleted file mode 100644 index 9d148cf..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x64/native/pwrshplugin.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x64/native/pwrshplugin.dll deleted file mode 100644 index 74da742..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x64/native/pwrshplugin.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x64/native/sni.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x64/native/sni.dll deleted file mode 100644 index c1a05a5..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x64/native/sni.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll deleted file mode 100644 index 79a3085..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x86/native/pwrshplugin.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x86/native/pwrshplugin.dll deleted file mode 100644 index 200bf77..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x86/native/pwrshplugin.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x86/native/sni.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x86/native/sni.dll deleted file mode 100644 index 5fc21ac..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x86/native/sni.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll deleted file mode 100644 index c8ff3c8..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll deleted file mode 100644 index 997d268..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll deleted file mode 100644 index 1e4a567..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll deleted file mode 100644 index 3e7ffc4..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll deleted file mode 100644 index 3dfb631..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll deleted file mode 100644 index fa3247a..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll deleted file mode 100644 index b6dc868..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll deleted file mode 100644 index 8ed4dde..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll deleted file mode 100644 index b6a87a7..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll deleted file mode 100644 index 9896fd3..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll deleted file mode 100644 index 18eb223..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll deleted file mode 100644 index 66af198..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/CimCmdlets/CimCmdlets.psd1 b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/CimCmdlets/CimCmdlets.psd1 deleted file mode 100644 index 9c74ac8..0000000 --- a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/CimCmdlets/CimCmdlets.psd1 +++ /dev/null @@ -1,233 +0,0 @@ -@{ -GUID="{Fb6cc51d-c096-4b38-b78d-0fed6277096a}" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -RootModule="Microsoft.Management.Infrastructure.CimCmdlets" -RequiredAssemblies="Microsoft.Management.Infrastructure.CimCmdlets.dll","Microsoft.Management.Infrastructure.Dll" -FunctionsToExport = @() -CmdletsToExport= "Get-CimAssociatedInstance", "Get-CimClass", "Get-CimInstance", "Get-CimSession", "Invoke-CimMethod", - "New-CimInstance","New-CimSession","New-CimSessionOption","Register-CimIndicationEvent","Remove-CimInstance", - "Remove-CimSession","Set-CimInstance", - "Export-BinaryMiLog","Import-BinaryMiLog" -AliasesToExport = "gcim","scim","ncim", "rcim","icim","gcai","rcie","ncms","rcms","gcms","ncso","gcls" -HelpInfoUri="https://aka.ms/powershell72-help" -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCDVr9wtf0/6ef8P -# 7Oewmh6e4caAvboErstvAWik/E+xjqCCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQggKe1Wa+d -# fYvru2vipTPxs79u032BOtU/CXLz68NBYs0wQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQB0Sx7LIYYO505eD5CAwvSG6wwrjjzKL/MSFiL9Nh0Q -# YDyFIX4UsB617gQ/OLzvBaXpzuGbkzdtbxGuknwe5pNeLgzdAPj8f3aMfNM7JnL0 -# Pu6HUmHuaD11aY9bOOoddRWRZDGoSMXaPXvTHGXo8lk672+n6e2SNB28QG1ASAt7 -# 20qZLgr0ujUBlUe4zyg5MxZseqjEGR3bsUSltPOu2F107jcNqj1YZ/HXJHCAniSd -# XdMRipCWeydTNPpPLCWVtcjTyxXnJoDbTEVtyOpFx/0YxCgazCDY0ae+QKzp7sNe -# qbnNd30/F9pJ2S3hu9z9RcpgxbYDIHchMVO970sQOyvNoYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIAaCwImJ8DxZ2FNq1L4wuBej3xtvL6SPai8XFzEz -# uLyVAgZhlV4Kp6EYEzIwMjExMjA4MjEwNDEzLjk2M1owBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046MkFENC00QjkyLUZBMDExJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYZ45RmJ+CRL -# zAABAAABhjANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3MzlaFw0yMzAxMjYxOTI3MzlaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjJBRDQtNEI5Mi1GQTAxMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwI3G2Wpv -# 6B4IjAfrgfJpndPOPYO1Yd8+vlfoIxMW3gdCDT+zIbafg14pOu0t0ekUQx60p7Pa -# dH4OjnqNIE1q6ldH9ntj1gIdl4Hq4rdEHTZ6JFdE24DSbVoqqR+R4Iw4w3GPbfc2 -# Q3kfyyFyj+DOhmCWw/FZiTVTlT4bdejyAW6r/Jn4fr3xLjbvhITatr36VyyzgQ0Y -# 4Wr73H3gUcLjYu0qiHutDDb6+p+yDBGmKFznOW8wVt7D+u2VEJoE6JlK0EpVLZus -# dSzhecuUwJXxb2uygAZXlsa/fHlwW9YnlBqMHJ+im9HuK5X4x8/5B5dkuIoX5lWG -# jFMbD2A6Lu/PmUB4hK0CF5G1YaUtBrME73DAKkypk7SEm3BlJXwY/GrVoXWYUGEH -# yfrkLkws0RoEMpoIEgebZNKqjRynRJgR4fPCKrEhwEiTTAc4DXGci4HHOm64EQ1g -# /SDHMFqIKVSxoUbkGbdKNKHhmahuIrAy4we9s7rZJskveZYZiDmtAtBt/gQojxbZ -# 1vO9C11SthkrmkkTMLQf9cDzlVEBeu6KmHX2Sze6ggne3I4cy/5IULnHZ3rM4ZpJ -# c0s2KpGLHaVrEQy4x/mAn4yaYfgeH3MEAWkVjy/qTDh6cDCF/gyz3TaQDtvFnAK7 -# 0LqtbEvBPdBpeCG/hk9l0laYzwiyyGY/HqMCAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBQZtqNFA+9mdEu/h33UhHMN6whcLjAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQDD7mehJY3fTHKC4hj+wBWB8544 -# uaJiMMIHnhK9ONTM7VraTYzx0U/TcLJ6gxw1tRzM5uu8kswJNlHNp7RedsAiwviV -# QZV9AL8IbZRLJTwNehCwk+BVcY2gh3ZGZmx8uatPZrRueyhhTTD2PvFVLrfwh2li -# DG/dEPNIHTKj79DlEcPIWoOCUp7p0ORMwQ95kVaibpX89pvjhPl2Fm0CBO3pXXJg -# 0bydpQ5dDDTv/qb0+WYF/vNVEU/MoMEQqlUWWuXECTqx6TayJuLJ6uU7K5QyTkQ/ -# l24IhGjDzf5AEZOrINYzkWVyNfUOpIxnKsWTBN2ijpZ/Tun5qrmo9vNIDT0lobgn -# ulae17NaEO9oiEJJH1tQ353dhuRi+A00PR781iYlzF5JU1DrEfEyNx8CWgERi90L -# KsYghZBCDjQ3DiJjfUZLqONeHrJfcmhz5/bfm8+aAaUPpZFeP0g0Iond6XNk4YiY -# bWPFoofc0LwcqSALtuIAyz6f3d+UaZZsp41U4hCIoGj6hoDIuU839bo/mZ/AgESw -# GxIXs0gZU6A+2qIUe60QdA969wWSzucKOisng9HCSZLF1dqc3QUawr0C0U41784K -# o9vckAG3akwYuVGcs6hM/SqEhoe9jHwe4Xp81CrTB1l9+EIdukCbP0kyzx0WZzte -# eiDN5rdiiQR9mBJuljCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046MkFENC00Qjky -# LUZBMDExJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVAAGu2DRzWkKljmXySX1korHL4fMnoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tXMCIY -# DzIwMjExMjA5MDM1MTUxWhgPMjAyMTEyMTAwMzUxNTFaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi1cCAQAwCgIBAAICFmICAf8wBwIBAAICEh0wCgIFAOVc3NcC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQAcxjpqy9KLSwM37+FXLc0BH8vQ -# bi/JiOUtzx1U3w8DY7ed3asVEpLwGzUKiZ6rI29ZJuKH6YlwiWrAcHP9QgQnWNwg -# LXWMiZLEeOE63JCAWeL4odLTq1DKced93+APIOfcpQ1ap6X/BY4fKpscksm/q98S -# mmAs+7pjsbcUGpWLtzGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABhnjlGYn4JEvMAAEAAAGGMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEINEG -# q0+SCFYCT6sOQMZPpgnAOe4W2XF/PwFbVzs1WLMVMIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgGpmI4LIsCFTGiYyfRAR7m7Fa2guxVNIw17mcAiq8Qn4wgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYZ45RmJ+CRL -# zAABAAABhjAiBCAUmIgeNWf4KXB+/obIOhBMrPwiJ83+1ebXflyLLm9rjjANBgkq -# hkiG9w0BAQsFAASCAgBXBmO2FJAq4az5Z1fXe3nTGflWCimqnMzUudZ0JD5Omi9t -# KDRFGDjYxgAo4r26b3zc73bN/7kkUkJwwdDc2RsABuzjHa04XSfIbry8JwBw7utB -# lwotvUH6Wa22GXu0POFqMEywdRl2x4XM04hgdUfZdWznuVRzZACn1NIfYhjmsL97 -# WMTYX7dx4OVEIFWriI/R5+8p0IXDgLe3AxdrTSedGeQFgsbEvLRkVmU0m3Qsb3Qb -# V+Ds1llgS06AFYlJzgcSbBdr/6gU7V1s3EcH2z4GjPCs2rYmVIZ6XCwkn0no2vc9 -# jEHbLtaBZ7VJ/r3Xvbj/GEYdUbGgVAIdpDFnBKsamV/Z2X9eZZSIxjTnBdh4fdkJ -# 29TRUahZywqEtJWP7LOvjlIHK3Ri9AxxkJrGDhIyvJeOGT6fzT/SvWeHkAoqeGpp -# lqXzs/p5d1rsqFAST8pTTWVXItcmO84qO3+1is32A9nh1ngDva7RGXdsh3+kkobP -# eZkn0HnUxV0OUYgINHsDiCeDhwfElDpvix6/F+1S3yApsfT10k09qOWKBAxq1P7p -# j2Iih/xwZUTOwsPHTvczh8yrOAwVQoWiHKgNKXE4GyZmNAV2oUH0goTkTjqCOw7z -# /7UFMEhbEHABlSIKOQU/1hXDY4d07sfBlWPHskx8A+Yq7rTeFVPcXSnUUcqjcg== -# SIG # End signature block diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml deleted file mode 100644 index 8887031..0000000 --- a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml +++ /dev/null @@ -1,294 +0,0 @@ - - - - - - - - Counter - - Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSampleSet - - - - - - 25 - left - - - - left - 100 - - - - - - - - Timestamp - - - Readings - - - - - - - - Counter - - Microsoft.PowerShell.Commands.GetCounter.CounterFileInfo - - - - - 30 - left - - - 30 - left - - - 30 - left - - - - - - - - OldestRecord - - - NewestRecord - - - SampleCount - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml deleted file mode 100644 index 3cb0478..0000000 --- a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml +++ /dev/null @@ -1,336 +0,0 @@ - - - - - Default - - System.Diagnostics.Eventing.Reader.EventLogRecord - - - ProviderName - - - - - - 25 - - - 8 - right - - - 16 - - - - - - - - - TimeCreated - - - Id - - - LevelDisplayName - - - Message - - - - - - - - - Default - - System.Diagnostics.Eventing.Reader.EventLogConfiguration - - - - - - - 9 - - - - 18 - right - - - - 11 - right - - - - - - - - LogMode - - - MaximumSizeInBytes - - - RecordCount - - - LogName - - - - - - - - Default - - System.Diagnostics.Eventing.Reader.ProviderMetadata - - - - - - - Name - - - LogLinks - - - Opcodes - - - Tasks - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml deleted file mode 100644 index a365f67..0000000 --- a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml +++ /dev/null @@ -1,354 +0,0 @@ - - - - - - System.Diagnostics.Eventing.Reader.EventLogConfiguration - - - PSStandardMembers - - - DefaultDisplayPropertySet - - LogName - MaximumSizeInBytes - RecordCount - LogMode - - - - - - - - System.Diagnostics.Eventing.Reader.EventLogRecord - - - PSStandardMembers - - - DefaultDisplayPropertySet - - TimeCreated - ProviderName - Id - Message - - - - - - - - System.Diagnostics.Eventing.Reader.ProviderMetadata - - - ProviderName - Name - - - PSStandardMembers - - - DefaultDisplayPropertySet - - Name - LogLinks - - - - - - - - Microsoft.PowerShell.Commands.GetCounter.CounterSet - - - Counter - Paths - - - - - Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSample - - - PSStandardMembers - - - DefaultDisplayPropertySet - - Path - InstanceName - CookedValue - - - - - - - - Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSampleSet - - - PSStandardMembers - - - DefaultDisplayPropertySet - - Timestamp - Readings - - - - - - - - Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSampleSet - - - Readings - - $strPaths = "" - foreach ($ctr in $this.CounterSamples) - { - $strPaths += ($ctr.Path + " :" + "`n") - $strPaths += ($ctr.CookedValue.ToString() + "`n`n") - } - return $strPaths - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1 b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1 deleted file mode 100644 index 880d7aa..0000000 --- a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1 +++ /dev/null @@ -1,231 +0,0 @@ -@{ -GUID="CA046F10-CA64-4740-8FF9-2565DBA61A4F" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -FunctionsToExport = @() -CmdletsToExport="Get-WinEvent", "New-WinEvent", "Get-Counter" -AliasesToExport = @() -NestedModules="Microsoft.PowerShell.Commands.Diagnostics.dll" -TypesToProcess="GetEvent.types.ps1xml" -FormatsToProcess="Event.format.ps1xml", "Diagnostics.format.ps1xml" -HelpInfoURI = 'https://aka.ms/powershell72-help' -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCDPn0/Kw53z57yO -# 1TekDBJE1OmAf8RR94VaWe+Hq0qiG6CCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgODWoe2T6 -# RL6c8rlTHF90KQETb+lXsgMFPg5sa5qcVO8wQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQArTuRkyGCIWatxzP2XmCe8MGk2psH1zX2CtsCxq8Ap -# llWPArMeb/LjOcajbM5kypCRRAbwRz6aDbnQHt8odHEoRZU7pTPP6Gi5YLzfXy5B -# 0ww61qNEDWQD3Js4U0r/D5Bvbm0ewiX+JmBEh1lhTJYzIp8iXuTH3qe9bhKKb++x -# iTOWvO8/HgtkFqax0G4FyoGpyhcxGzGI0hzjTE+8qabrKI0VtLQ4FlvNluxrfISs -# nx56dtXmf0jiOSCWuGbtKydeTR6wtK8b8RfXdSfUfI2TbFk+nuTk9OADnpMxw87X -# rpiALWuM8oSYj9xv4oUCw6fsjnuryMRoM59K86mOjXkEoYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIBHzUJcs5FFt55Hx994HtkOYw1sXWAszphHUNgXU -# AU+vAgZhlV4Kp54YEzIwMjExMjA4MjEwNDEzLjc5NlowBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046MkFENC00QjkyLUZBMDExJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYZ45RmJ+CRL -# zAABAAABhjANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3MzlaFw0yMzAxMjYxOTI3MzlaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjJBRDQtNEI5Mi1GQTAxMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwI3G2Wpv -# 6B4IjAfrgfJpndPOPYO1Yd8+vlfoIxMW3gdCDT+zIbafg14pOu0t0ekUQx60p7Pa -# dH4OjnqNIE1q6ldH9ntj1gIdl4Hq4rdEHTZ6JFdE24DSbVoqqR+R4Iw4w3GPbfc2 -# Q3kfyyFyj+DOhmCWw/FZiTVTlT4bdejyAW6r/Jn4fr3xLjbvhITatr36VyyzgQ0Y -# 4Wr73H3gUcLjYu0qiHutDDb6+p+yDBGmKFznOW8wVt7D+u2VEJoE6JlK0EpVLZus -# dSzhecuUwJXxb2uygAZXlsa/fHlwW9YnlBqMHJ+im9HuK5X4x8/5B5dkuIoX5lWG -# jFMbD2A6Lu/PmUB4hK0CF5G1YaUtBrME73DAKkypk7SEm3BlJXwY/GrVoXWYUGEH -# yfrkLkws0RoEMpoIEgebZNKqjRynRJgR4fPCKrEhwEiTTAc4DXGci4HHOm64EQ1g -# /SDHMFqIKVSxoUbkGbdKNKHhmahuIrAy4we9s7rZJskveZYZiDmtAtBt/gQojxbZ -# 1vO9C11SthkrmkkTMLQf9cDzlVEBeu6KmHX2Sze6ggne3I4cy/5IULnHZ3rM4ZpJ -# c0s2KpGLHaVrEQy4x/mAn4yaYfgeH3MEAWkVjy/qTDh6cDCF/gyz3TaQDtvFnAK7 -# 0LqtbEvBPdBpeCG/hk9l0laYzwiyyGY/HqMCAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBQZtqNFA+9mdEu/h33UhHMN6whcLjAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQDD7mehJY3fTHKC4hj+wBWB8544 -# uaJiMMIHnhK9ONTM7VraTYzx0U/TcLJ6gxw1tRzM5uu8kswJNlHNp7RedsAiwviV -# QZV9AL8IbZRLJTwNehCwk+BVcY2gh3ZGZmx8uatPZrRueyhhTTD2PvFVLrfwh2li -# DG/dEPNIHTKj79DlEcPIWoOCUp7p0ORMwQ95kVaibpX89pvjhPl2Fm0CBO3pXXJg -# 0bydpQ5dDDTv/qb0+WYF/vNVEU/MoMEQqlUWWuXECTqx6TayJuLJ6uU7K5QyTkQ/ -# l24IhGjDzf5AEZOrINYzkWVyNfUOpIxnKsWTBN2ijpZ/Tun5qrmo9vNIDT0lobgn -# ulae17NaEO9oiEJJH1tQ353dhuRi+A00PR781iYlzF5JU1DrEfEyNx8CWgERi90L -# KsYghZBCDjQ3DiJjfUZLqONeHrJfcmhz5/bfm8+aAaUPpZFeP0g0Iond6XNk4YiY -# bWPFoofc0LwcqSALtuIAyz6f3d+UaZZsp41U4hCIoGj6hoDIuU839bo/mZ/AgESw -# GxIXs0gZU6A+2qIUe60QdA969wWSzucKOisng9HCSZLF1dqc3QUawr0C0U41784K -# o9vckAG3akwYuVGcs6hM/SqEhoe9jHwe4Xp81CrTB1l9+EIdukCbP0kyzx0WZzte -# eiDN5rdiiQR9mBJuljCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046MkFENC00Qjky -# LUZBMDExJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVAAGu2DRzWkKljmXySX1korHL4fMnoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tXMCIY -# DzIwMjExMjA5MDM1MTUxWhgPMjAyMTEyMTAwMzUxNTFaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi1cCAQAwCgIBAAICFmICAf8wBwIBAAICEh0wCgIFAOVc3NcC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQAcxjpqy9KLSwM37+FXLc0BH8vQ -# bi/JiOUtzx1U3w8DY7ed3asVEpLwGzUKiZ6rI29ZJuKH6YlwiWrAcHP9QgQnWNwg -# LXWMiZLEeOE63JCAWeL4odLTq1DKced93+APIOfcpQ1ap6X/BY4fKpscksm/q98S -# mmAs+7pjsbcUGpWLtzGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABhnjlGYn4JEvMAAEAAAGGMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIIOe -# Fteykp3uhjp/CbUuslldSIpFBtmy2s0K3N7X+v4KMIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgGpmI4LIsCFTGiYyfRAR7m7Fa2guxVNIw17mcAiq8Qn4wgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYZ45RmJ+CRL -# zAABAAABhjAiBCAUmIgeNWf4KXB+/obIOhBMrPwiJ83+1ebXflyLLm9rjjANBgkq -# hkiG9w0BAQsFAASCAgBf6Fat07wOy6aoLnxthDrldarQW8T2Ds6iTbNLhloJSJ1O -# Iu3QX6b7ktkdWHUtcOrW6wQ5y/EpoKQgPvT4+bs6e9QgdZqsz31NAecxGcivBfQz -# nxE8j6o46ky4HWO46ppqFjrz4ENa0ELpE8LC4fQC2h4N1EQPNkh9MQMunYZSK2Ck -# ritrVAuivl6vaeuVJyNBh0G20owR+ZDTocTnZYnOi4DqgKsrqe/8Q+kmQPmMZpig -# 3brD1Lg5JT/0zGlwNqvarcBJHRidNXrVJLxiHIcDTg4rwD+T4FN8EAbg+ioyv47T -# I6Ob7+gcrL2UdhVkZSUSqdVQVIX1V2SvP41TSHx7UCptCG0MaPiWYN5IGFlSKdRf -# hDv8Qb1cjW/wq3yQMBQBkV1g7CO48FoHlOl45b7dzXvn0b8LsYj2+gYfqzbJqacZ -# FOCrSVKIq5rlJAFKYra81Lzuryl3hpeXsREPc80w6gBZuwtq3ML/Z0YN7/rQQTs2 -# tsGyS4Ti76HltquYmkkQEfan1uk0RU91wujLFd7KZ3urFVvjqsqH9zSpxp7pCKT7 -# Sh6wf0zmG4SBX5DVQ0sHERamwpv6dqdDuadT3j9hnmsktM8uozim4Zzz0KI4DN1p -# IJE2x0YOHgYqr91aJMwULeVv3gGpcMUx6d08hSS6RDA7ne+UhH226yoyJsaYcQ== -# SIG # End signature block diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 deleted file mode 100644 index 5d9ffc6..0000000 --- a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 +++ /dev/null @@ -1,229 +0,0 @@ -@{ -GUID="56D66100-99A0-4FFC-A12D-EEE9A6718AEF" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -FunctionsToExport = @() -CmdletsToExport="Start-Transcript", "Stop-Transcript" -AliasesToExport = @() -NestedModules="Microsoft.PowerShell.ConsoleHost.dll" -HelpInfoURI = 'https://aka.ms/powershell72-help' -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCCAN6qOMSgIZSKy -# niFjiV1FZGi6ofshkAXyBqiHSReb1aCCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgkynSeA0x -# XjLakAqmd0XMmOd0Xz2RQ1n1Heu6kO1y5N0wQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQBp+M1foZUndpZVBWaBgxj5ssitpnOInfqiMoO3MG1s -# H2bxWJO09yPVWWu1/hkCjpRID00eSBj71TcZ/C1ZkQimhy2bxMM7YjngYf1A20r7 -# Luw3ZbAOPs92h91TG0a1L2PJa7rjJy57BgwnHFTgNrWkCR7VXElf2LnjCbONyJPy -# rVNLQaGGM78KKhd6Tp2LDd+R8sT19o2lD5bBrVubPim3XifI6hn4f66a1no72w3S -# 9ol7radXalJgKkxKzQnAVHPiOB+GAL/J457mswnvP+eRD/kUlEPsFRCVEMKejOdo -# 69jQhGOZJH0CuLU1HlhzU6X/poT4dnIJ9d+aCMX0cfE6oYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIJb96bqFa1hrFgpYPU2ayB0LEBtlTfOe8EwuWTs9 -# L81TAgZhlV4jeFAYEzIwMjExMjA4MjEwNDEzLjY4NVowBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046OEQ0MS00QkY3LUIzQjcxJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYguzcaBQeG8 -# KgABAAABiDANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3NDBaFw0yMzAxMjYxOTI3NDBaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjhENDEtNEJGNy1CM0I3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAmucQCAQm -# kcXHyDrV4S88VeJg2XGqNKcWpsrapRKFWchhjLsf/M9XN9bgznLN48BXPAtOlwoe -# dB2kN4bZdPP3KdRNbYq1tNFUh8UnmjCCr+CjLlrigHcmS0R+rsN2gBMXlLEZh2W/ -# COuD9VOLsb2P2jDp433V4rUAAUW82M7rg81d3OcctO+1XW1h3EtbQtS6QEkw6DYI -# uvfX7Aw8jXHZnsMugP8ZA1otprpTNUh/zRWC7CJyBzymQIDSCdWhVfD4shxe+Rs6 -# 1axf27bTg5H/V/SkNd9hzM6Nq/y2OjDKrLtuN9hS53569uhTNQeAhAVDfeHpEzlM -# vtXOyX6MTme3jnHdHPj6GLT9AMRIrAf96hPYOiPEBvHtrg6MpiI3+l6NlbSOs16/ -# FTeljT1+sdsWGtFTZvea9pAqV1aB795aDkmZ6sRm5jtdnVazfoWrHd3vDeh35WV0 -# 8vW4TlOfEcV2+KbairPxaFkJ4+tlsJ+MfsVOiTr/ZnDgaMaHnzzogelI3AofDU9I -# TbMkTtTxrLPygTbRdtbptrnLzBn2jzR4TJfkQo+hzWuaMu5OtMZiKV2I5MO0m1mK -# uUAgoq+442Lw8CQuj9EC2F8nTbJb2NcUDg+74dgJis/P8Ba/OrlxW+Trgc6TPGxC -# OtT739UqeslvWD6rNQ6UEO9f7vWDkhd2vtsCAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBRkebVQxKO7zru9+o27GjPljMlKSjAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQBAEFrb+1gIJsv/GKLS2zavm2ek -# 177mk4yu6BuS6ViIuL0e20YN2ddXeiUhEdhk3FRto/GD93k5SIyNJ6X+p8uQMOxI -# 23YOSdyEzLJwh7+ftu0If8y3x6AJ0S1d12OZ7fsYqljHUeccneS9DWqipHk8uM8m -# 2ZbBhRnUN8M4iqg4roJGmZKZ9Fc8Z7ZHJgM97i7fIyA9hJH017z25WrDJlxapD5d -# mMyNyzzfAVqaByemCoBn4VkRCGNISx0xRlcb93W6ENhJF1NBjMl3cKVEHW4d8Y0N -# ZhpdXDteLk9HgbJyeCI2fN9GBrCS1B1ak+194PGiZKL8+gtK7NorAoAMQvFkYgrH -# rWCYfjV6PouC3N+A6wOBrckVOHT9PUIDK5ADCH4ZraQideS9LD/imKHM3I4iazPk -# ocHcFHB9yo5d9lMJZ+pnAAWglQQjMWhUqnE/llA+EqjbO0lAxlmUtVioVUswhT3p -# K6DjFRXM/LUxwTttufz1zBjELkRIZ8uCy1YkMxfBFwEos/QFIlDaFSvUn4IiWZA3 -# VLfAEjy51iJwK2jSIHw+1bjCI+FBHcCTRH2pP3+h5DlQ5AZ/dvcfNrATP1wwz25I -# r8KgKObHRCIYH4VI2VrmOboSHFG79JbHdkPVSjfLxTuTsoh5FzoU1t5urG0rwulo -# ZZFZxTkrxfyTkhvmjDCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046OEQ0MS00QkY3 -# LUIzQjcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVAOE8isx8IBeVPSweD805l5Qdeg5CoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tIMCIY -# DzIwMjExMjA5MDM1MTM2WhgPMjAyMTEyMTAwMzUxMzZaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi0gCAQAwCgIBAAICIScCAf8wBwIBAAICEdowCgIFAOVc3MgC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQBeVbaPZ5ldfNGhiFwP5ALaZGmV -# 4LkTqmcDT5yUk6p3tceYyxhPwMQqshcKt1fSrFqX5J8uNBeTWEpB5D/YyrXGHu/K -# a4Wj/8+nv32LXimt561Ygktjq90QX/Vha0BnifzfBTf/k64ZmtV6FMmvNI9MjNm3 -# QmHj495BbEuSWI20HzGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABiC7NxoFB4bwqAAEAAAGIMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIB5r -# VcRB53ajDn0amN283eZmOuFxfZ1ddPxQGZnO2OCZMIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgZune7awGN0aEgvjP7JyO3NKl7hstX8ChhrKmXtJJQKUwgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYguzcaBQeG8 -# KgABAAABiDAiBCDnGsQwLYuvrNs0JZQ8D1YCe56drKP5aPf/ndr94faZkzANBgkq -# hkiG9w0BAQsFAASCAgBi8EWq1+2L+qQJjtUAiYvFYQS2GX/DAratlOcGOSYqL81P -# DXuByUFsrXsBKqXmeuAfWiNeLWOpiGvy10qNldd/AsVdVrba72n8rzGLQ1od91L4 -# CljkSRtcq/LmvjdWPqa+ySqda1OpsD80ZOFstCnTysY9S6SDqvWgZYr+UtRJsng4 -# jp8cUCQBAcjQ1N/dHGUAs/Tvfr5kHdDGynKKMGdDEUKtM2jjznIIWnxPzZoyXEi4 -# 8ePyJ/mTh3grNa3oOSGxuC+8ejye9Bc4JPSYYzhzJw+M0LAgBLQxj/HdYiuGIK7w -# TOUrqctErkPgosq1NdUAqQZakDXVpouiB+FTez3hiR2QAY1uR5lHvGD9zJValYMH -# OQEzjO5Bh+2cauVdMp012ULRJBIcVVrjUcSihcyD6EbUlyzu0VQFNFANkbFpqsf6 -# gS9p4j//r8AfQv8xwyy2N0Ql5caRRf5Vlfjp8c2ikMMvY19A53qBKs+aE093B+4Z -# 72wg2wnorYKun9fGpnfs+JufmnDf64O8a9pXV+XM9lVmgmWb0ScKAxn+N9dZrwD7 -# DbjlvSnLEUciHzyEO9wQ8/gu3L6E2Ugho+AbIDStmNhSIQiMDJblWZk5aLc8SGPr -# tts+mmDoB+lun57BwYPZKhgmnekQ9j9tCZaDKWa/ocKNByI+2+YBrNev3M37rQ== -# SIG # End signature block diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 deleted file mode 100644 index 5d2f511..0000000 --- a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 +++ /dev/null @@ -1,289 +0,0 @@ -@{ -GUID="EEFCB906-B326-4E99-9F54-8B4BB6EF3C6D" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -NestedModules="Microsoft.PowerShell.Commands.Management.dll" -HelpInfoURI = 'https://aka.ms/powershell72-help' -FunctionsToExport = @() -AliasesToExport = @("gcb", "gin", "gtz", "scb", "stz") -CmdletsToExport=@("Add-Content", - "Clear-Content", - "Get-Clipboard", - "Set-Clipboard", - "Clear-ItemProperty", - "Join-Path", - "Convert-Path", - "Copy-ItemProperty", - "Get-ChildItem", - "Get-Content", - "Get-ItemProperty", - "Get-ItemPropertyValue", - "Move-ItemProperty", - "Get-Location", - "Set-Location", - "Push-Location", - "Pop-Location", - "New-PSDrive", - "Remove-PSDrive", - "Get-PSDrive", - "Get-Item", - "New-Item", - "Set-Item", - "Remove-Item", - "Move-Item", - "Rename-Item", - "Copy-Item", - "Clear-Item", - "Invoke-Item", - "Get-PSProvider", - "New-ItemProperty", - "Split-Path", - "Test-Path", - "Test-Connection", - "Get-Process", - "Stop-Process", - "Wait-Process", - "Debug-Process", - "Start-Process", - "Remove-ItemProperty", - "Rename-ItemProperty", - "Resolve-Path", - "Get-Service", - "Stop-Service", - "Start-Service", - "Suspend-Service", - "Resume-Service", - "Restart-Service", - "Set-Service", - "New-Service", - "Remove-Service", - "Set-Content", - "Set-ItemProperty", - "Restart-Computer", - "Stop-Computer", - "Rename-Computer", - "Get-ComputerInfo", - "Get-TimeZone", - "Set-TimeZone", - "Get-HotFix", - "Clear-RecycleBin") -} - -# SIG # Begin signature block -# MIInuAYJKoZIhvcNAQcCoIInqTCCJ6UCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCAOkUHfBYP8n8JI -# rFMR/Pi6BPlAC/b/pz0LBmd3yrLJC6CCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjTCCGYkCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgbwKAFcUU -# n/a8C1e7lODkKydexiPQBTRqAUaY8lpIXxYwQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQAS8cDlYOVWF3oFPi1M2yWWdC1wbCMgPa2utU2WgHpJ -# FdgkgR5zgZhKx2APsR5uSgSfvs9YfPYm8+NRMvxAYm4e/Bf1JgTP9gsgqxQ/xXB+ -# NqOASjMjv7v+wTLPMa/i//jTTxjqcmHebx0tVR6f0Fpr9BU7PxW996xh2vKdxVnV -# YXxHwAmhJ1TxUaZC0hVRtriJrBfAsuQ2g/aCn5wZ6YXKVJ63IBZ+jnivf80fnSYc -# t+Zl4LqAiaSvpQ7GgPo/RggihGdWk+AuZCcY9SOJYAypK3Hvu4KHy4+5GEW3+9LI -# uQ3+9k1MG+Xng2uR0sDenzNJN89weif/W6AwmTwRl69ToYIXFzCCFxMGCisGAQQB -# gjcDAwExghcDMIIW/wYJKoZIhvcNAQcCoIIW8DCCFuwCAQMxDzANBglghkgBZQME -# AgEFADCCAVcGCyqGSIb3DQEJEAEEoIIBRgSCAUIwggE+AgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIGUlM1IvDbHn/VrMmR6UJYC2nOP4lY0xhCVtPuKI -# CRBSAgZhlV4jeGYYETIwMjExMjA4MjEwNDE0LjdaMASAAgH0oIHYpIHVMIHSMQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNy -# b3NvZnQgSXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxl -# cyBUU1MgRVNOOjhENDEtNEJGNy1CM0I3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGlt -# ZS1TdGFtcCBTZXJ2aWNloIIRaDCCBxQwggT8oAMCAQICEzMAAAGILs3GgUHhvCoA -# AQAAAYgwDQYJKoZIhvcNAQELBQAwfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldh -# c2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBD -# b3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIw -# MTAwHhcNMjExMDI4MTkyNzQwWhcNMjMwMTI2MTkyNzQwWjCB0jELMAkGA1UEBhMC -# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV -# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEtMCsGA1UECxMkTWljcm9zb2Z0IEly -# ZWxhbmQgT3BlcmF0aW9ucyBMaW1pdGVkMSYwJAYDVQQLEx1UaGFsZXMgVFNTIEVT -# Tjo4RDQxLTRCRjctQjNCNzElMCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAg -# U2VydmljZTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAJrnEAgEJpHF -# x8g61eEvPFXiYNlxqjSnFqbK2qUShVnIYYy7H/zPVzfW4M5yzePAVzwLTpcKHnQd -# pDeG2XTz9ynUTW2KtbTRVIfFJ5owgq/goy5a4oB3JktEfq7DdoATF5SxGYdlvwjr -# g/VTi7G9j9ow6eN91eK1AAFFvNjO64PNXdznHLTvtV1tYdxLW0LUukBJMOg2CLr3 -# 1+wMPI1x2Z7DLoD/GQNaLaa6UzVIf80Vguwicgc8pkCA0gnVoVXw+LIcXvkbOtWs -# X9u204OR/1f0pDXfYczOjav8tjowyqy7bjfYUud+evboUzUHgIQFQ33h6RM5TL7V -# zsl+jE5nt45x3Rz4+hi0/QDESKwH/eoT2DojxAbx7a4OjKYiN/pejZW0jrNevxU3 -# pY09frHbFhrRU2b3mvaQKldWge/eWg5JmerEZuY7XZ1Ws36Fqx3d7w3od+VldPL1 -# uE5TnxHFdvim2oqz8WhZCePrZbCfjH7FTok6/2Zw4GjGh5886IHpSNwKHw1PSE2z -# JE7U8ayz8oE20XbW6ba5y8wZ9o80eEyX5EKPoc1rmjLuTrTGYildiOTDtJtZirlA -# IKKvuONi8PAkLo/RAthfJ02yW9jXFA4Pu+HYCYrPz/AWvzq5cVvk64HOkzxsQjrU -# +9/VKnrJb1g+qzUOlBDvX+71g5IXdr7bAgMBAAGjggE2MIIBMjAdBgNVHQ4EFgQU -# ZHm1UMSju867vfqNuxoz5YzJSkowHwYDVR0jBBgwFoAUn6cVXQBeYl2D9OXSZacb -# UzUZ6XIwXwYDVR0fBFgwVjBUoFKgUIZOaHR0cDovL3d3dy5taWNyb3NvZnQuY29t -# L3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwVGltZS1TdGFtcCUyMFBDQSUyMDIwMTAo -# MSkuY3JsMGwGCCsGAQUFBwEBBGAwXjBcBggrBgEFBQcwAoZQaHR0cDovL3d3dy5t -# aWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9NaWNyb3NvZnQlMjBUaW1lLVN0YW1w -# JTIwUENBJTIwMjAxMCgxKS5jcnQwDAYDVR0TAQH/BAIwADATBgNVHSUEDDAKBggr -# BgEFBQcDCDANBgkqhkiG9w0BAQsFAAOCAgEAQBBa2/tYCCbL/xii0ts2r5tnpNe+ -# 5pOMrugbkulYiLi9HttGDdnXV3olIRHYZNxUbaPxg/d5OUiMjSel/qfLkDDsSNt2 -# DknchMyycIe/n7btCH/Mt8egCdEtXddjme37GKpYx1HnHJ3kvQ1qoqR5PLjPJtmW -# wYUZ1DfDOIqoOK6CRpmSmfRXPGe2RyYDPe4u3yMgPYSR9Ne89uVqwyZcWqQ+XZjM -# jcs83wFamgcnpgqAZ+FZEQhjSEsdMUZXG/d1uhDYSRdTQYzJd3ClRB1uHfGNDWYa -# XVw7Xi5PR4GycngiNnzfRgawktQdWpPtfeDxomSi/PoLSuzaKwKADELxZGIKx61g -# mH41ej6LgtzfgOsDga3JFTh0/T1CAyuQAwh+Ga2kInXkvSw/4pihzNyOImsz5KHB -# 3BRwfcqOXfZTCWfqZwAFoJUEIzFoVKpxP5ZQPhKo2ztJQMZZlLVYqFVLMIU96Sug -# 4xUVzPy1McE7bbn89cwYxC5ESGfLgstWJDMXwRcBKLP0BSJQ2hUr1J+CIlmQN1S3 -# wBI8udYicCto0iB8PtW4wiPhQR3Ak0R9qT9/oeQ5UOQGf3b3HzawEz9cMM9uSK/C -# oCjmx0QiGB+FSNla5jm6EhxRu/SWx3ZD1Uo3y8U7k7KIeRc6FNbebqxtK8LpaGWR -# WcU5K8X8k5Ib5owwggdxMIIFWaADAgECAhMzAAAAFcXna54Cm0mZAAAAAAAVMA0G -# CSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3Rv -# bjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0 -# aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3Jp -# dHkgMjAxMDAeFw0yMTA5MzAxODIyMjVaFw0zMDA5MzAxODMyMjVaMHwxCzAJBgNV -# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w -# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m -# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC -# CgKCAgEA5OGmTOe0ciELeaLL1yR5vQ7VgtP97pwHB9KpbE51yMo1V/YBf2xK4OK9 -# uT4XYDP/XE/HZveVU3Fa4n5KWv64NmeFRiMMtY0Tz3cywBAY6GB9alKDRLemjkZr -# BxTzxXb1hlDcwUTIcVxRMTegCjhuje3XD9gmU3w5YQJ6xKr9cmmvHaus9ja+NSZk -# 2pg7uhp7M62AW36MEBydUv626GIl3GoPz130/o5Tz9bshVZN7928jaTjkY+yOSxR -# nOlwaQ3KNi1wjjHINSi947SHJMPgyY9+tVSP3PoFVZhtaDuaRr3tpK56KTesy+uD -# RedGbsoy1cCGMFxPLOJiss254o2I5JasAUq7vnGpF1tnYN74kpEeHT39IM9zfUGa -# RnXNxF803RKJ1v2lIH1+/NmeRd+2ci/bfV+AutuqfjbsNkz2K26oElHovwUDo9Fz -# pk03dJQcNIIP8BDyt0cY7afomXw/TNuvXsLz1dhzPUNOwTM5TI4CvEJoLhDqhFFG -# 4tG9ahhaYQFzymeiXtcodgLiMxhy16cg8ML6EgrXY28MyTZki1ugpoMhXV8wdJGU -# lNi5UPkLiWHzNgY1GIRH29wb0f2y1BzFa/ZcUlFdEtsluq9QBXpsxREdcu+N+VLE -# hReTwDwV2xo3xwgVGD94q0W29R6HXtqPnhZyacaue7e3PmriLq0CAwEAAaOCAd0w -# ggHZMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFCqnUv5kxJq+ -# gpE8RjUpzxD/LwTuMB0GA1UdDgQWBBSfpxVdAF5iXYP05dJlpxtTNRnpcjBcBgNV -# HSAEVTBTMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wEwYDVR0l -# BAwwCgYIKwYBBQUHAwgwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P -# BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU1fZWy4/oolxiaNE9 -# lJBb186aGMQwVgYDVR0fBE8wTTBLoEmgR4ZFaHR0cDovL2NybC5taWNyb3NvZnQu -# Y29tL3BraS9jcmwvcHJvZHVjdHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYtMjMuY3Js -# MFoGCCsGAQUFBwEBBE4wTDBKBggrBgEFBQcwAoY+aHR0cDovL3d3dy5taWNyb3Nv -# ZnQuY29tL3BraS9jZXJ0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5jcnQwDQYJ -# KoZIhvcNAQELBQADggIBAJ1VffwqreEsH2cBMSRb4Z5yS/ypb+pcFLY+TkdkeLEG -# k5c9MTO1OdfCcTY/2mRsfNB1OW27DzHkwo/7bNGhlBgi7ulmZzpTTd2YurYeeNg2 -# LpypglYAA7AFvonoaeC6Ce5732pvvinLbtg/SHUB2RjebYIM9W0jVOR4U3UkV7nd -# n/OOPcbzaN9l9qRWqveVtihVJ9AkvUCgvxm2EhIRXT0n4ECWOKz3+SmJw7wXsFSF -# QrP8DJ6LGYnn8AtqgcKBGUIZUnWKNsIdw2FzLixre24/LAl4FOmRsqlb30mjdAy8 -# 7JGA0j3mSj5mO0+7hvoyGtmW9I/2kQH2zsZ0/fZMcm8Qq3UwxTSwethQ/gpY3UA8 -# x1RtnWN0SCyxTkctwRQEcb9k+SS+c23Kjgm9swFXSVRk2XPXfx5bRAGOWhmRaw2f -# pCjcZxkoJLo4S5pu+yFUa2pFEUep8beuyOiJXk+d0tBMdrVXVAmxaQFEfnyhYWxz -# /gq77EFmPWn9y8FBSX5+k77L+DvktxW/tM4+pTFRhLy/AsGConsXHRWJjXD+57XQ -# KBqJC4822rpM+Zv/Cuk0+CQ1ZyvgDbjmjJnW4SLq8CdCPSWU5nR0W2rRnj7tfqAx -# M328y+l7vzhwRNGQ8cirOoo6CGJ/2XBjU02N7oJtpQUQwXEGahC0HVUzWLOhcGby -# oYIC1zCCAkACAQEwggEAoYHYpIHVMIHSMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQgSXJlbGFuZCBPcGVyYXRp -# b25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1MgRVNOOjhENDEtNEJGNy1C -# M0I3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNloiMKAQEw -# BwYFKw4DAhoDFQDhPIrMfCAXlT0sHg/NOZeUHXoOQqCBgzCBgKR+MHwxCzAJBgNV -# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w -# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m -# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMA0GCSqGSIb3DQEBBQUAAgUA5VuLSDAiGA8y -# MDIxMTIwOTAzNTEzNloYDzIwMjExMjEwMDM1MTM2WjB3MD0GCisGAQQBhFkKBAEx -# LzAtMAoCBQDlW4tIAgEAMAoCAQACAiEnAgH/MAcCAQACAhHaMAoCBQDlXNzIAgEA -# MDYGCisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEAAgMHoSChCjAI -# AgEAAgMBhqAwDQYJKoZIhvcNAQEFBQADgYEAXlW2j2eZXXzRoYhcD+QC2mRpleC5 -# E6pnA0+clJOqd7XHmMsYT8DEKrIXCrdX0qxal+SfLjQXk1hKQeQ/2Mq1xh7vymuF -# o//Pp799i14preetWIJLY6vdEF/1YWtAZ4n83wU3/5OuGZrVehTJrzSPTIzZt0Jh -# 4+PeQWxLkliNtB8xggQNMIIECQIBATCBkzB8MQswCQYDVQQGEwJVUzETMBEGA1UE -# CBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9z -# b2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQ -# Q0EgMjAxMAITMwAAAYguzcaBQeG8KgABAAABiDANBglghkgBZQMEAgEFAKCCAUow -# GgYJKoZIhvcNAQkDMQ0GCyqGSIb3DQEJEAEEMC8GCSqGSIb3DQEJBDEiBCAAZlzS -# rT4vVB7wRIbsGvay4ACd2gPSgT3yS7r8RrU5XTCB+gYLKoZIhvcNAQkQAi8xgeow -# gecwgeQwgb0EIGbp3u2sBjdGhIL4z+ycjtzSpe4bLV/AoYaypl7SSUClMIGYMIGA -# pH4wfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcT -# B1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UE -# AxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTACEzMAAAGILs3GgUHhvCoA -# AQAAAYgwIgQg5xrEMC2Lr6zbNCWUPA9WAnuenayj+Wj3/53a/eH2mZMwDQYJKoZI -# hvcNAQELBQAEggIAOr4i66ksCOJ3Rw8xoMzAdJVQl257tTcsAl9f6cACnWS8wb5g -# W+fRBFGeoxzjBgn34Rn0NPmfz5+vx9D314QAmjWt//l6S8hmldXyUlrixC6aOGik -# +CRaSnhf0CY2o3vBSYsYV3gJx0PSnDq6/T2B+S9TY90hvl+NgkzCNBnyLEDPgDXB -# e9XQi88hUWqZxpjaTmAI26+fr9z7AMrtnA4hxEzDbh6VGDhXKZ4F//b3E6Xj6ppB -# AJBmkEH42AnDBuFGEr2iLkKbU25t0ZuD7whLQ7CaQ8yVOppTuG4kqNbsUmIPzxtI -# wlznjxAV7nN+BrIuNmraWiBmszVsqSm1FhcZBBL3jj98szffT9zmcRKwPKlO8J88 -# mHFY0io9zXsE8Cv87ezrCIDVhbIm3gHj8dMr8tiWmo9ejacYgEZSGNBAwdku6O+G -# PZ1WsWBQ1MNLRtye9FWMqGog7yqeb/iHtJH3hH7MFLgXMVHuKjI7rcIGlWKOyTbA -# Cllth+6In3BRDC/VUiSKD6SfVYyEjKdLM3dURYi/NzUJ3tapoE4DUBYt2xZlDEGO -# j/L2KpzIlyi5MhU3YZwTkAZwSNqmPKZ+f5w6j0cOhilqTOYMmVB5OycslZv6ODcW -# pcGpnK6b2QNfFMEvtGrIvflWQC95c9hwlJ2O3Fuh5Hroza3f7PgYUmrxctU= -# SIG # End signature block diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 deleted file mode 100644 index b3dd852..0000000 --- a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 +++ /dev/null @@ -1,229 +0,0 @@ -@{ -GUID="A94C8C7E-9810-47C0-B8AF-65089C13A35A" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -FunctionsToExport = @() -CmdletsToExport="Get-Acl", "Set-Acl", "Get-PfxCertificate", "Get-Credential", "Get-ExecutionPolicy", "Set-ExecutionPolicy", "Get-AuthenticodeSignature", "Set-AuthenticodeSignature", "ConvertFrom-SecureString", "ConvertTo-SecureString", "Get-CmsMessage", "Unprotect-CmsMessage", "Protect-CmsMessage" , "New-FileCatalog" , "Test-FileCatalog" -AliasesToExport = @() -NestedModules="Microsoft.PowerShell.Security.dll" -HelpInfoURI = 'https://aka.ms/powershell72-help' -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCD++xTkW7oivoiQ -# gqU/R85f/MwSI1hVEeaegSriXP6+BqCCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgWHV5GUzu -# +l9zI1GEYPanTVvtHVRaoSkM2bZBhM+rt9YwQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQByeqL4g0Ci96GXfmQN8rvCAtpT2N0neMZ9mozeBeyF -# 5hYxQhatRKLDNrOJei542+AM9l8AmsmKtJvtE8wJUkVGZqxBSiMwv7nV1uMQgVhK -# crEIUsmJO+EStsx+gA3VyfugAElJEJtTInobbDPofwO4DS8xUBpW/OLaq3XVjRga -# JOh7s7RMx+7Gysq96jaguaW2H2llklxhsKZwf3Mdi+/5BhF8tIevEqPuk4ly1oXh -# qY4/BD0pFNygoTWMp6ecxNQM2EE1N1j3y30h36Gsk5aDMeUFrRNtFFWFF1HbrbH3 -# thOhL/rqSQkbxAR2CNSGQtzrNuLF+1/xJEHXgBNGyEWioYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIC9rz69tGAbCMg2r367oWNBEt5XvxdFCe04Dw8cQ -# hWtJAgZhlV5AOHEYEzIwMjExMjA4MjEwNDE0Ljc5MVowBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046M0JENC00QjgwLTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYm0v4YwhBxL -# jwABAAABiTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3NDFaFw0yMzAxMjYxOTI3NDFaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjNCRDQtNEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvQZXxZFm -# a6plmuOyvNpV8xONOwcYolZG/BjyZWGSk5JOGaLyrKId5VxVHWHlsmJE4Svnzsdp -# sKmVx8otONveIUFvSceEZp8VXmu5m1fu8L7c+3lwXcibjccqtEvtQslokQVx0r+L -# 54abrNDarwFG73IaRidIS1i9c+unJ8oYyhDRLrCysFAVxyQhPNZkWK7Z8/VGukaK -# LAWHXCh/+R53h42gFL+9/mAALxzCXXuofi8f/XKCm7xNwVc1hONCCz6oq94AufzV -# NkkIW4brUQgYpCcJm9U0XNmQvtropYDn9UtY8YQ0NKenXPtdgLHdQ8Nnv3igErKL -# rWI0a5n5jjdKfwk+8mvakqdZmlOseeOS1XspQNJAK1uZllAITcnQZOcO5ofjOQ33 -# ujWckAXdz+/x3o7l4AU/TSOMzGZMwhUdtVwC3dSbItpSVFgnjM2COEJ9zgCadvOi -# rGDLN471jZI2jClkjsJTdgPk343TQA4JFvds/unZq0uLr+niZ3X44OBx2x+gVlln -# 2c4UbZXNueA4yS1TJGbbJFIILAmTUA9Auj5eISGTbNiyWx79HnCOTar39QEKozm4 -# LnTmDXy0/KI/H/nYZGKuTHfckP28wQS06rD+fDS5xLwcRMCW92DkHXmtbhGyRilB -# OL5LxZelQfxt54wl4WUC0AdAEolPekODwO8CAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBSXbx+zR1p4IIAeguA6rHKkrfl7UDAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQCOtLdpWUI4KwfLLrfaKrLB92Dq -# bAspGWM41TaO4Jl+sHxPo522uu3GKQCjmkRWreHtlfyy9kOk7LWax3k3ke8Gtfet -# fbh7qH0LeV2XOWg39BOnHf6mTcZq7FYSZZch1JDQjc98+Odlow+oWih0Dbt4CV/e -# 19ZcE+1n1zzWkskUEd0f5jPIUis33p+vkY8szduAtCcIcPFUhI8Hb5alPUAPMjGz -# wKb7NIKbnf8j8cP18As5IveckF0oh1cw63RY/vPK62LDYdpi7WnG2ObvngfWVKtw -# iwTI4jHj2cO9q37HDe/PPl216gSpUZh0ap24mKmMDfcKp1N4mEdsxz4oseOrPYeF -# sHHWJFJ6Aivvqn70KTeJpp5r+DxSqbeSy0mxIUOq/lAaUxgNSQVUX26t8r+fciko -# fKv23WHrtRV3t7rVTsB9YzrRaiikmz68K5HWdt9MqULxPQPo+ppZ0LRqkOae466+ -# UKRY0JxWtdrMc5vHlHZfnqjawj/RsM2S6Q6fa9T9CnY1Nz7DYBG3yZJyCPFsrgU0 -# 5s9ljqfsSptpFdUh9R4ce+L71SWDLM2x/1MFLLHAMbXsEp8KloEGtaDULnxtfS2t -# YhfuKGqRXoEfDPAMnIdTvQPh3GHQ4SjkkBARHL0MY75alhGTKHWjC2aLVOo8obKI -# Bk8hfnFDUf/EyVw4uTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0JENC00Qjgw -# LTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVACGlCa3ketyeuey7bJNpWkMuiCcQoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tYMCIY -# DzIwMjExMjA5MDM1MTUyWhgPMjAyMTEyMTAwMzUxNTJaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi1gCAQAwCgIBAAICHvwCAf8wBwIBAAICETcwCgIFAOVc3NgC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQCbF/Q1IJzqUwQBkXn+GjUxZzVN -# O+9p1fpL7W8dEy9/m1L7dl968KiYqfO5rekvXeSUDTFYrkS/r0w8p2ZZ7d0TMtJt -# TrKmc85aRmxtSvCNAS2stE2sS2Y5np5+/02w3DDn3Nni6vvF8nsuiIlbiyHrGQrC -# 9eis1rpLSNvXisSYoDGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABibS/hjCEHEuPAAEAAAGJMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIM9O -# ao85t+tQMGnb/NodpJQMwx5JXiYYilGmLk9FSvn+MIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgZndHMdxQV1VsbpWHOTHqWEycvcRJm7cY69l/UmT8j0UwgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYm0v4YwhBxL -# jwABAAABiTAiBCCErc3WAJDL+6+RTcx4qvTV2Dv0bP6a0jmZjnUp3u9sbzANBgkq -# hkiG9w0BAQsFAASCAgCzngLNnPmqawyfurGD6pabQJgWV4nP5zle9pu9tx4c1pTi -# SKAeREqAeOs5Bcg46nHpP+Flb+4BQ68zc2JUv1p1P7OlmpKshGEd1Sgpj0izHI8E -# JW8lmMXuRudxbw/761rpDKViWtWQ1lzxhyDeqJw1tiGIAcbX7P26zcoC+jp19GlY -# DaXcIJDZM/u5UUKDtKNSBIvTX+UDfuAEAwmH37GcuHTnvm1txdDZF2DNEn9Jzj7y -# TvHglap7FeMIvo/Um4cLq8xdSJxOYbGGQ5qCdc6vIGXC8HebpR3bIPxldyKDPdpd -# LdvDD0k+rnDHmMsmgQuihIG8rDiadJ/7YtexaDNm4aYRa8PD5SabeUwi94eYZ4a7 -# 25ZkBy6FQAY13i0RgSRicx2Ryowd0Hg0DWSAfHSJc5CnL7qWNTOhwvX7wEUGbe/0 -# 1GZR+ZYiJRO83/lQAEurvVJuEZ3dKTpeJB4FOP6oIc76pL3GvW9XINxo49WiIbzl -# YEToH4oTa5F5vUCvF2Wa5tDlpa60LFSJDP1VyWCYPP+sflKLkYvG3PmXSYYbCprL -# yS0rypa9ACBp7Q2rZTa1s3j7jtNa3Fa5RZ9gAulFkUVVZ+F0Pm7aUvnRAf54+Ri6 -# aoF9G+flQpzZn8nYCRFfiqcQ9wKPA6lZBGEqzGBLAZqzsmmrSgcwVjdN6ZwqYg== -# SIG # End signature block diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 deleted file mode 100644 index 927c504..0000000 --- a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 +++ /dev/null @@ -1,248 +0,0 @@ -@{ -GUID = "1DA87E53-152B-403E-98DC-74D7B4D63D59" -Author = "PowerShell" -CompanyName = "Microsoft Corporation" -Copyright = "Copyright (c) Microsoft Corporation." -ModuleVersion = "7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion = "3.0" -CmdletsToExport = @( - 'Export-Alias', 'Get-Alias', 'Import-Alias', 'New-Alias', 'Remove-Alias', 'Set-Alias', 'Export-Clixml', 'Import-Clixml', - 'Measure-Command', 'Trace-Command', 'ConvertFrom-Csv', 'ConvertTo-Csv', 'Export-Csv', 'Import-Csv', 'Get-Culture', - 'Format-Custom', 'Get-Date', 'Set-Date', 'Write-Debug', 'Wait-Debugger', 'Register-EngineEvent', 'Write-Error', - 'Get-Event', 'New-Event', 'Remove-Event', 'Unregister-Event', 'Wait-Event', 'Get-EventSubscriber', 'Invoke-Expression', - 'Out-File', 'Unblock-File', 'Get-FileHash', 'Export-FormatData', 'Get-FormatData', 'Update-FormatData', 'New-Guid', - 'Format-Hex', 'Get-Host', 'Read-Host', 'Write-Host', 'ConvertTo-Html', 'Write-Information', 'ConvertFrom-Json', - 'ConvertTo-Json', 'Test-Json', 'Format-List', 'Import-LocalizedData', 'Send-MailMessage', 'ConvertFrom-Markdown', - 'Show-Markdown', 'Get-MarkdownOption', 'Set-MarkdownOption', 'Add-Member', 'Get-Member', 'Compare-Object', 'Group-Object', - 'Measure-Object', 'New-Object', 'Select-Object', 'Sort-Object', 'Tee-Object', 'Register-ObjectEvent', 'Write-Output', - 'Import-PowerShellDataFile', 'Write-Progress', 'Disable-PSBreakpoint', 'Enable-PSBreakpoint', 'Get-PSBreakpoint', - 'Remove-PSBreakpoint', 'Set-PSBreakpoint', 'Get-PSCallStack', 'Export-PSSession', 'Import-PSSession', 'Get-Random', - 'Invoke-RestMethod', 'Debug-Runspace', 'Get-Runspace', 'Disable-RunspaceDebug', 'Enable-RunspaceDebug', - 'Get-RunspaceDebug', 'ConvertFrom-SddlString', 'Start-Sleep', 'Join-String', 'Out-String', 'Select-String', - 'ConvertFrom-StringData', 'Format-Table', 'New-TemporaryFile', 'New-TimeSpan', 'Get-TraceSource', 'Set-TraceSource', - 'Add-Type', 'Get-TypeData', 'Remove-TypeData', 'Update-TypeData', 'Get-UICulture', 'Get-Unique', 'Get-Uptime', - 'Clear-Variable', 'Get-Variable', 'New-Variable', 'Remove-Variable', 'Set-Variable', 'Get-Verb', 'Write-Verbose', - 'Write-Warning', 'Invoke-WebRequest', 'Format-Wide', 'ConvertTo-Xml', 'Select-Xml', 'Get-Error', 'Update-List', - 'Out-GridView', 'Show-Command', 'Out-Printer' -) -FunctionsToExport = @() -AliasesToExport = @('fhx') -NestedModules = @("Microsoft.PowerShell.Commands.Utility.dll") -HelpInfoURI = 'https://aka.ms/powershell72-help' -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCBA95ukw/cTrslZ -# 8GEROXuMEYH1RJd2ZOe5U1EPFSWVsaCCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgqoEvsipU -# dEXkK33kvZSyP9Cx3IROdWp1ndiqGNS27hEwQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQBHzboagxcQ8L50vNYxDsscrvzcGeLtxdwkaQTW10v2 -# aTPJXDVIFjRwioUbqfGvtBDaq9QFgLBcV3qb5zGL0K33nlBa4+dK0AgYlbbkpnSp -# l9l3tTHoSRiKtFdmpIpsRQPXGZ5c6iGkicQNtX/D2c6SBQ++qayvldFZcU16y/4C -# IUzeFA8TYMYRJnGQRC7BG1xqAWztt+WIUGlO5kQOnuNYczbq/zvBrT5nBRwhqcQQ -# YzJRwkNf2F+G88rnBESxNxegRusbUX+v3bwsa6uxxLpSeqSDD3JasgCzS1eaTBYn -# NXGeHxHdweiG14ABsGjSbxT+wtB6eeNj0ymmsYJdm7ApoYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIIEUntqZM075d/Xv5VtLazUG/C8XTr8E5AIBTLPG -# 2f+4AgZhlV5AOGMYEzIwMjExMjA4MjEwNDE0LjMzOFowBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046M0JENC00QjgwLTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYm0v4YwhBxL -# jwABAAABiTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3NDFaFw0yMzAxMjYxOTI3NDFaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjNCRDQtNEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvQZXxZFm -# a6plmuOyvNpV8xONOwcYolZG/BjyZWGSk5JOGaLyrKId5VxVHWHlsmJE4Svnzsdp -# sKmVx8otONveIUFvSceEZp8VXmu5m1fu8L7c+3lwXcibjccqtEvtQslokQVx0r+L -# 54abrNDarwFG73IaRidIS1i9c+unJ8oYyhDRLrCysFAVxyQhPNZkWK7Z8/VGukaK -# LAWHXCh/+R53h42gFL+9/mAALxzCXXuofi8f/XKCm7xNwVc1hONCCz6oq94AufzV -# NkkIW4brUQgYpCcJm9U0XNmQvtropYDn9UtY8YQ0NKenXPtdgLHdQ8Nnv3igErKL -# rWI0a5n5jjdKfwk+8mvakqdZmlOseeOS1XspQNJAK1uZllAITcnQZOcO5ofjOQ33 -# ujWckAXdz+/x3o7l4AU/TSOMzGZMwhUdtVwC3dSbItpSVFgnjM2COEJ9zgCadvOi -# rGDLN471jZI2jClkjsJTdgPk343TQA4JFvds/unZq0uLr+niZ3X44OBx2x+gVlln -# 2c4UbZXNueA4yS1TJGbbJFIILAmTUA9Auj5eISGTbNiyWx79HnCOTar39QEKozm4 -# LnTmDXy0/KI/H/nYZGKuTHfckP28wQS06rD+fDS5xLwcRMCW92DkHXmtbhGyRilB -# OL5LxZelQfxt54wl4WUC0AdAEolPekODwO8CAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBSXbx+zR1p4IIAeguA6rHKkrfl7UDAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQCOtLdpWUI4KwfLLrfaKrLB92Dq -# bAspGWM41TaO4Jl+sHxPo522uu3GKQCjmkRWreHtlfyy9kOk7LWax3k3ke8Gtfet -# fbh7qH0LeV2XOWg39BOnHf6mTcZq7FYSZZch1JDQjc98+Odlow+oWih0Dbt4CV/e -# 19ZcE+1n1zzWkskUEd0f5jPIUis33p+vkY8szduAtCcIcPFUhI8Hb5alPUAPMjGz -# wKb7NIKbnf8j8cP18As5IveckF0oh1cw63RY/vPK62LDYdpi7WnG2ObvngfWVKtw -# iwTI4jHj2cO9q37HDe/PPl216gSpUZh0ap24mKmMDfcKp1N4mEdsxz4oseOrPYeF -# sHHWJFJ6Aivvqn70KTeJpp5r+DxSqbeSy0mxIUOq/lAaUxgNSQVUX26t8r+fciko -# fKv23WHrtRV3t7rVTsB9YzrRaiikmz68K5HWdt9MqULxPQPo+ppZ0LRqkOae466+ -# UKRY0JxWtdrMc5vHlHZfnqjawj/RsM2S6Q6fa9T9CnY1Nz7DYBG3yZJyCPFsrgU0 -# 5s9ljqfsSptpFdUh9R4ce+L71SWDLM2x/1MFLLHAMbXsEp8KloEGtaDULnxtfS2t -# YhfuKGqRXoEfDPAMnIdTvQPh3GHQ4SjkkBARHL0MY75alhGTKHWjC2aLVOo8obKI -# Bk8hfnFDUf/EyVw4uTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0JENC00Qjgw -# LTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVACGlCa3ketyeuey7bJNpWkMuiCcQoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tYMCIY -# DzIwMjExMjA5MDM1MTUyWhgPMjAyMTEyMTAwMzUxNTJaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi1gCAQAwCgIBAAICHvwCAf8wBwIBAAICETcwCgIFAOVc3NgC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQCbF/Q1IJzqUwQBkXn+GjUxZzVN -# O+9p1fpL7W8dEy9/m1L7dl968KiYqfO5rekvXeSUDTFYrkS/r0w8p2ZZ7d0TMtJt -# TrKmc85aRmxtSvCNAS2stE2sS2Y5np5+/02w3DDn3Nni6vvF8nsuiIlbiyHrGQrC -# 9eis1rpLSNvXisSYoDGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABibS/hjCEHEuPAAEAAAGJMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEINjr -# jaYjHvF5zcuiSPmsJnfGwWcQHYP/2CYeqIoTLbM/MIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgZndHMdxQV1VsbpWHOTHqWEycvcRJm7cY69l/UmT8j0UwgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYm0v4YwhBxL -# jwABAAABiTAiBCCErc3WAJDL+6+RTcx4qvTV2Dv0bP6a0jmZjnUp3u9sbzANBgkq -# hkiG9w0BAQsFAASCAgBlISYxvNqg3TVBqRooVDAWRo+EMXUl4mBMwOvnI755iHjz -# ksXBl+FBaJdTbgfrrbkqVuTFgjnA7/1hzx8FuYRnz7aS7yWbUamn2DKeVHfcmL4w -# luTTDqklOtM/LNUOi2iRHQHG2+bi8OvJIavShvbjjv9telA3MY+ONzP+2t7H2ESf -# 7Sht+eH7Il5Wc9p2QB1o2iMaRK+TZoE1petI8ZxSJn0F6rFdBGIOI1mhNaZTZGuk -# UVAe9v6kd5k9BQZ1mfLCVf+A86Ul66fvrwAtETiuFMWYQhbnRWRLElWVUA/3zIS4 -# MVVyPlFjINt2m980WlIgHkt+K+cSbEtIUZ4Scpt/Tf9K0Kd2PEV+2z5n7xbwDPhy -# uczGyZm+0/NH6HDWrr74wX7+UJQzHGU7cP6yIDk/MJF5+E6ahKx6XfJYB2TK28qi -# K0g2HqkFhgS6zvnoNZNpWd28UKH9TLZIyWY9I7jKEMxP6jLzPugPYsL8pxvJLsAI -# /vn5Go+lLdNHUykJgB2ChUKsm3x1aUrSpGiW8UJ5xUiJ5RB1nFfUv0AWHcouYl92 -# FJhWIn3qaZExP6R7NijbAMyoYChcDgPrOGseESmfGZuVFbhE7gMai1VIRCLnmBoK -# Der+JOgsWW/eHU9nN5uuyP6uqtP01F5eayK++qjH+B9xQAJNq79RVXVvyaNZlw== -# SIG # End signature block diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1 b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1 deleted file mode 100644 index a370f4c..0000000 --- a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1 +++ /dev/null @@ -1,230 +0,0 @@ -@{ -GUID="766204A6-330E-4263-A7AB-46C87AFC366C" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -FunctionsToExport = @() -CmdletsToExport="Disable-WSManCredSSP", "Enable-WSManCredSSP", "Get-WSManCredSSP", "Set-WSManQuickConfig", "Test-WSMan", "Invoke-WSManAction", "Connect-WSMan", "Disconnect-WSMan", "Get-WSManInstance", "Set-WSManInstance", "Remove-WSManInstance", "New-WSManInstance", "New-WSManSessionOption" -AliasesToExport = @() -NestedModules="Microsoft.WSMan.Management.dll" -FormatsToProcess="WSMan.format.ps1xml" -HelpInfoURI = 'https://aka.ms/powershell72-help' -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCB+Ujs/uIRQu9NJ -# wrRJEY/iIf48rrMaCNk+CtkIzIqDVqCCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgypxuMQwq -# 1eGPEmRm52ViV1FEshB3MTFlVOkKoUKOQmgwQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQBwQLkeEMe+dK/nBzeh5yKFRrxpey/F+58vzZS97hfh -# rOZPhi6B29T/8kJqtTW8EVhdy+XNARi5JYKvFt6cO1TFJlb9H6ncq7TAYPV6ue/R -# 1CmnXltjWiRYZAibhN3Y7Yq+pnqIskQb8LI499I2Sg8JLuvRXBYqUb6F4wZ/vgH2 -# Vz/dHRgonqNkI94s5mOFXG0TX3/JzQD+xj3NWFNeOUCLsQQ0k7EA2pcF9odFgyNS -# QY0KGk3Bu+KcQUxmPdbgtIoM1ebLvINLR3mpD6xeWuusLS2NXX/7x3otBPyC17R2 -# hjh5a4lKYQH16inEdSg6jGkMXymnKOPRAmXZnFI9FET1oYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIGqYa00kDq7cefzR97imqg4FhBGef4q3IvGpky5C -# NPnvAgZhlV5AOG4YEzIwMjExMjA4MjEwNDE0LjYwN1owBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046M0JENC00QjgwLTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYm0v4YwhBxL -# jwABAAABiTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3NDFaFw0yMzAxMjYxOTI3NDFaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjNCRDQtNEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvQZXxZFm -# a6plmuOyvNpV8xONOwcYolZG/BjyZWGSk5JOGaLyrKId5VxVHWHlsmJE4Svnzsdp -# sKmVx8otONveIUFvSceEZp8VXmu5m1fu8L7c+3lwXcibjccqtEvtQslokQVx0r+L -# 54abrNDarwFG73IaRidIS1i9c+unJ8oYyhDRLrCysFAVxyQhPNZkWK7Z8/VGukaK -# LAWHXCh/+R53h42gFL+9/mAALxzCXXuofi8f/XKCm7xNwVc1hONCCz6oq94AufzV -# NkkIW4brUQgYpCcJm9U0XNmQvtropYDn9UtY8YQ0NKenXPtdgLHdQ8Nnv3igErKL -# rWI0a5n5jjdKfwk+8mvakqdZmlOseeOS1XspQNJAK1uZllAITcnQZOcO5ofjOQ33 -# ujWckAXdz+/x3o7l4AU/TSOMzGZMwhUdtVwC3dSbItpSVFgnjM2COEJ9zgCadvOi -# rGDLN471jZI2jClkjsJTdgPk343TQA4JFvds/unZq0uLr+niZ3X44OBx2x+gVlln -# 2c4UbZXNueA4yS1TJGbbJFIILAmTUA9Auj5eISGTbNiyWx79HnCOTar39QEKozm4 -# LnTmDXy0/KI/H/nYZGKuTHfckP28wQS06rD+fDS5xLwcRMCW92DkHXmtbhGyRilB -# OL5LxZelQfxt54wl4WUC0AdAEolPekODwO8CAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBSXbx+zR1p4IIAeguA6rHKkrfl7UDAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQCOtLdpWUI4KwfLLrfaKrLB92Dq -# bAspGWM41TaO4Jl+sHxPo522uu3GKQCjmkRWreHtlfyy9kOk7LWax3k3ke8Gtfet -# fbh7qH0LeV2XOWg39BOnHf6mTcZq7FYSZZch1JDQjc98+Odlow+oWih0Dbt4CV/e -# 19ZcE+1n1zzWkskUEd0f5jPIUis33p+vkY8szduAtCcIcPFUhI8Hb5alPUAPMjGz -# wKb7NIKbnf8j8cP18As5IveckF0oh1cw63RY/vPK62LDYdpi7WnG2ObvngfWVKtw -# iwTI4jHj2cO9q37HDe/PPl216gSpUZh0ap24mKmMDfcKp1N4mEdsxz4oseOrPYeF -# sHHWJFJ6Aivvqn70KTeJpp5r+DxSqbeSy0mxIUOq/lAaUxgNSQVUX26t8r+fciko -# fKv23WHrtRV3t7rVTsB9YzrRaiikmz68K5HWdt9MqULxPQPo+ppZ0LRqkOae466+ -# UKRY0JxWtdrMc5vHlHZfnqjawj/RsM2S6Q6fa9T9CnY1Nz7DYBG3yZJyCPFsrgU0 -# 5s9ljqfsSptpFdUh9R4ce+L71SWDLM2x/1MFLLHAMbXsEp8KloEGtaDULnxtfS2t -# YhfuKGqRXoEfDPAMnIdTvQPh3GHQ4SjkkBARHL0MY75alhGTKHWjC2aLVOo8obKI -# Bk8hfnFDUf/EyVw4uTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0JENC00Qjgw -# LTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVACGlCa3ketyeuey7bJNpWkMuiCcQoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tYMCIY -# DzIwMjExMjA5MDM1MTUyWhgPMjAyMTEyMTAwMzUxNTJaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi1gCAQAwCgIBAAICHvwCAf8wBwIBAAICETcwCgIFAOVc3NgC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQCbF/Q1IJzqUwQBkXn+GjUxZzVN -# O+9p1fpL7W8dEy9/m1L7dl968KiYqfO5rekvXeSUDTFYrkS/r0w8p2ZZ7d0TMtJt -# TrKmc85aRmxtSvCNAS2stE2sS2Y5np5+/02w3DDn3Nni6vvF8nsuiIlbiyHrGQrC -# 9eis1rpLSNvXisSYoDGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABibS/hjCEHEuPAAEAAAGJMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIN1F -# wmeehZy4wMNXqLnULVbk4oVsB3cWo9ryHOQxmYoPMIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgZndHMdxQV1VsbpWHOTHqWEycvcRJm7cY69l/UmT8j0UwgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYm0v4YwhBxL -# jwABAAABiTAiBCCErc3WAJDL+6+RTcx4qvTV2Dv0bP6a0jmZjnUp3u9sbzANBgkq -# hkiG9w0BAQsFAASCAgAWjRg7KzoR7Kd4cPnoMh490c1gOoabocbdzphBISFn24S4 -# Nomokt8QSkLypqSgMe0FQyCku8urnNIhX6CA1FObkCe+DFM9FFaOHNY3Lqv4oVGW -# O2nCjMXPxj8FMZM7UyZB11zPMhPHaleWP0UQPuqEf/d6V8vbh23OyZ9RfYUKft+m -# zKsR+gnqKtrmAuqLSrwoo/6JvgchTRqV+ODeDc1l3JfbhQW+6hFryB3RSAau+Msg -# n/QwOqIYCYJl/t7kV/Ze7WF97Kc294zbuRT4LTMccfms19oeACHoZpU2H7JWSEZn -# MTMnaEVlM+9ylAgC4wxiEsXlJCI5K167HTpkfR3/9/4hJo+5Pmacd0HQjpP6zDqw -# a8sveaOAmaI0eRC6ByG00sBwPmbRTRvDA4Dc2b3bKqINgkZpM7/NFmclkho4jvF0 -# XJ4jk/Ul2rvaQtTrWY0ZCITR79XpLpRZMukTFTybSZrE+bERy3eK/KNee4Wbt6wz -# 86sci4DvgqPc1nBsX0Y5iWhiPA2I9rXH36iH7ZI7D/I4+0qEWLxfsLNTUthwb8Zg -# 1ukHkIyEk14gOar+Exf4MRZ8slf1518X2zoCj6ZeYfXB8pRz/+N7w8rEtbKCjX+U -# dyI16Oy8vNwWWZRdoG6e2rMmvDDSTz34db1DymXU+a92+q/qcwFAkl1dPVTn5Q== -# SIG # End signature block diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml deleted file mode 100644 index 8907c23..0000000 --- a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml +++ /dev/null @@ -1,451 +0,0 @@ - - - - - - - System.Xml.XmlElement#http://schemas.dmtf.org/wbem/wsman/identity/1/wsmanidentity.xsd#IdentifyResponse - - System.Xml.XmlElement#http://schemas.dmtf.org/wbem/wsman/identity/1/wsmanidentity.xsd#IdentifyResponse - - - - - - - wsmid - - - ProtocolVersion - - - ProductVendor - - - ProductVersion - - - - - - - - Microsoft.WSMan.Management.WSManConfigElement - - Microsoft.WSMan.Management.WSManConfigElement - - - PSParentPath - - - - - - - 15 - - - - 30 - - - - - - - TypeNameOfElement - - - Name - - - - - - - - Microsoft.WSMan.Management.WSManConfigContainerElement - - Microsoft.WSMan.Management.WSManConfigContainerElement - - - PSParentPath - - - - - - - 15 - - - - 35 - - - - - - - - - - TypeNameOfElement - - - Keys - - - Name - - - - - - - - Microsoft.WSMan.Management.WSManConfigLeafElement - - Microsoft.WSMan.Management.WSManConfigLeafElement - - - PSParentPath - - - - - - - 15 - - - - 30 - - - - 15 - - - - - - - - - - TypeNameOfElement - - - Name - - - SourceOfValue - - - Value - - - - - - - - Microsoft.WSMan.Management.WSManConfigLeafElement#InitParams - - Microsoft.WSMan.Management.WSManConfigLeafElement#InitParams - - - PSParentPath - - - - - - - 30 - - - - 20 - - - - - - - Name - - - Value - - - - - - - - Microsoft.WSMan.Management.WSManConfigContainerElement#ComputerLevel - - Microsoft.WSMan.Management.WSManConfigContainerElement#ComputerLevel - - - PSParentPath - - - - - - - 45 - - - - 20 - - - - - - - Name - - - TypeNameOfElement - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psd1 b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psd1 deleted file mode 100644 index 626dc3a..0000000 --- a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psd1 +++ /dev/null @@ -1,207 +0,0 @@ -@{ - GUID="c61d6278-02a3-4618-ae37-a524d40a7f44 " - Author="PowerShell" - CompanyName="Microsoft Corporation" - Copyright="Copyright (c) Microsoft Corporation." - ModuleVersion="7.0.0.0" - CompatiblePSEditions = @("Core") - PowerShellVersion="3.0" - ModuleToProcess="PSDiagnostics.psm1" - FunctionsToExport="Disable-PSTrace","Disable-PSWSManCombinedTrace","Disable-WSManTrace","Enable-PSTrace","Enable-PSWSManCombinedTrace","Enable-WSManTrace","Get-LogProperties","Set-LogProperties","Start-Trace","Stop-Trace" - CmdletsToExport = @() - AliasesToExport = @() - HelpInfoUri="https://aka.ms/powershell72-help" -} - -# SIG # Begin signature block -# MIIjkQYJKoZIhvcNAQcCoIIjgjCCI34CAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCD/dfsIexbywzf4 -# vgDANLKxbLCeK+0wW4ZnFQP22V0sXqCCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIVZjCCFWICAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgoT0Qfn6u -# IFQn6DGWcQzw34/4HzFrnEYbuu3YQlqVoaQwQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQCt/xkRVxP7BXqiUQi+IuzI0bokgJJBF15CLUb5UcOl -# ojrCl4Rx34i0hAAoWt5uOvUG37LQEGnKm5DEgRwG5d+R8SHjAZxk83VzPAg9c7S/ -# GLe8AdcLJ4L5rjGb5YReU+eIPGNvrcZu8JYN2dlBO1nY6axLwonRTpQj43J7wrWd -# InSCbV8CnUfK4/lgftJ5P7SCNLe7Enjv8dQOahg3B4BMReQxHm/SZWgSGb8t++wI -# ZWCw6sRh+XjE63P3VzhAp8Z8KOR3TSCE4Bt5tfy8xDbmePlVrK3GKoVVq4RkVn96 -# 4TRCHvs3RZTQm57yJ2NplI10zIqZz2geZRns5nVGDHcYoYIS8DCCEuwGCisGAQQB -# gjcDAwExghLcMIIS2AYJKoZIhvcNAQcCoIISyTCCEsUCAQMxDzANBglghkgBZQME -# AgEFADCCAVQGCyqGSIb3DQEJEAEEoIIBQwSCAT8wggE7AgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIG5NKJe+omftR+S4BYKgAMTO7Tl6rem9xPJkoE7D -# yZYZAgZhk97zjjgYEjIwMjExMjA4MjEwNDE0Ljg2WjAEgAIB9KCB1KSB0TCBzjEL -# MAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1v -# bmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEpMCcGA1UECxMgTWlj -# cm9zb2Z0IE9wZXJhdGlvbnMgUHVlcnRvIFJpY28xJjAkBgNVBAsTHVRoYWxlcyBU -# U1MgRVNOOjMyQkQtRTNENS0zQjFEMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1T -# dGFtcCBTZXJ2aWNloIIORDCCBPUwggPdoAMCAQICEzMAAAFi0P4C8wHlzUkAAAAA -# AWIwDQYJKoZIhvcNAQELBQAwfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hp -# bmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jw -# b3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAw -# HhcNMjEwMTE0MTkwMjIyWhcNMjIwNDExMTkwMjIyWjCBzjELMAkGA1UEBhMCVVMx -# EzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoT -# FU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEpMCcGA1UECxMgTWljcm9zb2Z0IE9wZXJh -# dGlvbnMgUHVlcnRvIFJpY28xJjAkBgNVBAsTHVRoYWxlcyBUU1MgRVNOOjMyQkQt -# RTNENS0zQjFEMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNl -# MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA74ah1Pa5wvcyvYNCy/YQ -# s1tK8rIGlh1Qq1QFaJmYVXLXykb+m5yCStzmL227wJjsalZX8JA2YcbaZV5Icwm9 -# vAJz8AC/sk/dsUK3pmDvkhtVI04YDV6otuZCILpQB9Ipcs3d0e1Dl2KKFvdibOk0 -# /0rRxU9l+/Yxeb5lVTRERLxzI+Rd6Xv5QQYT6Sp2IE0N1vzIFd3yyO773T5XifNg -# L5lZbtIUnYUVmUBKlVoemO/54aiFeVBpIG+YzhDTF7cuHNAzxWIbP1wt4VIqAV9J -# juqLMvvBSD56pi8NTKM9fxrERAeaTS2HbfBYfmnRZ27Czjeo0ijQ5DSZGi0ErvWf -# KQIDAQABo4IBGzCCARcwHQYDVR0OBBYEFMvEShFgSkO3OnzgHlaVk3aQ/iprMB8G -# A1UdIwQYMBaAFNVjOlyKMZDzQ3t8RhvFM2hahW1VMFYGA1UdHwRPME0wS6BJoEeG -# RWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Rp -# bVN0YVBDQV8yMDEwLTA3LTAxLmNybDBaBggrBgEFBQcBAQROMEwwSgYIKwYBBQUH -# MAKGPmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljVGltU3Rh -# UENBXzIwMTAtMDctMDEuY3J0MAwGA1UdEwEB/wQCMAAwEwYDVR0lBAwwCgYIKwYB -# BQUHAwgwDQYJKoZIhvcNAQELBQADggEBAC1BrcOhdhtb9xcAJtxVIUZ7iALwZewX -# FIdPcmDAVT810k5xuRwVNW9Onq+WZO8ebqwiOSdEEHReLU0FOo/DbS7q79PsKdz/ -# PSBPqZ/1ysjRVH0L5HUK2N7NgpkR1lnt+41BaOzJ+00OFDL5GqeqvK3RWh7MtqWF -# 6KKcfNkP/hjiFlg9/S7xNK/Vl8q10HB5YbdBTQun8j1Jsih6YMb3tFQsxw++ra5+ -# FSnc4yJhAYvVaqTKRKepEmwzYhwDiXh2ag80/p0uDkOvs1WhgogwidpBVmNLAMxm -# FavK9+LNfRKvPIuCQw+EsxWR8vFBBJDfs14WTsXVF94CQ1YCHqYI5EEwggZxMIIE -# WaADAgECAgphCYEqAAAAAAACMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJV -# UzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UE -# ChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9v -# dCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgMjAxMDAeFw0xMDA3MDEyMTM2NTVaFw0y -# NTA3MDEyMTQ2NTVaMHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9u -# MRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRp -# b24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwMIIBIjAN -# BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqR0NvHcRijog7PwTl/X6f2mUa3RU -# ENWlCgCChfvtfGhLLF/Fw+Vhwna3PmYrW/AVUycEMR9BGxqVHc4JE458YTBZsTBE -# D/FgiIRUQwzXTbg4CLNC3ZOs1nMwVyaCo0UN0Or1R4HNvyRgMlhgRvJYR4YyhB50 -# YWeRX4FUsc+TTJLBxKZd0WETbijGGvmGgLvfYfxGwScdJGcSchohiq9LZIlQYrFd -# /XcfPfBXday9ikJNQFHRD5wGPmd/9WbAA5ZEfu/QS/1u5ZrKsajyeioKMfDaTgaR -# togINeh4HLDpmc085y9Euqf03GS9pAHBIAmTeM38vMDJRF1eFpwBBU8iTQIDAQAB -# o4IB5jCCAeIwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFNVjOlyKMZDzQ3t8 -# RhvFM2hahW1VMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB -# hjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFNX2VsuP6KJcYmjRPZSQW9fO -# mhjEMFYGA1UdHwRPME0wS6BJoEeGRWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w -# a2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNybDBaBggr -# BgEFBQcBAQROMEwwSgYIKwYBBQUHMAKGPmh0dHA6Ly93d3cubWljcm9zb2Z0LmNv -# bS9wa2kvY2VydHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYtMjMuY3J0MIGgBgNVHSAB -# Af8EgZUwgZIwgY8GCSsGAQQBgjcuAzCBgTA9BggrBgEFBQcCARYxaHR0cDovL3d3 -# dy5taWNyb3NvZnQuY29tL1BLSS9kb2NzL0NQUy9kZWZhdWx0Lmh0bTBABggrBgEF -# BQcCAjA0HjIgHQBMAGUAZwBhAGwAXwBQAG8AbABpAGMAeQBfAFMAdABhAHQAZQBt -# AGUAbgB0AC4gHTANBgkqhkiG9w0BAQsFAAOCAgEAB+aIUQ3ixuCYP4FxAz2do6Eh -# b7Prpsz1Mb7PBeKp/vpXbRkws8LFZslq3/Xn8Hi9x6ieJeP5vO1rVFcIK1GCRBL7 -# uVOMzPRgEop2zEBAQZvcXBf/XPleFzWYJFZLdO9CEMivv3/Gf/I3fVo/HPKZeUqR -# UgCvOA8X9S95gWXZqbVr5MfO9sp6AG9LMEQkIjzP7QOllo9ZKby2/QThcJ8ySif9 -# Va8v/rbljjO7Yl+a21dA6fHOmWaQjP9qYn/dxUoLkSbiOewZSnFjnXshbcOco6I8 -# +n99lmqQeKZt0uGc+R38ONiU9MalCpaGpL2eGq4EQoO4tYCbIjggtSXlZOz39L9+ -# Y1klD3ouOVd2onGqBooPiRa6YacRy5rYDkeagMXQzafQ732D8OE7cQnfXXSYIghh -# 2rBQHm+98eEA3+cxB6STOvdlR3jo+KhIq/fecn5ha293qYHLpwmsObvsxsvYgrRy -# zR30uIUBHoD7G4kqVDmyW9rIDVWZeodzOwjmmC3qjeAzLhIp9cAvVCch98isTtoo -# uLGp25ayp0Kiyc8ZQU3ghvkqmqMRZjDTu3QyS99je/WZii8bxyGvWbWu3EQ8l1Bx -# 16HSxVXjad5XwdHeMMD9zOZN+w2/XU/pnR4ZOC+8z1gFLu8NoFA12u8JJxzVs341 -# Hgi62jbb01+P3nSISRKhggLSMIICOwIBATCB/KGB1KSB0TCBzjELMAkGA1UEBhMC -# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV -# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEpMCcGA1UECxMgTWljcm9zb2Z0IE9w -# ZXJhdGlvbnMgUHVlcnRvIFJpY28xJjAkBgNVBAsTHVRoYWxlcyBUU1MgRVNOOjMy -# QkQtRTNENS0zQjFEMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2 -# aWNloiMKAQEwBwYFKw4DAhoDFQCas/oKGtvPRrHuznufk+indULyDKCBgzCBgKR+ -# MHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMT -# HU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwMA0GCSqGSIb3DQEBBQUAAgUA -# 5Vtd4DAiGA8yMDIxMTIwODIwMzc1MloYDzIwMjExMjA5MjAzNzUyWjB3MD0GCisG -# AQQBhFkKBAExLzAtMAoCBQDlW13gAgEAMAoCAQACAiXlAgH/MAcCAQACAhIPMAoC -# BQDlXK9gAgEAMDYGCisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEA -# AgMHoSChCjAIAgEAAgMBhqAwDQYJKoZIhvcNAQEFBQADgYEAM2SMFWUY36bc2OtE -# Rp28goB1/JaCRplwIWPeW6MSG1c3i2g4X2GIc4vvRrc834fuuJ+Qm07NFeRHQA61 -# lJAHbTlZBMdkDILSVP+20NGOy6B3k5K1WMfGN0Et9EQJpvfEJaB2F4d+LCCNd/MM -# dXEvG2iFxgW3C4TCWZENGlxsa5ExggMNMIIDCQIBATCBkzB8MQswCQYDVQQGEwJV -# UzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UE -# ChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGlt -# ZS1TdGFtcCBQQ0EgMjAxMAITMwAAAWLQ/gLzAeXNSQAAAAABYjANBglghkgBZQME -# AgEFAKCCAUowGgYJKoZIhvcNAQkDMQ0GCyqGSIb3DQEJEAEEMC8GCSqGSIb3DQEJ -# BDEiBCB66+Xkbn3ewO+BRQNGeKLsT3CZTxRw6oyH+Hqt0XKBjzCB+gYLKoZIhvcN -# AQkQAi8xgeowgecwgeQwgb0EIIqqGJX7PA0OulTsNEHsyLnvGLoYE1iwaOBmqrap -# UwoyMIGYMIGApH4wfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24x -# EDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlv -# bjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTACEzMAAAFi -# 0P4C8wHlzUkAAAAAAWIwIgQgPmj2PBaeW66dmUvg/M3GbG9dSU9ROIZo6V1zy7iW -# 604wDQYJKoZIhvcNAQELBQAEggEA6MvaPUzarjssGW9T9f6ohr8y3PWDaJKtB/jB -# siPN63Ektk0b2P1aJLd+FV3f3m4dq25TfYZEIliZtog2M9YOce/24reMnhBbyWwO -# tVGurL4kJQ2+z3qsASFQvZxc4O2NVFQDyyued5Y4+imuQGM3u4TOo5DSTCsvqw89 -# P5J99wB5W9hifpU65qjBROE+LNY6aMF0bIGeDbqb0m9cPe8JE2gZN+SMQQ9kzTUm -# eLAuoyvdm6wGrsx8/xgC2XFHA47DLev3lgUfx6FczxiRna/aI6Y8oqY+Z/R5Vd/L -# vZwZYPSInN7G2gVwJV9/VzLkLQ5hjDJrDMAyZ1smJnQAdnVlLg== -# SIG # End signature block diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psm1 b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psm1 deleted file mode 100644 index f4c16f0..0000000 --- a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psm1 +++ /dev/null @@ -1,663 +0,0 @@ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. - -<# - PowerShell Diagnostics Module - This module contains a set of wrapper scripts that - enable a user to use ETW tracing in Windows - PowerShell. - #> - -$script:Logman="$env:windir\system32\logman.exe" -$script:wsmanlogfile = "$env:windir\system32\wsmtraces.log" -$script:wsmprovfile = "$env:windir\system32\wsmtraceproviders.txt" -$script:wsmsession = "wsmlog" -$script:pssession = "PSTrace" -$script:psprovidername="Microsoft-Windows-PowerShell" -$script:wsmprovidername = "Microsoft-Windows-WinRM" -$script:oplog = "/Operational" -$script:analyticlog="/Analytic" -$script:debuglog="/Debug" -$script:wevtutil="$env:windir\system32\wevtutil.exe" -$script:slparam = "sl" -$script:glparam = "gl" - -function Start-Trace -{ - Param( - [Parameter(Mandatory=$true, - Position=0)] - [string] - $SessionName, - [Parameter(Position=1)] - [ValidateNotNullOrEmpty()] - [string] - $OutputFilePath, - [Parameter(Position=2)] - [ValidateNotNullOrEmpty()] - [string] - $ProviderFilePath, - [Parameter()] - [Switch] - $ETS, - [Parameter()] - [ValidateSet("bin", "bincirc", "csv", "tsv", "sql")] - $Format, - [Parameter()] - [int] - $MinBuffers=0, - [Parameter()] - [int] - $MaxBuffers=256, - [Parameter()] - [int] - $BufferSizeInKB = 0, - [Parameter()] - [int] - $MaxLogFileSizeInMB=0 - ) - - Process - { - $executestring = " start $SessionName" - - if ($ETS) - { - $executestring += " -ets" - } - - if ($null -ne $OutputFilePath) - { - $executestring += " -o ""$OutputFilePath""" - } - - if ($null -ne $ProviderFilePath) - { - $executestring += " -pf ""$ProviderFilePath""" - } - - if ($null -ne $Format) - { - $executestring += " -f $Format" - } - - if ($MinBuffers -ne 0 -or $MaxBuffers -ne 256) - { - $executestring += " -nb $MinBuffers $MaxBuffers" - } - - if ($BufferSizeInKB -ne 0) - { - $executestring += " -bs $BufferSizeInKB" - } - - if ($MaxLogFileSizeInMB -ne 0) - { - $executestring += " -max $MaxLogFileSizeInMB" - } - - & $script:Logman $executestring.Split(" ") - } -} - -function Stop-Trace -{ - param( - [Parameter(Mandatory=$true, - Position=0)] - $SessionName, - [Parameter()] - [switch] - $ETS - ) - - Process - { - if ($ETS) - { - & $script:Logman update $SessionName -ets - & $script:Logman stop $SessionName -ets - } - else - { - & $script:Logman update $SessionName - & $script:Logman stop $SessionName - } - } -} - -function Enable-WSManTrace -{ - - # winrm - "{04c6e16d-b99f-4a3a-9b3e-b8325bbc781e} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii - - # winrsmgr - "{c0a36be8-a515-4cfa-b2b6-2676366efff7} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - # WinrsExe - "{f1cab2c0-8beb-4fa2-90e1-8f17e0acdd5d} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - # WinrsCmd - "{03992646-3dfe-4477-80e3-85936ace7abb} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - # IPMIPrv - "{651d672b-e11f-41b7-add3-c2f6a4023672} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - #IpmiDrv - "{D5C6A3E9-FA9C-434e-9653-165B4FC869E4} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - # WSManProvHost - "{6e1b64d7-d3be-4651-90fb-3583af89d7f1} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - # Event Forwarding - "{6FCDF39A-EF67-483D-A661-76D715C6B008} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - Start-Trace -SessionName $script:wsmsession -ETS -OutputFilePath $script:wsmanlogfile -Format bincirc -MinBuffers 16 -MaxBuffers 256 -BufferSizeInKB 64 -MaxLogFileSizeInMB 256 -ProviderFilePath $script:wsmprovfile -} - -function Disable-WSManTrace -{ - Stop-Trace $script:wsmsession -ETS -} - -function Enable-PSWSManCombinedTrace -{ - param ( - [switch] $DoNotOverwriteExistingTrace - ) - - $provfile = [io.path]::GetTempFilename() - - $traceFileName = [string][Guid]::NewGuid() - if ($DoNotOverwriteExistingTrace) { - $fileName = [string][guid]::newguid() - $logfile = $PSHOME + "\\Traces\\PSTrace_$fileName.etl" - } else { - $logfile = $PSHOME + "\\Traces\\PSTrace.etl" - } - - "Microsoft-Windows-PowerShell 0 5" | Out-File $provfile -Encoding ascii - "Microsoft-Windows-WinRM 0 5" | Out-File $provfile -Encoding ascii -Append - - if (!(Test-Path $PSHOME\Traces)) - { - New-Item -ItemType Directory -Force $PSHOME\Traces | Out-Null - } - - if (Test-Path $logfile) - { - Remove-Item -Force $logfile | Out-Null - } - - Start-Trace -SessionName $script:pssession -OutputFilePath $logfile -ProviderFilePath $provfile -ETS - - Remove-Item $provfile -Force -ea 0 -} - -function Disable-PSWSManCombinedTrace -{ - Stop-Trace -SessionName $script:pssession -ETS -} - -function Set-LogProperties -{ - param( - [Parameter(Mandatory=$true, Position=0, ValueFromPipeline=$true)] - [Microsoft.PowerShell.Diagnostics.LogDetails] - $LogDetails, - [switch] $Force - ) - - Process - { - if ($LogDetails.AutoBackup -and !$LogDetails.Retention) - { - throw (New-Object System.InvalidOperationException) - } - - $enabled = $LogDetails.Enabled.ToString() - $retention = $LogDetails.Retention.ToString() - $autobackup = $LogDetails.AutoBackup.ToString() - $maxLogSize = $LogDetails.MaxLogSize.ToString() - $osVersion = [Version] (Get-CimInstance Win32_OperatingSystem).Version - - if (($LogDetails.Type -eq "Analytic") -or ($LogDetails.Type -eq "Debug")) - { - if ($LogDetails.Enabled) - { - if($osVersion -lt 6.3.7600) - { - & $script:wevtutil $script:slparam $LogDetails.Name -e:$Enabled - } - else - { - & $script:wevtutil /q:$Force $script:slparam $LogDetails.Name -e:$Enabled - } - } - else - { - if($osVersion -lt 6.3.7600) - { - & $script:wevtutil $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ms:$MaxLogSize - } - else - { - & $script:wevtutil /q:$Force $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ms:$MaxLogSize - } - } - } - else - { - if($osVersion -lt 6.3.7600) - { - & $script:wevtutil $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ab:$AutoBackup -ms:$MaxLogSize - } - else - { - & $script:wevtutil /q:$Force $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ab:$AutoBackup -ms:$MaxLogSize - } - } - } -} - -function ConvertTo-Bool([string]$value) -{ - if ($value -ieq "true") - { - return $true - } - else - { - return $false - } -} - -function Get-LogProperties -{ - param( - [Parameter(Mandatory=$true, ValueFromPipeline=$true, Position=0)] $Name - ) - - Process - { - $details = & $script:wevtutil $script:glparam $Name - $indexes = @(1,2,8,9,10) - $value = @() - foreach($index in $indexes) - { - $value += @(($details[$index].SubString($details[$index].IndexOf(":")+1)).Trim()) - } - - $enabled = ConvertTo-Bool $value[0] - $retention = ConvertTo-Bool $value[2] - $autobackup = ConvertTo-Bool $value[3] - - New-Object Microsoft.PowerShell.Diagnostics.LogDetails $Name, $enabled, $value[1], $retention, $autobackup, $value[4] - } -} - -function Enable-PSTrace -{ - param( - [switch] $Force, - [switch] $AnalyticOnly - ) - - $Properties = Get-LogProperties ($script:psprovidername + $script:analyticlog) - - if (!$Properties.Enabled) { - $Properties.Enabled = $true - if ($Force) { - Set-LogProperties $Properties -Force - } else { - Set-LogProperties $Properties - } - } - - if (!$AnalyticOnly) { - $Properties = Get-LogProperties ($script:psprovidername + $script:debuglog) - if (!$Properties.Enabled) { - $Properties.Enabled = $true - if ($Force) { - Set-LogProperties $Properties -Force - } else { - Set-LogProperties $Properties - } - } - } -} - -function Disable-PSTrace -{ - param( - [switch] $AnalyticOnly - ) - $Properties = Get-LogProperties ($script:psprovidername + $script:analyticlog) - if ($Properties.Enabled) { - $Properties.Enabled = $false - Set-LogProperties $Properties - } - - if (!$AnalyticOnly) { - $Properties = Get-LogProperties ($script:psprovidername + $script:debuglog) - if ($Properties.Enabled) { - $Properties.Enabled = $false - Set-LogProperties $Properties - } - } -} -Add-Type @" -using System; - -namespace Microsoft.PowerShell.Diagnostics -{ - public class LogDetails - { - public string Name - { - get - { - return name; - } - } - private string name; - - public bool Enabled - { - get - { - return enabled; - } - set - { - enabled = value; - } - } - private bool enabled; - - public string Type - { - get - { - return type; - } - } - private string type; - - public bool Retention - { - get - { - return retention; - } - set - { - retention = value; - } - } - private bool retention; - - public bool AutoBackup - { - get - { - return autoBackup; - } - set - { - autoBackup = value; - } - } - private bool autoBackup; - - public int MaxLogSize - { - get - { - return maxLogSize; - } - set - { - maxLogSize = value; - } - } - private int maxLogSize; - - public LogDetails(string name, bool enabled, string type, bool retention, bool autoBackup, int maxLogSize) - { - this.name = name; - this.enabled = enabled; - this.type = type; - this.retention = retention; - this.autoBackup = autoBackup; - this.maxLogSize = maxLogSize; - } - } -} -"@ - -if (Get-Command logman.exe -Type Application -ErrorAction SilentlyContinue) -{ - Export-ModuleMember Disable-PSTrace, Disable-PSWSManCombinedTrace, Disable-WSManTrace, Enable-PSTrace, Enable-PSWSManCombinedTrace, Enable-WSManTrace, Get-LogProperties, Set-LogProperties, Start-Trace, Stop-Trace -} -else -{ - # Currently we only support these cmdlets as logman.exe is not available on systems like Nano and IoT - Export-ModuleMember Disable-PSTrace, Enable-PSTrace, Get-LogProperties, Set-LogProperties -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCBzuFp8c8UN6ilP -# /hSmUPDtAUbo8uWTs6wUbaR/ZpM1B6CCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgSB3jjVY/ -# WMZ8WHFGDewy2JQLkkMsgxe7OQ9hGxl1POAwQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQDECdQe+dGfTQ9+1MUoap76UXkZqRUtWJtHANEX9QRF -# zu/zYxq/dvy7faWSumOPbC+fRwu+83u+3CYadkq+B7I6NDeWqTacnJnPk+uV78yi -# UnGjJx9i8cu6fUBS7HhFg1+VS5IZsor64K33Etj9NPBvVxW/AdbcA1Vm1/HCcnfC -# ZVVP8SUsEQsnksf1sgEix5zjYP5yoRrc7zZ31CsfFUseccW0GbjWVellm+JVYQR8 -# PyRw/UvU9wBEGmoG05yKQHMtIQzbgamTF+mFpvvLdNamUk2kTBtPw8esiUQSQSKT -# 893Bw7LCuWiqo8pwi1U45lsh2/5GrxKGyLwQY3vXep01oYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIEeWczI88EUPcg8HePXnLkMZtTRhTovyeZypUyUE -# AkF4AgZhlV5AOFwYEzIwMjExMjA4MjEwNDE0LjA2NVowBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046M0JENC00QjgwLTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYm0v4YwhBxL -# jwABAAABiTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3NDFaFw0yMzAxMjYxOTI3NDFaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjNCRDQtNEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvQZXxZFm -# a6plmuOyvNpV8xONOwcYolZG/BjyZWGSk5JOGaLyrKId5VxVHWHlsmJE4Svnzsdp -# sKmVx8otONveIUFvSceEZp8VXmu5m1fu8L7c+3lwXcibjccqtEvtQslokQVx0r+L -# 54abrNDarwFG73IaRidIS1i9c+unJ8oYyhDRLrCysFAVxyQhPNZkWK7Z8/VGukaK -# LAWHXCh/+R53h42gFL+9/mAALxzCXXuofi8f/XKCm7xNwVc1hONCCz6oq94AufzV -# NkkIW4brUQgYpCcJm9U0XNmQvtropYDn9UtY8YQ0NKenXPtdgLHdQ8Nnv3igErKL -# rWI0a5n5jjdKfwk+8mvakqdZmlOseeOS1XspQNJAK1uZllAITcnQZOcO5ofjOQ33 -# ujWckAXdz+/x3o7l4AU/TSOMzGZMwhUdtVwC3dSbItpSVFgnjM2COEJ9zgCadvOi -# rGDLN471jZI2jClkjsJTdgPk343TQA4JFvds/unZq0uLr+niZ3X44OBx2x+gVlln -# 2c4UbZXNueA4yS1TJGbbJFIILAmTUA9Auj5eISGTbNiyWx79HnCOTar39QEKozm4 -# LnTmDXy0/KI/H/nYZGKuTHfckP28wQS06rD+fDS5xLwcRMCW92DkHXmtbhGyRilB -# OL5LxZelQfxt54wl4WUC0AdAEolPekODwO8CAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBSXbx+zR1p4IIAeguA6rHKkrfl7UDAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQCOtLdpWUI4KwfLLrfaKrLB92Dq -# bAspGWM41TaO4Jl+sHxPo522uu3GKQCjmkRWreHtlfyy9kOk7LWax3k3ke8Gtfet -# fbh7qH0LeV2XOWg39BOnHf6mTcZq7FYSZZch1JDQjc98+Odlow+oWih0Dbt4CV/e -# 19ZcE+1n1zzWkskUEd0f5jPIUis33p+vkY8szduAtCcIcPFUhI8Hb5alPUAPMjGz -# wKb7NIKbnf8j8cP18As5IveckF0oh1cw63RY/vPK62LDYdpi7WnG2ObvngfWVKtw -# iwTI4jHj2cO9q37HDe/PPl216gSpUZh0ap24mKmMDfcKp1N4mEdsxz4oseOrPYeF -# sHHWJFJ6Aivvqn70KTeJpp5r+DxSqbeSy0mxIUOq/lAaUxgNSQVUX26t8r+fciko -# fKv23WHrtRV3t7rVTsB9YzrRaiikmz68K5HWdt9MqULxPQPo+ppZ0LRqkOae466+ -# UKRY0JxWtdrMc5vHlHZfnqjawj/RsM2S6Q6fa9T9CnY1Nz7DYBG3yZJyCPFsrgU0 -# 5s9ljqfsSptpFdUh9R4ce+L71SWDLM2x/1MFLLHAMbXsEp8KloEGtaDULnxtfS2t -# YhfuKGqRXoEfDPAMnIdTvQPh3GHQ4SjkkBARHL0MY75alhGTKHWjC2aLVOo8obKI -# Bk8hfnFDUf/EyVw4uTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0JENC00Qjgw -# LTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVACGlCa3ketyeuey7bJNpWkMuiCcQoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tYMCIY -# DzIwMjExMjA5MDM1MTUyWhgPMjAyMTEyMTAwMzUxNTJaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi1gCAQAwCgIBAAICHvwCAf8wBwIBAAICETcwCgIFAOVc3NgC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQCbF/Q1IJzqUwQBkXn+GjUxZzVN -# O+9p1fpL7W8dEy9/m1L7dl968KiYqfO5rekvXeSUDTFYrkS/r0w8p2ZZ7d0TMtJt -# TrKmc85aRmxtSvCNAS2stE2sS2Y5np5+/02w3DDn3Nni6vvF8nsuiIlbiyHrGQrC -# 9eis1rpLSNvXisSYoDGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABibS/hjCEHEuPAAEAAAGJMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIE9C -# YLePpB7z2n25zIz6S9czmnMvqhq9zWDUWGRetdy3MIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgZndHMdxQV1VsbpWHOTHqWEycvcRJm7cY69l/UmT8j0UwgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYm0v4YwhBxL -# jwABAAABiTAiBCCErc3WAJDL+6+RTcx4qvTV2Dv0bP6a0jmZjnUp3u9sbzANBgkq -# hkiG9w0BAQsFAASCAgCLuF4LX6ghAt1uercf24wmzMJ22FHRyklnWLILmQXDOSwZ -# bLzptb/gXN2KtDnQU3xF02SLNfmPvFCYkU7l9pYTmDQ18Pm6GtnwLMke8xbMlWsl -# 2gZCMMI3Q40kidzeZ3yYggxf5a+YP0JI3rcgZuRDnEeJ69oUqVvD/sWPTuWqKV7V -# 2jb5gnLURKrzDKPYf1trvb7M2oRkxXToLOEtbsHI2O46WJCbGrYlERk6Sp8+nmPD -# oQ7Lz8Vq5xXn3L8z3QqDI0UCdxxd32JBQbzMZ21xI+JgljiGXv3TSrtz+0M88mLM -# m+Kf7LHqDN3v6xfGI+AWD5KPfxzLekMmtTIlkeA93MolkgeFfkx5BpqbWLrbd63S -# RzhF88sZt47hwzoDfn4DMzFOrtbJqbdVWcVtIgY07AmWUSvpNtXgljty4kzg1rHV -# v2m6ezcnQa0D9a8WQJSd+gRfD6BEmDBOyGL7w49Tcgp2vZiWWdnHrWeRXMp+N4Fs -# 4IbQ51teHXISCvqZoVaz8/jEvWPftKkwcXuM89+S7hN4NMq0zpON1lizLV/FPP7p -# bpAQuaBgSY2f0Hfyko8JAH/KJFpmuzjTTcUAwvru2dsCdakB4kd6k6JHpu+XjWez -# M4lfX7MZegJiXfCQ8QBIKwg80WLwjJjjHrvTap+yPG9goxm6Nzh+UftgAcz+Qw== -# SIG # End signature block diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.Odbc.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.Odbc.dll deleted file mode 100644 index cc9c1da..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.OleDb.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.OleDb.dll deleted file mode 100644 index 95d3e71..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.OleDb.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll deleted file mode 100644 index bc23526..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll deleted file mode 100644 index 03b44f1..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll deleted file mode 100644 index 235a22f..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll deleted file mode 100644 index 58eacf8..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll deleted file mode 100644 index 7f910de..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.dll deleted file mode 100644 index 650007c..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll deleted file mode 100644 index 7c9e87b..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.IO.Ports.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.IO.Ports.dll deleted file mode 100644 index b678ac4..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.IO.Ports.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.Automation.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.Automation.dll deleted file mode 100644 index 0c2333e..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.Automation.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.dll deleted file mode 100644 index 3e409fa..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll deleted file mode 100644 index 2b6fda4..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll deleted file mode 100644 index bdca76d..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll deleted file mode 100644 index 10c0dd8..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll deleted file mode 100644 index 332dbfa..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll deleted file mode 100644 index 8a6feee..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Speech.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Speech.dll deleted file mode 100644 index b551f9c..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Speech.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Threading.AccessControl.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Threading.AccessControl.dll deleted file mode 100644 index 8109eae..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Threading.AccessControl.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll deleted file mode 100644 index 69f0d1b..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll deleted file mode 100644 index d92be8f..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index c70b1d3..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 6d14e76..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll deleted file mode 100644 index 2e5c7ea..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x64/native/mi.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x64/native/mi.dll deleted file mode 100644 index f169cbe..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x64/native/mi.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x64/native/miutils.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x64/native/miutils.dll deleted file mode 100644 index f9c9d3f..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x64/native/miutils.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index e1819d5..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 13d9f3b..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll deleted file mode 100644 index 434e1f4..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x86/native/mi.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x86/native/mi.dll deleted file mode 100644 index cfa3846..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x86/native/mi.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x86/native/miutils.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x86/native/miutils.dll deleted file mode 100644 index 6a6fdd1..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x86/native/miutils.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index c70b1d3..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 6d14e76..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll deleted file mode 100644 index 90fc1b2..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x64/native/mi.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x64/native/mi.dll deleted file mode 100644 index 75de9d2..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x64/native/mi.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x64/native/miutils.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x64/native/miutils.dll deleted file mode 100644 index d6d3465..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x64/native/miutils.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index e1819d5..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 13d9f3b..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll deleted file mode 100644 index 7a2fe92..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x86/native/mi.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x86/native/mi.dll deleted file mode 100644 index f0f556f..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x86/native/mi.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x86/native/miutils.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x86/native/miutils.dll deleted file mode 100644 index 19dbafc..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x86/native/miutils.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index c70b1d3..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 6d14e76..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x64/native/mi.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x64/native/mi.dll deleted file mode 100644 index 34043ba..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x64/native/mi.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x64/native/miutils.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x64/native/miutils.dll deleted file mode 100644 index 0579e97..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x64/native/miutils.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index e1819d5..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 13d9f3b..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x86/native/mi.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x86/native/mi.dll deleted file mode 100644 index f303e1e..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x86/native/mi.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x86/native/miutils.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x86/native/miutils.dll deleted file mode 100644 index d305891..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x86/native/miutils.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index c70b1d3..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 6d14e76..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll deleted file mode 100644 index 8af4889..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x64/native/mi.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x64/native/mi.dll deleted file mode 100644 index 46dedce..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x64/native/mi.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x64/native/miutils.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x64/native/miutils.dll deleted file mode 100644 index 3c8ebbd..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x64/native/miutils.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index e1819d5..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 13d9f3b..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll deleted file mode 100644 index 9dcbfd1..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x86/native/mi.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x86/native/mi.dll deleted file mode 100644 index 087163a..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x86/native/mi.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x86/native/miutils.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x86/native/miutils.dll deleted file mode 100644 index 21ad782..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x86/native/miutils.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/testhost.dll b/linguard/Core.Test/bin/Debug/net6.0/testhost.dll deleted file mode 100644 index 4a8a1a3..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/testhost.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/testhost.exe b/linguard/Core.Test/bin/Debug/net6.0/testhost.exe deleted file mode 100644 index f2ab13c..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/testhost.exe and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 56f6a16..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 81ce1fc..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 667bb80..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 7914420..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 70172b5..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index d819258..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 6fa1eb3..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/tr/System.Private.ServiceModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/tr/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 4a0bd6f..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/tr/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/tr/System.Web.Services.Description.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/tr/System.Web.Services.Description.resources.dll deleted file mode 100644 index 7917190..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/tr/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/xunit.abstractions.dll b/linguard/Core.Test/bin/Debug/net6.0/xunit.abstractions.dll deleted file mode 100644 index d1e90bf..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/xunit.abstractions.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/xunit.assert.dll b/linguard/Core.Test/bin/Debug/net6.0/xunit.assert.dll deleted file mode 100644 index 6cec730..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/xunit.assert.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/xunit.core.dll b/linguard/Core.Test/bin/Debug/net6.0/xunit.core.dll deleted file mode 100644 index 4f2f495..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/xunit.core.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/xunit.execution.dotnet.dll b/linguard/Core.Test/bin/Debug/net6.0/xunit.execution.dotnet.dll deleted file mode 100644 index fb72ce0..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/xunit.execution.dotnet.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/xunit.runner.reporters.netcoreapp10.dll b/linguard/Core.Test/bin/Debug/net6.0/xunit.runner.reporters.netcoreapp10.dll deleted file mode 100644 index 953544f..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/xunit.runner.reporters.netcoreapp10.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/xunit.runner.utility.netcoreapp10.dll b/linguard/Core.Test/bin/Debug/net6.0/xunit.runner.utility.netcoreapp10.dll deleted file mode 100644 index f389ee1..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/xunit.runner.utility.netcoreapp10.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/xunit.runner.visualstudio.dotnetcore.testadapter.dll b/linguard/Core.Test/bin/Debug/net6.0/xunit.runner.visualstudio.dotnetcore.testadapter.dll deleted file mode 100644 index 94b21e6..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/xunit.runner.visualstudio.dotnetcore.testadapter.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index ffe2682..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index d17ccb3..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 9271276..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index ea7e5f8..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index a5cbbbc..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index d0478ca..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index edce377..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/System.Private.ServiceModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 8e8fe2e..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/System.Web.Services.Description.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/System.Web.Services.Description.resources.dll deleted file mode 100644 index 903dca8..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 2efe878..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 62c7b50..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 097303b..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 77d4ab4..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 146df9b..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 21b8a3d..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 0962268..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/System.Private.ServiceModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 2001bc8..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/System.Web.Services.Description.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/System.Web.Services.Description.resources.dll deleted file mode 100644 index 6bf5a85..0000000 Binary files a/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/Core.Test/obj/Core.Test.csproj.nuget.dgspec.json b/linguard/Core.Test/obj/Core.Test.csproj.nuget.dgspec.json deleted file mode 100644 index 8122da2..0000000 --- a/linguard/Core.Test/obj/Core.Test.csproj.nuget.dgspec.json +++ /dev/null @@ -1,246 +0,0 @@ -{ - "format": 1, - "restore": { - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj": {} - }, - "projects": { - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj", - "projectName": "Core.Test", - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj", - "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": { - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj": { - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "FluentAssertions": { - "target": "Package", - "version": "[6.4.0, )" - }, - "FluentValidation": { - "target": "Package", - "version": "[10.3.6, )" - }, - "IPNetwork2": { - "target": "Package", - "version": "[2.5.386, )" - }, - "Microsoft.NET.Test.Sdk": { - "target": "Package", - "version": "[16.11.0, )" - }, - "Moq": { - "target": "Package", - "version": "[4.16.1, )" - }, - "coverlet.msbuild": { - "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", - "suppressParent": "All", - "target": "Package", - "version": "[3.1.2, )" - }, - "xunit": { - "target": "Package", - "version": "[2.4.1, )" - }, - "xunit.runner.visualstudio": { - "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", - "suppressParent": "All", - "target": "Package", - "version": "[2.4.3, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" - } - } - }, - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj": { - "version": "2.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj", - "projectName": "Linguard.Core", - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj", - "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": { - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj": { - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "Bogus": { - "target": "Package", - "version": "[34.0.1, )" - }, - "ByteSize": { - "target": "Package", - "version": "[2.1.1, )" - }, - "FluentValidation": { - "target": "Package", - "version": "[10.3.6, )" - }, - "IPNetwork2": { - "target": "Package", - "version": "[2.5.386, )" - }, - "Microsoft.PowerShell.SDK": { - "target": "Package", - "version": "[7.2.1, )" - }, - "System.Management.Automation": { - "target": "Package", - "version": "[7.2.1, )" - }, - "YamlDotNet": { - "target": "Package", - "version": "[11.2.1, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" - } - } - }, - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj": { - "version": "2.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj", - "projectName": "Linguard.Log", - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj", - "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "NLog": { - "target": "Package", - "version": "[4.7.13, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/linguard/Core.Test/obj/Core.Test.csproj.nuget.g.props b/linguard/Core.Test/obj/Core.Test.csproj.nuget.g.props deleted file mode 100644 index 5985ad6..0000000 --- a/linguard/Core.Test/obj/Core.Test.csproj.nuget.g.props +++ /dev/null @@ -1,27 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\theyu\.nuget\packages\ - PackageReference - 6.0.0 - - - - - - - - - - - - - - C:\Users\theyu\.nuget\packages\xunit.analyzers\0.10.0 - C:\Users\theyu\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.2 - - \ No newline at end of file diff --git a/linguard/Core.Test/obj/Core.Test.csproj.nuget.g.targets b/linguard/Core.Test/obj/Core.Test.csproj.nuget.g.targets deleted file mode 100644 index 6d23769..0000000 --- a/linguard/Core.Test/obj/Core.Test.csproj.nuget.g.targets +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/linguard/Core.Test/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/linguard/Core.Test/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs deleted file mode 100644 index 36203c7..0000000 --- a/linguard/Core.Test/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/linguard/Core.Test/obj/Debug/net6.0/Core.Test.AssemblyInfo.cs b/linguard/Core.Test/obj/Debug/net6.0/Core.Test.AssemblyInfo.cs deleted file mode 100644 index 901aa75..0000000 --- a/linguard/Core.Test/obj/Debug/net6.0/Core.Test.AssemblyInfo.cs +++ /dev/null @@ -1,22 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("Core.Test")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("Core.Test")] -[assembly: System.Reflection.AssemblyTitleAttribute("Core.Test")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generado por la clase WriteCodeFragment de MSBuild. - diff --git a/linguard/Core.Test/obj/Debug/net6.0/Core.Test.AssemblyInfoInputs.cache b/linguard/Core.Test/obj/Debug/net6.0/Core.Test.AssemblyInfoInputs.cache deleted file mode 100644 index 3761cb8..0000000 --- a/linguard/Core.Test/obj/Debug/net6.0/Core.Test.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -cea23721a75c479c98cefbdbc3682a66003512bb diff --git a/linguard/Core.Test/obj/Debug/net6.0/Core.Test.GeneratedMSBuildEditorConfig.editorconfig b/linguard/Core.Test/obj/Debug/net6.0/Core.Test.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 1cfd181..0000000 --- a/linguard/Core.Test/obj/Debug/net6.0/Core.Test.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,10 +0,0 @@ -is_global = true -build_property.TargetFramework = net6.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = Core.Test -build_property.ProjectDir = C:\Users\theyu\repos\linguard\Linguard\Core.Test\ diff --git a/linguard/Core.Test/obj/Debug/net6.0/Core.Test.assets.cache b/linguard/Core.Test/obj/Debug/net6.0/Core.Test.assets.cache deleted file mode 100644 index d059650..0000000 Binary files a/linguard/Core.Test/obj/Debug/net6.0/Core.Test.assets.cache and /dev/null differ diff --git a/linguard/Core.Test/obj/Debug/net6.0/Core.Test.csproj.AssemblyReference.cache b/linguard/Core.Test/obj/Debug/net6.0/Core.Test.csproj.AssemblyReference.cache deleted file mode 100644 index fa0bb2c..0000000 Binary files a/linguard/Core.Test/obj/Debug/net6.0/Core.Test.csproj.AssemblyReference.cache and /dev/null differ diff --git a/linguard/Core.Test/obj/Debug/net6.0/Core.Test.csproj.CopyComplete b/linguard/Core.Test/obj/Debug/net6.0/Core.Test.csproj.CopyComplete deleted file mode 100644 index e69de29..0000000 diff --git a/linguard/Core.Test/obj/Debug/net6.0/Core.Test.csproj.CoreCompileInputs.cache b/linguard/Core.Test/obj/Debug/net6.0/Core.Test.csproj.CoreCompileInputs.cache deleted file mode 100644 index a55e350..0000000 --- a/linguard/Core.Test/obj/Debug/net6.0/Core.Test.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -2b3d6dc0fc3872db2ffb649d49c8ccdbe171e834 diff --git a/linguard/Core.Test/obj/Debug/net6.0/Core.Test.csproj.FileListAbsolute.txt b/linguard/Core.Test/obj/Debug/net6.0/Core.Test.csproj.FileListAbsolute.txt deleted file mode 100644 index 000bf11..0000000 --- a/linguard/Core.Test/obj/Debug/net6.0/Core.Test.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,1025 +0,0 @@ -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\CoverletSourceRootsMapping -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\testhost.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\testhost.exe -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.TestPlatform.PlatformAbstractions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\xunit.runner.visualstudio.dotnetcore.testadapter.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\xunit.runner.reporters.netcoreapp10.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\xunit.runner.utility.netcoreapp10.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Core.Test.deps.json -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Core.Test.runtimeconfig.json -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Core.Test.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\Core.Test.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Core.Test.pdb -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\FluentAssertions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.VisualStudio.CodeCoverage.Shim.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.TestPlatform.CoreUtilities.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.VisualStudio.TestPlatform.ObjectModel.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.TestPlatform.CommunicationUtilities.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.TestPlatform.CrossPlatEngine.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.TestPlatform.Utilities.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.VisualStudio.TestPlatform.Common.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Newtonsoft.Json.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\NuGet.Frameworks.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Configuration.ConfigurationManager.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Security.Cryptography.ProtectedData.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\xunit.abstractions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\xunit.assert.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\xunit.core.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\xunit.execution.dotnet.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\YamlDotNet.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\cs\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\cs\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\de\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\de\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\es\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\es\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\fr\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\fr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\it\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\it\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ja\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ja\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ko\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ko\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pl\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pl\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ru\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ru\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\tr\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\tr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\cs\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\cs\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\cs\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\de\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\de\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\de\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\es\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\es\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\es\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\fr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\fr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\fr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\it\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\it\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\it\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ja\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ja\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ja\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ko\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ko\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ko\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pl\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pl\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pl\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ru\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ru\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ru\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\tr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\tr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\tr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Linguard.Core.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Linguard.Core.pdb -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.csproj.AssemblyReference.cache -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.AssemblyInfoInputs.cache -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.AssemblyInfo.cs -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.csproj.CoreCompileInputs.cache -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.csproj.CopyComplete -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\obj\Debug\net6.0\ref\Core.Test.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.pdb -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.genruntimeconfig.cache -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.ApplicationInsights.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.Win32.Registry.AccessControl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.Win32.SystemEvents.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.CodeDom.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Diagnostics.EventLog.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.DirectoryServices.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Drawing.Common.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Management.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Security.Cryptography.Pkcs.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Security.Permissions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Windows.Extensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm64\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm64\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x64\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x64\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x86\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x86\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x64\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x64\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x86\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x86\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win8-x64\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win8-x64\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win8-x86\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win8-x86\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x64\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x64\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x86\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x86\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.CoreCLR.Eventing.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-arm\native\libpsl-native.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-arm64\native\libpsl-native.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-musl-x64\native\libpsl-native.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-x64\native\libmi.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-x64\native\libpsl-native.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-x64\native\libpsrpclient.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\osx\native\libmi.dylib -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\osx\native\libpsl-native.dylib -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\osx\native\libpsrpclient.dylib -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm\native\PowerShell.Core.Instrumentation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm\native\pwrshplugin.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm64\native\PowerShell.Core.Instrumentation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm64\native\pwrshplugin.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-x64\native\PowerShell.Core.Instrumentation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-x64\native\pwrshplugin.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-x86\native\PowerShell.Core.Instrumentation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-x86\native\pwrshplugin.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Win32.Registry.AccessControl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.Messages.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Management.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.Management.Automation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Management.Automation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Security.Cryptography.Pkcs.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\Microsoft.CSharp.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\Microsoft.VisualBasic.Core.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\Microsoft.VisualBasic.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\Microsoft.Win32.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\Microsoft.Win32.Registry.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.AppContext.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Buffers.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Collections.Concurrent.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Collections.Immutable.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Collections.NonGeneric.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Collections.Specialized.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Collections.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ComponentModel.Annotations.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ComponentModel.DataAnnotations.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ComponentModel.EventBasedAsync.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ComponentModel.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ComponentModel.TypeConverter.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ComponentModel.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Configuration.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Console.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Core.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Data.Common.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Data.DataSetExtensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Data.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.Contracts.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.Debug.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.DiagnosticSource.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.FileVersionInfo.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.Process.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.StackTrace.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.TextWriterTraceListener.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.Tools.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.TraceSource.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.Tracing.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Drawing.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Drawing.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Dynamic.Runtime.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Formats.Asn1.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Globalization.Calendars.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Globalization.Extensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Globalization.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.Compression.Brotli.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.Compression.FileSystem.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.Compression.ZipFile.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.Compression.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.AccessControl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.DriveInfo.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.Watcher.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.IsolatedStorage.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.MemoryMappedFiles.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.Pipes.AccessControl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.Pipes.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.UnmanagedMemoryStream.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Linq.Expressions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Linq.Parallel.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Linq.Queryable.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Linq.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Memory.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.Http.Json.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.Http.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.HttpListener.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.Mail.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.NameResolution.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.NetworkInformation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.Ping.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.Requests.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.Security.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.ServicePoint.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.Sockets.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.WebClient.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.WebHeaderCollection.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.WebProxy.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.WebSockets.Client.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.WebSockets.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Numerics.Vectors.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Numerics.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ObjectModel.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.DispatchProxy.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.Emit.ILGeneration.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.Emit.Lightweight.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.Emit.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.Extensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.Metadata.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.TypeExtensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Resources.Reader.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Resources.ResourceManager.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Resources.Writer.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.CompilerServices.Unsafe.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.CompilerServices.VisualC.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Extensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Handles.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.InteropServices.RuntimeInformation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.InteropServices.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Intrinsics.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Loader.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Numerics.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.Formatters.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.Json.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.Xml.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.AccessControl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Claims.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Algorithms.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Cng.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Csp.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Encoding.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.OpenSsl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.X509Certificates.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Principal.Windows.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Principal.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.SecureString.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ServiceModel.Web.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ServiceProcess.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Text.Encoding.CodePages.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Text.Encoding.Extensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Text.Encoding.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Text.Encodings.Web.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Text.Json.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Text.RegularExpressions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.Channels.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.Overlapped.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.Tasks.Dataflow.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.Tasks.Extensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.Tasks.Parallel.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.Tasks.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.Thread.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.ThreadPool.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.Timer.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Transactions.Local.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Transactions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ValueTuple.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Web.HttpUtility.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Web.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Windows.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.Linq.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.ReaderWriter.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.Serialization.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.XDocument.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.XPath.XDocument.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.XPath.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.XmlDocument.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.XmlSerializer.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\WindowsBase.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\mscorlib.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\netstandard.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\CimCmdlets\CimCmdlets.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Diagnostics.format.ps1xml -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Event.format.ps1xml -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\GetEvent.types.ps1xml -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Microsoft.PowerShell.Diagnostics.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\Microsoft.WSMan.Management.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\WSMan.format.ps1xml -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psm1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Markdig.Signed.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.Bcl.AsyncInterfaces.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.CodeAnalysis.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.CodeAnalysis.CSharp.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.Extensions.ObjectPool.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.PowerShell.MarkdownRender.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Namotion.Reflection.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\NJsonSchema.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.ComponentModel.Composition.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.ComponentModel.Composition.Registration.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Data.OleDb.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Data.SqlClient.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Diagnostics.PerformanceCounter.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.DirectoryServices.AccountManagement.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.DirectoryServices.Protocols.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.IO.Packaging.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.IO.Ports.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Net.Http.WinHttpHandler.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Private.ServiceModel.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Reflection.Context.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Runtime.Caching.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Security.Cryptography.Xml.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.ServiceModel.Duplex.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.ServiceModel.Http.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.ServiceModel.NetTcp.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.ServiceModel.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.ServiceModel.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.ServiceModel.Security.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.ServiceModel.Syndication.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.ServiceProcess.ServiceController.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Speech.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Threading.AccessControl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Web.Services.Description.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\cs\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\de\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\es\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\fr\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\it\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ja\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ko\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pl\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ru\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\tr\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\cs\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\de\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\es\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\fr\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\it\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ja\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ko\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pl\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ru\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\tr\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\cs\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\de\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\es\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\fr\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\it\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ja\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ko\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pl\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ru\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\tr\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Management.Infrastructure.CimCmdlets.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Diagnostics.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.SDK.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.SDK.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Security.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Security.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.WSMan.Management.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.WSMan.Runtime.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-arm\native\libSystem.IO.Ports.Native.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-arm64\native\libSystem.IO.Ports.Native.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-x64\native\libSystem.IO.Ports.Native.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\osx-arm64\native\libSystem.IO.Ports.Native.dylib -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\osx-x64\native\libSystem.IO.Ports.Native.dylib -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm64\native\sni.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-x64\native\sni.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-x86\native\sni.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\freebsd\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\illumos\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\ios\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\osx\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\solaris\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\tvos\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Data.OleDb.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.PerformanceCounter.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.AccountManagement.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux\lib\net6.0\System.DirectoryServices.Protocols.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\osx\lib\net6.0\System.DirectoryServices.Protocols.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.Protocols.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.IO.Ports.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.IO.Ports.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Net.Http.WinHttpHandler.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Runtime.Caching.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.ServiceProcess.ServiceController.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Speech.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Threading.AccessControl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Linguard.Log.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Linguard.Log.pdb -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Net.IPNetwork.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\NLog.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Bogus.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\FluentValidation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Castle.Core.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Moq.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\CoverletSourceRootsMapping -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\Microsoft.CSharp.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\Microsoft.VisualBasic.Core.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\Microsoft.VisualBasic.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\Microsoft.Win32.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\Microsoft.Win32.Registry.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.AppContext.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Buffers.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Collections.Concurrent.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Collections.Immutable.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Collections.NonGeneric.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Collections.Specialized.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Collections.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ComponentModel.Annotations.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ComponentModel.DataAnnotations.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ComponentModel.EventBasedAsync.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ComponentModel.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ComponentModel.TypeConverter.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ComponentModel.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Configuration.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Console.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Core.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Data.Common.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Data.DataSetExtensions.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Data.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.Contracts.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.Debug.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.DiagnosticSource.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.FileVersionInfo.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.Process.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.StackTrace.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.TextWriterTraceListener.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.Tools.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.TraceSource.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.Tracing.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Drawing.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Drawing.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Dynamic.Runtime.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Formats.Asn1.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Globalization.Calendars.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Globalization.Extensions.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Globalization.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.Compression.Brotli.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.Compression.FileSystem.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.Compression.ZipFile.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.Compression.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.AccessControl.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.DriveInfo.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.Watcher.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.IsolatedStorage.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.MemoryMappedFiles.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.Pipes.AccessControl.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.Pipes.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.UnmanagedMemoryStream.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Linq.Expressions.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Linq.Parallel.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Linq.Queryable.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Linq.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Memory.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.Http.Json.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.Http.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.HttpListener.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.Mail.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.NameResolution.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.NetworkInformation.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.Ping.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.Requests.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.Security.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.ServicePoint.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.Sockets.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.WebClient.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.WebHeaderCollection.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.WebProxy.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.WebSockets.Client.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.WebSockets.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Numerics.Vectors.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Numerics.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ObjectModel.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.DispatchProxy.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.Emit.ILGeneration.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.Emit.Lightweight.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.Emit.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.Extensions.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.Metadata.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.TypeExtensions.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Resources.Reader.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Resources.ResourceManager.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Resources.Writer.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.CompilerServices.Unsafe.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.CompilerServices.VisualC.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Extensions.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Handles.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.InteropServices.RuntimeInformation.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.InteropServices.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Intrinsics.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Loader.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Numerics.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.Formatters.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.Json.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.Xml.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.AccessControl.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Claims.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Algorithms.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Cng.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Csp.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Encoding.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.OpenSsl.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.X509Certificates.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Principal.Windows.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Principal.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.SecureString.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ServiceModel.Web.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ServiceProcess.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Text.Encoding.CodePages.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Text.Encoding.Extensions.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Text.Encoding.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Text.Encodings.Web.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Text.Json.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Text.RegularExpressions.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.Channels.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.Overlapped.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.Tasks.Dataflow.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.Tasks.Extensions.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.Tasks.Parallel.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.Tasks.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.Thread.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.ThreadPool.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.Timer.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Transactions.Local.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Transactions.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ValueTuple.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Web.HttpUtility.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Web.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Windows.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.Linq.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.ReaderWriter.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.Serialization.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.XDocument.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.XPath.XDocument.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.XPath.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.XmlDocument.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.XmlSerializer.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\WindowsBase.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\mscorlib.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\netstandard.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\CimCmdlets\CimCmdlets.psd1 -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Diagnostics.format.ps1xml -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Event.format.ps1xml -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\GetEvent.types.ps1xml -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Microsoft.PowerShell.Diagnostics.psd1 -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\Microsoft.WSMan.Management.psd1 -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\WSMan.format.ps1xml -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psd1 -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psm1 -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\testhost.exe -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\testhost.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\xunit.runner.visualstudio.dotnetcore.testadapter.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\xunit.runner.reporters.netcoreapp10.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\xunit.runner.utility.netcoreapp10.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.TestPlatform.PlatformAbstractions.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Core.Test.deps.json -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Core.Test.runtimeconfig.json -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Core.Test.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\Core.Test.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Core.Test.pdb -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Bogus.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Castle.Core.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\FluentAssertions.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\FluentValidation.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Net.IPNetwork.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Markdig.Signed.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.ApplicationInsights.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.Bcl.AsyncInterfaces.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.CodeAnalysis.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.CodeAnalysis.CSharp.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.VisualStudio.CodeCoverage.Shim.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.Extensions.ObjectPool.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.PowerShell.MarkdownRender.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.TestPlatform.CoreUtilities.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.VisualStudio.TestPlatform.ObjectModel.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.TestPlatform.CommunicationUtilities.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.TestPlatform.CrossPlatEngine.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.TestPlatform.Utilities.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.VisualStudio.TestPlatform.Common.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.Win32.Registry.AccessControl.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.Win32.SystemEvents.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Moq.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Namotion.Reflection.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Newtonsoft.Json.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\NJsonSchema.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\NLog.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\NuGet.Frameworks.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.CodeDom.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.ComponentModel.Composition.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.ComponentModel.Composition.Registration.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Configuration.ConfigurationManager.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Data.OleDb.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Data.SqlClient.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Diagnostics.EventLog.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Diagnostics.PerformanceCounter.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.DirectoryServices.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.DirectoryServices.AccountManagement.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.DirectoryServices.Protocols.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Drawing.Common.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.IO.Packaging.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.IO.Ports.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Management.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Net.Http.WinHttpHandler.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Private.ServiceModel.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Reflection.Context.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Runtime.Caching.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Security.Cryptography.Pkcs.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Security.Cryptography.ProtectedData.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Security.Cryptography.Xml.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Security.Permissions.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.ServiceModel.Duplex.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.ServiceModel.Http.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.ServiceModel.NetTcp.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.ServiceModel.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.ServiceModel.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.ServiceModel.Security.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.ServiceModel.Syndication.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.ServiceProcess.ServiceController.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Speech.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Threading.AccessControl.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Web.Services.Description.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Windows.Extensions.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\xunit.abstractions.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\xunit.assert.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\xunit.core.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\xunit.execution.dotnet.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\YamlDotNet.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\cs\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\de\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\es\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\fr\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\it\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ja\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ko\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pl\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ru\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\tr\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\cs\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\cs\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\de\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\de\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\es\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\es\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\fr\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\fr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\it\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\it\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ja\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ja\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ko\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ko\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pl\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pl\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ru\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ru\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\tr\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\tr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\cs\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\cs\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\cs\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\de\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\de\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\de\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\es\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\es\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\es\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\fr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\fr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\fr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\it\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\it\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\it\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ja\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ja\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ja\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ko\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ko\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ko\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pl\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pl\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pl\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ru\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ru\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ru\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\tr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\tr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\tr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\cs\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\de\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\es\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\fr\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\it\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ja\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ko\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pl\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ru\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\tr\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\cs\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\de\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\es\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\fr\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\it\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ja\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ko\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pl\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ru\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\tr\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Management.Infrastructure.CimCmdlets.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm64\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm64\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x64\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x64\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x86\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x86\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x64\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x64\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x86\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x86\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win8-x64\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win8-x64\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win8-x86\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win8-x86\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x64\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x64\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x86\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x86\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Diagnostics.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.CoreCLR.Eventing.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-arm\native\libpsl-native.so -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-arm64\native\libpsl-native.so -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-musl-x64\native\libpsl-native.so -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-x64\native\libmi.so -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-x64\native\libpsl-native.so -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-x64\native\libpsrpclient.so -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\osx\native\libmi.dylib -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\osx\native\libpsl-native.dylib -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\osx\native\libpsrpclient.dylib -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm\native\PowerShell.Core.Instrumentation.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm\native\pwrshplugin.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm64\native\PowerShell.Core.Instrumentation.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm64\native\pwrshplugin.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-x64\native\PowerShell.Core.Instrumentation.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-x64\native\pwrshplugin.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-x86\native\PowerShell.Core.Instrumentation.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-x86\native\pwrshplugin.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.SDK.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.SDK.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Security.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Security.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Win32.Registry.AccessControl.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.WSMan.Management.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.WSMan.Runtime.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-arm\native\libSystem.IO.Ports.Native.so -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-arm64\native\libSystem.IO.Ports.Native.so -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-x64\native\libSystem.IO.Ports.Native.so -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\osx-arm64\native\libSystem.IO.Ports.Native.dylib -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\osx-x64\native\libSystem.IO.Ports.Native.dylib -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm64\native\sni.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-x64\native\sni.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-x86\native\sni.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\freebsd\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\illumos\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\ios\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\osx\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\solaris\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\tvos\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Data.OleDb.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.Messages.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.PerformanceCounter.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.AccountManagement.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux\lib\net6.0\System.DirectoryServices.Protocols.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\osx\lib\net6.0\System.DirectoryServices.Protocols.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.Protocols.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.IO.Ports.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.IO.Ports.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Management.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.Management.Automation.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Management.Automation.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Net.Http.WinHttpHandler.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Runtime.Caching.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Security.Cryptography.Pkcs.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.ServiceProcess.ServiceController.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Speech.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Threading.AccessControl.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Linguard.Core.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Linguard.Log.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Linguard.Core.pdb -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Linguard.Log.pdb -C:\Users\theyu\repos\linguard\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.csproj.AssemblyReference.cache -C:\Users\theyu\repos\linguard\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\theyu\repos\linguard\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.AssemblyInfoInputs.cache -C:\Users\theyu\repos\linguard\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.AssemblyInfo.cs -C:\Users\theyu\repos\linguard\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.csproj.CoreCompileInputs.cache -C:\Users\theyu\repos\linguard\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.csproj.CopyComplete -C:\Users\theyu\repos\linguard\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\obj\Debug\net6.0\ref\Core.Test.dll -C:\Users\theyu\repos\linguard\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.pdb -C:\Users\theyu\repos\linguard\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.genruntimeconfig.cache -C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ByteSize.dll diff --git a/linguard/Core.Test/obj/Debug/net6.0/Core.Test.dll b/linguard/Core.Test/obj/Debug/net6.0/Core.Test.dll deleted file mode 100644 index c03a86d..0000000 Binary files a/linguard/Core.Test/obj/Debug/net6.0/Core.Test.dll and /dev/null differ diff --git a/linguard/Core.Test/obj/Debug/net6.0/Core.Test.genruntimeconfig.cache b/linguard/Core.Test/obj/Debug/net6.0/Core.Test.genruntimeconfig.cache deleted file mode 100644 index 73e37c4..0000000 --- a/linguard/Core.Test/obj/Debug/net6.0/Core.Test.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -290d28a0d99eee59d1ac5161c03e597dab022739 diff --git a/linguard/Core.Test/obj/Debug/net6.0/Core.Test.pdb b/linguard/Core.Test/obj/Debug/net6.0/Core.Test.pdb deleted file mode 100644 index bc7b96e..0000000 Binary files a/linguard/Core.Test/obj/Debug/net6.0/Core.Test.pdb and /dev/null differ diff --git a/linguard/Core.Test/obj/Debug/net6.0/ref/Core.Test.dll b/linguard/Core.Test/obj/Debug/net6.0/ref/Core.Test.dll deleted file mode 100644 index 258ba6a..0000000 Binary files a/linguard/Core.Test/obj/Debug/net6.0/ref/Core.Test.dll and /dev/null differ diff --git a/linguard/Core.Test/obj/project.assets.json b/linguard/Core.Test/obj/project.assets.json deleted file mode 100644 index 4fca2c1..0000000 --- a/linguard/Core.Test/obj/project.assets.json +++ /dev/null @@ -1,11267 +0,0 @@ -{ - "version": 3, - "targets": { - "net6.0": { - "Bogus/34.0.1": { - "type": "package", - "compile": { - "lib/net6.0/Bogus.dll": {} - }, - "runtime": { - "lib/net6.0/Bogus.dll": {} - } - }, - "ByteSize/2.1.1": { - "type": "package", - "compile": { - "lib/net5.0/ByteSize.dll": {} - }, - "runtime": { - "lib/net5.0/ByteSize.dll": {} - } - }, - "Castle.Core/4.4.0": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.6.1", - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel": "4.3.0", - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Diagnostics.TraceSource": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, - "compile": { - "lib/netstandard1.5/Castle.Core.dll": {} - }, - "runtime": { - "lib/netstandard1.5/Castle.Core.dll": {} - } - }, - "coverlet.msbuild/3.1.2": { - "type": "package", - "build": { - "build/coverlet.msbuild.props": {}, - "build/coverlet.msbuild.targets": {} - } - }, - "FluentAssertions/6.4.0": { - "type": "package", - "dependencies": { - "System.Configuration.ConfigurationManager": "4.4.0" - }, - "compile": { - "lib/netcoreapp3.0/FluentAssertions.dll": {} - }, - "runtime": { - "lib/netcoreapp3.0/FluentAssertions.dll": {} - } - }, - "FluentValidation/10.3.6": { - "type": "package", - "compile": { - "lib/net6.0/FluentValidation.dll": {} - }, - "runtime": { - "lib/net6.0/FluentValidation.dll": {} - } - }, - "IPNetwork2/2.5.386": { - "type": "package", - "compile": { - "lib/net5.0/System.Net.IPNetwork.dll": {} - }, - "runtime": { - "lib/net5.0/System.Net.IPNetwork.dll": {} - } - }, - "Markdig.Signed/0.22.0": { - "type": "package", - "compile": { - "lib/netcoreapp3.1/Markdig.Signed.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Markdig.Signed.dll": {} - } - }, - "Microsoft.ApplicationInsights/2.18.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.DiagnosticSource": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {} - } - }, - "Microsoft.Bcl.AsyncInterfaces/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} - } - }, - "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": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {} - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.CodeAnalysis.Common": "[4.0.1]" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {} - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeCoverage/16.11.0": { - "type": "package", - "compile": { - "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} - }, - "runtime": { - "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} - }, - "build": { - "build/netstandard1.0/Microsoft.CodeCoverage.props": {}, - "build/netstandard1.0/Microsoft.CodeCoverage.targets": {} - } - }, - "Microsoft.CSharp/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netstandard1.3/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.Extensions.ObjectPool/5.0.10": { - "type": "package", - "compile": { - "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": {} - }, - "runtime": { - "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": {} - } - }, - "Microsoft.Management.Infrastructure/2.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Management.Infrastructure.Runtime.Unix": "2.0.0", - "Microsoft.Management.Infrastructure.Runtime.Win": "2.0.0" - }, - "compile": { - "ref/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {}, - "ref/netstandard1.6/Microsoft.Management.Infrastructure.dll": {} - }, - "runtime": { - "lib/netstandard1.6/_._": {} - } - }, - "Microsoft.Management.Infrastructure.CimCmdlets/7.2.1": { - "type": "package", - "dependencies": { - "System.Management.Automation": "7.2.1" - }, - "compile": { - "ref/net6.0/System.Management.Automation.dll": {} - }, - "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.NET.Test.Sdk/16.11.0": { - "type": "package", - "dependencies": { - "Microsoft.CodeCoverage": "16.11.0", - "Microsoft.TestPlatform.TestHost": "16.11.0" - }, - "compile": { - "lib/netcoreapp2.1/_._": {} - }, - "runtime": { - "lib/netcoreapp2.1/_._": {} - }, - "build": { - "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.props": {}, - "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.targets": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {} - } - }, - "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": {} - }, - "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": {} - }, - "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": {} - }, - "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": {} - }, - "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": {} - }, - "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": {}, - "ref/net6.0/Microsoft.PowerShell.ConsoleHost.dll": {}, - "ref/net6.0/System.Management.Automation.dll": {} - }, - "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": {} - }, - "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.TestPlatform.ObjectModel/16.11.0": { - "type": "package", - "dependencies": { - "NuGet.Frameworks": "5.0.0", - "System.Reflection.Metadata": "1.6.0" - }, - "compile": { - "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} - }, - "resource": { - "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.TestPlatform.TestHost/16.11.0": { - "type": "package", - "dependencies": { - "Microsoft.TestPlatform.ObjectModel": "16.11.0", - "Newtonsoft.Json": "9.0.1" - }, - "compile": { - "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, - "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, - "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": {}, - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, - "lib/netcoreapp2.1/testhost.dll": {} - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, - "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, - "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": {}, - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, - "lib/netcoreapp2.1/testhost.dll": {} - }, - "resource": { - "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hant" - } - }, - "build": { - "build/netcoreapp2.1/Microsoft.TestPlatform.TestHost.props": {} - } - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/Microsoft.Win32.Primitives.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/_._": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {} - }, - "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": {} - }, - "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": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "Moq/4.16.1": { - "type": "package", - "dependencies": { - "Castle.Core": "4.4.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "compile": { - "lib/netstandard2.1/Moq.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Moq.dll": {} - } - }, - "Namotion.Reflection/2.0.3": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.3.0" - }, - "compile": { - "lib/netstandard2.0/Namotion.Reflection.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Namotion.Reflection.dll": {} - } - }, - "NETStandard.Library/1.6.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.Compression.ZipFile": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Net.Sockets": "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.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Timer": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0" - } - }, - "Newtonsoft.Json/13.0.1": { - "type": "package", - "compile": { - "lib/netstandard2.0/Newtonsoft.Json.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": {} - } - }, - "NJsonSchema/10.5.2": { - "type": "package", - "dependencies": { - "Namotion.Reflection": "2.0.3", - "Newtonsoft.Json": "9.0.1" - }, - "compile": { - "lib/netstandard2.0/NJsonSchema.dll": {} - }, - "runtime": { - "lib/netstandard2.0/NJsonSchema.dll": {} - } - }, - "NLog/4.7.13": { - "type": "package", - "compile": { - "lib/netstandard2.0/NLog.dll": {} - }, - "runtime": { - "lib/netstandard2.0/NLog.dll": {} - } - }, - "NuGet.Frameworks/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/NuGet.Frameworks.dll": {} - }, - "runtime": { - "lib/netstandard2.0/NuGet.Frameworks.dll": {} - } - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "debian.8-x64" - } - } - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "fedora.23-x64" - } - } - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "fedora.24-x64" - } - } - }, - "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/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "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.Compression/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "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.native.System.Net.Http/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "dependencies": { - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "opensuse.13.2-x64" - } - } - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "opensuse.42.1-x64" - } - } - }, - "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.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { - "assetType": "native", - "rid": "osx.10.10-x64" - } - } - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { - "assetType": "native", - "rid": "osx.10.10-x64" - } - } - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "rhel.7-x64" - } - } - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "ubuntu.14.04-x64" - } - } - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "ubuntu.16.04-x64" - } - } - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "ubuntu.16.10-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.AppContext/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.AppContext.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.AppContext.dll": {} - } - }, - "System.Buffers/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "lib/netstandard1.1/_._": {} - }, - "runtime": { - "lib/netstandard1.1/System.Buffers.dll": {} - } - }, - "System.CodeDom/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.CodeDom.dll": {} - }, - "runtime": { - "lib/net6.0/System.CodeDom.dll": {} - }, - "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/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "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.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "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.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Composition/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.ComponentModel.Composition.dll": {} - }, - "runtime": { - "lib/net6.0/System.ComponentModel.Composition.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.ComponentModel.Composition.Registration.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.ComponentModel.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.ComponentModel": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} - } - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.NonGeneric": "4.3.0", - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel": "4.3.0", - "System.ComponentModel.Primitives": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "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.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} - }, - "runtime": { - "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} - } - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Configuration.ConfigurationManager.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Console/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Console.dll": {} - } - }, - "System.Data.Odbc/6.0.0": { - "type": "package", - "dependencies": { - "System.Text.Encoding.CodePages": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Data.Odbc.dll": {} - }, - "runtime": { - "lib/net6.0/System.Data.Odbc.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Data.OleDb.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/netcoreapp2.1/System.Data.SqlClient.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.DiagnosticSource/5.0.0": { - "type": "package", - "compile": { - "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {} - }, - "runtime": { - "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {} - } - }, - "System.Diagnostics.EventLog/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Diagnostics.EventLog.dll": {} - }, - "runtime": { - "lib/net6.0/System.Diagnostics.EventLog.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Diagnostics.Tools/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.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.TraceSource/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "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", - "runtime.native.System": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} - } - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.DirectoryServices.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.DirectoryServices.AccountManagement.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.DirectoryServices.Protocols.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Drawing.Common.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} - } - }, - "System.Formats.Asn1/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Formats.Asn1.dll": {} - }, - "runtime": { - "lib/net6.0/System.Formats.Asn1.dll": {} - }, - "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/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Globalization": "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" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.IO/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.IO.dll": {} - } - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Buffers": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.IO.Compression": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.Compression.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.IO.Compression.ZipFile/4.3.0": { - "type": "package", - "dependencies": { - "System.Buffers": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.Packaging/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.IO.Packaging.dll": {} - }, - "runtime": { - "lib/net6.0/System.IO.Packaging.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.IO.Ports.dll": {} - }, - "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/System.Linq.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.Linq.Expressions.dll": {} - } - }, - "System.Management/6.0.0": { - "type": "package", - "dependencies": { - "System.CodeDom": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Management.dll": {} - }, - "runtime": { - "lib/net6.0/System.Management.dll": {} - }, - "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": {} - }, - "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/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Http.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Net.Http.WinHttpHandler/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Net.Http.WinHttpHandler.dll": {} - }, - "runtime": { - "lib/net6.0/System.Net.Http.WinHttpHandler.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Net.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Primitives.dll": {} - } - }, - "System.Net.Sockets/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Sockets.dll": {} - } - }, - "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": {} - }, - "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": {} - }, - "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": {} - } - }, - "System.Reflection.Context/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/net6.0/System.Reflection.Context.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Reflection.DispatchProxy/4.7.1": { - "type": "package", - "compile": { - "ref/netstandard2.0/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/netcoreapp2.0/System.Reflection.DispatchProxy.dll": {} - } - }, - "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/System.Reflection.Emit.dll": {} - }, - "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/System.Reflection.Emit.ILGeneration.dll": {} - }, - "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/_._": {} - }, - "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/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.dll": {} - } - }, - "System.Runtime.Caching/6.0.0": { - "type": "package", - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Runtime.Caching.dll": {} - }, - "runtime": { - "lib/net6.0/System.Runtime.Caching.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} - }, - "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/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - }, - "compile": { - "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - }, - "runtime": { - "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Numerics.dll": {} - } - }, - "System.Security.AccessControl/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Security.AccessControl.dll": {} - }, - "runtime": { - "lib/net6.0/System.Security.AccessControl.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.Apple": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} - }, - "runtimeTargets": { - "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { - "assetType": "runtime", - "rid": "osx" - }, - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Cng/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Csp/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/_._": {} - }, - "runtime": { - "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { - "assetType": "runtime", - "rid": "unix" - } - } - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Security.Cryptography.Pkcs.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - } - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {} - }, - "runtime": { - "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "4.3.0", - "System.Security.Cryptography.Csp": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.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": {} - }, - "runtime": { - "lib/net6.0/System.Security.Cryptography.Xml.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Security.Permissions.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Security.Principal.Windows/5.0.0": { - "type": "package", - "compile": { - "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.ServiceModel.Duplex/4.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": {} - } - }, - "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": {} - } - }, - "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": {} - } - }, - "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": {}, - "lib/net6.0/System.ServiceModel.dll": {} - } - }, - "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": {} - } - }, - "System.ServiceModel.Syndication/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.ServiceModel.Syndication.dll": {} - }, - "runtime": { - "lib/net6.0/System.ServiceModel.Syndication.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.ServiceProcess.ServiceController.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Speech.dll": {} - }, - "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": {} - } - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Text.Encoding.CodePages.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Text.Encoding.Extensions/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" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} - } - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Text.Encodings.Web.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - }, - "runtimeTargets": { - "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": { - "assetType": "runtime", - "rid": "browser" - } - } - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Threading.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Threading.AccessControl.dll": {} - }, - "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": {} - } - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "compile": { - "ref/netcoreapp2.1/_._": {} - }, - "runtime": { - "lib/netcoreapp2.1/_._": {} - } - }, - "System.Threading.Timer/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.2/System.Threading.Timer.dll": {} - } - }, - "System.Web.Services.Description/4.9.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/System.Web.Services.Description.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Web.Services.Description.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Windows.Extensions.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Xml.ReaderWriter/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.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "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.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/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.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} - } - }, - "xunit/2.4.1": { - "type": "package", - "dependencies": { - "xunit.analyzers": "0.10.0", - "xunit.assert": "[2.4.1]", - "xunit.core": "[2.4.1]" - } - }, - "xunit.abstractions/2.0.3": { - "type": "package", - "compile": { - "lib/netstandard2.0/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/xunit.abstractions.dll": {} - } - }, - "xunit.analyzers/0.10.0": { - "type": "package" - }, - "xunit.assert/2.4.1": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.6.1" - }, - "compile": { - "lib/netstandard1.1/xunit.assert.dll": {} - }, - "runtime": { - "lib/netstandard1.1/xunit.assert.dll": {} - } - }, - "xunit.core/2.4.1": { - "type": "package", - "dependencies": { - "xunit.extensibility.core": "[2.4.1]", - "xunit.extensibility.execution": "[2.4.1]" - }, - "build": { - "build/xunit.core.props": {}, - "build/xunit.core.targets": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/xunit.core.props": {}, - "buildMultiTargeting/xunit.core.targets": {} - } - }, - "xunit.extensibility.core/2.4.1": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.6.1", - "xunit.abstractions": "2.0.3" - }, - "compile": { - "lib/netstandard1.1/xunit.core.dll": {} - }, - "runtime": { - "lib/netstandard1.1/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.4.1": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.6.1", - "xunit.extensibility.core": "[2.4.1]" - }, - "compile": { - "lib/netstandard1.1/xunit.execution.dotnet.dll": {} - }, - "runtime": { - "lib/netstandard1.1/xunit.execution.dotnet.dll": {} - } - }, - "xunit.runner.visualstudio/2.4.3": { - "type": "package", - "build": { - "build/netcoreapp2.1/xunit.runner.visualstudio.props": {} - } - }, - "YamlDotNet/11.2.1": { - "type": "package", - "compile": { - "lib/netstandard2.1/YamlDotNet.dll": {} - }, - "runtime": { - "lib/netstandard2.1/YamlDotNet.dll": {} - } - }, - "Linguard.Core/2.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v6.0", - "dependencies": { - "Bogus": "34.0.1", - "ByteSize": "2.1.1", - "FluentValidation": "10.3.6", - "IPNetwork2": "2.5.386", - "Linguard.Log": "2.0.0", - "Microsoft.PowerShell.SDK": "7.2.1", - "System.Management.Automation": "7.2.1", - "YamlDotNet": "11.2.1" - }, - "compile": { - "bin/placeholder/Linguard.Core.dll": {} - }, - "runtime": { - "bin/placeholder/Linguard.Core.dll": {} - } - }, - "Linguard.Log/2.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v6.0", - "dependencies": { - "NLog": "4.7.13" - }, - "compile": { - "bin/placeholder/Linguard.Log.dll": {} - }, - "runtime": { - "bin/placeholder/Linguard.Log.dll": {} - } - } - } - }, - "libraries": { - "Bogus/34.0.1": { - "sha512": "49iq7QrD0wb7V4/FcK8p3dWdJxNUbojaqK9L6KRvdikIuRjt38EsNp7QXICcYdbYw01K8BHUdxlnTNn/YX3qDA==", - "type": "package", - "path": "bogus/34.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "bogus.34.0.1.nupkg.sha512", - "bogus.nuspec", - "lib/net40/Bogus.dll", - "lib/net40/Bogus.xml", - "lib/net6.0/Bogus.dll", - "lib/net6.0/Bogus.xml", - "lib/netstandard1.3/Bogus.dll", - "lib/netstandard1.3/Bogus.xml", - "lib/netstandard2.0/Bogus.dll", - "lib/netstandard2.0/Bogus.xml" - ] - }, - "ByteSize/2.1.1": { - "sha512": "D+Y3NpbHrW21vZwwegeWf/8iAg2Mr0s7n1su8Ysho+O9dctJ5/EkWUi19QVxc6+nZl080gGTXBP/Nz0twSI3dA==", - "type": "package", - "path": "bytesize/2.1.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "bytesize.2.1.1.nupkg.sha512", - "bytesize.nuspec", - "lib/net45/ByteSize.dll", - "lib/net45/ByteSize.xml", - "lib/net5.0/ByteSize.dll", - "lib/net5.0/ByteSize.xml", - "lib/netstandard1.0/ByteSize.dll", - "lib/netstandard1.0/ByteSize.xml", - "lib/netstandard2.0/ByteSize.dll", - "lib/netstandard2.0/ByteSize.xml", - "lib/netstandard2.1/ByteSize.dll", - "lib/netstandard2.1/ByteSize.xml" - ] - }, - "Castle.Core/4.4.0": { - "sha512": "b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", - "type": "package", - "path": "castle.core/4.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ASL - Apache Software Foundation License.txt", - "CHANGELOG.md", - "LICENSE", - "castle.core.4.4.0.nupkg.sha512", - "castle.core.nuspec", - "lib/net35/Castle.Core.dll", - "lib/net35/Castle.Core.xml", - "lib/net40/Castle.Core.dll", - "lib/net40/Castle.Core.xml", - "lib/net45/Castle.Core.dll", - "lib/net45/Castle.Core.xml", - "lib/netstandard1.3/Castle.Core.dll", - "lib/netstandard1.3/Castle.Core.xml", - "lib/netstandard1.5/Castle.Core.dll", - "lib/netstandard1.5/Castle.Core.xml", - "readme.txt" - ] - }, - "coverlet.msbuild/3.1.2": { - "sha512": "QhM0fnDtmIMImY7oxyQ/kh1VYtRxPyRVeLwRUGuUvI6Xp83pSYG9gerK8WgJj4TzUl7ISziADUGtIWKhtlbkbQ==", - "type": "package", - "path": "coverlet.msbuild/3.1.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/Microsoft.Build.Framework.dll", - "build/Microsoft.Build.Utilities.Core.dll", - "build/Microsoft.CSharp.dll", - "build/Microsoft.DotNet.PlatformAbstractions.dll", - "build/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "build/Microsoft.Extensions.DependencyInjection.dll", - "build/Microsoft.Extensions.DependencyModel.dll", - "build/Microsoft.Extensions.FileSystemGlobbing.dll", - "build/Mono.Cecil.Mdb.dll", - "build/Mono.Cecil.Pdb.dll", - "build/Mono.Cecil.Rocks.dll", - "build/Mono.Cecil.dll", - "build/Newtonsoft.Json.dll", - "build/System.AppContext.dll", - "build/System.Collections.Concurrent.dll", - "build/System.Collections.Immutable.dll", - "build/System.Collections.NonGeneric.dll", - "build/System.Dynamic.Runtime.dll", - "build/System.IO.FileSystem.Primitives.dll", - "build/System.Linq.Expressions.dll", - "build/System.Linq.dll", - "build/System.ObjectModel.dll", - "build/System.Private.DataContractSerialization.dll", - "build/System.Reflection.Emit.ILGeneration.dll", - "build/System.Reflection.Emit.Lightweight.dll", - "build/System.Reflection.Emit.dll", - "build/System.Reflection.Metadata.dll", - "build/System.Reflection.TypeExtensions.dll", - "build/System.Resources.Reader.dll", - "build/System.Runtime.Serialization.Primitives.dll", - "build/System.Runtime.Serialization.Xml.dll", - "build/System.Text.RegularExpressions.dll", - "build/System.Threading.Tasks.Extensions.dll", - "build/System.Threading.Tasks.Parallel.dll", - "build/System.Threading.Thread.dll", - "build/System.Threading.ThreadPool.dll", - "build/System.Threading.dll", - "build/System.Xml.ReaderWriter.dll", - "build/System.Xml.XDocument.dll", - "build/System.Xml.XmlDocument.dll", - "build/System.Xml.XmlSerializer.dll", - "build/coverlet.core.dll", - "build/coverlet.core.pdb", - "build/coverlet.msbuild.props", - "build/coverlet.msbuild.targets", - "build/coverlet.msbuild.tasks.dll", - "build/coverlet.msbuild.tasks.pdb", - "coverlet-icon.png", - "coverlet.msbuild.3.1.2.nupkg.sha512", - "coverlet.msbuild.nuspec" - ] - }, - "FluentAssertions/6.4.0": { - "sha512": "KOJE1UD7ndxoZAdmOraiUFLdcdGTArGQW8WYN+vwrC3mdt2G/B7gmsMOozgXKiNSh3fpD/Xp/0mhonRh8vrZKw==", - "type": "package", - "path": "fluentassertions/6.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "FluentAssertions.png", - "fluentassertions.6.4.0.nupkg.sha512", - "fluentassertions.nuspec", - "lib/net47/FluentAssertions.dll", - "lib/net47/FluentAssertions.pdb", - "lib/net47/FluentAssertions.xml", - "lib/netcoreapp2.1/FluentAssertions.dll", - "lib/netcoreapp2.1/FluentAssertions.pdb", - "lib/netcoreapp2.1/FluentAssertions.xml", - "lib/netcoreapp3.0/FluentAssertions.dll", - "lib/netcoreapp3.0/FluentAssertions.pdb", - "lib/netcoreapp3.0/FluentAssertions.xml", - "lib/netstandard2.0/FluentAssertions.dll", - "lib/netstandard2.0/FluentAssertions.pdb", - "lib/netstandard2.0/FluentAssertions.xml", - "lib/netstandard2.1/FluentAssertions.dll", - "lib/netstandard2.1/FluentAssertions.pdb", - "lib/netstandard2.1/FluentAssertions.xml" - ] - }, - "FluentValidation/10.3.6": { - "sha512": "iMd370ZDx6ydm8t7bIFdRbSKX0e42lpvCtifUSbTSXOk5iKjmgl7HU0PXBhIWQAyIRi3gCwfMI9luj8H6K+byw==", - "type": "package", - "path": "fluentvalidation/10.3.6", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "fluent-validation-icon.png", - "fluentvalidation.10.3.6.nupkg.sha512", - "fluentvalidation.nuspec", - "lib/net5.0/FluentValidation.dll", - "lib/net5.0/FluentValidation.xml", - "lib/net6.0/FluentValidation.dll", - "lib/net6.0/FluentValidation.xml", - "lib/netstandard2.0/FluentValidation.dll", - "lib/netstandard2.0/FluentValidation.xml", - "lib/netstandard2.1/FluentValidation.dll", - "lib/netstandard2.1/FluentValidation.xml" - ] - }, - "IPNetwork2/2.5.386": { - "sha512": "6ihnNm82vyJsUYYfR2BRTziY/mQ5UGLsQZuhdSYPeTlbQLhBW/4BC9hBz3h5bFDn8PkVw9dP0cpv9brIBmk4Fw==", - "type": "package", - "path": "ipnetwork2/2.5.386", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE", - "ipnetwork2.2.5.386.nupkg.sha512", - "ipnetwork2.nuspec", - "lib/net40/System.Net.IPNetwork.dll", - "lib/net40/System.Net.IPNetwork.xml", - "lib/net45/System.Net.IPNetwork.dll", - "lib/net45/System.Net.IPNetwork.xml", - "lib/net46/System.Net.IPNetwork.dll", - "lib/net46/System.Net.IPNetwork.xml", - "lib/net47/System.Net.IPNetwork.dll", - "lib/net47/System.Net.IPNetwork.xml", - "lib/net48/System.Net.IPNetwork.dll", - "lib/net48/System.Net.IPNetwork.xml", - "lib/net5.0/System.Net.IPNetwork.dll", - "lib/net5.0/System.Net.IPNetwork.xml", - "lib/netcoreapp3.1/System.Net.IPNetwork.dll", - "lib/netcoreapp3.1/System.Net.IPNetwork.xml", - "lib/netstandard1.6/System.Net.IPNetwork.dll", - "lib/netstandard1.6/System.Net.IPNetwork.xml", - "lib/netstandard2.0/System.Net.IPNetwork.dll", - "lib/netstandard2.0/System.Net.IPNetwork.xml", - "lib/netstandard2.1/System.Net.IPNetwork.dll", - "lib/netstandard2.1/System.Net.IPNetwork.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.CodeCoverage/16.11.0": { - "sha512": "wf6lpAeCqP0KFfbDVtfL50lr7jY1gq0+0oSphyksfLOEygMDXqnaxHK5LPFtMEhYSEtgXdNyXNnEddOqQQUdlQ==", - "type": "package", - "path": "microsoft.codecoverage/16.11.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE_NET.txt", - "ThirdPartyNotices.txt", - "build/netstandard1.0/CodeCoverage/CodeCoverage.config", - "build/netstandard1.0/CodeCoverage/CodeCoverage.exe", - "build/netstandard1.0/CodeCoverage/VanguardInstrumentationProfiler_x86.config", - "build/netstandard1.0/CodeCoverage/amd64/CodeCoverage.exe", - "build/netstandard1.0/CodeCoverage/amd64/VanguardInstrumentationProfiler_x64.config", - "build/netstandard1.0/CodeCoverage/amd64/covrun64.dll", - "build/netstandard1.0/CodeCoverage/amd64/msdia140.dll", - "build/netstandard1.0/CodeCoverage/amd64/msvcdis140.dll", - "build/netstandard1.0/CodeCoverage/amd64/msvcp140.dll", - "build/netstandard1.0/CodeCoverage/amd64/msvcp140_atomic_wait.dll", - "build/netstandard1.0/CodeCoverage/amd64/vcruntime140.dll", - "build/netstandard1.0/CodeCoverage/amd64/vcruntime140_1.dll", - "build/netstandard1.0/CodeCoverage/codecoveragemessages.dll", - "build/netstandard1.0/CodeCoverage/coreclr/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "build/netstandard1.0/CodeCoverage/covrun32.dll", - "build/netstandard1.0/CodeCoverage/msdia140.dll", - "build/netstandard1.0/CodeCoverage/msvcdis140.dll", - "build/netstandard1.0/CodeCoverage/msvcp140.dll", - "build/netstandard1.0/CodeCoverage/msvcp140_atomic_wait.dll", - "build/netstandard1.0/CodeCoverage/vcruntime140.dll", - "build/netstandard1.0/InstrumentationEngine/alpine/x64/ProductionBreakpoints_x64.config", - "build/netstandard1.0/InstrumentationEngine/alpine/x64/libCoverageInstrumentationMethod.so", - "build/netstandard1.0/InstrumentationEngine/alpine/x64/libInstrumentationEngine.so", - "build/netstandard1.0/InstrumentationEngine/ubuntu/x64/ProductionBreakpoints_x64.config", - "build/netstandard1.0/InstrumentationEngine/ubuntu/x64/libCoverageInstrumentationMethod.so", - "build/netstandard1.0/InstrumentationEngine/ubuntu/x64/libInstrumentationEngine.so", - "build/netstandard1.0/InstrumentationEngine/x64/MicrosoftInstrumentationEngine_x64.dll", - "build/netstandard1.0/InstrumentationEngine/x86/MicrosoftInstrumentationEngine_x86.dll", - "build/netstandard1.0/Microsoft.CodeCoverage.props", - "build/netstandard1.0/Microsoft.CodeCoverage.targets", - "build/netstandard1.0/Microsoft.VisualStudio.Coverage.Core.dll", - "build/netstandard1.0/Microsoft.VisualStudio.Coverage.Instrumentation.dll", - "build/netstandard1.0/Microsoft.VisualStudio.Coverage.Interprocess.dll", - "build/netstandard1.0/Microsoft.VisualStudio.TraceDataCollector.dll", - "build/netstandard1.0/Mono.Cecil.Pdb.dll", - "build/netstandard1.0/Mono.Cecil.dll", - "build/netstandard1.0/ThirdPartyNotices.txt", - "build/netstandard1.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "lib/net45/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "microsoft.codecoverage.16.11.0.nupkg.sha512", - "microsoft.codecoverage.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.NET.Test.Sdk/16.11.0": { - "sha512": "f4mbG1SUSkNWF5p7B3Y8ZxMsvKhxCmpZhdl+w6tMtLSUGE7Izi1syU6TkmKOvB2BV66pdbENConFAISOix4ohQ==", - "type": "package", - "path": "microsoft.net.test.sdk/16.11.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE_NET.txt", - "build/net40/Microsoft.NET.Test.Sdk.props", - "build/net40/Microsoft.NET.Test.Sdk.targets", - "build/net45/Microsoft.NET.Test.Sdk.props", - "build/net45/Microsoft.NET.Test.Sdk.targets", - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.cs", - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.fs", - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.vb", - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.props", - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.targets", - "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.cs", - "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.fs", - "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.vb", - "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.props", - "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.targets", - "build/uap10.0/Microsoft.NET.Test.Sdk.props", - "buildMultiTargeting/Microsoft.NET.Test.Sdk.props", - "lib/net40/_._", - "lib/net45/_._", - "lib/netcoreapp1.0/_._", - "lib/netcoreapp2.1/_._", - "lib/uap10.0/_._", - "microsoft.net.test.sdk.16.11.0.nupkg.sha512", - "microsoft.net.test.sdk.nuspec" - ] - }, - "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.TestPlatform.ObjectModel/16.11.0": { - "sha512": "EiknJx9N9Z30gs7R+HHhki7fA8EiiM3pwD1vkw3bFsBC8kdVq/O7mHf1hrg5aJp+ASO6BoOzQueD2ysfTOy/Bg==", - "type": "package", - "path": "microsoft.testplatform.objectmodel/16.11.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE_NET.txt", - "lib/net45/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/net45/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/net45/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/net45/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/net451/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/net451/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/net451/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netcoreapp1.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netcoreapp1.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netstandard1.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netstandard1.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netstandard1.3/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netstandard1.3/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netstandard1.3/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/uap10.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/uap10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "microsoft.testplatform.objectmodel.16.11.0.nupkg.sha512", - "microsoft.testplatform.objectmodel.nuspec" - ] - }, - "Microsoft.TestPlatform.TestHost/16.11.0": { - "sha512": "/Q+R0EcCJE8JaYCk+bGReicw/xrB0HhecrYrUcLbn95BnAlaTJrZhoLkUhvtKTAVtqX/AIKWXYtutiU/Q6QUgg==", - "type": "package", - "path": "microsoft.testplatform.testhost/16.11.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE_NET.txt", - "ThirdPartyNotices.txt", - "build/netcoreapp1.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "build/netcoreapp1.0/Microsoft.TestPlatform.TestHost.props", - "build/netcoreapp1.0/x64/Microsoft.TestPlatform.PlatformAbstractions.dll", - "build/netcoreapp1.0/x64/testhost.dll", - "build/netcoreapp1.0/x64/testhost.exe", - "build/netcoreapp1.0/x86/Microsoft.TestPlatform.PlatformAbstractions.dll", - "build/netcoreapp1.0/x86/testhost.x86.dll", - "build/netcoreapp1.0/x86/testhost.x86.exe", - "build/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll", - "build/netcoreapp2.1/Microsoft.TestPlatform.TestHost.props", - "build/netcoreapp2.1/x64/Microsoft.TestPlatform.PlatformAbstractions.dll", - "build/netcoreapp2.1/x64/testhost.dll", - "build/netcoreapp2.1/x64/testhost.exe", - "build/netcoreapp2.1/x86/Microsoft.TestPlatform.PlatformAbstractions.dll", - "build/netcoreapp2.1/x86/testhost.x86.dll", - "build/netcoreapp2.1/x86/testhost.x86.exe", - "build/uap10.0/Microsoft.TestPlatform.TestHost.props", - "build/uap10.0/Microsoft.TestPlatform.TestHost.targets", - "build/uap10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/cs/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/de/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/es/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/fr/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/it/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/ja/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/ko/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/pl/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/pt-BR/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/ru/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/tr/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/x64/msdia140.dll", - "build/uap10.0/x86/msdia140.dll", - "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/_._", - "lib/netcoreapp1.0/Microsoft.TestPlatform.CommunicationUtilities.dll", - "lib/netcoreapp1.0/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netcoreapp1.0/Microsoft.TestPlatform.CrossPlatEngine.dll", - "lib/netcoreapp1.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netcoreapp1.0/Microsoft.TestPlatform.Utilities.dll", - "lib/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.Common.dll", - "lib/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netcoreapp1.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/testhost.deps.json", - "lib/netcoreapp1.0/testhost.dll", - "lib/netcoreapp1.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/x64/msdia140.dll", - "lib/netcoreapp1.0/x86/msdia140.dll", - "lib/netcoreapp1.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll", - "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll", - "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll", - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll", - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/testhost.deps.json", - "lib/netcoreapp2.1/testhost.dll", - "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/x64/msdia140.dll", - "lib/netcoreapp2.1/x86/msdia140.dll", - "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/uap10.0/Microsoft.TestPlatform.CommunicationUtilities.dll", - "lib/uap10.0/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/uap10.0/Microsoft.TestPlatform.CrossPlatEngine.dll", - "lib/uap10.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/uap10.0/Microsoft.TestPlatform.Utilities.dll", - "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.Common.dll", - "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/uap10.0/testhost.dll", - "microsoft.testplatform.testhost.16.11.0.nupkg.sha512", - "microsoft.testplatform.testhost.nuspec" - ] - }, - "Microsoft.Win32.Primitives/4.3.0": { - "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", - "type": "package", - "path": "microsoft.win32.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/Microsoft.Win32.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "microsoft.win32.primitives.4.3.0.nupkg.sha512", - "microsoft.win32.primitives.nuspec", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/Microsoft.Win32.Primitives.dll", - "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", - "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "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" - ] - }, - "Moq/4.16.1": { - "sha512": "bw3R9q8cVNhWXNpnvWb0OGP4HadS4zvClq+T1zf7AF+tLY1haZ2AvbHidQekf4PDv1T40c6brZeT/V0IBq7cEQ==", - "type": "package", - "path": "moq/4.16.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net45/Moq.dll", - "lib/net45/Moq.xml", - "lib/netstandard2.0/Moq.dll", - "lib/netstandard2.0/Moq.xml", - "lib/netstandard2.1/Moq.dll", - "lib/netstandard2.1/Moq.xml", - "moq.4.16.1.nupkg.sha512", - "moq.nuspec", - "moq.png" - ] - }, - "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" - ] - }, - "NETStandard.Library/1.6.1": { - "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", - "type": "package", - "path": "netstandard.library/1.6.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "netstandard.library.1.6.1.nupkg.sha512", - "netstandard.library.nuspec" - ] - }, - "Newtonsoft.Json/13.0.1": { - "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", - "type": "package", - "path": "newtonsoft.json/13.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.md", - "lib/net20/Newtonsoft.Json.dll", - "lib/net20/Newtonsoft.Json.xml", - "lib/net35/Newtonsoft.Json.dll", - "lib/net35/Newtonsoft.Json.xml", - "lib/net40/Newtonsoft.Json.dll", - "lib/net40/Newtonsoft.Json.xml", - "lib/net45/Newtonsoft.Json.dll", - "lib/net45/Newtonsoft.Json.xml", - "lib/netstandard1.0/Newtonsoft.Json.dll", - "lib/netstandard1.0/Newtonsoft.Json.xml", - "lib/netstandard1.3/Newtonsoft.Json.dll", - "lib/netstandard1.3/Newtonsoft.Json.xml", - "lib/netstandard2.0/Newtonsoft.Json.dll", - "lib/netstandard2.0/Newtonsoft.Json.xml", - "newtonsoft.json.13.0.1.nupkg.sha512", - "newtonsoft.json.nuspec", - "packageIcon.png" - ] - }, - "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" - ] - }, - "NLog/4.7.13": { - "sha512": "AvoGpCuq36B+0wY313XA6gC+YeMvk24rqF8P+HS9fInBGOjCzPjpXp2ln9ATZjPOJtXgHfc8zNmTjyswFGLxvg==", - "type": "package", - "path": "nlog/4.7.13", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/monoandroid44/NLog.dll", - "lib/monoandroid44/NLog.xml", - "lib/net35/NLog.dll", - "lib/net35/NLog.xml", - "lib/net40-client/NLog.dll", - "lib/net40-client/NLog.xml", - "lib/net45/NLog.dll", - "lib/net45/NLog.xml", - "lib/netstandard1.3/NLog.dll", - "lib/netstandard1.3/NLog.xml", - "lib/netstandard1.5/NLog.dll", - "lib/netstandard1.5/NLog.xml", - "lib/netstandard2.0/NLog.dll", - "lib/netstandard2.0/NLog.xml", - "lib/sl4/NLog.dll", - "lib/sl4/NLog.xml", - "lib/sl5/NLog.dll", - "lib/sl5/NLog.xml", - "lib/wp8/NLog.dll", - "lib/wp8/NLog.xml", - "lib/xamarinios10/NLog.dll", - "lib/xamarinios10/NLog.xml", - "nlog.4.7.13.nupkg.sha512", - "nlog.nuspec" - ] - }, - "NuGet.Frameworks/5.0.0": { - "sha512": "c5JVjuVAm4f7E9Vj+v09Z9s2ZsqFDjBpcsyS3M9xRo0bEdm/LVZSzLxxNvfvAwRiiE8nwe1h2G4OwiwlzFKXlA==", - "type": "package", - "path": "nuget.frameworks/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net40/NuGet.Frameworks.dll", - "lib/net40/NuGet.Frameworks.xml", - "lib/net472/NuGet.Frameworks.dll", - "lib/net472/NuGet.Frameworks.xml", - "lib/netstandard2.0/NuGet.Frameworks.dll", - "lib/netstandard2.0/NuGet.Frameworks.xml", - "nuget.frameworks.5.0.0.nupkg.sha512", - "nuget.frameworks.nuspec" - ] - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", - "type": "package", - "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", - "type": "package", - "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", - "type": "package", - "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "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/4.3.0": { - "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "type": "package", - "path": "runtime.native.system/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.4.3.0.nupkg.sha512", - "runtime.native.system.nuspec" - ] - }, - "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.Compression/4.3.0": { - "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", - "type": "package", - "path": "runtime.native.system.io.compression/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.io.compression.4.3.0.nupkg.sha512", - "runtime.native.system.io.compression.nuspec" - ] - }, - "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.native.System.Net.Http/4.3.0": { - "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", - "type": "package", - "path": "runtime.native.system.net.http/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.net.http.4.3.0.nupkg.sha512", - "runtime.native.system.net.http.nuspec" - ] - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", - "type": "package", - "path": "runtime.native.system.security.cryptography.apple/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "runtime.native.system.security.cryptography.apple.nuspec" - ] - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", - "type": "package", - "path": "runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.native.system.security.cryptography.openssl.nuspec" - ] - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", - "type": "package", - "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", - "type": "package", - "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "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.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", - "type": "package", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", - "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" - ] - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", - "type": "package", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" - ] - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", - "type": "package", - "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", - "type": "package", - "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", - "type": "package", - "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", - "type": "package", - "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", - "type": "package", - "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", - "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec", - "runtimes/win-arm64/native/sni.dll", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", - "type": "package", - "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", - "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec", - "runtimes/win-x64/native/sni.dll", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", - "type": "package", - "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", - "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec", - "runtimes/win-x86/native/sni.dll", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.AppContext/4.3.0": { - "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", - "type": "package", - "path": "system.appcontext/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.AppContext.dll", - "lib/net463/System.AppContext.dll", - "lib/netcore50/System.AppContext.dll", - "lib/netstandard1.6/System.AppContext.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.AppContext.dll", - "ref/net463/System.AppContext.dll", - "ref/netstandard/_._", - "ref/netstandard1.3/System.AppContext.dll", - "ref/netstandard1.3/System.AppContext.xml", - "ref/netstandard1.3/de/System.AppContext.xml", - "ref/netstandard1.3/es/System.AppContext.xml", - "ref/netstandard1.3/fr/System.AppContext.xml", - "ref/netstandard1.3/it/System.AppContext.xml", - "ref/netstandard1.3/ja/System.AppContext.xml", - "ref/netstandard1.3/ko/System.AppContext.xml", - "ref/netstandard1.3/ru/System.AppContext.xml", - "ref/netstandard1.3/zh-hans/System.AppContext.xml", - "ref/netstandard1.3/zh-hant/System.AppContext.xml", - "ref/netstandard1.6/System.AppContext.dll", - "ref/netstandard1.6/System.AppContext.xml", - "ref/netstandard1.6/de/System.AppContext.xml", - "ref/netstandard1.6/es/System.AppContext.xml", - "ref/netstandard1.6/fr/System.AppContext.xml", - "ref/netstandard1.6/it/System.AppContext.xml", - "ref/netstandard1.6/ja/System.AppContext.xml", - "ref/netstandard1.6/ko/System.AppContext.xml", - "ref/netstandard1.6/ru/System.AppContext.xml", - "ref/netstandard1.6/zh-hans/System.AppContext.xml", - "ref/netstandard1.6/zh-hant/System.AppContext.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.AppContext.dll", - "system.appcontext.4.3.0.nupkg.sha512", - "system.appcontext.nuspec" - ] - }, - "System.Buffers/4.3.0": { - "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", - "type": "package", - "path": "system.buffers/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.1/.xml", - "lib/netstandard1.1/System.Buffers.dll", - "system.buffers.4.3.0.nupkg.sha512", - "system.buffers.nuspec" - ] - }, - "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.Concurrent/4.3.0": { - "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", - "type": "package", - "path": "system.collections.concurrent/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Collections.Concurrent.dll", - "lib/netstandard1.3/System.Collections.Concurrent.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/netcore50/System.Collections.Concurrent.dll", - "ref/netcore50/System.Collections.Concurrent.xml", - "ref/netcore50/de/System.Collections.Concurrent.xml", - "ref/netcore50/es/System.Collections.Concurrent.xml", - "ref/netcore50/fr/System.Collections.Concurrent.xml", - "ref/netcore50/it/System.Collections.Concurrent.xml", - "ref/netcore50/ja/System.Collections.Concurrent.xml", - "ref/netcore50/ko/System.Collections.Concurrent.xml", - "ref/netcore50/ru/System.Collections.Concurrent.xml", - "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", - "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", - "ref/netstandard1.1/System.Collections.Concurrent.dll", - "ref/netstandard1.1/System.Collections.Concurrent.xml", - "ref/netstandard1.1/de/System.Collections.Concurrent.xml", - "ref/netstandard1.1/es/System.Collections.Concurrent.xml", - "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", - "ref/netstandard1.1/it/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", - "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", - "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", - "ref/netstandard1.3/System.Collections.Concurrent.dll", - "ref/netstandard1.3/System.Collections.Concurrent.xml", - "ref/netstandard1.3/de/System.Collections.Concurrent.xml", - "ref/netstandard1.3/es/System.Collections.Concurrent.xml", - "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", - "ref/netstandard1.3/it/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", - "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", - "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.collections.concurrent.4.3.0.nupkg.sha512", - "system.collections.concurrent.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.Collections.NonGeneric/4.3.0": { - "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", - "type": "package", - "path": "system.collections.nongeneric/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Collections.NonGeneric.dll", - "lib/netstandard1.3/System.Collections.NonGeneric.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Collections.NonGeneric.dll", - "ref/netstandard1.3/System.Collections.NonGeneric.dll", - "ref/netstandard1.3/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.collections.nongeneric.4.3.0.nupkg.sha512", - "system.collections.nongeneric.nuspec" - ] - }, - "System.Collections.Specialized/4.3.0": { - "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", - "type": "package", - "path": "system.collections.specialized/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Collections.Specialized.dll", - "lib/netstandard1.3/System.Collections.Specialized.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Collections.Specialized.dll", - "ref/netstandard1.3/System.Collections.Specialized.dll", - "ref/netstandard1.3/System.Collections.Specialized.xml", - "ref/netstandard1.3/de/System.Collections.Specialized.xml", - "ref/netstandard1.3/es/System.Collections.Specialized.xml", - "ref/netstandard1.3/fr/System.Collections.Specialized.xml", - "ref/netstandard1.3/it/System.Collections.Specialized.xml", - "ref/netstandard1.3/ja/System.Collections.Specialized.xml", - "ref/netstandard1.3/ko/System.Collections.Specialized.xml", - "ref/netstandard1.3/ru/System.Collections.Specialized.xml", - "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml", - "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.collections.specialized.4.3.0.nupkg.sha512", - "system.collections.specialized.nuspec" - ] - }, - "System.ComponentModel/4.3.0": { - "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", - "type": "package", - "path": "system.componentmodel/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ComponentModel.dll", - "lib/netstandard1.3/System.ComponentModel.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.ComponentModel.dll", - "ref/netcore50/System.ComponentModel.xml", - "ref/netcore50/de/System.ComponentModel.xml", - "ref/netcore50/es/System.ComponentModel.xml", - "ref/netcore50/fr/System.ComponentModel.xml", - "ref/netcore50/it/System.ComponentModel.xml", - "ref/netcore50/ja/System.ComponentModel.xml", - "ref/netcore50/ko/System.ComponentModel.xml", - "ref/netcore50/ru/System.ComponentModel.xml", - "ref/netcore50/zh-hans/System.ComponentModel.xml", - "ref/netcore50/zh-hant/System.ComponentModel.xml", - "ref/netstandard1.0/System.ComponentModel.dll", - "ref/netstandard1.0/System.ComponentModel.xml", - "ref/netstandard1.0/de/System.ComponentModel.xml", - "ref/netstandard1.0/es/System.ComponentModel.xml", - "ref/netstandard1.0/fr/System.ComponentModel.xml", - "ref/netstandard1.0/it/System.ComponentModel.xml", - "ref/netstandard1.0/ja/System.ComponentModel.xml", - "ref/netstandard1.0/ko/System.ComponentModel.xml", - "ref/netstandard1.0/ru/System.ComponentModel.xml", - "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", - "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.4.3.0.nupkg.sha512", - "system.componentmodel.nuspec" - ] - }, - "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.ComponentModel.Primitives/4.3.0": { - "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", - "type": "package", - "path": "system.componentmodel.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/System.ComponentModel.Primitives.dll", - "lib/netstandard1.0/System.ComponentModel.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/System.ComponentModel.Primitives.dll", - "ref/netstandard1.0/System.ComponentModel.Primitives.dll", - "ref/netstandard1.0/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.primitives.4.3.0.nupkg.sha512", - "system.componentmodel.primitives.nuspec" - ] - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", - "type": "package", - "path": "system.componentmodel.typeconverter/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/System.ComponentModel.TypeConverter.dll", - "lib/net462/System.ComponentModel.TypeConverter.dll", - "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll", - "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/System.ComponentModel.TypeConverter.dll", - "ref/net462/System.ComponentModel.TypeConverter.dll", - "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll", - "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll", - "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.typeconverter.4.3.0.nupkg.sha512", - "system.componentmodel.typeconverter.nuspec" - ] - }, - "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.Console/4.3.0": { - "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", - "type": "package", - "path": "system.console/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Console.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Console.dll", - "ref/netstandard1.3/System.Console.dll", - "ref/netstandard1.3/System.Console.xml", - "ref/netstandard1.3/de/System.Console.xml", - "ref/netstandard1.3/es/System.Console.xml", - "ref/netstandard1.3/fr/System.Console.xml", - "ref/netstandard1.3/it/System.Console.xml", - "ref/netstandard1.3/ja/System.Console.xml", - "ref/netstandard1.3/ko/System.Console.xml", - "ref/netstandard1.3/ru/System.Console.xml", - "ref/netstandard1.3/zh-hans/System.Console.xml", - "ref/netstandard1.3/zh-hant/System.Console.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.console.4.3.0.nupkg.sha512", - "system.console.nuspec" - ] - }, - "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.Diagnostics.Tools/4.3.0": { - "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", - "type": "package", - "path": "system.diagnostics.tools/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.Tools.dll", - "ref/netcore50/System.Diagnostics.Tools.xml", - "ref/netcore50/de/System.Diagnostics.Tools.xml", - "ref/netcore50/es/System.Diagnostics.Tools.xml", - "ref/netcore50/fr/System.Diagnostics.Tools.xml", - "ref/netcore50/it/System.Diagnostics.Tools.xml", - "ref/netcore50/ja/System.Diagnostics.Tools.xml", - "ref/netcore50/ko/System.Diagnostics.Tools.xml", - "ref/netcore50/ru/System.Diagnostics.Tools.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/System.Diagnostics.Tools.dll", - "ref/netstandard1.0/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.diagnostics.tools.4.3.0.nupkg.sha512", - "system.diagnostics.tools.nuspec" - ] - }, - "System.Diagnostics.TraceSource/4.3.0": { - "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", - "type": "package", - "path": "system.diagnostics.tracesource/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Diagnostics.TraceSource.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Diagnostics.TraceSource.dll", - "ref/netstandard1.3/System.Diagnostics.TraceSource.dll", - "ref/netstandard1.3/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", - "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll", - "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", - "system.diagnostics.tracesource.4.3.0.nupkg.sha512", - "system.diagnostics.tracesource.nuspec" - ] - }, - "System.Diagnostics.Tracing/4.3.0": { - "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", - "type": "package", - "path": "system.diagnostics.tracing/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Diagnostics.Tracing.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Diagnostics.Tracing.dll", - "ref/netcore50/System.Diagnostics.Tracing.dll", - "ref/netcore50/System.Diagnostics.Tracing.xml", - "ref/netcore50/de/System.Diagnostics.Tracing.xml", - "ref/netcore50/es/System.Diagnostics.Tracing.xml", - "ref/netcore50/fr/System.Diagnostics.Tracing.xml", - "ref/netcore50/it/System.Diagnostics.Tracing.xml", - "ref/netcore50/ja/System.Diagnostics.Tracing.xml", - "ref/netcore50/ko/System.Diagnostics.Tracing.xml", - "ref/netcore50/ru/System.Diagnostics.Tracing.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/System.Diagnostics.Tracing.dll", - "ref/netstandard1.1/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/System.Diagnostics.Tracing.dll", - "ref/netstandard1.2/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/System.Diagnostics.Tracing.dll", - "ref/netstandard1.3/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/System.Diagnostics.Tracing.dll", - "ref/netstandard1.5/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.diagnostics.tracing.4.3.0.nupkg.sha512", - "system.diagnostics.tracing.nuspec" - ] - }, - "System.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.Globalization.Calendars/4.3.0": { - "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", - "type": "package", - "path": "system.globalization.calendars/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Globalization.Calendars.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Globalization.Calendars.dll", - "ref/netstandard1.3/System.Globalization.Calendars.dll", - "ref/netstandard1.3/System.Globalization.Calendars.xml", - "ref/netstandard1.3/de/System.Globalization.Calendars.xml", - "ref/netstandard1.3/es/System.Globalization.Calendars.xml", - "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", - "ref/netstandard1.3/it/System.Globalization.Calendars.xml", - "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", - "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", - "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", - "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", - "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.globalization.calendars.4.3.0.nupkg.sha512", - "system.globalization.calendars.nuspec" - ] - }, - "System.Globalization.Extensions/4.3.0": { - "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", - "type": "package", - "path": "system.globalization.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Globalization.Extensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Globalization.Extensions.dll", - "ref/netstandard1.3/System.Globalization.Extensions.dll", - "ref/netstandard1.3/System.Globalization.Extensions.xml", - "ref/netstandard1.3/de/System.Globalization.Extensions.xml", - "ref/netstandard1.3/es/System.Globalization.Extensions.xml", - "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", - "ref/netstandard1.3/it/System.Globalization.Extensions.xml", - "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", - "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", - "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", - "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", - "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", - "runtimes/win/lib/net46/System.Globalization.Extensions.dll", - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", - "system.globalization.extensions.4.3.0.nupkg.sha512", - "system.globalization.extensions.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.Compression/4.3.0": { - "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", - "type": "package", - "path": "system.io.compression/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.IO.Compression.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/net46/System.IO.Compression.dll", - "ref/netcore50/System.IO.Compression.dll", - "ref/netcore50/System.IO.Compression.xml", - "ref/netcore50/de/System.IO.Compression.xml", - "ref/netcore50/es/System.IO.Compression.xml", - "ref/netcore50/fr/System.IO.Compression.xml", - "ref/netcore50/it/System.IO.Compression.xml", - "ref/netcore50/ja/System.IO.Compression.xml", - "ref/netcore50/ko/System.IO.Compression.xml", - "ref/netcore50/ru/System.IO.Compression.xml", - "ref/netcore50/zh-hans/System.IO.Compression.xml", - "ref/netcore50/zh-hant/System.IO.Compression.xml", - "ref/netstandard1.1/System.IO.Compression.dll", - "ref/netstandard1.1/System.IO.Compression.xml", - "ref/netstandard1.1/de/System.IO.Compression.xml", - "ref/netstandard1.1/es/System.IO.Compression.xml", - "ref/netstandard1.1/fr/System.IO.Compression.xml", - "ref/netstandard1.1/it/System.IO.Compression.xml", - "ref/netstandard1.1/ja/System.IO.Compression.xml", - "ref/netstandard1.1/ko/System.IO.Compression.xml", - "ref/netstandard1.1/ru/System.IO.Compression.xml", - "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", - "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", - "ref/netstandard1.3/System.IO.Compression.dll", - "ref/netstandard1.3/System.IO.Compression.xml", - "ref/netstandard1.3/de/System.IO.Compression.xml", - "ref/netstandard1.3/es/System.IO.Compression.xml", - "ref/netstandard1.3/fr/System.IO.Compression.xml", - "ref/netstandard1.3/it/System.IO.Compression.xml", - "ref/netstandard1.3/ja/System.IO.Compression.xml", - "ref/netstandard1.3/ko/System.IO.Compression.xml", - "ref/netstandard1.3/ru/System.IO.Compression.xml", - "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", - "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", - "runtimes/win/lib/net46/System.IO.Compression.dll", - "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", - "system.io.compression.4.3.0.nupkg.sha512", - "system.io.compression.nuspec" - ] - }, - "System.IO.Compression.ZipFile/4.3.0": { - "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", - "type": "package", - "path": "system.io.compression.zipfile/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.Compression.ZipFile.dll", - "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.Compression.ZipFile.dll", - "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", - "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.compression.zipfile.4.3.0.nupkg.sha512", - "system.io.compression.zipfile.nuspec" - ] - }, - "System.IO.FileSystem/4.3.0": { - "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "type": "package", - "path": "system.io.filesystem/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.dll", - "ref/netstandard1.3/System.IO.FileSystem.dll", - "ref/netstandard1.3/System.IO.FileSystem.xml", - "ref/netstandard1.3/de/System.IO.FileSystem.xml", - "ref/netstandard1.3/es/System.IO.FileSystem.xml", - "ref/netstandard1.3/fr/System.IO.FileSystem.xml", - "ref/netstandard1.3/it/System.IO.FileSystem.xml", - "ref/netstandard1.3/ja/System.IO.FileSystem.xml", - "ref/netstandard1.3/ko/System.IO.FileSystem.xml", - "ref/netstandard1.3/ru/System.IO.FileSystem.xml", - "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", - "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.filesystem.4.3.0.nupkg.sha512", - "system.io.filesystem.nuspec" - ] - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "type": "package", - "path": "system.io.filesystem.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.Primitives.dll", - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.Primitives.dll", - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", - "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.filesystem.primitives.4.3.0.nupkg.sha512", - "system.io.filesystem.primitives.nuspec" - ] - }, - "System.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/4.3.0": { - "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", - "type": "package", - "path": "system.net.http/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/Xamarinmac20/_._", - "lib/monoandroid10/_._", - "lib/monotouch10/_._", - "lib/net45/_._", - "lib/net46/System.Net.Http.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/Xamarinmac20/_._", - "ref/monoandroid10/_._", - "ref/monotouch10/_._", - "ref/net45/_._", - "ref/net46/System.Net.Http.dll", - "ref/net46/System.Net.Http.xml", - "ref/net46/de/System.Net.Http.xml", - "ref/net46/es/System.Net.Http.xml", - "ref/net46/fr/System.Net.Http.xml", - "ref/net46/it/System.Net.Http.xml", - "ref/net46/ja/System.Net.Http.xml", - "ref/net46/ko/System.Net.Http.xml", - "ref/net46/ru/System.Net.Http.xml", - "ref/net46/zh-hans/System.Net.Http.xml", - "ref/net46/zh-hant/System.Net.Http.xml", - "ref/netcore50/System.Net.Http.dll", - "ref/netcore50/System.Net.Http.xml", - "ref/netcore50/de/System.Net.Http.xml", - "ref/netcore50/es/System.Net.Http.xml", - "ref/netcore50/fr/System.Net.Http.xml", - "ref/netcore50/it/System.Net.Http.xml", - "ref/netcore50/ja/System.Net.Http.xml", - "ref/netcore50/ko/System.Net.Http.xml", - "ref/netcore50/ru/System.Net.Http.xml", - "ref/netcore50/zh-hans/System.Net.Http.xml", - "ref/netcore50/zh-hant/System.Net.Http.xml", - "ref/netstandard1.1/System.Net.Http.dll", - "ref/netstandard1.1/System.Net.Http.xml", - "ref/netstandard1.1/de/System.Net.Http.xml", - "ref/netstandard1.1/es/System.Net.Http.xml", - "ref/netstandard1.1/fr/System.Net.Http.xml", - "ref/netstandard1.1/it/System.Net.Http.xml", - "ref/netstandard1.1/ja/System.Net.Http.xml", - "ref/netstandard1.1/ko/System.Net.Http.xml", - "ref/netstandard1.1/ru/System.Net.Http.xml", - "ref/netstandard1.1/zh-hans/System.Net.Http.xml", - "ref/netstandard1.1/zh-hant/System.Net.Http.xml", - "ref/netstandard1.3/System.Net.Http.dll", - "ref/netstandard1.3/System.Net.Http.xml", - "ref/netstandard1.3/de/System.Net.Http.xml", - "ref/netstandard1.3/es/System.Net.Http.xml", - "ref/netstandard1.3/fr/System.Net.Http.xml", - "ref/netstandard1.3/it/System.Net.Http.xml", - "ref/netstandard1.3/ja/System.Net.Http.xml", - "ref/netstandard1.3/ko/System.Net.Http.xml", - "ref/netstandard1.3/ru/System.Net.Http.xml", - "ref/netstandard1.3/zh-hans/System.Net.Http.xml", - "ref/netstandard1.3/zh-hant/System.Net.Http.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", - "runtimes/win/lib/net46/System.Net.Http.dll", - "runtimes/win/lib/netcore50/System.Net.Http.dll", - "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", - "system.net.http.4.3.0.nupkg.sha512", - "system.net.http.nuspec" - ] - }, - "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.Net.Primitives/4.3.0": { - "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", - "type": "package", - "path": "system.net.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Net.Primitives.dll", - "ref/netcore50/System.Net.Primitives.xml", - "ref/netcore50/de/System.Net.Primitives.xml", - "ref/netcore50/es/System.Net.Primitives.xml", - "ref/netcore50/fr/System.Net.Primitives.xml", - "ref/netcore50/it/System.Net.Primitives.xml", - "ref/netcore50/ja/System.Net.Primitives.xml", - "ref/netcore50/ko/System.Net.Primitives.xml", - "ref/netcore50/ru/System.Net.Primitives.xml", - "ref/netcore50/zh-hans/System.Net.Primitives.xml", - "ref/netcore50/zh-hant/System.Net.Primitives.xml", - "ref/netstandard1.0/System.Net.Primitives.dll", - "ref/netstandard1.0/System.Net.Primitives.xml", - "ref/netstandard1.0/de/System.Net.Primitives.xml", - "ref/netstandard1.0/es/System.Net.Primitives.xml", - "ref/netstandard1.0/fr/System.Net.Primitives.xml", - "ref/netstandard1.0/it/System.Net.Primitives.xml", - "ref/netstandard1.0/ja/System.Net.Primitives.xml", - "ref/netstandard1.0/ko/System.Net.Primitives.xml", - "ref/netstandard1.0/ru/System.Net.Primitives.xml", - "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", - "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", - "ref/netstandard1.1/System.Net.Primitives.dll", - "ref/netstandard1.1/System.Net.Primitives.xml", - "ref/netstandard1.1/de/System.Net.Primitives.xml", - "ref/netstandard1.1/es/System.Net.Primitives.xml", - "ref/netstandard1.1/fr/System.Net.Primitives.xml", - "ref/netstandard1.1/it/System.Net.Primitives.xml", - "ref/netstandard1.1/ja/System.Net.Primitives.xml", - "ref/netstandard1.1/ko/System.Net.Primitives.xml", - "ref/netstandard1.1/ru/System.Net.Primitives.xml", - "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", - "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", - "ref/netstandard1.3/System.Net.Primitives.dll", - "ref/netstandard1.3/System.Net.Primitives.xml", - "ref/netstandard1.3/de/System.Net.Primitives.xml", - "ref/netstandard1.3/es/System.Net.Primitives.xml", - "ref/netstandard1.3/fr/System.Net.Primitives.xml", - "ref/netstandard1.3/it/System.Net.Primitives.xml", - "ref/netstandard1.3/ja/System.Net.Primitives.xml", - "ref/netstandard1.3/ko/System.Net.Primitives.xml", - "ref/netstandard1.3/ru/System.Net.Primitives.xml", - "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", - "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.net.primitives.4.3.0.nupkg.sha512", - "system.net.primitives.nuspec" - ] - }, - "System.Net.Sockets/4.3.0": { - "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", - "type": "package", - "path": "system.net.sockets/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Net.Sockets.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Net.Sockets.dll", - "ref/netstandard1.3/System.Net.Sockets.dll", - "ref/netstandard1.3/System.Net.Sockets.xml", - "ref/netstandard1.3/de/System.Net.Sockets.xml", - "ref/netstandard1.3/es/System.Net.Sockets.xml", - "ref/netstandard1.3/fr/System.Net.Sockets.xml", - "ref/netstandard1.3/it/System.Net.Sockets.xml", - "ref/netstandard1.3/ja/System.Net.Sockets.xml", - "ref/netstandard1.3/ko/System.Net.Sockets.xml", - "ref/netstandard1.3/ru/System.Net.Sockets.xml", - "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", - "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.net.sockets.4.3.0.nupkg.sha512", - "system.net.sockets.nuspec" - ] - }, - "System.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.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.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", - "type": "package", - "path": "system.runtime.interopservices.runtimeinformation/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", - "system.runtime.interopservices.runtimeinformation.nuspec" - ] - }, - "System.Runtime.Numerics/4.3.0": { - "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", - "type": "package", - "path": "system.runtime.numerics/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Runtime.Numerics.dll", - "lib/netstandard1.3/System.Runtime.Numerics.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/netcore50/System.Runtime.Numerics.dll", - "ref/netcore50/System.Runtime.Numerics.xml", - "ref/netcore50/de/System.Runtime.Numerics.xml", - "ref/netcore50/es/System.Runtime.Numerics.xml", - "ref/netcore50/fr/System.Runtime.Numerics.xml", - "ref/netcore50/it/System.Runtime.Numerics.xml", - "ref/netcore50/ja/System.Runtime.Numerics.xml", - "ref/netcore50/ko/System.Runtime.Numerics.xml", - "ref/netcore50/ru/System.Runtime.Numerics.xml", - "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", - "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", - "ref/netstandard1.1/System.Runtime.Numerics.dll", - "ref/netstandard1.1/System.Runtime.Numerics.xml", - "ref/netstandard1.1/de/System.Runtime.Numerics.xml", - "ref/netstandard1.1/es/System.Runtime.Numerics.xml", - "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", - "ref/netstandard1.1/it/System.Runtime.Numerics.xml", - "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", - "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", - "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", - "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", - "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.numerics.4.3.0.nupkg.sha512", - "system.runtime.numerics.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.Algorithms/4.3.0": { - "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", - "type": "package", - "path": "system.security.cryptography.algorithms/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Algorithms.dll", - "lib/net461/System.Security.Cryptography.Algorithms.dll", - "lib/net463/System.Security.Cryptography.Algorithms.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Algorithms.dll", - "ref/net461/System.Security.Cryptography.Algorithms.dll", - "ref/net463/System.Security.Cryptography.Algorithms.dll", - "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", - "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", - "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", - "system.security.cryptography.algorithms.nuspec" - ] - }, - "System.Security.Cryptography.Cng/4.3.0": { - "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", - "type": "package", - "path": "system.security.cryptography.cng/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net46/System.Security.Cryptography.Cng.dll", - "lib/net461/System.Security.Cryptography.Cng.dll", - "lib/net463/System.Security.Cryptography.Cng.dll", - "ref/net46/System.Security.Cryptography.Cng.dll", - "ref/net461/System.Security.Cryptography.Cng.dll", - "ref/net463/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", - "system.security.cryptography.cng.4.3.0.nupkg.sha512", - "system.security.cryptography.cng.nuspec" - ] - }, - "System.Security.Cryptography.Csp/4.3.0": { - "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", - "type": "package", - "path": "system.security.cryptography.csp/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Csp.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Csp.dll", - "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", - "runtimes/win/lib/netcore50/_._", - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", - "system.security.cryptography.csp.4.3.0.nupkg.sha512", - "system.security.cryptography.csp.nuspec" - ] - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", - "type": "package", - "path": "system.security.cryptography.encoding/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Encoding.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Encoding.dll", - "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", - "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", - "system.security.cryptography.encoding.4.3.0.nupkg.sha512", - "system.security.cryptography.encoding.nuspec" - ] - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", - "type": "package", - "path": "system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", - "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", - "system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "system.security.cryptography.openssl.nuspec" - ] - }, - "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.Primitives/4.3.0": { - "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", - "type": "package", - "path": "system.security.cryptography.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Primitives.dll", - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Primitives.dll", - "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.security.cryptography.primitives.4.3.0.nupkg.sha512", - "system.security.cryptography.primitives.nuspec" - ] - }, - "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.X509Certificates/4.3.0": { - "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", - "type": "package", - "path": "system.security.cryptography.x509certificates/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.X509Certificates.dll", - "lib/net461/System.Security.Cryptography.X509Certificates.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.X509Certificates.dll", - "ref/net461/System.Security.Cryptography.X509Certificates.dll", - "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", - "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", - "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", - "system.security.cryptography.x509certificates.nuspec" - ] - }, - "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.Encoding.Extensions/4.3.0": { - "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "type": "package", - "path": "system.text.encoding.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.Text.Encoding.Extensions.dll", - "ref/netcore50/System.Text.Encoding.Extensions.xml", - "ref/netcore50/de/System.Text.Encoding.Extensions.xml", - "ref/netcore50/es/System.Text.Encoding.Extensions.xml", - "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", - "ref/netcore50/it/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", - "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", - "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", - "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.text.encoding.extensions.4.3.0.nupkg.sha512", - "system.text.encoding.extensions.nuspec" - ] - }, - "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.Text.RegularExpressions/4.3.0": { - "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "type": "package", - "path": "system.text.regularexpressions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Text.RegularExpressions.dll", - "lib/netcore50/System.Text.RegularExpressions.dll", - "lib/netstandard1.6/System.Text.RegularExpressions.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.Text.RegularExpressions.dll", - "ref/netcore50/System.Text.RegularExpressions.dll", - "ref/netcore50/System.Text.RegularExpressions.xml", - "ref/netcore50/de/System.Text.RegularExpressions.xml", - "ref/netcore50/es/System.Text.RegularExpressions.xml", - "ref/netcore50/fr/System.Text.RegularExpressions.xml", - "ref/netcore50/it/System.Text.RegularExpressions.xml", - "ref/netcore50/ja/System.Text.RegularExpressions.xml", - "ref/netcore50/ko/System.Text.RegularExpressions.xml", - "ref/netcore50/ru/System.Text.RegularExpressions.xml", - "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", - "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", - "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", - "ref/netstandard1.0/System.Text.RegularExpressions.dll", - "ref/netstandard1.0/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/System.Text.RegularExpressions.dll", - "ref/netstandard1.3/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/System.Text.RegularExpressions.dll", - "ref/netstandard1.6/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.text.regularexpressions.4.3.0.nupkg.sha512", - "system.text.regularexpressions.nuspec" - ] - }, - "System.Threading/4.3.0": { - "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "type": "package", - "path": "system.threading/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Threading.dll", - "lib/netstandard1.3/System.Threading.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Threading.dll", - "ref/netcore50/System.Threading.xml", - "ref/netcore50/de/System.Threading.xml", - "ref/netcore50/es/System.Threading.xml", - "ref/netcore50/fr/System.Threading.xml", - "ref/netcore50/it/System.Threading.xml", - "ref/netcore50/ja/System.Threading.xml", - "ref/netcore50/ko/System.Threading.xml", - "ref/netcore50/ru/System.Threading.xml", - "ref/netcore50/zh-hans/System.Threading.xml", - "ref/netcore50/zh-hant/System.Threading.xml", - "ref/netstandard1.0/System.Threading.dll", - "ref/netstandard1.0/System.Threading.xml", - "ref/netstandard1.0/de/System.Threading.xml", - "ref/netstandard1.0/es/System.Threading.xml", - "ref/netstandard1.0/fr/System.Threading.xml", - "ref/netstandard1.0/it/System.Threading.xml", - "ref/netstandard1.0/ja/System.Threading.xml", - "ref/netstandard1.0/ko/System.Threading.xml", - "ref/netstandard1.0/ru/System.Threading.xml", - "ref/netstandard1.0/zh-hans/System.Threading.xml", - "ref/netstandard1.0/zh-hant/System.Threading.xml", - "ref/netstandard1.3/System.Threading.dll", - "ref/netstandard1.3/System.Threading.xml", - "ref/netstandard1.3/de/System.Threading.xml", - "ref/netstandard1.3/es/System.Threading.xml", - "ref/netstandard1.3/fr/System.Threading.xml", - "ref/netstandard1.3/it/System.Threading.xml", - "ref/netstandard1.3/ja/System.Threading.xml", - "ref/netstandard1.3/ko/System.Threading.xml", - "ref/netstandard1.3/ru/System.Threading.xml", - "ref/netstandard1.3/zh-hans/System.Threading.xml", - "ref/netstandard1.3/zh-hant/System.Threading.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Threading.dll", - "system.threading.4.3.0.nupkg.sha512", - "system.threading.nuspec" - ] - }, - "System.Threading.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.Threading.Timer/4.3.0": { - "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", - "type": "package", - "path": "system.threading.timer/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net451/_._", - "lib/portable-net451+win81+wpa81/_._", - "lib/win81/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net451/_._", - "ref/netcore50/System.Threading.Timer.dll", - "ref/netcore50/System.Threading.Timer.xml", - "ref/netcore50/de/System.Threading.Timer.xml", - "ref/netcore50/es/System.Threading.Timer.xml", - "ref/netcore50/fr/System.Threading.Timer.xml", - "ref/netcore50/it/System.Threading.Timer.xml", - "ref/netcore50/ja/System.Threading.Timer.xml", - "ref/netcore50/ko/System.Threading.Timer.xml", - "ref/netcore50/ru/System.Threading.Timer.xml", - "ref/netcore50/zh-hans/System.Threading.Timer.xml", - "ref/netcore50/zh-hant/System.Threading.Timer.xml", - "ref/netstandard1.2/System.Threading.Timer.dll", - "ref/netstandard1.2/System.Threading.Timer.xml", - "ref/netstandard1.2/de/System.Threading.Timer.xml", - "ref/netstandard1.2/es/System.Threading.Timer.xml", - "ref/netstandard1.2/fr/System.Threading.Timer.xml", - "ref/netstandard1.2/it/System.Threading.Timer.xml", - "ref/netstandard1.2/ja/System.Threading.Timer.xml", - "ref/netstandard1.2/ko/System.Threading.Timer.xml", - "ref/netstandard1.2/ru/System.Threading.Timer.xml", - "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", - "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", - "ref/portable-net451+win81+wpa81/_._", - "ref/win81/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.timer.4.3.0.nupkg.sha512", - "system.threading.timer.nuspec" - ] - }, - "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" - ] - }, - "System.Xml.ReaderWriter/4.3.0": { - "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "type": "package", - "path": "system.xml.readerwriter/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.Xml.ReaderWriter.dll", - "lib/netcore50/System.Xml.ReaderWriter.dll", - "lib/netstandard1.3/System.Xml.ReaderWriter.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.Xml.ReaderWriter.dll", - "ref/netcore50/System.Xml.ReaderWriter.dll", - "ref/netcore50/System.Xml.ReaderWriter.xml", - "ref/netcore50/de/System.Xml.ReaderWriter.xml", - "ref/netcore50/es/System.Xml.ReaderWriter.xml", - "ref/netcore50/fr/System.Xml.ReaderWriter.xml", - "ref/netcore50/it/System.Xml.ReaderWriter.xml", - "ref/netcore50/ja/System.Xml.ReaderWriter.xml", - "ref/netcore50/ko/System.Xml.ReaderWriter.xml", - "ref/netcore50/ru/System.Xml.ReaderWriter.xml", - "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", - "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/System.Xml.ReaderWriter.dll", - "ref/netstandard1.0/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/System.Xml.ReaderWriter.dll", - "ref/netstandard1.3/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.xml.readerwriter.4.3.0.nupkg.sha512", - "system.xml.readerwriter.nuspec" - ] - }, - "System.Xml.XDocument/4.3.0": { - "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", - "type": "package", - "path": "system.xml.xdocument/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Xml.XDocument.dll", - "lib/netstandard1.3/System.Xml.XDocument.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.Xml.XDocument.dll", - "ref/netcore50/System.Xml.XDocument.xml", - "ref/netcore50/de/System.Xml.XDocument.xml", - "ref/netcore50/es/System.Xml.XDocument.xml", - "ref/netcore50/fr/System.Xml.XDocument.xml", - "ref/netcore50/it/System.Xml.XDocument.xml", - "ref/netcore50/ja/System.Xml.XDocument.xml", - "ref/netcore50/ko/System.Xml.XDocument.xml", - "ref/netcore50/ru/System.Xml.XDocument.xml", - "ref/netcore50/zh-hans/System.Xml.XDocument.xml", - "ref/netcore50/zh-hant/System.Xml.XDocument.xml", - "ref/netstandard1.0/System.Xml.XDocument.dll", - "ref/netstandard1.0/System.Xml.XDocument.xml", - "ref/netstandard1.0/de/System.Xml.XDocument.xml", - "ref/netstandard1.0/es/System.Xml.XDocument.xml", - "ref/netstandard1.0/fr/System.Xml.XDocument.xml", - "ref/netstandard1.0/it/System.Xml.XDocument.xml", - "ref/netstandard1.0/ja/System.Xml.XDocument.xml", - "ref/netstandard1.0/ko/System.Xml.XDocument.xml", - "ref/netstandard1.0/ru/System.Xml.XDocument.xml", - "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", - "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", - "ref/netstandard1.3/System.Xml.XDocument.dll", - "ref/netstandard1.3/System.Xml.XDocument.xml", - "ref/netstandard1.3/de/System.Xml.XDocument.xml", - "ref/netstandard1.3/es/System.Xml.XDocument.xml", - "ref/netstandard1.3/fr/System.Xml.XDocument.xml", - "ref/netstandard1.3/it/System.Xml.XDocument.xml", - "ref/netstandard1.3/ja/System.Xml.XDocument.xml", - "ref/netstandard1.3/ko/System.Xml.XDocument.xml", - "ref/netstandard1.3/ru/System.Xml.XDocument.xml", - "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", - "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.xml.xdocument.4.3.0.nupkg.sha512", - "system.xml.xdocument.nuspec" - ] - }, - "System.Xml.XmlDocument/4.3.0": { - "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", - "type": "package", - "path": "system.xml.xmldocument/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Xml.XmlDocument.dll", - "lib/netstandard1.3/System.Xml.XmlDocument.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Xml.XmlDocument.dll", - "ref/netstandard1.3/System.Xml.XmlDocument.dll", - "ref/netstandard1.3/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.xml.xmldocument.4.3.0.nupkg.sha512", - "system.xml.xmldocument.nuspec" - ] - }, - "xunit/2.4.1": { - "sha512": "XNR3Yz9QTtec16O0aKcO6+baVNpXmOnPUxDkCY97J+8krUYxPvXT1szYYEUdKk4sB8GOI2YbAjRIOm8ZnXRfzQ==", - "type": "package", - "path": "xunit/2.4.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "xunit.2.4.1.nupkg.sha512", - "xunit.nuspec" - ] - }, - "xunit.abstractions/2.0.3": { - "sha512": "pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", - "type": "package", - "path": "xunit.abstractions/2.0.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net35/xunit.abstractions.dll", - "lib/net35/xunit.abstractions.xml", - "lib/netstandard1.0/xunit.abstractions.dll", - "lib/netstandard1.0/xunit.abstractions.xml", - "lib/netstandard2.0/xunit.abstractions.dll", - "lib/netstandard2.0/xunit.abstractions.xml", - "xunit.abstractions.2.0.3.nupkg.sha512", - "xunit.abstractions.nuspec" - ] - }, - "xunit.analyzers/0.10.0": { - "sha512": "4/IDFCJfIeg6bix9apmUtIMwvOsiwqdEexeO/R2D4GReIGPLIRODTpId/l4LRSrAJk9lEO3Zx1H0Zx6uohJDNg==", - "type": "package", - "path": "xunit.analyzers/0.10.0", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "analyzers/dotnet/cs/xunit.analyzers.dll", - "tools/install.ps1", - "tools/uninstall.ps1", - "xunit.analyzers.0.10.0.nupkg.sha512", - "xunit.analyzers.nuspec" - ] - }, - "xunit.assert/2.4.1": { - "sha512": "O/Oe0BS5RmSsM+LQOb041TzuPo5MdH2Rov+qXGS37X+KFG1Hxz7kopYklM5+1Y+tRGeXrOx5+Xne1RuqLFQoyQ==", - "type": "package", - "path": "xunit.assert/2.4.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard1.1/xunit.assert.dll", - "lib/netstandard1.1/xunit.assert.xml", - "xunit.assert.2.4.1.nupkg.sha512", - "xunit.assert.nuspec" - ] - }, - "xunit.core/2.4.1": { - "sha512": "Zsj5OMU6JasNGERXZy8s72+pcheG6Q15atS5XpZXqAtULuyQiQ6XNnUsp1gyfC6WgqScqMvySiEHmHcOG6Eg0Q==", - "type": "package", - "path": "xunit.core/2.4.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "build/xunit.core.props", - "build/xunit.core.targets", - "buildMultiTargeting/xunit.core.props", - "buildMultiTargeting/xunit.core.targets", - "xunit.core.2.4.1.nupkg.sha512", - "xunit.core.nuspec" - ] - }, - "xunit.extensibility.core/2.4.1": { - "sha512": "yKZKm/8QNZnBnGZFD9SewkllHBiK0DThybQD/G4PiAmQjKtEZyHi6ET70QPU9KtSMJGRYS6Syk7EyR2EVDU4Kg==", - "type": "package", - "path": "xunit.extensibility.core/2.4.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net452/xunit.core.dll", - "lib/net452/xunit.core.dll.tdnet", - "lib/net452/xunit.core.xml", - "lib/net452/xunit.runner.tdnet.dll", - "lib/net452/xunit.runner.utility.net452.dll", - "lib/netstandard1.1/xunit.core.dll", - "lib/netstandard1.1/xunit.core.xml", - "xunit.extensibility.core.2.4.1.nupkg.sha512", - "xunit.extensibility.core.nuspec" - ] - }, - "xunit.extensibility.execution/2.4.1": { - "sha512": "7e/1jqBpcb7frLkB6XDrHCGXAbKN4Rtdb88epYxCSRQuZDRW8UtTfdTEVpdTl8s4T56e07hOBVd4G0OdCxIY2A==", - "type": "package", - "path": "xunit.extensibility.execution/2.4.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net452/xunit.execution.desktop.dll", - "lib/net452/xunit.execution.desktop.xml", - "lib/netstandard1.1/xunit.execution.dotnet.dll", - "lib/netstandard1.1/xunit.execution.dotnet.xml", - "xunit.extensibility.execution.2.4.1.nupkg.sha512", - "xunit.extensibility.execution.nuspec" - ] - }, - "xunit.runner.visualstudio/2.4.3": { - "sha512": "kZZSmOmKA8OBlAJaquPXnJJLM9RwQ27H7BMVqfMLUcTi9xHinWGJiWksa3D4NEtz0wZ/nxd2mogObvBgJKCRhQ==", - "type": "package", - "path": "xunit.runner.visualstudio/2.4.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "License.txt", - "build/net452/xunit.abstractions.dll", - "build/net452/xunit.runner.reporters.net452.dll", - "build/net452/xunit.runner.utility.net452.dll", - "build/net452/xunit.runner.visualstudio.props", - "build/net452/xunit.runner.visualstudio.testadapter.dll", - "build/netcoreapp2.1/xunit.abstractions.dll", - "build/netcoreapp2.1/xunit.runner.reporters.netcoreapp10.dll", - "build/netcoreapp2.1/xunit.runner.utility.netcoreapp10.dll", - "build/netcoreapp2.1/xunit.runner.visualstudio.dotnetcore.testadapter.dll", - "build/netcoreapp2.1/xunit.runner.visualstudio.props", - "build/uap10.0.16299/xunit.runner.reporters.netstandard15.dll", - "build/uap10.0.16299/xunit.runner.utility.netstandard15.dll", - "build/uap10.0.16299/xunit.runner.utility.uwp10.dll", - "build/uap10.0.16299/xunit.runner.utility.uwp10.pri", - "build/uap10.0.16299/xunit.runner.visualstudio.props", - "build/uap10.0.16299/xunit.runner.visualstudio.targets", - "build/uap10.0.16299/xunit.runner.visualstudio.uwp.testadapter.dll", - "build/uap10.0.16299/xunit.runner.visualstudio.uwp.testadapter.pri", - "logo-512-transparent.png", - "xunit.runner.visualstudio.2.4.3.nupkg.sha512", - "xunit.runner.visualstudio.nuspec" - ] - }, - "YamlDotNet/11.2.1": { - "sha512": "tBt8K+korVfrjH9wyDEhiLKxbs8qoLCLIFwvYgkSUuMC9//w3z0cFQ8LQAI/5MCKq+BMil0cfRTRvPeE7eXhQw==", - "type": "package", - "path": "yamldotnet/11.2.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.txt", - "images/yamldotnet.png", - "lib/net20/YamlDotNet.dll", - "lib/net20/YamlDotNet.xml", - "lib/net35-client/YamlDotNet.dll", - "lib/net35-client/YamlDotNet.xml", - "lib/net35/YamlDotNet.dll", - "lib/net35/YamlDotNet.xml", - "lib/net45/YamlDotNet.dll", - "lib/net45/YamlDotNet.xml", - "lib/netstandard1.3/YamlDotNet.dll", - "lib/netstandard1.3/YamlDotNet.xml", - "lib/netstandard2.1/YamlDotNet.dll", - "lib/netstandard2.1/YamlDotNet.xml", - "yamldotnet.11.2.1.nupkg.sha512", - "yamldotnet.nuspec" - ] - }, - "Linguard.Core/2.0.0": { - "type": "project", - "path": "../Core/Core.csproj", - "msbuildProject": "../Core/Core.csproj" - }, - "Linguard.Log/2.0.0": { - "type": "project", - "path": "../Log/Log.csproj", - "msbuildProject": "../Log/Log.csproj" - } - }, - "projectFileDependencyGroups": { - "net6.0": [ - "FluentAssertions >= 6.4.0", - "FluentValidation >= 10.3.6", - "IPNetwork2 >= 2.5.386", - "Linguard.Core >= 2.0.0", - "Microsoft.NET.Test.Sdk >= 16.11.0", - "Moq >= 4.16.1", - "coverlet.msbuild >= 3.1.2", - "xunit >= 2.4.1", - "xunit.runner.visualstudio >= 2.4.3" - ] - }, - "packageFolders": { - "C:\\Users\\theyu\\.nuget\\packages\\": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj", - "projectName": "Core.Test", - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj", - "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": { - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj": { - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "FluentAssertions": { - "target": "Package", - "version": "[6.4.0, )" - }, - "FluentValidation": { - "target": "Package", - "version": "[10.3.6, )" - }, - "IPNetwork2": { - "target": "Package", - "version": "[2.5.386, )" - }, - "Microsoft.NET.Test.Sdk": { - "target": "Package", - "version": "[16.11.0, )" - }, - "Moq": { - "target": "Package", - "version": "[4.16.1, )" - }, - "coverlet.msbuild": { - "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", - "suppressParent": "All", - "target": "Package", - "version": "[3.1.2, )" - }, - "xunit": { - "target": "Package", - "version": "[2.4.1, )" - }, - "xunit.runner.visualstudio": { - "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", - "suppressParent": "All", - "target": "Package", - "version": "[2.4.3, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/linguard/Core.Test/obj/project.nuget.cache b/linguard/Core.Test/obj/project.nuget.cache deleted file mode 100644 index c63907e..0000000 --- a/linguard/Core.Test/obj/project.nuget.cache +++ /dev/null @@ -1,201 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "9GXRblvdF7wlX2OMNlU1anCXmzl/+5CA0hL0m+4RmyvBH4v7mr1NM2/ew8CAZAEG/zllvqhstzX/Bhn7xjVgbw==", - "success": true, - "projectFilePath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj", - "expectedPackageFiles": [ - "C:\\Users\\theyu\\.nuget\\packages\\bogus\\34.0.1\\bogus.34.0.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\bytesize\\2.1.1\\bytesize.2.1.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\castle.core\\4.4.0\\castle.core.4.4.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\coverlet.msbuild\\3.1.2\\coverlet.msbuild.3.1.2.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\fluentassertions\\6.4.0\\fluentassertions.6.4.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\fluentvalidation\\10.3.6\\fluentvalidation.10.3.6.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\ipnetwork2\\2.5.386\\ipnetwork2.2.5.386.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\markdig.signed\\0.22.0\\markdig.signed.0.22.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.applicationinsights\\2.18.0\\microsoft.applicationinsights.2.18.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\5.0.0\\microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.2\\microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.codeanalysis.common\\4.0.1\\microsoft.codeanalysis.common.4.0.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.0.1\\microsoft.codeanalysis.csharp.4.0.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.codecoverage\\16.11.0\\microsoft.codecoverage.16.11.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.csharp\\4.3.0\\microsoft.csharp.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.objectpool\\5.0.10\\microsoft.extensions.objectpool.5.0.10.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.management.infrastructure\\2.0.0\\microsoft.management.infrastructure.2.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.management.infrastructure.cimcmdlets\\7.2.1\\microsoft.management.infrastructure.cimcmdlets.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.management.infrastructure.runtime.unix\\2.0.0\\microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.management.infrastructure.runtime.win\\2.0.0\\microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.net.test.sdk\\16.11.0\\microsoft.net.test.sdk.16.11.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.netcore.windows.apisets\\1.0.1\\microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.commands.diagnostics\\7.2.1\\microsoft.powershell.commands.diagnostics.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.commands.management\\7.2.1\\microsoft.powershell.commands.management.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.commands.utility\\7.2.1\\microsoft.powershell.commands.utility.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.consolehost\\7.2.1\\microsoft.powershell.consolehost.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.coreclr.eventing\\7.2.1\\microsoft.powershell.coreclr.eventing.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.markdownrender\\7.2.0\\microsoft.powershell.markdownrender.7.2.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.native\\7.2.0\\microsoft.powershell.native.7.2.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.sdk\\7.2.1\\microsoft.powershell.sdk.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.security\\7.2.1\\microsoft.powershell.security.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.testplatform.objectmodel\\16.11.0\\microsoft.testplatform.objectmodel.16.11.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.testplatform.testhost\\16.11.0\\microsoft.testplatform.testhost.16.11.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.win32.registry.accesscontrol\\6.0.0\\microsoft.win32.registry.accesscontrol.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.windows.compatibility\\6.0.0\\microsoft.windows.compatibility.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.wsman.management\\7.2.1\\microsoft.wsman.management.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.wsman.runtime\\7.2.1\\microsoft.wsman.runtime.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\moq\\4.16.1\\moq.4.16.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\namotion.reflection\\2.0.3\\namotion.reflection.2.0.3.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\njsonschema\\10.5.2\\njsonschema.10.5.2.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\nlog\\4.7.13\\nlog.4.7.13.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\nuget.frameworks\\5.0.0\\nuget.frameworks.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.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\\theyu\\.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\\theyu\\.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\\theyu\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.7.0\\runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.native.system.io.ports\\6.0.0\\runtime.native.system.io.ports.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.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\\theyu\\.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\\theyu\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.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\\theyu\\.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\\theyu\\.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\\theyu\\.nuget\\packages\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.buffers\\4.3.0\\system.buffers.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.codedom\\6.0.0\\system.codedom.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.componentmodel.composition\\6.0.0\\system.componentmodel.composition.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.componentmodel.composition.registration\\6.0.0\\system.componentmodel.composition.registration.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.0\\system.configuration.configurationmanager.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.data.odbc\\6.0.0\\system.data.odbc.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.data.oledb\\6.0.0\\system.data.oledb.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.data.sqlclient\\4.8.3\\system.data.sqlclient.4.8.3.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.diagnosticsource\\5.0.0\\system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.eventlog\\6.0.0\\system.diagnostics.eventlog.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.performancecounter\\6.0.0\\system.diagnostics.performancecounter.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.tracesource\\4.3.0\\system.diagnostics.tracesource.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.directoryservices\\6.0.0\\system.directoryservices.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.directoryservices.accountmanagement\\6.0.0\\system.directoryservices.accountmanagement.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.directoryservices.protocols\\6.0.0\\system.directoryservices.protocols.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.formats.asn1\\6.0.0\\system.formats.asn1.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.io.packaging\\6.0.0\\system.io.packaging.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.io.ports\\6.0.0\\system.io.ports.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.management\\6.0.0\\system.management.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.management.automation\\7.2.1\\system.management.automation.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.net.http.winhttphandler\\6.0.0\\system.net.http.winhttphandler.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.private.servicemodel\\4.9.0\\system.private.servicemodel.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.context\\6.0.0\\system.reflection.context.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.dispatchproxy\\4.7.1\\system.reflection.dispatchproxy.4.7.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.metadata\\5.0.0\\system.reflection.metadata.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.caching\\6.0.0\\system.runtime.caching.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.cng\\4.3.0\\system.security.cryptography.cng.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.pkcs\\6.0.0\\system.security.cryptography.pkcs.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.protecteddata\\6.0.0\\system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.xml\\6.0.0\\system.security.cryptography.xml.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.duplex\\4.9.0\\system.servicemodel.duplex.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.http\\4.9.0\\system.servicemodel.http.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.nettcp\\4.9.0\\system.servicemodel.nettcp.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.primitives\\4.9.0\\system.servicemodel.primitives.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.security\\4.9.0\\system.servicemodel.security.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.syndication\\6.0.0\\system.servicemodel.syndication.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.serviceprocess.servicecontroller\\6.0.0\\system.serviceprocess.servicecontroller.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.speech\\6.0.0\\system.speech.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.text.encoding.codepages\\6.0.0\\system.text.encoding.codepages.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.text.encodings.web\\6.0.0\\system.text.encodings.web.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.threading.accesscontrol\\6.0.0\\system.threading.accesscontrol.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.web.services.description\\4.9.0\\system.web.services.description.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\xunit\\2.4.1\\xunit.2.4.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\xunit.abstractions\\2.0.3\\xunit.abstractions.2.0.3.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\xunit.analyzers\\0.10.0\\xunit.analyzers.0.10.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\xunit.assert\\2.4.1\\xunit.assert.2.4.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\xunit.core\\2.4.1\\xunit.core.2.4.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\xunit.extensibility.core\\2.4.1\\xunit.extensibility.core.2.4.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\xunit.extensibility.execution\\2.4.1\\xunit.extensibility.execution.2.4.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\xunit.runner.visualstudio\\2.4.3\\xunit.runner.visualstudio.2.4.3.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\yamldotnet\\11.2.1\\yamldotnet.11.2.1.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/linguard/Core.Test/obj/project.packagespec.json b/linguard/Core.Test/obj/project.packagespec.json deleted file mode 100644 index 005739a..0000000 --- a/linguard/Core.Test/obj/project.packagespec.json +++ /dev/null @@ -1 +0,0 @@ -"restore":{"projectUniqueName":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj","projectName":"Core.Test","projectPath":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj","outputPath":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net6.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net6.0":{"targetAlias":"net6.0","projectReferences":{"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj":{"projectPath":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net6.0":{"targetAlias":"net6.0","dependencies":{"FluentAssertions":{"target":"Package","version":"[6.4.0, )"},"FluentValidation":{"target":"Package","version":"[10.3.6, )"},"IPNetwork2":{"target":"Package","version":"[2.5.386, )"},"Microsoft.NET.Test.Sdk":{"target":"Package","version":"[16.11.0, )"},"Moq":{"target":"Package","version":"[4.16.1, )"},"coverlet.msbuild":{"include":"Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive","suppressParent":"All","target":"Package","version":"[3.1.2, )"},"xunit":{"target":"Package","version":"[2.4.1, )"},"xunit.runner.visualstudio":{"include":"Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive","suppressParent":"All","target":"Package","version":"[2.4.3, )"}},"imports":["net461","net462","net47","net471","net472","net48"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/linguard/Core.Test/obj/rider.project.restore.info b/linguard/Core.Test/obj/rider.project.restore.info deleted file mode 100644 index 3e41a2d..0000000 --- a/linguard/Core.Test/obj/rider.project.restore.info +++ /dev/null @@ -1 +0,0 @@ -16455551443808364 \ No newline at end of file diff --git a/linguard/Linguard.sln.DotSettings.user b/linguard/Linguard.sln.DotSettings.user deleted file mode 100644 index 92800e9..0000000 --- a/linguard/Linguard.sln.DotSettings.user +++ /dev/null @@ -1,65 +0,0 @@ - - - <SessionState ContinuousTestingMode="0" IsActive="True" Name="RegisterSingletonInstanceAsInterface" xmlns="urn:schemas-jetbrains-com:jetbrains-ut-session"> - <Or> - <TestAncestor> - <TestId>xUnit::7EE59559-FA02-4D9A-9214-0547D3D6D9F7::net6.0::DependencyInjector.Test.InjectorShould</TestId> - <TestId>xUnit::59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9::net6.0::Core.Test.CommandRunnerShould</TestId> - <TestId>xUnit::59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9::net6.0::Core.Test.InterfaceShould.CreateValidWireguardConfiguration</TestId> - <TestId>xUnit::59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9::net6.0::Core.Test.PeerShould.CreateValidWireguardConfig</TestId> - <TestId>xUnit::59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9::net6.0::Core.Test.PeerShould.CreateAnotherValidWireguardConfig</TestId> - <TestId>xUnit::59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9::net6.0::Core.Test.PeerShould</TestId> - <TestId>xUnit::8A9534B3-EF1F-4400-AF19-F92AEDE444A5::net6.0::Cli.Test.CommandParserShould</TestId> - <TestId>xUnit::8A9534B3-EF1F-4400-AF19-F92AEDE444A5::net6.0::Cli.Test.CommandShould.Run</TestId> - <TestId>xUnit::109BD25C-277A-4810-8306-4F6BB0248A0E::net6.0::InteractiveCli.Test.CommandShould.RunWithArgumentsOfDifferentTypes</TestId> - <TestId>xUnit::109BD25C-277A-4810-8306-4F6BB0248A0E::net6.0::InteractiveCli.Test.CommandShould.RunWithArgumentWithWhiteSpaces</TestId> - <TestId>xUnit::109BD25C-277A-4810-8306-4F6BB0248A0E::net6.0::InteractiveCli.Test.CommandShould.RunWithArgumentsWithWhiteSpaces</TestId> - <TestId>xUnit::109BD25C-277A-4810-8306-4F6BB0248A0E::net6.0::InteractiveCli.Test.CommandShould.RunWithArgumentsOfComplexTypes</TestId> - <TestId>xUnit::109BD25C-277A-4810-8306-4F6BB0248A0E::net6.0::InteractiveCli.Test.CommandParserShould.ParseCommandWithArgumentsOfTheSameType</TestId> - <TestId>xUnit::109BD25C-277A-4810-8306-4F6BB0248A0E::net6.0::InteractiveCli.Test.CommandParserShould.ParseSimpleCommandWithParameters</TestId> - <TestId>xUnit::109BD25C-277A-4810-8306-4F6BB0248A0E::net6.0::InteractiveCli.Test.CommandParserShould.ParseComplexCommand</TestId> - <TestId>xUnit::109BD25C-277A-4810-8306-4F6BB0248A0E::net6.0::InteractiveCli.Test.CommandParserShould</TestId> - <TestId>xUnit::109BD25C-277A-4810-8306-4F6BB0248A0E::net6.0::InteractiveCli.Test.CommandShould</TestId> - <TestId>xUnit::109BD25C-277A-4810-8306-4F6BB0248A0E::net6.0::InteractiveCli.Test.CommandShouldNot.RunWithWrongArguments</TestId> - <TestId>xUnit::59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9::net6.0::Core.Test.InterfaceGeneratorShould.GenerateValidInterfaces</TestId> - <TestId>xUnit::59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9::net6.0::Core.Test.InterfaceGeneratorShould</TestId> - <TestId>xUnit::8A9534B3-EF1F-4400-AF19-F92AEDE444A5::net6.0::Cli.Test.AddInterfaceShouldNot.AddInterfaceWithEmptyName</TestId> - <TestId>xUnit::8A9534B3-EF1F-4400-AF19-F92AEDE444A5::net6.0::Cli.Test.AddInterfaceShouldNot.AddInterfaceWithNameTooLong</TestId> - <TestId>xUnit::8A9534B3-EF1F-4400-AF19-F92AEDE444A5::net6.0::Cli.Test.AddInterfaceShouldNot.AddInterfaceWithNameTooShort</TestId> - <TestId>xUnit::8A9534B3-EF1F-4400-AF19-F92AEDE444A5::net6.0::Cli.Test.AddInterfaceShouldNot</TestId> - <TestId>xUnit::8A9534B3-EF1F-4400-AF19-F92AEDE444A5::net6.0::Cli.Test.AddInterfaceCommandShouldNot.AddInterfaceWithEmptyName</TestId> - <TestId>xUnit::8A9534B3-EF1F-4400-AF19-F92AEDE444A5::net6.0::Cli.Test.AddInterfaceCommandShould.CreateInterfaceWithDefinedGateway</TestId> - <TestId>xUnit::8A9534B3-EF1F-4400-AF19-F92AEDE444A5::net6.0::Cli.Test.AddInterfaceCommandShould</TestId> - <TestId>xUnit::59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9::net6.0::Core.Test.YamlConfigurationShould</TestId> - <TestId>xUnit::59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9::net6.0::Core.Test.YamlConfigurationSerializerShould</TestId> - <TestId>xUnit::59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9::net6.0::Core.Test.DefaultInterfaceGeneratorShould.AlwaysGenerateValidInterfaces</TestId> - <TestId>xUnit::8A9534B3-EF1F-4400-AF19-F92AEDE444A5::net6.0::Cli.Test.AddInterfaceCommandShouldNot</TestId> - <TestId>xUnit::8A9534B3-EF1F-4400-AF19-F92AEDE444A5::net6.0::Cli.Test.ListInterfacesCommandShould.CreateInterfaceWithNoArguments</TestId> - <TestId>xUnit::8A9534B3-EF1F-4400-AF19-F92AEDE444A5::net6.0::Cli.Test.ListInterfacesCommandShould.ListOneInterface</TestId> - <TestId>xUnit::8A9534B3-EF1F-4400-AF19-F92AEDE444A5::net6.0::Cli.Test.ListInterfacesCommandShould</TestId> - <TestId>xUnit::8A9534B3-EF1F-4400-AF19-F92AEDE444A5::net6.0::Cli.Test.ShowInterfaceCommandShould</TestId> - <TestId>xUnit::8A9534B3-EF1F-4400-AF19-F92AEDE444A5::net6.0::Cli.Test.AddPeerCommandShould.CreateRandomPeer</TestId> - <TestId>xUnit::8A9534B3-EF1F-4400-AF19-F92AEDE444A5::net6.0::Cli.Test.AddPeerCommandShould</TestId> - <TestId>xUnit::59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9::net6.0::Core.Test.DefaultPeerGeneratorShould</TestId> - <TestId>xUnit::8A9534B3-EF1F-4400-AF19-F92AEDE444A5::net6.0::Cli.Test.ListPeersCommandShould</TestId> - <TestId>xUnit::59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9::net6.0::Core.Test.TrafficDataProcessorShould.ExtractData</TestId> - <TestId>xUnit::59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9::net6.0::Core.Test.WireguardTrafficDataProcessorShould.ExtractEmptyData</TestId> - <TestId>xUnit::59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9::net6.0::Core.Test.WireguardTrafficDataProcessorShould</TestId> - </TestAncestor> - <ProjectFile>59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9/f:ConfigurationShould.cs</ProjectFile> - <ProjectFile>59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9/f:InterfaceShould.cs</ProjectFile> - <Project Location="C:\Users\theyu\repos\linguard\Linguard\Core.Test" Presentation="&lt;Core.Test&gt;" /> - </Or> -</SessionState> - True - - en - True - False - False - - True - - True - True - True \ No newline at end of file diff --git a/linguard/Log.NLog/bin/Debug/net6.0/Linguard.Log.dll b/linguard/Log.NLog/bin/Debug/net6.0/Linguard.Log.dll deleted file mode 100644 index ad8dc55..0000000 Binary files a/linguard/Log.NLog/bin/Debug/net6.0/Linguard.Log.dll and /dev/null differ diff --git a/linguard/Log.NLog/bin/Debug/net6.0/Linguard.Log.pdb b/linguard/Log.NLog/bin/Debug/net6.0/Linguard.Log.pdb deleted file mode 100644 index abac2bb..0000000 Binary files a/linguard/Log.NLog/bin/Debug/net6.0/Linguard.Log.pdb and /dev/null differ diff --git a/linguard/Log.NLog/bin/Debug/net6.0/Log.NLog.deps.json b/linguard/Log.NLog/bin/Debug/net6.0/Log.NLog.deps.json deleted file mode 100644 index 03be6b2..0000000 --- a/linguard/Log.NLog/bin/Debug/net6.0/Log.NLog.deps.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v6.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v6.0": { - "Log.NLog/1.0.0": { - "dependencies": { - "Linguard.Log": "0.1.0", - "NLog": "4.7.13" - }, - "runtime": { - "Log.NLog.dll": {} - } - }, - "NLog/4.7.13": { - "runtime": { - "lib/netstandard2.0/NLog.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.7.13.493" - } - } - }, - "Linguard.Log/0.1.0": { - "runtime": { - "Linguard.Log.dll": {} - } - } - } - }, - "libraries": { - "Log.NLog/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "NLog/4.7.13": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AvoGpCuq36B+0wY313XA6gC+YeMvk24rqF8P+HS9fInBGOjCzPjpXp2ln9ATZjPOJtXgHfc8zNmTjyswFGLxvg==", - "path": "nlog/4.7.13", - "hashPath": "nlog.4.7.13.nupkg.sha512" - }, - "Linguard.Log/0.1.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/linguard/Log.NLog/bin/Debug/net6.0/Log.NLog.dll b/linguard/Log.NLog/bin/Debug/net6.0/Log.NLog.dll deleted file mode 100644 index a11cff7..0000000 Binary files a/linguard/Log.NLog/bin/Debug/net6.0/Log.NLog.dll and /dev/null differ diff --git a/linguard/Log.NLog/bin/Debug/net6.0/Log.NLog.pdb b/linguard/Log.NLog/bin/Debug/net6.0/Log.NLog.pdb deleted file mode 100644 index a505254..0000000 Binary files a/linguard/Log.NLog/bin/Debug/net6.0/Log.NLog.pdb and /dev/null differ diff --git a/linguard/Log.NLog/bin/Debug/net6.0/ref/Log.NLog.dll b/linguard/Log.NLog/bin/Debug/net6.0/ref/Log.NLog.dll deleted file mode 100644 index 3712c36..0000000 Binary files a/linguard/Log.NLog/bin/Debug/net6.0/ref/Log.NLog.dll and /dev/null differ diff --git a/linguard/Log.NLog/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/linguard/Log.NLog/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs deleted file mode 100644 index 36203c7..0000000 --- a/linguard/Log.NLog/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.AssemblyInfo.cs b/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.AssemblyInfo.cs deleted file mode 100644 index a32f0ab..0000000 --- a/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.AssemblyInfo.cs +++ /dev/null @@ -1,22 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("Log.NLog")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("Log.NLog")] -[assembly: System.Reflection.AssemblyTitleAttribute("Log.NLog")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generado por la clase WriteCodeFragment de MSBuild. - diff --git a/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.AssemblyInfoInputs.cache b/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.AssemblyInfoInputs.cache deleted file mode 100644 index 06e6a7c..0000000 --- a/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -8c22863d7f26bd2c4d87ec2404dd17e912c7f3b5 diff --git a/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.GeneratedMSBuildEditorConfig.editorconfig b/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 4485581..0000000 --- a/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,10 +0,0 @@ -is_global = true -build_property.TargetFramework = net6.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = Log.NLog -build_property.ProjectDir = C:\Users\theyu\repos\linguard-dotnet\Linguard\Log.NLog\ diff --git a/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.GlobalUsings.g.cs b/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.GlobalUsings.g.cs deleted file mode 100644 index 8578f3d..0000000 --- a/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -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/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.assets.cache b/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.assets.cache deleted file mode 100644 index de951de..0000000 Binary files a/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.assets.cache and /dev/null differ diff --git a/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.csproj.AssemblyReference.cache b/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.csproj.AssemblyReference.cache deleted file mode 100644 index 204fdef..0000000 Binary files a/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.csproj.AssemblyReference.cache and /dev/null differ diff --git a/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.csproj.CopyComplete b/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.csproj.CopyComplete deleted file mode 100644 index e69de29..0000000 diff --git a/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.csproj.CoreCompileInputs.cache b/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.csproj.CoreCompileInputs.cache deleted file mode 100644 index 860ac13..0000000 --- a/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -fb47d07fa8b4bbaff928df66b14f68f44579254b diff --git a/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.csproj.FileListAbsolute.txt b/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.csproj.FileListAbsolute.txt deleted file mode 100644 index 2a2516b..0000000 --- a/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,15 +0,0 @@ -C:\Users\theyu\repos\linguard-dotnet\Linguard\Log.NLog\bin\Debug\net6.0\Log.NLog.deps.json -C:\Users\theyu\repos\linguard-dotnet\Linguard\Log.NLog\bin\Debug\net6.0\Log.NLog.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Log.NLog\bin\Debug\net6.0\ref\Log.NLog.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Log.NLog\bin\Debug\net6.0\Log.NLog.pdb -C:\Users\theyu\repos\linguard-dotnet\Linguard\Log.NLog\bin\Debug\net6.0\Linguard.Log.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Log.NLog\bin\Debug\net6.0\Linguard.Log.pdb -C:\Users\theyu\repos\linguard-dotnet\Linguard\Log.NLog\obj\Debug\net6.0\Log.NLog.csproj.AssemblyReference.cache -C:\Users\theyu\repos\linguard-dotnet\Linguard\Log.NLog\obj\Debug\net6.0\Log.NLog.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\theyu\repos\linguard-dotnet\Linguard\Log.NLog\obj\Debug\net6.0\Log.NLog.AssemblyInfoInputs.cache -C:\Users\theyu\repos\linguard-dotnet\Linguard\Log.NLog\obj\Debug\net6.0\Log.NLog.AssemblyInfo.cs -C:\Users\theyu\repos\linguard-dotnet\Linguard\Log.NLog\obj\Debug\net6.0\Log.NLog.csproj.CoreCompileInputs.cache -C:\Users\theyu\repos\linguard-dotnet\Linguard\Log.NLog\obj\Debug\net6.0\Log.NLog.csproj.CopyComplete -C:\Users\theyu\repos\linguard-dotnet\Linguard\Log.NLog\obj\Debug\net6.0\Log.NLog.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Log.NLog\obj\Debug\net6.0\ref\Log.NLog.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Log.NLog\obj\Debug\net6.0\Log.NLog.pdb diff --git a/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.dll b/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.dll deleted file mode 100644 index a11cff7..0000000 Binary files a/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.dll and /dev/null differ diff --git a/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.pdb b/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.pdb deleted file mode 100644 index a505254..0000000 Binary files a/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.pdb and /dev/null differ diff --git a/linguard/Log.NLog/obj/Debug/net6.0/ref/Log.NLog.dll b/linguard/Log.NLog/obj/Debug/net6.0/ref/Log.NLog.dll deleted file mode 100644 index 3712c36..0000000 Binary files a/linguard/Log.NLog/obj/Debug/net6.0/ref/Log.NLog.dll and /dev/null differ diff --git a/linguard/Log.NLog/obj/Log.NLog.csproj.nuget.dgspec.json b/linguard/Log.NLog/obj/Log.NLog.csproj.nuget.dgspec.json deleted file mode 100644 index fc9ed5b..0000000 --- a/linguard/Log.NLog/obj/Log.NLog.csproj.nuget.dgspec.json +++ /dev/null @@ -1,128 +0,0 @@ -{ - "format": 1, - "restore": { - "C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log.NLog\\Log.NLog.csproj": {} - }, - "projects": { - "C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log.NLog\\Log.NLog.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log.NLog\\Log.NLog.csproj", - "projectName": "Log.NLog", - "projectPath": "C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log.NLog\\Log.NLog.csproj", - "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log.NLog\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": { - "C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log\\Log.csproj": { - "projectPath": "C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log\\Log.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "NLog": { - "target": "Package", - "version": "[4.7.13, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" - } - } - }, - "C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log\\Log.csproj": { - "version": "2.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log\\Log.csproj", - "projectName": "Linguard.Log", - "projectPath": "C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log\\Log.csproj", - "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "NLog": { - "target": "Package", - "version": "[4.7.13, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/linguard/Log.NLog/obj/Log.NLog.csproj.nuget.g.props b/linguard/Log.NLog/obj/Log.NLog.csproj.nuget.g.props deleted file mode 100644 index df348a1..0000000 --- a/linguard/Log.NLog/obj/Log.NLog.csproj.nuget.g.props +++ /dev/null @@ -1,15 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\theyu\.nuget\packages\ - PackageReference - 6.0.0 - - - - - \ No newline at end of file diff --git a/linguard/Log.NLog/obj/Log.NLog.csproj.nuget.g.targets b/linguard/Log.NLog/obj/Log.NLog.csproj.nuget.g.targets deleted file mode 100644 index 3dc06ef..0000000 --- a/linguard/Log.NLog/obj/Log.NLog.csproj.nuget.g.targets +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/linguard/Log.NLog/obj/project.assets.json b/linguard/Log.NLog/obj/project.assets.json deleted file mode 100644 index d83580a..0000000 --- a/linguard/Log.NLog/obj/project.assets.json +++ /dev/null @@ -1,140 +0,0 @@ -{ - "version": 3, - "targets": { - "net6.0": { - "NLog/4.7.13": { - "type": "package", - "compile": { - "lib/netstandard2.0/NLog.dll": {} - }, - "runtime": { - "lib/netstandard2.0/NLog.dll": {} - } - }, - "Linguard.Log/2.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v6.0", - "dependencies": { - "NLog": "4.7.13" - }, - "compile": { - "bin/placeholder/Linguard.Log.dll": {} - }, - "runtime": { - "bin/placeholder/Linguard.Log.dll": {} - } - } - } - }, - "libraries": { - "NLog/4.7.13": { - "sha512": "AvoGpCuq36B+0wY313XA6gC+YeMvk24rqF8P+HS9fInBGOjCzPjpXp2ln9ATZjPOJtXgHfc8zNmTjyswFGLxvg==", - "type": "package", - "path": "nlog/4.7.13", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/monoandroid44/NLog.dll", - "lib/monoandroid44/NLog.xml", - "lib/net35/NLog.dll", - "lib/net35/NLog.xml", - "lib/net40-client/NLog.dll", - "lib/net40-client/NLog.xml", - "lib/net45/NLog.dll", - "lib/net45/NLog.xml", - "lib/netstandard1.3/NLog.dll", - "lib/netstandard1.3/NLog.xml", - "lib/netstandard1.5/NLog.dll", - "lib/netstandard1.5/NLog.xml", - "lib/netstandard2.0/NLog.dll", - "lib/netstandard2.0/NLog.xml", - "lib/sl4/NLog.dll", - "lib/sl4/NLog.xml", - "lib/sl5/NLog.dll", - "lib/sl5/NLog.xml", - "lib/wp8/NLog.dll", - "lib/wp8/NLog.xml", - "lib/xamarinios10/NLog.dll", - "lib/xamarinios10/NLog.xml", - "nlog.4.7.13.nupkg.sha512", - "nlog.nuspec" - ] - }, - "Linguard.Log/2.0.0": { - "type": "project", - "path": "../Log/Log.csproj", - "msbuildProject": "../Log/Log.csproj" - } - }, - "projectFileDependencyGroups": { - "net6.0": [ - "Linguard.Log >= 2.0.0", - "NLog >= 4.7.13" - ] - }, - "packageFolders": { - "C:\\Users\\theyu\\.nuget\\packages\\": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log.NLog\\Log.NLog.csproj", - "projectName": "Log.NLog", - "projectPath": "C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log.NLog\\Log.NLog.csproj", - "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log.NLog\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": { - "C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log\\Log.csproj": { - "projectPath": "C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log\\Log.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "NLog": { - "target": "Package", - "version": "[4.7.13, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/linguard/Log.NLog/obj/project.nuget.cache b/linguard/Log.NLog/obj/project.nuget.cache deleted file mode 100644 index 9b9ca82..0000000 --- a/linguard/Log.NLog/obj/project.nuget.cache +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "0ZOwYHQ6yBVKu+IXh+iwK3FiNH3dhnd0o020P8SvIXta39mOnd8rJs80DKX2p+ls+DP8SB9rOvuSqqQPwoLF+Q==", - "success": true, - "projectFilePath": "C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log.NLog\\Log.NLog.csproj", - "expectedPackageFiles": [ - "C:\\Users\\theyu\\.nuget\\packages\\nlog\\4.7.13\\nlog.4.7.13.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/linguard/Log.NLog/obj/project.packagespec.json b/linguard/Log.NLog/obj/project.packagespec.json deleted file mode 100644 index 405583d..0000000 --- a/linguard/Log.NLog/obj/project.packagespec.json +++ /dev/null @@ -1 +0,0 @@ -"restore":{"projectUniqueName":"C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log.NLog\\Log.NLog.csproj","projectName":"Log.NLog","projectPath":"C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log.NLog\\Log.NLog.csproj","outputPath":"C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log.NLog\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net6.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net6.0":{"targetAlias":"net6.0","projectReferences":{"C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log\\Log.csproj":{"projectPath":"C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log\\Log.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net6.0":{"targetAlias":"net6.0","dependencies":{"NLog":{"target":"Package","version":"[4.7.13, )"}},"imports":["net461","net462","net47","net471","net472","net48"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/linguard/Log.NLog/obj/rider.project.restore.info b/linguard/Log.NLog/obj/rider.project.restore.info deleted file mode 100644 index 9a6b887..0000000 --- a/linguard/Log.NLog/obj/rider.project.restore.info +++ /dev/null @@ -1 +0,0 @@ -16438014600847348 \ No newline at end of file diff --git a/linguard/Log/bin/Debug/net6.0/Linguard.Log.deps.json b/linguard/Log/bin/Debug/net6.0/Linguard.Log.deps.json deleted file mode 100644 index bb9635e..0000000 --- a/linguard/Log/bin/Debug/net6.0/Linguard.Log.deps.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v6.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v6.0": { - "Linguard.Log/2.0.0": { - "dependencies": { - "NLog": "4.7.13" - }, - "runtime": { - "Linguard.Log.dll": {} - } - }, - "NLog/4.7.13": { - "runtime": { - "lib/netstandard2.0/NLog.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.7.13.493" - } - } - } - } - }, - "libraries": { - "Linguard.Log/2.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "NLog/4.7.13": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AvoGpCuq36B+0wY313XA6gC+YeMvk24rqF8P+HS9fInBGOjCzPjpXp2ln9ATZjPOJtXgHfc8zNmTjyswFGLxvg==", - "path": "nlog/4.7.13", - "hashPath": "nlog.4.7.13.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/linguard/Log/bin/Debug/net6.0/Linguard.Log.dll b/linguard/Log/bin/Debug/net6.0/Linguard.Log.dll deleted file mode 100644 index 561b728..0000000 Binary files a/linguard/Log/bin/Debug/net6.0/Linguard.Log.dll and /dev/null differ diff --git a/linguard/Log/bin/Debug/net6.0/Linguard.Log.pdb b/linguard/Log/bin/Debug/net6.0/Linguard.Log.pdb deleted file mode 100644 index ef5cdfa..0000000 Binary files a/linguard/Log/bin/Debug/net6.0/Linguard.Log.pdb and /dev/null differ diff --git a/linguard/Log/bin/Debug/net6.0/ref/Linguard.Log.dll b/linguard/Log/bin/Debug/net6.0/ref/Linguard.Log.dll deleted file mode 100644 index cfb8fb6..0000000 Binary files a/linguard/Log/bin/Debug/net6.0/ref/Linguard.Log.dll and /dev/null differ diff --git a/linguard/Log/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/linguard/Log/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs deleted file mode 100644 index 36203c7..0000000 --- a/linguard/Log/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/linguard/Log/obj/Debug/net6.0/Linguard.Log.dll b/linguard/Log/obj/Debug/net6.0/Linguard.Log.dll deleted file mode 100644 index 561b728..0000000 Binary files a/linguard/Log/obj/Debug/net6.0/Linguard.Log.dll and /dev/null differ diff --git a/linguard/Log/obj/Debug/net6.0/Linguard.Log.pdb b/linguard/Log/obj/Debug/net6.0/Linguard.Log.pdb deleted file mode 100644 index ef5cdfa..0000000 Binary files a/linguard/Log/obj/Debug/net6.0/Linguard.Log.pdb and /dev/null differ diff --git a/linguard/Log/obj/Debug/net6.0/Log.AssemblyInfo.cs b/linguard/Log/obj/Debug/net6.0/Log.AssemblyInfo.cs deleted file mode 100644 index 9fab41b..0000000 --- a/linguard/Log/obj/Debug/net6.0/Log.AssemblyInfo.cs +++ /dev/null @@ -1,22 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("José Antonio Mazón San Bartolomé")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("2.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("2.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("Linguard")] -[assembly: System.Reflection.AssemblyTitleAttribute("Linguard.Log")] -[assembly: System.Reflection.AssemblyVersionAttribute("2.0.0.0")] - -// Generado por la clase WriteCodeFragment de MSBuild. - diff --git a/linguard/Log/obj/Debug/net6.0/Log.AssemblyInfoInputs.cache b/linguard/Log/obj/Debug/net6.0/Log.AssemblyInfoInputs.cache deleted file mode 100644 index 39aff32..0000000 --- a/linguard/Log/obj/Debug/net6.0/Log.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -328a6e89eb3b6f63c694d4ab3d3e3f3c458f5dd1 diff --git a/linguard/Log/obj/Debug/net6.0/Log.GeneratedMSBuildEditorConfig.editorconfig b/linguard/Log/obj/Debug/net6.0/Log.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index d353977..0000000 --- a/linguard/Log/obj/Debug/net6.0/Log.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,10 +0,0 @@ -is_global = true -build_property.TargetFramework = net6.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = Linguard.Log -build_property.ProjectDir = C:\Users\theyu\repos\linguard\Linguard\Log\ diff --git a/linguard/Log/obj/Debug/net6.0/Log.GlobalUsings.g.cs b/linguard/Log/obj/Debug/net6.0/Log.GlobalUsings.g.cs deleted file mode 100644 index 8578f3d..0000000 --- a/linguard/Log/obj/Debug/net6.0/Log.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -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/linguard/Log/obj/Debug/net6.0/Log.assets.cache b/linguard/Log/obj/Debug/net6.0/Log.assets.cache deleted file mode 100644 index f38dffb..0000000 Binary files a/linguard/Log/obj/Debug/net6.0/Log.assets.cache and /dev/null differ diff --git a/linguard/Log/obj/Debug/net6.0/Log.csproj.AssemblyReference.cache b/linguard/Log/obj/Debug/net6.0/Log.csproj.AssemblyReference.cache deleted file mode 100644 index dd3e646..0000000 Binary files a/linguard/Log/obj/Debug/net6.0/Log.csproj.AssemblyReference.cache and /dev/null differ diff --git a/linguard/Log/obj/Debug/net6.0/Log.csproj.CoreCompileInputs.cache b/linguard/Log/obj/Debug/net6.0/Log.csproj.CoreCompileInputs.cache deleted file mode 100644 index 6b28d48..0000000 --- a/linguard/Log/obj/Debug/net6.0/Log.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -880485ed70790989b14a12873a0db3740d78a200 diff --git a/linguard/Log/obj/Debug/net6.0/Log.csproj.FileListAbsolute.txt b/linguard/Log/obj/Debug/net6.0/Log.csproj.FileListAbsolute.txt deleted file mode 100644 index 88063ec..0000000 --- a/linguard/Log/obj/Debug/net6.0/Log.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,24 +0,0 @@ -C:\Users\theyu\repos\linguard-dotnet\Linguard\Log\bin\Debug\net6.0\Linguard.Log.deps.json -C:\Users\theyu\repos\linguard-dotnet\Linguard\Log\bin\Debug\net6.0\Linguard.Log.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Log\bin\Debug\net6.0\ref\Linguard.Log.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Log\bin\Debug\net6.0\Linguard.Log.pdb -C:\Users\theyu\repos\linguard-dotnet\Linguard\Log\obj\Debug\net6.0\Log.csproj.AssemblyReference.cache -C:\Users\theyu\repos\linguard-dotnet\Linguard\Log\obj\Debug\net6.0\Log.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\theyu\repos\linguard-dotnet\Linguard\Log\obj\Debug\net6.0\Log.AssemblyInfoInputs.cache -C:\Users\theyu\repos\linguard-dotnet\Linguard\Log\obj\Debug\net6.0\Log.AssemblyInfo.cs -C:\Users\theyu\repos\linguard-dotnet\Linguard\Log\obj\Debug\net6.0\Log.csproj.CoreCompileInputs.cache -C:\Users\theyu\repos\linguard-dotnet\Linguard\Log\obj\Debug\net6.0\Linguard.Log.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Log\obj\Debug\net6.0\ref\Linguard.Log.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Log\obj\Debug\net6.0\Linguard.Log.pdb -C:\Users\theyu\repos\linguard\Linguard\Log\bin\Debug\net6.0\Linguard.Log.deps.json -C:\Users\theyu\repos\linguard\Linguard\Log\bin\Debug\net6.0\Linguard.Log.dll -C:\Users\theyu\repos\linguard\Linguard\Log\bin\Debug\net6.0\ref\Linguard.Log.dll -C:\Users\theyu\repos\linguard\Linguard\Log\bin\Debug\net6.0\Linguard.Log.pdb -C:\Users\theyu\repos\linguard\Linguard\Log\obj\Debug\net6.0\Log.csproj.AssemblyReference.cache -C:\Users\theyu\repos\linguard\Linguard\Log\obj\Debug\net6.0\Log.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\theyu\repos\linguard\Linguard\Log\obj\Debug\net6.0\Log.AssemblyInfoInputs.cache -C:\Users\theyu\repos\linguard\Linguard\Log\obj\Debug\net6.0\Log.AssemblyInfo.cs -C:\Users\theyu\repos\linguard\Linguard\Log\obj\Debug\net6.0\Log.csproj.CoreCompileInputs.cache -C:\Users\theyu\repos\linguard\Linguard\Log\obj\Debug\net6.0\Linguard.Log.dll -C:\Users\theyu\repos\linguard\Linguard\Log\obj\Debug\net6.0\ref\Linguard.Log.dll -C:\Users\theyu\repos\linguard\Linguard\Log\obj\Debug\net6.0\Linguard.Log.pdb diff --git a/linguard/Log/obj/Debug/net6.0/ref/Linguard.Log.dll b/linguard/Log/obj/Debug/net6.0/ref/Linguard.Log.dll deleted file mode 100644 index cfb8fb6..0000000 Binary files a/linguard/Log/obj/Debug/net6.0/ref/Linguard.Log.dll and /dev/null differ diff --git a/linguard/Log/obj/Log.csproj.nuget.dgspec.json b/linguard/Log/obj/Log.csproj.nuget.dgspec.json deleted file mode 100644 index 90a35e8..0000000 --- a/linguard/Log/obj/Log.csproj.nuget.dgspec.json +++ /dev/null @@ -1,66 +0,0 @@ -{ - "format": 1, - "restore": { - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj": {} - }, - "projects": { - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj": { - "version": "2.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj", - "projectName": "Linguard.Log", - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj", - "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "NLog": { - "target": "Package", - "version": "[4.7.13, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/linguard/Log/obj/Log.csproj.nuget.g.props b/linguard/Log/obj/Log.csproj.nuget.g.props deleted file mode 100644 index df348a1..0000000 --- a/linguard/Log/obj/Log.csproj.nuget.g.props +++ /dev/null @@ -1,15 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\theyu\.nuget\packages\ - PackageReference - 6.0.0 - - - - - \ No newline at end of file diff --git a/linguard/Log/obj/Log.csproj.nuget.g.targets b/linguard/Log/obj/Log.csproj.nuget.g.targets deleted file mode 100644 index 3dc06ef..0000000 --- a/linguard/Log/obj/Log.csproj.nuget.g.targets +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/linguard/Log/obj/project.assets.json b/linguard/Log/obj/project.assets.json deleted file mode 100644 index 9d92f4a..0000000 --- a/linguard/Log/obj/project.assets.json +++ /dev/null @@ -1,117 +0,0 @@ -{ - "version": 3, - "targets": { - "net6.0": { - "NLog/4.7.13": { - "type": "package", - "compile": { - "lib/netstandard2.0/NLog.dll": {} - }, - "runtime": { - "lib/netstandard2.0/NLog.dll": {} - } - } - } - }, - "libraries": { - "NLog/4.7.13": { - "sha512": "AvoGpCuq36B+0wY313XA6gC+YeMvk24rqF8P+HS9fInBGOjCzPjpXp2ln9ATZjPOJtXgHfc8zNmTjyswFGLxvg==", - "type": "package", - "path": "nlog/4.7.13", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/monoandroid44/NLog.dll", - "lib/monoandroid44/NLog.xml", - "lib/net35/NLog.dll", - "lib/net35/NLog.xml", - "lib/net40-client/NLog.dll", - "lib/net40-client/NLog.xml", - "lib/net45/NLog.dll", - "lib/net45/NLog.xml", - "lib/netstandard1.3/NLog.dll", - "lib/netstandard1.3/NLog.xml", - "lib/netstandard1.5/NLog.dll", - "lib/netstandard1.5/NLog.xml", - "lib/netstandard2.0/NLog.dll", - "lib/netstandard2.0/NLog.xml", - "lib/sl4/NLog.dll", - "lib/sl4/NLog.xml", - "lib/sl5/NLog.dll", - "lib/sl5/NLog.xml", - "lib/wp8/NLog.dll", - "lib/wp8/NLog.xml", - "lib/xamarinios10/NLog.dll", - "lib/xamarinios10/NLog.xml", - "nlog.4.7.13.nupkg.sha512", - "nlog.nuspec" - ] - } - }, - "projectFileDependencyGroups": { - "net6.0": [ - "NLog >= 4.7.13" - ] - }, - "packageFolders": { - "C:\\Users\\theyu\\.nuget\\packages\\": {} - }, - "project": { - "version": "2.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj", - "projectName": "Linguard.Log", - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj", - "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "NLog": { - "target": "Package", - "version": "[4.7.13, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/linguard/Log/obj/project.nuget.cache b/linguard/Log/obj/project.nuget.cache deleted file mode 100644 index b629160..0000000 --- a/linguard/Log/obj/project.nuget.cache +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "DbN6ZXzE3V3xmQG8h17p0U3xYuP3RMuQ5XTzRQJxi2R/6nt+LpyhCJ+hNMgMZPEhqceSMc0jA805TQc18Zs/3Q==", - "success": true, - "projectFilePath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj", - "expectedPackageFiles": [ - "C:\\Users\\theyu\\.nuget\\packages\\nlog\\4.7.13\\nlog.4.7.13.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/linguard/Log/obj/project.packagespec.json b/linguard/Log/obj/project.packagespec.json deleted file mode 100644 index b4f5f14..0000000 --- a/linguard/Log/obj/project.packagespec.json +++ /dev/null @@ -1 +0,0 @@ -"restore":{"projectUniqueName":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj","projectName":"Linguard.Log","projectPath":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj","outputPath":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net6.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net6.0":{"targetAlias":"net6.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net6.0":{"targetAlias":"net6.0","dependencies":{"NLog":{"target":"Package","version":"[4.7.13, )"}},"imports":["net461","net462","net47","net471","net472","net48"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/linguard/Log/obj/rider.project.restore.info b/linguard/Log/obj/rider.project.restore.info deleted file mode 100644 index d5c3989..0000000 --- a/linguard/Log/obj/rider.project.restore.info +++ /dev/null @@ -1 +0,0 @@ -16454671675444561 \ No newline at end of file diff --git a/linguard/core/Configuration/WireguardConfiguration.cs b/linguard/core/Configuration/WireguardConfiguration.cs deleted file mode 100644 index e8afdcc..0000000 --- a/linguard/core/Configuration/WireguardConfiguration.cs +++ /dev/null @@ -1,35 +0,0 @@ -using Linguard.Core.Models.Wireguard; -using Linguard.Core.OS; - -namespace Linguard.Core.Configuration; - -public class WireguardConfiguration : IWireguardConfiguration { - public HashSet Interfaces { get; set; } = new(); - public string IptablesBin { get; set; } = new CommandRunner() - .Run("whereis iptables | tr ' ' '\n' | grep bin").Stdout; - public string WireguardBin { get; set; } = new CommandRunner() - .Run("whereis wg | tr ' ' '\n' | grep bin").Stdout; - public string WireguardQuickBin { get; set; } = new CommandRunner() - .Run("whereis wg-quick | tr ' ' '\n' | grep bin").Stdout; - - public Uri? PrimaryDns { get; set; } = new("8.8.8.8", UriKind.RelativeOrAbsolute); - public Uri? SecondaryDns { get; set; } = new("8.8.4.4", UriKind.RelativeOrAbsolute); - public Uri? Endpoint { get; set; } = PublicIP != default - ? new(PublicIP, UriKind.RelativeOrAbsolute) - : default; - - private static readonly string? PublicIP = default; - - private static async Task GetPublicIPAddress() { - const string url = "https://api.ipify.org/"; - var response = await new HttpClient() - .Send(new HttpRequestMessage(HttpMethod.Get, url)) - .Content - .ReadAsStringAsync(); - return response; - } - - public object Clone() { - return MemberwiseClone(); - } -} \ No newline at end of file diff --git a/linguard/core/Core.csproj.DotSettings.user b/linguard/core/Core.csproj.DotSettings.user deleted file mode 100644 index 8a0a0c0..0000000 --- a/linguard/core/Core.csproj.DotSettings.user +++ /dev/null @@ -1,2 +0,0 @@ - - 32D41ADE-259C-43DB-9CF5-A93AAB079D3B/f:Validation.resx \ No newline at end of file diff --git a/linguard/core/bin/Debug/net6.0/Linguard.Core.deps.json b/linguard/core/bin/Debug/net6.0/Linguard.Core.deps.json deleted file mode 100644 index 7fb0403..0000000 --- a/linguard/core/bin/Debug/net6.0/Linguard.Core.deps.json +++ /dev/null @@ -1,2815 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v6.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v6.0": { - "Linguard.Core/2.0.0": { - "dependencies": { - "Bogus": "34.0.1", - "ByteSize": "2.1.1", - "FluentValidation": "10.3.6", - "IPNetwork2": "2.5.386", - "Linguard.Log": "2.0.0", - "Microsoft.PowerShell.SDK": "7.2.1", - "System.Management.Automation": "7.2.1", - "YamlDotNet": "11.2.1" - }, - "runtime": { - "Linguard.Core.dll": {} - } - }, - "Bogus/34.0.1": { - "runtime": { - "lib/net6.0/Bogus.dll": { - "assemblyVersion": "34.0.1.0", - "fileVersion": "34.0.1.0" - } - } - }, - "ByteSize/2.1.1": { - "runtime": { - "lib/net5.0/ByteSize.dll": { - "assemblyVersion": "2.1.1.0", - "fileVersion": "2.1.1.0" - } - } - }, - "FluentValidation/10.3.6": { - "runtime": { - "lib/net6.0/FluentValidation.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "10.3.6.0" - } - } - }, - "IPNetwork2/2.5.386": { - "runtime": { - "lib/net5.0/System.Net.IPNetwork.dll": { - "assemblyVersion": "2.5.386.0", - "fileVersion": "2.5.386.0" - } - } - }, - "Markdig.Signed/0.22.0": { - "runtime": { - "lib/netcoreapp3.1/Markdig.Signed.dll": { - "assemblyVersion": "0.22.0.0", - "fileVersion": "0.22.0.0" - } - } - }, - "Microsoft.ApplicationInsights/2.18.0": { - "dependencies": { - "System.Diagnostics.DiagnosticSource": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": { - "assemblyVersion": "2.18.0.315", - "fileVersion": "2.18.0.315" - } - } - }, - "Microsoft.Bcl.AsyncInterfaces/5.0.0": { - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.CodeAnalysis.Analyzers/3.3.2": {}, - "Microsoft.CodeAnalysis.Common/4.0.1": { - "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": "6.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.0.121.55815" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp/4.0.1": { - "dependencies": { - "Microsoft.CodeAnalysis.Common": "4.0.1" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.0.121.55815" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CSharp/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "Microsoft.Extensions.ObjectPool/5.0.10": { - "runtime": { - "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.1021.41022" - } - } - }, - "Microsoft.Management.Infrastructure/2.0.0": { - "dependencies": { - "Microsoft.Management.Infrastructure.Runtime.Unix": "2.0.0", - "Microsoft.Management.Infrastructure.Runtime.Win": "2.0.0" - } - }, - "Microsoft.Management.Infrastructure.CimCmdlets/7.2.1": { - "dependencies": { - "System.Management.Automation": "7.2.1" - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.0.0.0" - } - } - }, - "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { - "runtimeTargets": { - "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win-arm", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win-arm", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win-arm64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win-arm64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win10-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win10-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win10-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win10-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win7-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win7-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win7-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win7-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win8-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win8-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win8-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win8-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win81-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win81-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win81-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win81-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm/native/mi.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm/native/miutils.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/native/mi.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/native/miutils.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win10-x64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/native/mi.dll": { - "rid": "win10-x64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/native/miutils.dll": { - "rid": "win10-x64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win10-x86", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/native/mi.dll": { - "rid": "win10-x86", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/native/miutils.dll": { - "rid": "win10-x86", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win7-x64", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x64/native/mi.dll": { - "rid": "win7-x64", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x64/native/miutils.dll": { - "rid": "win7-x64", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win7-x86", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x86/native/mi.dll": { - "rid": "win7-x86", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x86/native/miutils.dll": { - "rid": "win7-x86", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win8-x64/native/mi.dll": { - "rid": "win8-x64", - "assetType": "native", - "fileVersion": "6.2.9200.22812" - }, - "runtimes/win8-x64/native/miutils.dll": { - "rid": "win8-x64", - "assetType": "native", - "fileVersion": "6.2.9200.22812" - }, - "runtimes/win8-x86/native/mi.dll": { - "rid": "win8-x86", - "assetType": "native", - "fileVersion": "6.2.9200.22812" - }, - "runtimes/win8-x86/native/miutils.dll": { - "rid": "win8-x86", - "assetType": "native", - "fileVersion": "6.2.9200.22812" - }, - "runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win81-x64", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x64/native/mi.dll": { - "rid": "win81-x64", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x64/native/miutils.dll": { - "rid": "win81-x64", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win81-x86", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x86/native/mi.dll": { - "rid": "win81-x86", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x86/native/miutils.dll": { - "rid": "win81-x86", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - } - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "Microsoft.NETCore.Windows.ApiSets/1.0.1": {}, - "Microsoft.PowerShell.Commands.Diagnostics/7.2.1": { - "dependencies": { - "System.Management.Automation": "7.2.1" - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.Commands.Management/7.2.1": { - "dependencies": { - "Microsoft.PowerShell.Security": "7.2.1", - "System.ServiceProcess.ServiceController": "6.0.0" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.Commands.Utility/7.2.1": { - "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" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.ConsoleHost/7.2.1": { - "dependencies": { - "System.Management.Automation": "7.2.1" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.CoreCLR.Eventing/7.2.1": { - "dependencies": { - "System.Diagnostics.EventLog": "6.0.0" - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.MarkdownRender/7.2.0": { - "dependencies": { - "Markdig.Signed": "0.22.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll": { - "assemblyVersion": "7.2.0.0", - "fileVersion": "7.2.0.0" - } - } - }, - "Microsoft.PowerShell.Native/7.2.0": { - "runtimeTargets": { - "runtimes/linux-arm/native/libpsl-native.so": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm64/native/libpsl-native.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libpsl-native.so": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libmi.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libpsl-native.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libpsrpclient.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libmi.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libpsl-native.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libpsrpclient.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-arm/native/pwrshplugin.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-arm64/native/pwrshplugin.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-x64/native/pwrshplugin.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-x86/native/pwrshplugin.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - } - } - }, - "Microsoft.PowerShell.SDK/7.2.1": { - "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" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.Security/7.2.1": { - "dependencies": { - "System.Management.Automation": "7.2.1" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.Win32.Registry/4.7.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Security.Principal.Windows": "5.0.0" - } - }, - "Microsoft.Win32.Registry.AccessControl/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "runtime": { - "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Windows.Compatibility/6.0.0": { - "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" - } - }, - "Microsoft.WSMan.Management/7.2.1": { - "dependencies": { - "Microsoft.WSMan.Runtime": "7.2.1", - "System.Management.Automation": "7.2.1", - "System.ServiceProcess.ServiceController": "6.0.0" - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.WSMan.Runtime/7.2.1": { - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Namotion.Reflection/2.0.3": { - "dependencies": { - "Microsoft.CSharp": "4.3.0" - }, - "runtime": { - "lib/netstandard2.0/Namotion.Reflection.dll": { - "assemblyVersion": "2.0.3.0", - "fileVersion": "2.0.3.0" - } - } - }, - "Newtonsoft.Json/13.0.1": { - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.1.25517" - } - } - }, - "NJsonSchema/10.5.2": { - "dependencies": { - "Namotion.Reflection": "2.0.3", - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/netstandard2.0/NJsonSchema.dll": { - "assemblyVersion": "10.5.2.0", - "fileVersion": "10.5.2.0" - } - } - }, - "NLog/4.7.13": { - "runtime": { - "lib/netstandard2.0/NLog.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.7.13.493" - } - } - }, - "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": { - "runtimeTargets": { - "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": { - "runtimeTargets": { - "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": { - "runtimeTargets": { - "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.native.System.Data.SqlClient.sni/4.7.0": { - "dependencies": { - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" - } - }, - "runtime.native.System.IO.Ports/6.0.0": { - "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": { - "runtimeTargets": { - "runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib": { - "rid": "osx-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": { - "runtimeTargets": { - "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "runtimeTargets": { - "runtimes/win-arm64/native/sni.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "4.6.25512.1" - } - } - }, - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "runtimeTargets": { - "runtimes/win-x64/native/sni.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "4.6.25512.1" - } - } - }, - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "runtimeTargets": { - "runtimes/win-x86/native/sni.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "4.6.25512.1" - } - } - }, - "System.CodeDom/6.0.0": { - "runtime": { - "lib/net6.0/System.CodeDom.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Collections.Immutable/5.0.0": {}, - "System.ComponentModel.Composition/6.0.0": { - "runtime": { - "lib/net6.0/System.ComponentModel.Composition.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.ComponentModel.Composition.Registration/6.0.0": { - "dependencies": { - "System.ComponentModel.Composition": "6.0.0", - "System.Reflection.Context": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.ComponentModel.Composition.Registration.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "dependencies": { - "System.Security.Cryptography.ProtectedData": "6.0.0", - "System.Security.Permissions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Configuration.ConfigurationManager.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Data.Odbc/6.0.0": { - "dependencies": { - "System.Text.Encoding.CodePages": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Data.Odbc.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll": { - "rid": "freebsd", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/illumos/lib/net6.0/System.Data.Odbc.dll": { - "rid": "illumos", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/ios/lib/net6.0/System.Data.Odbc.dll": { - "rid": "ios", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/linux/lib/net6.0/System.Data.Odbc.dll": { - "rid": "linux", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/osx/lib/net6.0/System.Data.Odbc.dll": { - "rid": "osx", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/solaris/lib/net6.0/System.Data.Odbc.dll": { - "rid": "solaris", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/tvos/lib/net6.0/System.Data.Odbc.dll": { - "rid": "tvos", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.Data.Odbc.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Data.OleDb/6.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0", - "System.Diagnostics.PerformanceCounter": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Data.OleDb.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Data.OleDb.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Data.SqlClient/4.8.3": { - "dependencies": { - "Microsoft.Win32.Registry": "4.7.0", - "System.Security.Principal.Windows": "5.0.0", - "runtime.native.System.Data.SqlClient.sni": "4.7.0" - }, - "runtime": { - "lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "assemblyVersion": "4.6.1.3", - "fileVersion": "4.700.21.41603" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "4.6.1.3", - "fileVersion": "4.700.21.41603" - }, - "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.6.1.3", - "fileVersion": "4.700.21.41603" - } - } - }, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.DiagnosticSource/5.0.0": {}, - "System.Diagnostics.EventLog/6.0.0": { - "runtime": { - "lib/net6.0/System.Diagnostics.EventLog.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "0.0.0.0" - }, - "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Diagnostics.PerformanceCounter/6.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.DirectoryServices/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Security.Permissions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.DirectoryServices.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.DirectoryServices.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.DirectoryServices.AccountManagement/6.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0", - "System.DirectoryServices": "6.0.0", - "System.DirectoryServices.Protocols": "6.0.0", - "System.Security.AccessControl": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.DirectoryServices.AccountManagement.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.DirectoryServices.Protocols/6.0.0": { - "runtime": { - "lib/net6.0/System.DirectoryServices.Protocols.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll": { - "rid": "linux", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll": { - "rid": "osx", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Drawing.Common/6.0.0": { - "dependencies": { - "Microsoft.Win32.SystemEvents": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Drawing.Common.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Dynamic.Runtime/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.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" - } - }, - "System.Formats.Asn1/6.0.0": {}, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.IO/4.3.0": { - "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" - } - }, - "System.IO.Packaging/6.0.0": { - "runtime": { - "lib/net6.0/System.IO.Packaging.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.IO.Ports/6.0.0": { - "dependencies": { - "runtime.native.System.IO.Ports": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.IO.Ports.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.IO.Ports.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.IO.Ports.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Linq.Expressions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.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" - } - }, - "System.Management/6.0.0": { - "dependencies": { - "System.CodeDom": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Management.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Management.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Management.Automation/7.2.1": { - "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" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.Management.Automation.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/System.Management.Automation.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "System.Memory/4.5.4": {}, - "System.Net.Http.WinHttpHandler/6.0.0": { - "runtime": { - "lib/net6.0/System.Net.Http.WinHttpHandler.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Numerics.Vectors/4.5.0": {}, - "System.ObjectModel/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Private.ServiceModel/4.9.0": { - "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": "6.0.0", - "System.Security.Principal.Windows": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Private.ServiceModel.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - }, - "resources": { - "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": { - "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" - } - }, - "System.Reflection.Context/6.0.0": { - "runtime": { - "lib/net6.0/System.Reflection.Context.dll": { - "assemblyVersion": "4.0.3.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Reflection.DispatchProxy/4.7.1": {}, - "System.Reflection.Emit/4.3.0": { - "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" - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Metadata/5.0.0": {}, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.Caching/6.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Runtime.Caching.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "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" - } - }, - "System.Security.AccessControl/6.0.0": {}, - "System.Security.Cryptography.Pkcs/6.0.0": { - "dependencies": { - "System.Formats.Asn1": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Security.Cryptography.Pkcs.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "runtime": { - "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Cryptography.Xml/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Security.Cryptography.Pkcs": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Security.Cryptography.Xml.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Permissions/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Windows.Extensions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Security.Permissions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Principal.Windows/5.0.0": {}, - "System.ServiceModel.Duplex/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0", - "System.ServiceModel.Primitives": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.Duplex.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.Http/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0", - "System.ServiceModel.Primitives": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.Http.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.NetTcp/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0", - "System.ServiceModel.Primitives": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.NetTcp.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.Primitives/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.Primitives.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - }, - "lib/net6.0/System.ServiceModel.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.Security/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0", - "System.ServiceModel.Primitives": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.Security.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.Syndication/6.0.0": { - "runtime": { - "lib/net6.0/System.ServiceModel.Syndication.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.ServiceProcess.ServiceController/6.0.0": { - "dependencies": { - "System.Diagnostics.EventLog": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.ServiceProcess.ServiceController.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Speech/6.0.0": { - "runtime": { - "lib/net6.0/System.Speech.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Speech.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding.CodePages/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Text.Encodings.Web/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.AccessControl/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Threading.AccessControl.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Threading.AccessControl.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks.Extensions/4.5.4": {}, - "System.Web.Services.Description/4.9.0": { - "runtime": { - "lib/netstandard2.0/System.Web.Services.Description.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - }, - "resources": { - "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": { - "dependencies": { - "System.Drawing.Common": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Windows.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "YamlDotNet/11.2.1": { - "runtime": { - "lib/netstandard2.1/YamlDotNet.dll": { - "assemblyVersion": "11.0.0.0", - "fileVersion": "11.2.1.0" - } - } - }, - "Linguard.Log/2.0.0": { - "dependencies": { - "NLog": "4.7.13" - }, - "runtime": { - "Linguard.Log.dll": {} - } - } - } - }, - "libraries": { - "Linguard.Core/2.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Bogus/34.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-49iq7QrD0wb7V4/FcK8p3dWdJxNUbojaqK9L6KRvdikIuRjt38EsNp7QXICcYdbYw01K8BHUdxlnTNn/YX3qDA==", - "path": "bogus/34.0.1", - "hashPath": "bogus.34.0.1.nupkg.sha512" - }, - "ByteSize/2.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-D+Y3NpbHrW21vZwwegeWf/8iAg2Mr0s7n1su8Ysho+O9dctJ5/EkWUi19QVxc6+nZl080gGTXBP/Nz0twSI3dA==", - "path": "bytesize/2.1.1", - "hashPath": "bytesize.2.1.1.nupkg.sha512" - }, - "FluentValidation/10.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iMd370ZDx6ydm8t7bIFdRbSKX0e42lpvCtifUSbTSXOk5iKjmgl7HU0PXBhIWQAyIRi3gCwfMI9luj8H6K+byw==", - "path": "fluentvalidation/10.3.6", - "hashPath": "fluentvalidation.10.3.6.nupkg.sha512" - }, - "IPNetwork2/2.5.386": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6ihnNm82vyJsUYYfR2BRTziY/mQ5UGLsQZuhdSYPeTlbQLhBW/4BC9hBz3h5bFDn8PkVw9dP0cpv9brIBmk4Fw==", - "path": "ipnetwork2/2.5.386", - "hashPath": "ipnetwork2.2.5.386.nupkg.sha512" - }, - "Markdig.Signed/0.22.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7x3FqS3wk8DXyQLuflD47tBs6+ly6k4VtoDCzlDWfy7XHVsBIi7eGYEM15sPAcwSCQjOksNWE8U5r2v0Sk5FzQ==", - "path": "markdig.signed/0.22.0", - "hashPath": "markdig.signed.0.22.0.nupkg.sha512" - }, - "Microsoft.ApplicationInsights/2.18.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-milJB3VOCoC4EWmpE/Co9cOJ7SV6Ji6VqV4Rf5UlqL9QCg+rAX1y+3Y+j1Gu/j4IExYiPq7SEKqkP2BFnEu6Vw==", - "path": "microsoft.applicationinsights/2.18.0", - "hashPath": "microsoft.applicationinsights.2.18.0.nupkg.sha512" - }, - "Microsoft.Bcl.AsyncInterfaces/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W8DPQjkMScOMTtJbPwmPyj9c3zYSFGawDW3jwlBOOsnY+EzZFLgNQ/UMkK35JmkNOVPdCyPr2Tw7Vv9N+KA3ZQ==", - "path": "microsoft.bcl.asyncinterfaces/5.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Analyzers/3.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA==", - "path": "microsoft.codeanalysis.analyzers/3.3.2", - "hashPath": "microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Common/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SMREwaVD5SzatlWhh9aahQAtSWdb63NcE//f+bQzgHSECU6xtDtaxk0kwV+asdFfr6HtW38UeO6jvqdfzudg3w==", - "path": "microsoft.codeanalysis.common/4.0.1", - "hashPath": "microsoft.codeanalysis.common.4.0.1.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Q9RxxydPpUElj/x1/qykDTUGsRoKbJG8H5XUSeMGmMu54fBiuX1xyanom9caa1oQfh5JIW1BgLxobSaWs4WyHQ==", - "path": "microsoft.codeanalysis.csharp/4.0.1", - "hashPath": "microsoft.codeanalysis.csharp.4.0.1.nupkg.sha512" - }, - "Microsoft.CSharp/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==", - "path": "microsoft.csharp/4.3.0", - "hashPath": "microsoft.csharp.4.3.0.nupkg.sha512" - }, - "Microsoft.Extensions.ObjectPool/5.0.10": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pp9tbGqIhdEXL6Q1yJl+zevAJSq4BsxqhS1GXzBvEsEz9DDNu9GLNzgUy2xyFc4YjB4m4Ff2YEWTnvQvVYdkvQ==", - "path": "microsoft.extensions.objectpool/5.0.10", - "hashPath": "microsoft.extensions.objectpool.5.0.10.nupkg.sha512" - }, - "Microsoft.Management.Infrastructure/2.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IaKZRNBBv3sdrmBWd+aqwHq8cVHk/3WgWFAN/dt40MRY9rbtHiDfTTmaEN0tGTmQqGCGDo/ncntA8MvFMvcsRw==", - "path": "microsoft.management.infrastructure/2.0.0", - "hashPath": "microsoft.management.infrastructure.2.0.0.nupkg.sha512" - }, - "Microsoft.Management.Infrastructure.CimCmdlets/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xe1x237SCyrjpmW1mP1T69/OOc/gtU66P8wVC+b4/u7Hz7fIO6B8P5yVQQfb79rAe1GocruIpQlX4KXTFQf09w==", - "path": "microsoft.management.infrastructure.cimcmdlets/7.2.1", - "hashPath": "microsoft.management.infrastructure.cimcmdlets.7.2.1.nupkg.sha512" - }, - "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-p0lslMX5bdWLxO2P7ao+rjAMOB0LEwPYpzvdCQ2OEYgX2NxFpQ8ILvqPGnYlTAb53rT8gu5DyIol1HboHFYfxQ==", - "path": "microsoft.management.infrastructure.runtime.unix/2.0.0", - "hashPath": "microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512" - }, - "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vjBWQeDOjgernkrOdbEgn7M70SF7hof7ORdKPSlL06Uc15+oYdth5dZju9KsgUoti/cwnkZTiwtDx/lRtay0sA==", - "path": "microsoft.management.infrastructure.runtime.win/2.0.0", - "hashPath": "microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Windows.ApiSets/1.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==", - "path": "microsoft.netcore.windows.apisets/1.0.1", - "hashPath": "microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512" - }, - "Microsoft.PowerShell.Commands.Diagnostics/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Bgw4Egv7cnYUTWAy6koxg+0+/8K6rqUdlAiAxuJby9FeDPZQFfqCHQqlyP9JDa6lvbtmeBx1btFDx6Kh8bxdwQ==", - "path": "microsoft.powershell.commands.diagnostics/7.2.1", - "hashPath": "microsoft.powershell.commands.diagnostics.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.Commands.Management/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YAMrGDF2QTg6Gwz07+m1+BnmcYsPyywfY4J8nOpImfXZLLNhD7zQQP0orNHu9WPPV3/+E33qUyPj5J3ugCMk6A==", - "path": "microsoft.powershell.commands.management/7.2.1", - "hashPath": "microsoft.powershell.commands.management.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.Commands.Utility/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PU15IxUJd7nSacTstlxqJoEeGlI+BH6cUKTppkkIIxEj7EfwC5nD1qTL41xye63BFeZmOFeqAhMI6LtJUd875g==", - "path": "microsoft.powershell.commands.utility/7.2.1", - "hashPath": "microsoft.powershell.commands.utility.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.ConsoleHost/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uAPSsTmkOa7na1+OAPF87yBRwD1Ka/qXThoyrlvP9ihzMWfHM52k3MuKVEGi04VP3Wdi7U4Rzkr3svxDDmkHgA==", - "path": "microsoft.powershell.consolehost/7.2.1", - "hashPath": "microsoft.powershell.consolehost.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.CoreCLR.Eventing/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fUz7InjavqKtslkQN828nWbZLnmmJRL9rn4b3e/XXdx0BcN+65x/pSgMnehwDVGIoqUPUMXN54eDo4HRVcLA5g==", - "path": "microsoft.powershell.coreclr.eventing/7.2.1", - "hashPath": "microsoft.powershell.coreclr.eventing.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.MarkdownRender/7.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1vqDtdX9RCGsMWCbzp0CIxZW3slWgq8mYHDfUlUKzmkV57fMAn4m0Gy2OtsqopZzrOiVJci+QCWx5FB7BVpMlw==", - "path": "microsoft.powershell.markdownrender/7.2.0", - "hashPath": "microsoft.powershell.markdownrender.7.2.0.nupkg.sha512" - }, - "Microsoft.PowerShell.Native/7.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TauOu3bYr4DRh9HpH3+fgaL+y2GY47KLsgU6qX1NDLqHshdEaCCjiF0N5sDEgCEhSb38FwWhpdFTIQvoOcYCXQ==", - "path": "microsoft.powershell.native/7.2.0", - "hashPath": "microsoft.powershell.native.7.2.0.nupkg.sha512" - }, - "Microsoft.PowerShell.SDK/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UufIcywqI/22p0oqC5qg+yDoW39U2JAQyaHxy2Tr/h0hdWuFimtmhxp/FDXTxszgOdobtjcrCkSzqcoNmu/vQQ==", - "path": "microsoft.powershell.sdk/7.2.1", - "hashPath": "microsoft.powershell.sdk.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.Security/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GV3RuuOmXHAaEjeBcyixdzUIAQvHW6xgoWwafzTe97DbhI+N1sg4fa/FQ9pd8lqG+kkWxGwTy1VgudXX6rhUkg==", - "path": "microsoft.powershell.security/7.2.1", - "hashPath": "microsoft.powershell.security.7.2.1.nupkg.sha512" - }, - "Microsoft.Win32.Registry/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", - "path": "microsoft.win32.registry/4.7.0", - "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry.AccessControl/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UoE+eeuBKL+GFHxHV3FjHlY5K8Wr/IR7Ee/a2oDNqFodF1iMqyt5hIs0U9Z217AbWrHrNle4750kD03hv1IMZw==", - "path": "microsoft.win32.registry.accesscontrol/6.0.0", - "hashPath": "microsoft.win32.registry.accesscontrol.6.0.0.nupkg.sha512" - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", - "path": "microsoft.win32.systemevents/6.0.0", - "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" - }, - "Microsoft.Windows.Compatibility/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9esuK5JqnjkDgO9/AHesyJSG0aKwpfLVzTw6nIGYhqE91VLxZyv3HKulNoPVy/NOuyAaf1kE4FKtdZDzdd/SLw==", - "path": "microsoft.windows.compatibility/6.0.0", - "hashPath": "microsoft.windows.compatibility.6.0.0.nupkg.sha512" - }, - "Microsoft.WSMan.Management/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vMOJMof4eLql180G4PmTurN8h8+VmPaf1l/Tqq+GI7HYyNv140iY3/Z18MiZA4dRG14qghLNo5JxtTolY7b4og==", - "path": "microsoft.wsman.management/7.2.1", - "hashPath": "microsoft.wsman.management.7.2.1.nupkg.sha512" - }, - "Microsoft.WSMan.Runtime/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v14vzUXIg7opXoQI8Eb82dvsRwBNylZ44lvyXOBSRCiVfvMhyTqE8bpPWbwwmQ5JZRnG/dP5/aOYuu9l163fyQ==", - "path": "microsoft.wsman.runtime/7.2.1", - "hashPath": "microsoft.wsman.runtime.7.2.1.nupkg.sha512" - }, - "Namotion.Reflection/2.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tZCe/UrSBAMW8A4TjD/SlpRHaWjnHlSWdyRuOXhf3yrE0OX+4fXg0uzj7mwFDclXznfCGRAZbP+akPt4G/mclw==", - "path": "namotion.reflection/2.0.3", - "hashPath": "namotion.reflection.2.0.3.nupkg.sha512" - }, - "Newtonsoft.Json/13.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", - "path": "newtonsoft.json/13.0.1", - "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" - }, - "NJsonSchema/10.5.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vr2CbySuXh74TQFU0rGJYZOS492xOE64cPXdB7a0cfXJb/N45Bf4v7sd4LOla0jNhgc5V/B61Ko3qecriL195w==", - "path": "njsonschema/10.5.2", - "hashPath": "njsonschema.10.5.2.nupkg.sha512" - }, - "NLog/4.7.13": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AvoGpCuq36B+0wY313XA6gC+YeMvk24rqF8P+HS9fInBGOjCzPjpXp2ln9ATZjPOJtXgHfc8zNmTjyswFGLxvg==", - "path": "nlog/4.7.13", - "hashPath": "nlog.4.7.13.nupkg.sha512" - }, - "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-75q52H7CSpgIoIDwXb9o833EvBZIXJ0mdPhz1E6jSisEXUBlSCPalC29cj3EXsjpuDwr0dj1LRXZepIQH/oL4Q==", - "path": "runtime.linux-arm.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.linux-arm.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xn2bMThmXr3CsvOYmS8ex2Yz1xo+kcnhVg2iVhS9PlmqjZPAkrEo/I40wjrBZH/tU4kvH0s1AE8opAvQ3KIS8g==", - "path": "runtime.linux-arm64.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.linux-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-16nbNXwv0sC+gLGIuecri0skjuh6R1maIJggsaNP7MQBcbVcEfWFUOkEnsnvoLEjy0XerfibuRptfQ8AmdIcWA==", - "path": "runtime.linux-x64.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.linux-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.native.System.Data.SqlClient.sni/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", - "path": "runtime.native.system.data.sqlclient.sni/4.7.0", - "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512" - }, - "runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KaaXlpOcuZjMdmyF5wzzx3b+PRKIzt6A5Ax9dKenPDQbVJAFpev+casD0BIig1pBcbs3zx7CqWemzUJKAeHdSQ==", - "path": "runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fXG12NodG1QrCdoaeSQ1gVnk/koi4WYY4jZtarMkZeQMyReBm1nZlSRoPnUjLr2ZR36TiMjpcGnQfxymieUe7w==", - "path": "runtime.osx-arm64.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.osx-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/As+zPY49+dSUXkh+fTUbyPhqrdGN//evLxo4Vue88pfh1BHZgF7q4kMblTkxYvwR6Vi03zSYxysSFktO8/SDQ==", - "path": "runtime.osx-x64.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.osx-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", - "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", - "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" - }, - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", - "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", - "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" - }, - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", - "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", - "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" - }, - "System.CodeDom/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", - "path": "system.codedom/6.0.0", - "hashPath": "system.codedom.6.0.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.Immutable/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", - "path": "system.collections.immutable/5.0.0", - "hashPath": "system.collections.immutable.5.0.0.nupkg.sha512" - }, - "System.ComponentModel.Composition/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-60Qv+F7oxomOjJeTDA5Z4iCyFbQ0B/2Mi5HT+13pxxq0lVnu2ipbWMzFB+RWKr3wWKA8BSncXr9PH/fECwMX5Q==", - "path": "system.componentmodel.composition/6.0.0", - "hashPath": "system.componentmodel.composition.6.0.0.nupkg.sha512" - }, - "System.ComponentModel.Composition.Registration/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+i3RLlOgTsf15VeADBPpzPyRiXq71aLSuzdHeNtmq9f6BwpF3OWhB76p0WDUNCa3Z+SLD4dJbBM9yAep7kQCGA==", - "path": "system.componentmodel.composition.registration/6.0.0", - "hashPath": "system.componentmodel.composition.registration.6.0.0.nupkg.sha512" - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", - "path": "system.configuration.configurationmanager/6.0.0", - "hashPath": "system.configuration.configurationmanager.6.0.0.nupkg.sha512" - }, - "System.Data.Odbc/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pnZjwe0Qwr1Rnp7NExd5zz4YwXJrYuAbWNKjEQpTzCEg6f/L5DYJS7w3hG3vgSj1t/r79UL390YzXIklf1VuQQ==", - "path": "system.data.odbc/6.0.0", - "hashPath": "system.data.odbc.6.0.0.nupkg.sha512" - }, - "System.Data.OleDb/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LQ8PjTIF1LtrrlGiyiTVjAkQtTWKm9GSNnygIlWjhN9y88s7xhy6DUNDDkmQQ9f6ex7mA4k0Tl97lz/CklaiLg==", - "path": "system.data.oledb/6.0.0", - "hashPath": "system.data.oledb.6.0.0.nupkg.sha512" - }, - "System.Data.SqlClient/4.8.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yERfVLXAY0QbylAgaGLByYN0hFxX28aeEQ0hUgJO+Ntn1AfmWl5HHUoYJA0Yl9HhIUUJHVaS/Sw/RLZr5aaC+A==", - "path": "system.data.sqlclient/4.8.3", - "hashPath": "system.data.sqlclient.4.8.3.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==", - "path": "system.diagnostics.diagnosticsource/5.0.0", - "hashPath": "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512" - }, - "System.Diagnostics.EventLog/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", - "path": "system.diagnostics.eventlog/6.0.0", - "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512" - }, - "System.Diagnostics.PerformanceCounter/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-gbeE5tNp/oB7O8kTTLh3wPPJCxpNOphXPTWVs1BsYuFOYapFijWuh0LYw1qnDo4gwDUYPXOmpTIhvtxisGsYOQ==", - "path": "system.diagnostics.performancecounter/6.0.0", - "hashPath": "system.diagnostics.performancecounter.6.0.0.nupkg.sha512" - }, - "System.DirectoryServices/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kp/Op0nxDVGlElDKh8TsXO0GKXftQgAB6sJk0wUetZK1Rr0Pbd86Tn7AllLLlROFZa4BTl/LVHakljtGELFzCg==", - "path": "system.directoryservices/6.0.0", - "hashPath": "system.directoryservices.6.0.0.nupkg.sha512" - }, - "System.DirectoryServices.AccountManagement/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2iKkY6VC4WX6H13N8WhH2SRUfWCwg2KZR5w9JIS9cw9N8cZhT7VXxHX0L6OX6Po419aSu2LWrJE9tu6b+cUnPA==", - "path": "system.directoryservices.accountmanagement/6.0.0", - "hashPath": "system.directoryservices.accountmanagement.6.0.0.nupkg.sha512" - }, - "System.DirectoryServices.Protocols/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-++WKU7HQPo/FJdhywWw+q2lLjcVAGVw5XLH9kRCV+4DvkhVAcHCksh0ezIqwNROmaU9LMJN0d/LAdeWXu3pi6Q==", - "path": "system.directoryservices.protocols/6.0.0", - "hashPath": "system.directoryservices.protocols.6.0.0.nupkg.sha512" - }, - "System.Drawing.Common/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", - "path": "system.drawing.common/6.0.0", - "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" - }, - "System.Dynamic.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", - "path": "system.dynamic.runtime/4.3.0", - "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" - }, - "System.Formats.Asn1/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA==", - "path": "system.formats.asn1/6.0.0", - "hashPath": "system.formats.asn1.6.0.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.Packaging/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-C7OkTRIjqIjAKu6ef/fuj8ynCZTPcTYZnvHaq48bniACgXXJogmEoIc56YCDNTc14xhsbLmgpS3KP+evbsUa2g==", - "path": "system.io.packaging/6.0.0", - "hashPath": "system.io.packaging.6.0.0.nupkg.sha512" - }, - "System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dRyGI7fUESar5ZLIpiBOaaNLW7YyOBGftjj5Of+xcduC/Rjl7RjhEnWDvvNBmHuF3d0tdXoqdVI/yrVA8f00XA==", - "path": "system.io.ports/6.0.0", - "hashPath": "system.io.ports.6.0.0.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "path": "system.linq.expressions/4.3.0", - "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" - }, - "System.Management/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sHsESYMmPDhQuOC66h6AEOs/XowzKsbT9srMbX71TCXP58hkpn1BqBjdmKj1+DCA/WlBETX1K5WjQHwmV0Txrg==", - "path": "system.management/6.0.0", - "hashPath": "system.management.6.0.0.nupkg.sha512" - }, - "System.Management.Automation/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YlTE+q14vQ1YU//A5+/Jwl5+L5r6uOVIWuB4D/T9r80AaCeUAZMMvTKjgvIr9lwkovwQflVL+1JfBAi9f0q0KA==", - "path": "system.management.automation/7.2.1", - "hashPath": "system.management.automation.7.2.1.nupkg.sha512" - }, - "System.Memory/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", - "path": "system.memory/4.5.4", - "hashPath": "system.memory.4.5.4.nupkg.sha512" - }, - "System.Net.Http.WinHttpHandler/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jubNN9jH4NzVrvEf4fGwESLBsfH8whWNbHMhgM6IwA8UCt6+/M19bbOHc21JhigvC2HQKCl8HKGZMcBtIpzqIg==", - "path": "system.net.http.winhttphandler/6.0.0", - "hashPath": "system.net.http.winhttphandler.6.0.0.nupkg.sha512" - }, - "System.Numerics.Vectors/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", - "path": "system.numerics.vectors/4.5.0", - "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "path": "system.objectmodel/4.3.0", - "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" - }, - "System.Private.ServiceModel/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d3RjkrtpjUQ63PzFmm/SZ4aOXeJNP+8YW5QeP0lCJy8iX4xlHdlNLWTF9sRn9SmrFTK757kQXT9Op/R4l858uw==", - "path": "system.private.servicemodel/4.9.0", - "hashPath": "system.private.servicemodel.4.9.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Context/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vi+Gb41oyOYie7uLSsjRmfRg3bryUg5DssJvj3gDUl0D8z6ipSm6/yi/XNx2rcS5iVMvHcwRUHjcx7ixv0K3/w==", - "path": "system.reflection.context/6.0.0", - "hashPath": "system.reflection.context.6.0.0.nupkg.sha512" - }, - "System.Reflection.DispatchProxy/4.7.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-C1sMLwIG6ILQ2bmOT4gh62V6oJlyF4BlHcVMrOoor49p0Ji2tA8QAoqyMcIhAdH6OHKJ8m7BU+r4LK2CUEOKqw==", - "path": "system.reflection.dispatchproxy/4.7.1", - "hashPath": "system.reflection.dispatchproxy.4.7.1.nupkg.sha512" - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "path": "system.reflection.emit/4.3.0", - "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "path": "system.reflection.emit.lightweight/4.3.0", - "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Metadata/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==", - "path": "system.reflection.metadata/5.0.0", - "hashPath": "system.reflection.metadata.5.0.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.Caching/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==", - "path": "system.runtime.caching/6.0.0", - "hashPath": "system.runtime.caching.6.0.0.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Security.AccessControl/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", - "path": "system.security.accesscontrol/6.0.0", - "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Pkcs/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-elM3x+xSRhzQysiqo85SbidJJ2YbZlnvmh+53TuSZHsD7dNuuEWser+9EFtY+rYupBwkq2avc6ZCO3/6qACgmg==", - "path": "system.security.cryptography.pkcs/6.0.0", - "hashPath": "system.security.cryptography.pkcs.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", - "path": "system.security.cryptography.protecteddata/6.0.0", - "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Xml/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-puJ4UCh9JVRwOCyCIcq71JY6Axr8Sp8E2GjTIU1Fj8hm4+oX6NEoyGFGa/+pBG8SrVxbQPSj7hvtaREyTHHsmw==", - "path": "system.security.cryptography.xml/6.0.0", - "hashPath": "system.security.cryptography.xml.6.0.0.nupkg.sha512" - }, - "System.Security.Permissions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", - "path": "system.security.permissions/6.0.0", - "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" - }, - "System.Security.Principal.Windows/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", - "path": "system.security.principal.windows/5.0.0", - "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" - }, - "System.ServiceModel.Duplex/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Yb8MFiJxBBtm2JnfS/5SxYzm2HqkEmHu5xeaVIHXy83sNpty9wc30JifH2xgda821D6nr1UctbwbdZqN4LBUKQ==", - "path": "system.servicemodel.duplex/4.9.0", - "hashPath": "system.servicemodel.duplex.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.Http/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z+s3RkLNzJ31fDXAjqXdXp67FqsNG4V3Md3r7FOrzMkHmg61gY8faEfTFPBLxU9tax1HPWt6IHVAquXBKySJaw==", - "path": "system.servicemodel.http/4.9.0", - "hashPath": "system.servicemodel.http.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.NetTcp/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nXgnnkrZERUF/KwmoLwZPkc7fqgiq94DXkmUZBvDNh/LdZquDvjy2NbhJLElpApOa5x8zEoQoBZyJ2PqNC39qg==", - "path": "system.servicemodel.nettcp/4.9.0", - "hashPath": "system.servicemodel.nettcp.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.Primitives/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LTFPVdS8Nf76xg/wRZkDa+2Q+GnjTOmwkTlwuoetwX37mAfYnGkf7p8ydhpDwVmomNljpUOhUUGxfjQyd5YcOg==", - "path": "system.servicemodel.primitives/4.9.0", - "hashPath": "system.servicemodel.primitives.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.Security/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iurpbSmPgotHps94VQ6acvL6hU2gjiuBmQI7PwLLN76jsbSpUcahT0PglccKIAwoMujATk/LWtAapBHpwCFn2g==", - "path": "system.servicemodel.security/4.9.0", - "hashPath": "system.servicemodel.security.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.Syndication/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cp1mMNG87iJtE0oHXFtfWT6cfski2JNo5iU0siTPi/uN2k1CIJI6FE4jr4v3got2dzt7wBq17fSy44btun9GiA==", - "path": "system.servicemodel.syndication/6.0.0", - "hashPath": "system.servicemodel.syndication.6.0.0.nupkg.sha512" - }, - "System.ServiceProcess.ServiceController/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qMBvG8ZFbkXoe0Z5/D7FAAadfPkH2v7vSuh2xsLf3U6jNoejpIdeV18A0htiASsLK1CCAc/p59kaLXlt2yB1gw==", - "path": "system.serviceprocess.servicecontroller/6.0.0", - "hashPath": "system.serviceprocess.servicecontroller.6.0.0.nupkg.sha512" - }, - "System.Speech/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GQovERMrNP0Vbtgk8LzH4PlFS6lqHgsL9WkUmv8Kkxa0m0vNakitytpHZlfJ9WR7n9WKLXh68nn2kyL9mflnLg==", - "path": "system.speech/6.0.0", - "hashPath": "system.speech.6.0.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.CodePages/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "path": "system.text.encoding.codepages/6.0.0", - "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512" - }, - "System.Text.Encodings.Web/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", - "path": "system.text.encodings.web/6.0.0", - "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.AccessControl/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2258mqWesMch/xCpcnjJBgJP33yhpZLGLbEOm01qwq0efG4b+NG8c9sxYOWNxmDQ82swXrnQRl1Yp2wC1NrfZA==", - "path": "system.threading.accesscontrol/6.0.0", - "hashPath": "system.threading.accesscontrol.6.0.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", - "path": "system.threading.tasks.extensions/4.5.4", - "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" - }, - "System.Web.Services.Description/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d20B3upsWddwSG5xF3eQLs0cAV3tXDsBNqP4kh02ylfgZwqfpf4f/9KiZVIGIoxULt2cKqxWs+U4AdNAJ7L8cQ==", - "path": "system.web.services.description/4.9.0", - "hashPath": "system.web.services.description.4.9.0.nupkg.sha512" - }, - "System.Windows.Extensions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", - "path": "system.windows.extensions/6.0.0", - "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" - }, - "YamlDotNet/11.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tBt8K+korVfrjH9wyDEhiLKxbs8qoLCLIFwvYgkSUuMC9//w3z0cFQ8LQAI/5MCKq+BMil0cfRTRvPeE7eXhQw==", - "path": "yamldotnet/11.2.1", - "hashPath": "yamldotnet.11.2.1.nupkg.sha512" - }, - "Linguard.Log/2.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/linguard/core/bin/Debug/net6.0/Linguard.Core.dll b/linguard/core/bin/Debug/net6.0/Linguard.Core.dll deleted file mode 100644 index ece45f5..0000000 Binary files a/linguard/core/bin/Debug/net6.0/Linguard.Core.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/Linguard.Core.pdb b/linguard/core/bin/Debug/net6.0/Linguard.Core.pdb deleted file mode 100644 index 4b3b436..0000000 Binary files a/linguard/core/bin/Debug/net6.0/Linguard.Core.pdb and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/Linguard.Log.dll b/linguard/core/bin/Debug/net6.0/Linguard.Log.dll deleted file mode 100644 index 561b728..0000000 Binary files a/linguard/core/bin/Debug/net6.0/Linguard.Log.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/Linguard.Log.pdb b/linguard/core/bin/Debug/net6.0/Linguard.Log.pdb deleted file mode 100644 index ef5cdfa..0000000 Binary files a/linguard/core/bin/Debug/net6.0/Linguard.Log.pdb and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/Linguard.Core.dll b/linguard/core/bin/Debug/net6.0/ref/Linguard.Core.dll deleted file mode 100644 index 596fb40..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/Linguard.Core.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/Microsoft.CSharp.dll b/linguard/core/bin/Debug/net6.0/ref/Microsoft.CSharp.dll deleted file mode 100644 index 00529c3..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/Microsoft.CSharp.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/Microsoft.VisualBasic.Core.dll b/linguard/core/bin/Debug/net6.0/ref/Microsoft.VisualBasic.Core.dll deleted file mode 100644 index d37bdc6..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/Microsoft.VisualBasic.Core.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/Microsoft.VisualBasic.dll b/linguard/core/bin/Debug/net6.0/ref/Microsoft.VisualBasic.dll deleted file mode 100644 index eb198db..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/Microsoft.VisualBasic.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/Microsoft.Win32.Primitives.dll b/linguard/core/bin/Debug/net6.0/ref/Microsoft.Win32.Primitives.dll deleted file mode 100644 index e39072e..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/Microsoft.Win32.Primitives.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/Microsoft.Win32.Registry.dll b/linguard/core/bin/Debug/net6.0/ref/Microsoft.Win32.Registry.dll deleted file mode 100644 index 0e4ca23..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/Microsoft.Win32.Registry.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.AppContext.dll b/linguard/core/bin/Debug/net6.0/ref/System.AppContext.dll deleted file mode 100644 index 949e26a..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.AppContext.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Buffers.dll b/linguard/core/bin/Debug/net6.0/ref/System.Buffers.dll deleted file mode 100644 index 0ba2017..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Buffers.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Collections.Concurrent.dll b/linguard/core/bin/Debug/net6.0/ref/System.Collections.Concurrent.dll deleted file mode 100644 index a34bdfd..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Collections.Concurrent.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Collections.Immutable.dll b/linguard/core/bin/Debug/net6.0/ref/System.Collections.Immutable.dll deleted file mode 100644 index 3559d71..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Collections.Immutable.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Collections.NonGeneric.dll b/linguard/core/bin/Debug/net6.0/ref/System.Collections.NonGeneric.dll deleted file mode 100644 index 0ff1e9e..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Collections.NonGeneric.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Collections.Specialized.dll b/linguard/core/bin/Debug/net6.0/ref/System.Collections.Specialized.dll deleted file mode 100644 index 9e63d8f..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Collections.Specialized.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Collections.dll b/linguard/core/bin/Debug/net6.0/ref/System.Collections.dll deleted file mode 100644 index c563b3d..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Collections.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.ComponentModel.Annotations.dll b/linguard/core/bin/Debug/net6.0/ref/System.ComponentModel.Annotations.dll deleted file mode 100644 index e719616..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.ComponentModel.Annotations.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.ComponentModel.DataAnnotations.dll b/linguard/core/bin/Debug/net6.0/ref/System.ComponentModel.DataAnnotations.dll deleted file mode 100644 index e92b9ec..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.ComponentModel.DataAnnotations.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.ComponentModel.EventBasedAsync.dll b/linguard/core/bin/Debug/net6.0/ref/System.ComponentModel.EventBasedAsync.dll deleted file mode 100644 index c13cab7..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.ComponentModel.EventBasedAsync.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.ComponentModel.Primitives.dll b/linguard/core/bin/Debug/net6.0/ref/System.ComponentModel.Primitives.dll deleted file mode 100644 index 2c8ac32..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.ComponentModel.Primitives.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.ComponentModel.TypeConverter.dll b/linguard/core/bin/Debug/net6.0/ref/System.ComponentModel.TypeConverter.dll deleted file mode 100644 index 8af874e..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.ComponentModel.TypeConverter.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.ComponentModel.dll b/linguard/core/bin/Debug/net6.0/ref/System.ComponentModel.dll deleted file mode 100644 index dedec7c..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.ComponentModel.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Configuration.dll b/linguard/core/bin/Debug/net6.0/ref/System.Configuration.dll deleted file mode 100644 index 54fdf89..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Configuration.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Console.dll b/linguard/core/bin/Debug/net6.0/ref/System.Console.dll deleted file mode 100644 index 5934da2..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Console.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Core.dll b/linguard/core/bin/Debug/net6.0/ref/System.Core.dll deleted file mode 100644 index b5abba6..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Core.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Data.Common.dll b/linguard/core/bin/Debug/net6.0/ref/System.Data.Common.dll deleted file mode 100644 index fb6df46..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Data.Common.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Data.DataSetExtensions.dll b/linguard/core/bin/Debug/net6.0/ref/System.Data.DataSetExtensions.dll deleted file mode 100644 index e5afb2e..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Data.DataSetExtensions.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Data.dll b/linguard/core/bin/Debug/net6.0/ref/System.Data.dll deleted file mode 100644 index e54bdf1..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Data.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Diagnostics.Contracts.dll b/linguard/core/bin/Debug/net6.0/ref/System.Diagnostics.Contracts.dll deleted file mode 100644 index b2a4266..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Diagnostics.Contracts.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Diagnostics.Debug.dll b/linguard/core/bin/Debug/net6.0/ref/System.Diagnostics.Debug.dll deleted file mode 100644 index a0cd3f8..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Diagnostics.Debug.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Diagnostics.DiagnosticSource.dll b/linguard/core/bin/Debug/net6.0/ref/System.Diagnostics.DiagnosticSource.dll deleted file mode 100644 index 39a6217..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Diagnostics.DiagnosticSource.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Diagnostics.FileVersionInfo.dll b/linguard/core/bin/Debug/net6.0/ref/System.Diagnostics.FileVersionInfo.dll deleted file mode 100644 index 439c771..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Diagnostics.FileVersionInfo.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Diagnostics.Process.dll b/linguard/core/bin/Debug/net6.0/ref/System.Diagnostics.Process.dll deleted file mode 100644 index 2091f8c..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Diagnostics.Process.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Diagnostics.StackTrace.dll b/linguard/core/bin/Debug/net6.0/ref/System.Diagnostics.StackTrace.dll deleted file mode 100644 index 4b5a3d7..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Diagnostics.StackTrace.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Diagnostics.TextWriterTraceListener.dll b/linguard/core/bin/Debug/net6.0/ref/System.Diagnostics.TextWriterTraceListener.dll deleted file mode 100644 index 1a5cbf2..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Diagnostics.TextWriterTraceListener.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Diagnostics.Tools.dll b/linguard/core/bin/Debug/net6.0/ref/System.Diagnostics.Tools.dll deleted file mode 100644 index 335c9c1..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Diagnostics.Tools.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Diagnostics.TraceSource.dll b/linguard/core/bin/Debug/net6.0/ref/System.Diagnostics.TraceSource.dll deleted file mode 100644 index 749ba40..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Diagnostics.TraceSource.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Diagnostics.Tracing.dll b/linguard/core/bin/Debug/net6.0/ref/System.Diagnostics.Tracing.dll deleted file mode 100644 index 338074d..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Diagnostics.Tracing.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Drawing.Primitives.dll b/linguard/core/bin/Debug/net6.0/ref/System.Drawing.Primitives.dll deleted file mode 100644 index 8c0a332..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Drawing.Primitives.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Drawing.dll b/linguard/core/bin/Debug/net6.0/ref/System.Drawing.dll deleted file mode 100644 index b226cf3..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Drawing.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Dynamic.Runtime.dll b/linguard/core/bin/Debug/net6.0/ref/System.Dynamic.Runtime.dll deleted file mode 100644 index 70edfa6..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Dynamic.Runtime.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Formats.Asn1.dll b/linguard/core/bin/Debug/net6.0/ref/System.Formats.Asn1.dll deleted file mode 100644 index 8625760..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Formats.Asn1.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Globalization.Calendars.dll b/linguard/core/bin/Debug/net6.0/ref/System.Globalization.Calendars.dll deleted file mode 100644 index 21a0037..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Globalization.Calendars.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Globalization.Extensions.dll b/linguard/core/bin/Debug/net6.0/ref/System.Globalization.Extensions.dll deleted file mode 100644 index 0dd96b7..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Globalization.Extensions.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Globalization.dll b/linguard/core/bin/Debug/net6.0/ref/System.Globalization.dll deleted file mode 100644 index 1c2e682..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Globalization.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.IO.Compression.Brotli.dll b/linguard/core/bin/Debug/net6.0/ref/System.IO.Compression.Brotli.dll deleted file mode 100644 index 297977e..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.IO.Compression.Brotli.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.IO.Compression.FileSystem.dll b/linguard/core/bin/Debug/net6.0/ref/System.IO.Compression.FileSystem.dll deleted file mode 100644 index 6586130..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.IO.Compression.FileSystem.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.IO.Compression.ZipFile.dll b/linguard/core/bin/Debug/net6.0/ref/System.IO.Compression.ZipFile.dll deleted file mode 100644 index 6c9be3c..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.IO.Compression.ZipFile.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.IO.Compression.dll b/linguard/core/bin/Debug/net6.0/ref/System.IO.Compression.dll deleted file mode 100644 index 832d832..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.IO.Compression.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.IO.FileSystem.AccessControl.dll b/linguard/core/bin/Debug/net6.0/ref/System.IO.FileSystem.AccessControl.dll deleted file mode 100644 index 37f5c30..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.IO.FileSystem.AccessControl.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.IO.FileSystem.DriveInfo.dll b/linguard/core/bin/Debug/net6.0/ref/System.IO.FileSystem.DriveInfo.dll deleted file mode 100644 index 3fafa94..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.IO.FileSystem.DriveInfo.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.IO.FileSystem.Primitives.dll b/linguard/core/bin/Debug/net6.0/ref/System.IO.FileSystem.Primitives.dll deleted file mode 100644 index 7e7c838..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.IO.FileSystem.Primitives.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.IO.FileSystem.Watcher.dll b/linguard/core/bin/Debug/net6.0/ref/System.IO.FileSystem.Watcher.dll deleted file mode 100644 index 413f9b4..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.IO.FileSystem.Watcher.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.IO.FileSystem.dll b/linguard/core/bin/Debug/net6.0/ref/System.IO.FileSystem.dll deleted file mode 100644 index e2be89f..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.IO.FileSystem.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.IO.IsolatedStorage.dll b/linguard/core/bin/Debug/net6.0/ref/System.IO.IsolatedStorage.dll deleted file mode 100644 index a17e9fc..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.IO.IsolatedStorage.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.IO.MemoryMappedFiles.dll b/linguard/core/bin/Debug/net6.0/ref/System.IO.MemoryMappedFiles.dll deleted file mode 100644 index 2d4175d..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.IO.MemoryMappedFiles.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.IO.Pipes.AccessControl.dll b/linguard/core/bin/Debug/net6.0/ref/System.IO.Pipes.AccessControl.dll deleted file mode 100644 index 8627e1d..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.IO.Pipes.AccessControl.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.IO.Pipes.dll b/linguard/core/bin/Debug/net6.0/ref/System.IO.Pipes.dll deleted file mode 100644 index 401b732..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.IO.Pipes.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.IO.UnmanagedMemoryStream.dll b/linguard/core/bin/Debug/net6.0/ref/System.IO.UnmanagedMemoryStream.dll deleted file mode 100644 index 9c49c70..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.IO.UnmanagedMemoryStream.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.IO.dll b/linguard/core/bin/Debug/net6.0/ref/System.IO.dll deleted file mode 100644 index 02ce4e2..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.IO.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Linq.Expressions.dll b/linguard/core/bin/Debug/net6.0/ref/System.Linq.Expressions.dll deleted file mode 100644 index 65c06c3..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Linq.Expressions.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Linq.Parallel.dll b/linguard/core/bin/Debug/net6.0/ref/System.Linq.Parallel.dll deleted file mode 100644 index 02a5fa6..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Linq.Parallel.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Linq.Queryable.dll b/linguard/core/bin/Debug/net6.0/ref/System.Linq.Queryable.dll deleted file mode 100644 index 0eeb7c8..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Linq.Queryable.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Linq.dll b/linguard/core/bin/Debug/net6.0/ref/System.Linq.dll deleted file mode 100644 index 2a86c79..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Linq.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Memory.dll b/linguard/core/bin/Debug/net6.0/ref/System.Memory.dll deleted file mode 100644 index 388044d..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Memory.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Net.Http.Json.dll b/linguard/core/bin/Debug/net6.0/ref/System.Net.Http.Json.dll deleted file mode 100644 index 22997ef..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Net.Http.Json.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Net.Http.dll b/linguard/core/bin/Debug/net6.0/ref/System.Net.Http.dll deleted file mode 100644 index abaf3da..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Net.Http.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Net.HttpListener.dll b/linguard/core/bin/Debug/net6.0/ref/System.Net.HttpListener.dll deleted file mode 100644 index 55c3152..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Net.HttpListener.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Net.Mail.dll b/linguard/core/bin/Debug/net6.0/ref/System.Net.Mail.dll deleted file mode 100644 index 8c06ec8..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Net.Mail.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Net.NameResolution.dll b/linguard/core/bin/Debug/net6.0/ref/System.Net.NameResolution.dll deleted file mode 100644 index 98dd2d8..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Net.NameResolution.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Net.NetworkInformation.dll b/linguard/core/bin/Debug/net6.0/ref/System.Net.NetworkInformation.dll deleted file mode 100644 index 842064d..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Net.NetworkInformation.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Net.Ping.dll b/linguard/core/bin/Debug/net6.0/ref/System.Net.Ping.dll deleted file mode 100644 index 0d4d3a9..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Net.Ping.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Net.Primitives.dll b/linguard/core/bin/Debug/net6.0/ref/System.Net.Primitives.dll deleted file mode 100644 index d54f4bd..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Net.Primitives.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Net.Requests.dll b/linguard/core/bin/Debug/net6.0/ref/System.Net.Requests.dll deleted file mode 100644 index f314471..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Net.Requests.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Net.Security.dll b/linguard/core/bin/Debug/net6.0/ref/System.Net.Security.dll deleted file mode 100644 index 4e348d7..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Net.Security.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Net.ServicePoint.dll b/linguard/core/bin/Debug/net6.0/ref/System.Net.ServicePoint.dll deleted file mode 100644 index 6077da1..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Net.ServicePoint.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Net.Sockets.dll b/linguard/core/bin/Debug/net6.0/ref/System.Net.Sockets.dll deleted file mode 100644 index 1af0691..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Net.Sockets.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Net.WebClient.dll b/linguard/core/bin/Debug/net6.0/ref/System.Net.WebClient.dll deleted file mode 100644 index 6a4a572..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Net.WebClient.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Net.WebHeaderCollection.dll b/linguard/core/bin/Debug/net6.0/ref/System.Net.WebHeaderCollection.dll deleted file mode 100644 index 114289b..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Net.WebHeaderCollection.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Net.WebProxy.dll b/linguard/core/bin/Debug/net6.0/ref/System.Net.WebProxy.dll deleted file mode 100644 index d65ea58..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Net.WebProxy.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Net.WebSockets.Client.dll b/linguard/core/bin/Debug/net6.0/ref/System.Net.WebSockets.Client.dll deleted file mode 100644 index 5717169..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Net.WebSockets.Client.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Net.WebSockets.dll b/linguard/core/bin/Debug/net6.0/ref/System.Net.WebSockets.dll deleted file mode 100644 index 5bfa921..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Net.WebSockets.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Net.dll b/linguard/core/bin/Debug/net6.0/ref/System.Net.dll deleted file mode 100644 index 62feba4..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Net.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Numerics.Vectors.dll b/linguard/core/bin/Debug/net6.0/ref/System.Numerics.Vectors.dll deleted file mode 100644 index 2c3a984..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Numerics.Vectors.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Numerics.dll b/linguard/core/bin/Debug/net6.0/ref/System.Numerics.dll deleted file mode 100644 index 5d186c8..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Numerics.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.ObjectModel.dll b/linguard/core/bin/Debug/net6.0/ref/System.ObjectModel.dll deleted file mode 100644 index f92cc11..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.ObjectModel.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Reflection.DispatchProxy.dll b/linguard/core/bin/Debug/net6.0/ref/System.Reflection.DispatchProxy.dll deleted file mode 100644 index b888c4b..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Reflection.DispatchProxy.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Reflection.Emit.ILGeneration.dll b/linguard/core/bin/Debug/net6.0/ref/System.Reflection.Emit.ILGeneration.dll deleted file mode 100644 index 81911c6..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Reflection.Emit.ILGeneration.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Reflection.Emit.Lightweight.dll b/linguard/core/bin/Debug/net6.0/ref/System.Reflection.Emit.Lightweight.dll deleted file mode 100644 index 045952c..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Reflection.Emit.Lightweight.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Reflection.Emit.dll b/linguard/core/bin/Debug/net6.0/ref/System.Reflection.Emit.dll deleted file mode 100644 index e579588..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Reflection.Emit.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Reflection.Extensions.dll b/linguard/core/bin/Debug/net6.0/ref/System.Reflection.Extensions.dll deleted file mode 100644 index 7987d1d..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Reflection.Extensions.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Reflection.Metadata.dll b/linguard/core/bin/Debug/net6.0/ref/System.Reflection.Metadata.dll deleted file mode 100644 index 50158de..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Reflection.Metadata.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Reflection.Primitives.dll b/linguard/core/bin/Debug/net6.0/ref/System.Reflection.Primitives.dll deleted file mode 100644 index d9210c0..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Reflection.Primitives.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Reflection.TypeExtensions.dll b/linguard/core/bin/Debug/net6.0/ref/System.Reflection.TypeExtensions.dll deleted file mode 100644 index 792c8c8..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Reflection.TypeExtensions.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Reflection.dll b/linguard/core/bin/Debug/net6.0/ref/System.Reflection.dll deleted file mode 100644 index 3021f73..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Reflection.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Resources.Reader.dll b/linguard/core/bin/Debug/net6.0/ref/System.Resources.Reader.dll deleted file mode 100644 index e46173b..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Resources.Reader.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Resources.ResourceManager.dll b/linguard/core/bin/Debug/net6.0/ref/System.Resources.ResourceManager.dll deleted file mode 100644 index fc44423..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Resources.ResourceManager.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Resources.Writer.dll b/linguard/core/bin/Debug/net6.0/ref/System.Resources.Writer.dll deleted file mode 100644 index 68980f9..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Resources.Writer.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.Unsafe.dll b/linguard/core/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.Unsafe.dll deleted file mode 100644 index 546930e..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.Unsafe.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.VisualC.dll b/linguard/core/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.VisualC.dll deleted file mode 100644 index 277cb81..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.VisualC.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Runtime.Extensions.dll b/linguard/core/bin/Debug/net6.0/ref/System.Runtime.Extensions.dll deleted file mode 100644 index 441841e..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Runtime.Extensions.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Runtime.Handles.dll b/linguard/core/bin/Debug/net6.0/ref/System.Runtime.Handles.dll deleted file mode 100644 index 70e3278..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Runtime.Handles.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll b/linguard/core/bin/Debug/net6.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll deleted file mode 100644 index 89f8d39..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Runtime.InteropServices.dll b/linguard/core/bin/Debug/net6.0/ref/System.Runtime.InteropServices.dll deleted file mode 100644 index a39d097..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Runtime.InteropServices.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Runtime.Intrinsics.dll b/linguard/core/bin/Debug/net6.0/ref/System.Runtime.Intrinsics.dll deleted file mode 100644 index c9fcd40..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Runtime.Intrinsics.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Runtime.Loader.dll b/linguard/core/bin/Debug/net6.0/ref/System.Runtime.Loader.dll deleted file mode 100644 index f109988..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Runtime.Loader.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Runtime.Numerics.dll b/linguard/core/bin/Debug/net6.0/ref/System.Runtime.Numerics.dll deleted file mode 100644 index 89937d1..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Runtime.Numerics.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Runtime.Serialization.Formatters.dll b/linguard/core/bin/Debug/net6.0/ref/System.Runtime.Serialization.Formatters.dll deleted file mode 100644 index 5438ce3..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Runtime.Serialization.Formatters.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Runtime.Serialization.Json.dll b/linguard/core/bin/Debug/net6.0/ref/System.Runtime.Serialization.Json.dll deleted file mode 100644 index 399a512..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Runtime.Serialization.Json.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Runtime.Serialization.Primitives.dll b/linguard/core/bin/Debug/net6.0/ref/System.Runtime.Serialization.Primitives.dll deleted file mode 100644 index c402e8a..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Runtime.Serialization.Primitives.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Runtime.Serialization.Xml.dll b/linguard/core/bin/Debug/net6.0/ref/System.Runtime.Serialization.Xml.dll deleted file mode 100644 index 84fffc5..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Runtime.Serialization.Xml.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Runtime.Serialization.dll b/linguard/core/bin/Debug/net6.0/ref/System.Runtime.Serialization.dll deleted file mode 100644 index 1c1891a..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Runtime.Serialization.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Runtime.dll b/linguard/core/bin/Debug/net6.0/ref/System.Runtime.dll deleted file mode 100644 index 921a08b..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Runtime.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Security.AccessControl.dll b/linguard/core/bin/Debug/net6.0/ref/System.Security.AccessControl.dll deleted file mode 100644 index 2c6f9f4..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Security.AccessControl.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Security.Claims.dll b/linguard/core/bin/Debug/net6.0/ref/System.Security.Claims.dll deleted file mode 100644 index b6297f6..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Security.Claims.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Security.Cryptography.Algorithms.dll b/linguard/core/bin/Debug/net6.0/ref/System.Security.Cryptography.Algorithms.dll deleted file mode 100644 index 4b89540..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Security.Cryptography.Algorithms.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Security.Cryptography.Cng.dll b/linguard/core/bin/Debug/net6.0/ref/System.Security.Cryptography.Cng.dll deleted file mode 100644 index e76a578..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Security.Cryptography.Cng.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Security.Cryptography.Csp.dll b/linguard/core/bin/Debug/net6.0/ref/System.Security.Cryptography.Csp.dll deleted file mode 100644 index 2ceae69..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Security.Cryptography.Csp.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Security.Cryptography.Encoding.dll b/linguard/core/bin/Debug/net6.0/ref/System.Security.Cryptography.Encoding.dll deleted file mode 100644 index a975809..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Security.Cryptography.Encoding.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Security.Cryptography.OpenSsl.dll b/linguard/core/bin/Debug/net6.0/ref/System.Security.Cryptography.OpenSsl.dll deleted file mode 100644 index df3a3a9..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Security.Cryptography.OpenSsl.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Security.Cryptography.Primitives.dll b/linguard/core/bin/Debug/net6.0/ref/System.Security.Cryptography.Primitives.dll deleted file mode 100644 index 21222a6..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Security.Cryptography.Primitives.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Security.Cryptography.X509Certificates.dll b/linguard/core/bin/Debug/net6.0/ref/System.Security.Cryptography.X509Certificates.dll deleted file mode 100644 index eee372d..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Security.Cryptography.X509Certificates.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Security.Principal.Windows.dll b/linguard/core/bin/Debug/net6.0/ref/System.Security.Principal.Windows.dll deleted file mode 100644 index 9a3798b..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Security.Principal.Windows.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Security.Principal.dll b/linguard/core/bin/Debug/net6.0/ref/System.Security.Principal.dll deleted file mode 100644 index 0dbfa46..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Security.Principal.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Security.SecureString.dll b/linguard/core/bin/Debug/net6.0/ref/System.Security.SecureString.dll deleted file mode 100644 index 7299b40..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Security.SecureString.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Security.dll b/linguard/core/bin/Debug/net6.0/ref/System.Security.dll deleted file mode 100644 index b83e96a..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Security.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.ServiceModel.Web.dll b/linguard/core/bin/Debug/net6.0/ref/System.ServiceModel.Web.dll deleted file mode 100644 index a4d4e0f..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.ServiceModel.Web.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.ServiceProcess.dll b/linguard/core/bin/Debug/net6.0/ref/System.ServiceProcess.dll deleted file mode 100644 index 86c09dc..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.ServiceProcess.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Text.Encoding.CodePages.dll b/linguard/core/bin/Debug/net6.0/ref/System.Text.Encoding.CodePages.dll deleted file mode 100644 index 5ce72b1..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Text.Encoding.CodePages.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Text.Encoding.Extensions.dll b/linguard/core/bin/Debug/net6.0/ref/System.Text.Encoding.Extensions.dll deleted file mode 100644 index 05e497a..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Text.Encoding.Extensions.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Text.Encoding.dll b/linguard/core/bin/Debug/net6.0/ref/System.Text.Encoding.dll deleted file mode 100644 index 46c5400..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Text.Encoding.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Text.Encodings.Web.dll b/linguard/core/bin/Debug/net6.0/ref/System.Text.Encodings.Web.dll deleted file mode 100644 index f2b10eb..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Text.Encodings.Web.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Text.Json.dll b/linguard/core/bin/Debug/net6.0/ref/System.Text.Json.dll deleted file mode 100644 index 37851d2..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Text.Json.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Text.RegularExpressions.dll b/linguard/core/bin/Debug/net6.0/ref/System.Text.RegularExpressions.dll deleted file mode 100644 index 983cbbd..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Text.RegularExpressions.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Threading.Channels.dll b/linguard/core/bin/Debug/net6.0/ref/System.Threading.Channels.dll deleted file mode 100644 index 34ae646..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Threading.Channels.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Threading.Overlapped.dll b/linguard/core/bin/Debug/net6.0/ref/System.Threading.Overlapped.dll deleted file mode 100644 index 9092609..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Threading.Overlapped.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Threading.Tasks.Dataflow.dll b/linguard/core/bin/Debug/net6.0/ref/System.Threading.Tasks.Dataflow.dll deleted file mode 100644 index 0731d06..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Threading.Tasks.Dataflow.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Threading.Tasks.Extensions.dll b/linguard/core/bin/Debug/net6.0/ref/System.Threading.Tasks.Extensions.dll deleted file mode 100644 index e5840ae..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Threading.Tasks.Extensions.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Threading.Tasks.Parallel.dll b/linguard/core/bin/Debug/net6.0/ref/System.Threading.Tasks.Parallel.dll deleted file mode 100644 index 5bec78b..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Threading.Tasks.Parallel.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Threading.Tasks.dll b/linguard/core/bin/Debug/net6.0/ref/System.Threading.Tasks.dll deleted file mode 100644 index 04704d0..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Threading.Tasks.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Threading.Thread.dll b/linguard/core/bin/Debug/net6.0/ref/System.Threading.Thread.dll deleted file mode 100644 index de9a348..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Threading.Thread.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Threading.ThreadPool.dll b/linguard/core/bin/Debug/net6.0/ref/System.Threading.ThreadPool.dll deleted file mode 100644 index efab9c3..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Threading.ThreadPool.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Threading.Timer.dll b/linguard/core/bin/Debug/net6.0/ref/System.Threading.Timer.dll deleted file mode 100644 index 718a039..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Threading.Timer.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Threading.dll b/linguard/core/bin/Debug/net6.0/ref/System.Threading.dll deleted file mode 100644 index d697919..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Threading.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Transactions.Local.dll b/linguard/core/bin/Debug/net6.0/ref/System.Transactions.Local.dll deleted file mode 100644 index 03df1fb..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Transactions.Local.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Transactions.dll b/linguard/core/bin/Debug/net6.0/ref/System.Transactions.dll deleted file mode 100644 index 1bd2e0a..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Transactions.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.ValueTuple.dll b/linguard/core/bin/Debug/net6.0/ref/System.ValueTuple.dll deleted file mode 100644 index b6103f6..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.ValueTuple.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Web.HttpUtility.dll b/linguard/core/bin/Debug/net6.0/ref/System.Web.HttpUtility.dll deleted file mode 100644 index c77ebab..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Web.HttpUtility.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Web.dll b/linguard/core/bin/Debug/net6.0/ref/System.Web.dll deleted file mode 100644 index d04d5e3..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Web.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Windows.dll b/linguard/core/bin/Debug/net6.0/ref/System.Windows.dll deleted file mode 100644 index 9133038..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Windows.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Xml.Linq.dll b/linguard/core/bin/Debug/net6.0/ref/System.Xml.Linq.dll deleted file mode 100644 index d8aa5cd..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Xml.Linq.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Xml.ReaderWriter.dll b/linguard/core/bin/Debug/net6.0/ref/System.Xml.ReaderWriter.dll deleted file mode 100644 index 66f199d..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Xml.ReaderWriter.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Xml.Serialization.dll b/linguard/core/bin/Debug/net6.0/ref/System.Xml.Serialization.dll deleted file mode 100644 index 92bc678..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Xml.Serialization.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Xml.XDocument.dll b/linguard/core/bin/Debug/net6.0/ref/System.Xml.XDocument.dll deleted file mode 100644 index 5ba2260..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Xml.XDocument.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Xml.XPath.XDocument.dll b/linguard/core/bin/Debug/net6.0/ref/System.Xml.XPath.XDocument.dll deleted file mode 100644 index be27c4e..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Xml.XPath.XDocument.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Xml.XPath.dll b/linguard/core/bin/Debug/net6.0/ref/System.Xml.XPath.dll deleted file mode 100644 index 22482d8..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Xml.XPath.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Xml.XmlDocument.dll b/linguard/core/bin/Debug/net6.0/ref/System.Xml.XmlDocument.dll deleted file mode 100644 index 20d0fac..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Xml.XmlDocument.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Xml.XmlSerializer.dll b/linguard/core/bin/Debug/net6.0/ref/System.Xml.XmlSerializer.dll deleted file mode 100644 index 0a1664c..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Xml.XmlSerializer.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.Xml.dll b/linguard/core/bin/Debug/net6.0/ref/System.Xml.dll deleted file mode 100644 index f2b768e..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.Xml.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/System.dll b/linguard/core/bin/Debug/net6.0/ref/System.dll deleted file mode 100644 index 9e8d0a4..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/System.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/WindowsBase.dll b/linguard/core/bin/Debug/net6.0/ref/WindowsBase.dll deleted file mode 100644 index 1032969..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/WindowsBase.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/mscorlib.dll b/linguard/core/bin/Debug/net6.0/ref/mscorlib.dll deleted file mode 100644 index 31e8f9b..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/mscorlib.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/ref/netstandard.dll b/linguard/core/bin/Debug/net6.0/ref/netstandard.dll deleted file mode 100644 index 1452256..0000000 Binary files a/linguard/core/bin/Debug/net6.0/ref/netstandard.dll and /dev/null differ diff --git a/linguard/core/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 b/linguard/core/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 deleted file mode 100644 index 53e9bc5..0000000 --- a/linguard/core/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 +++ /dev/null @@ -1,14 +0,0 @@ -@{ -GUID="56D66100-99A0-4FFC-A12D-EEE9A6718AEF" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -FunctionsToExport = @() -CmdletsToExport="Start-Transcript", "Stop-Transcript" -AliasesToExport = @() -NestedModules="Microsoft.PowerShell.ConsoleHost.dll" -HelpInfoURI = 'https://aka.ms/powershell72-help' -} diff --git a/linguard/core/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 b/linguard/core/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 deleted file mode 100644 index 8d4d985..0000000 --- a/linguard/core/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 +++ /dev/null @@ -1,60 +0,0 @@ -@{ -GUID="EEFCB906-B326-4E99-9F54-8B4BB6EF3C6D" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -NestedModules="Microsoft.PowerShell.Commands.Management.dll" -HelpInfoURI = 'https://aka.ms/powershell72-help' -FunctionsToExport = @() -AliasesToExport = @("gcb", "gtz", "scb") -CmdletsToExport=@("Add-Content", - "Clear-Content", - "Clear-ItemProperty", - "Join-Path", - "Convert-Path", - "Copy-ItemProperty", - "Get-ChildItem", - "Get-Clipboard", - "Set-Clipboard", - "Get-Content", - "Get-ItemProperty", - "Get-ItemPropertyValue", - "Move-ItemProperty", - "Get-Location", - "Set-Location", - "Push-Location", - "Pop-Location", - "New-PSDrive", - "Remove-PSDrive", - "Get-PSDrive", - "Get-Item", - "New-Item", - "Set-Item", - "Remove-Item", - "Move-Item", - "Rename-Item", - "Copy-Item", - "Clear-Item", - "Invoke-Item", - "Get-PSProvider", - "New-ItemProperty", - "Split-Path", - "Test-Path", - "Get-Process", - "Stop-Process", - "Wait-Process", - "Debug-Process", - "Start-Process", - "Test-Connection", - "Remove-ItemProperty", - "Rename-ItemProperty", - "Resolve-Path", - "Set-Content", - "Set-ItemProperty", - "Get-TimeZone", - "Stop-Computer", - "Restart-Computer") -} diff --git a/linguard/core/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 b/linguard/core/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 deleted file mode 100644 index 9c9f978..0000000 --- a/linguard/core/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 +++ /dev/null @@ -1,14 +0,0 @@ -@{ -GUID="A94C8C7E-9810-47C0-B8AF-65089C13A35A" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -FunctionsToExport = @() -CmdletsToExport="Get-Credential", "Get-ExecutionPolicy", "Set-ExecutionPolicy", "ConvertFrom-SecureString", "ConvertTo-SecureString", "Get-PfxCertificate" , "Protect-CmsMessage", "Unprotect-CmsMessage", "Get-CmsMessage" -AliasesToExport = @() -NestedModules="Microsoft.PowerShell.Security.dll" -HelpInfoURI = 'https://aka.ms/powershell72-help' -} diff --git a/linguard/core/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 b/linguard/core/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 deleted file mode 100644 index 8efcaa0..0000000 --- a/linguard/core/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 +++ /dev/null @@ -1,34 +0,0 @@ -@{ -GUID = "1DA87E53-152B-403E-98DC-74D7B4D63D59" -Author = "PowerShell" -CompanyName = "Microsoft Corporation" -Copyright = "Copyright (c) Microsoft Corporation." -ModuleVersion = "7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion = "3.0" -CmdletsToExport = @( - 'Export-Alias', 'Get-Alias', 'Import-Alias', 'New-Alias', 'Remove-Alias', 'Set-Alias', 'Export-Clixml', - 'Import-Clixml', 'Measure-Command', 'Trace-Command', 'ConvertFrom-Csv', 'ConvertTo-Csv', 'Export-Csv', - 'Import-Csv', 'Get-Culture', 'Format-Custom', 'Get-Date', 'Set-Date', 'Write-Debug', 'Wait-Debugger', - 'Register-EngineEvent', 'Write-Error', 'Get-Event', 'New-Event', 'Remove-Event', 'Unregister-Event', - 'Wait-Event', 'Get-EventSubscriber', 'Invoke-Expression', 'Out-File', 'Get-FileHash', 'Export-FormatData', - 'Get-FormatData', 'Update-FormatData', 'New-Guid', 'Format-Hex', 'Get-Host', 'Read-Host', 'Write-Host', - 'ConvertTo-Html', 'Write-Information', 'ConvertFrom-Json', 'ConvertTo-Json', 'Test-Json', 'Format-List', - 'Import-LocalizedData', 'Send-MailMessage', 'ConvertFrom-Markdown', 'Show-Markdown', 'Get-MarkdownOption', - 'Set-MarkdownOption', 'Add-Member', 'Get-Member', 'Compare-Object', 'Group-Object', 'Measure-Object', - 'New-Object', 'Select-Object', 'Sort-Object', 'Tee-Object', 'Register-ObjectEvent', 'Write-Output', - 'Import-PowerShellDataFile', 'Write-Progress', 'Disable-PSBreakpoint', 'Enable-PSBreakpoint', - 'Get-PSBreakpoint', 'Remove-PSBreakpoint', 'Set-PSBreakpoint', 'Get-PSCallStack', 'Export-PSSession', - 'Import-PSSession', 'Get-Random', 'Invoke-RestMethod', 'Debug-Runspace', 'Get-Runspace', - 'Disable-RunspaceDebug', 'Enable-RunspaceDebug', 'Get-RunspaceDebug', 'Start-Sleep', 'Join-String', - 'Out-String', 'Select-String', 'ConvertFrom-StringData', 'Format-Table', 'New-TemporaryFile', 'New-TimeSpan', - 'Get-TraceSource', 'Set-TraceSource', 'Add-Type', 'Get-TypeData', 'Remove-TypeData', 'Update-TypeData', - 'Get-UICulture', 'Get-Unique', 'Get-Uptime', 'Clear-Variable', 'Get-Variable', 'New-Variable', - 'Remove-Variable', 'Set-Variable', 'Get-Verb', 'Write-Verbose', 'Write-Warning', 'Invoke-WebRequest', - 'Format-Wide', 'ConvertTo-Xml', 'Select-Xml', 'Get-Error', 'Update-List', 'Unblock-File' -) -FunctionsToExport = @() -AliasesToExport = @('fhx') -NestedModules = @("Microsoft.PowerShell.Commands.Utility.dll") -HelpInfoURI = 'https://aka.ms/powershell72-help' -} diff --git a/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/CimCmdlets/CimCmdlets.psd1 b/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/CimCmdlets/CimCmdlets.psd1 deleted file mode 100644 index 9c74ac8..0000000 --- a/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/CimCmdlets/CimCmdlets.psd1 +++ /dev/null @@ -1,233 +0,0 @@ -@{ -GUID="{Fb6cc51d-c096-4b38-b78d-0fed6277096a}" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -RootModule="Microsoft.Management.Infrastructure.CimCmdlets" -RequiredAssemblies="Microsoft.Management.Infrastructure.CimCmdlets.dll","Microsoft.Management.Infrastructure.Dll" -FunctionsToExport = @() -CmdletsToExport= "Get-CimAssociatedInstance", "Get-CimClass", "Get-CimInstance", "Get-CimSession", "Invoke-CimMethod", - "New-CimInstance","New-CimSession","New-CimSessionOption","Register-CimIndicationEvent","Remove-CimInstance", - "Remove-CimSession","Set-CimInstance", - "Export-BinaryMiLog","Import-BinaryMiLog" -AliasesToExport = "gcim","scim","ncim", "rcim","icim","gcai","rcie","ncms","rcms","gcms","ncso","gcls" -HelpInfoUri="https://aka.ms/powershell72-help" -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCDVr9wtf0/6ef8P -# 7Oewmh6e4caAvboErstvAWik/E+xjqCCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQggKe1Wa+d -# fYvru2vipTPxs79u032BOtU/CXLz68NBYs0wQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQB0Sx7LIYYO505eD5CAwvSG6wwrjjzKL/MSFiL9Nh0Q -# YDyFIX4UsB617gQ/OLzvBaXpzuGbkzdtbxGuknwe5pNeLgzdAPj8f3aMfNM7JnL0 -# Pu6HUmHuaD11aY9bOOoddRWRZDGoSMXaPXvTHGXo8lk672+n6e2SNB28QG1ASAt7 -# 20qZLgr0ujUBlUe4zyg5MxZseqjEGR3bsUSltPOu2F107jcNqj1YZ/HXJHCAniSd -# XdMRipCWeydTNPpPLCWVtcjTyxXnJoDbTEVtyOpFx/0YxCgazCDY0ae+QKzp7sNe -# qbnNd30/F9pJ2S3hu9z9RcpgxbYDIHchMVO970sQOyvNoYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIAaCwImJ8DxZ2FNq1L4wuBej3xtvL6SPai8XFzEz -# uLyVAgZhlV4Kp6EYEzIwMjExMjA4MjEwNDEzLjk2M1owBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046MkFENC00QjkyLUZBMDExJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYZ45RmJ+CRL -# zAABAAABhjANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3MzlaFw0yMzAxMjYxOTI3MzlaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjJBRDQtNEI5Mi1GQTAxMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwI3G2Wpv -# 6B4IjAfrgfJpndPOPYO1Yd8+vlfoIxMW3gdCDT+zIbafg14pOu0t0ekUQx60p7Pa -# dH4OjnqNIE1q6ldH9ntj1gIdl4Hq4rdEHTZ6JFdE24DSbVoqqR+R4Iw4w3GPbfc2 -# Q3kfyyFyj+DOhmCWw/FZiTVTlT4bdejyAW6r/Jn4fr3xLjbvhITatr36VyyzgQ0Y -# 4Wr73H3gUcLjYu0qiHutDDb6+p+yDBGmKFznOW8wVt7D+u2VEJoE6JlK0EpVLZus -# dSzhecuUwJXxb2uygAZXlsa/fHlwW9YnlBqMHJ+im9HuK5X4x8/5B5dkuIoX5lWG -# jFMbD2A6Lu/PmUB4hK0CF5G1YaUtBrME73DAKkypk7SEm3BlJXwY/GrVoXWYUGEH -# yfrkLkws0RoEMpoIEgebZNKqjRynRJgR4fPCKrEhwEiTTAc4DXGci4HHOm64EQ1g -# /SDHMFqIKVSxoUbkGbdKNKHhmahuIrAy4we9s7rZJskveZYZiDmtAtBt/gQojxbZ -# 1vO9C11SthkrmkkTMLQf9cDzlVEBeu6KmHX2Sze6ggne3I4cy/5IULnHZ3rM4ZpJ -# c0s2KpGLHaVrEQy4x/mAn4yaYfgeH3MEAWkVjy/qTDh6cDCF/gyz3TaQDtvFnAK7 -# 0LqtbEvBPdBpeCG/hk9l0laYzwiyyGY/HqMCAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBQZtqNFA+9mdEu/h33UhHMN6whcLjAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQDD7mehJY3fTHKC4hj+wBWB8544 -# uaJiMMIHnhK9ONTM7VraTYzx0U/TcLJ6gxw1tRzM5uu8kswJNlHNp7RedsAiwviV -# QZV9AL8IbZRLJTwNehCwk+BVcY2gh3ZGZmx8uatPZrRueyhhTTD2PvFVLrfwh2li -# DG/dEPNIHTKj79DlEcPIWoOCUp7p0ORMwQ95kVaibpX89pvjhPl2Fm0CBO3pXXJg -# 0bydpQ5dDDTv/qb0+WYF/vNVEU/MoMEQqlUWWuXECTqx6TayJuLJ6uU7K5QyTkQ/ -# l24IhGjDzf5AEZOrINYzkWVyNfUOpIxnKsWTBN2ijpZ/Tun5qrmo9vNIDT0lobgn -# ulae17NaEO9oiEJJH1tQ353dhuRi+A00PR781iYlzF5JU1DrEfEyNx8CWgERi90L -# KsYghZBCDjQ3DiJjfUZLqONeHrJfcmhz5/bfm8+aAaUPpZFeP0g0Iond6XNk4YiY -# bWPFoofc0LwcqSALtuIAyz6f3d+UaZZsp41U4hCIoGj6hoDIuU839bo/mZ/AgESw -# GxIXs0gZU6A+2qIUe60QdA969wWSzucKOisng9HCSZLF1dqc3QUawr0C0U41784K -# o9vckAG3akwYuVGcs6hM/SqEhoe9jHwe4Xp81CrTB1l9+EIdukCbP0kyzx0WZzte -# eiDN5rdiiQR9mBJuljCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046MkFENC00Qjky -# LUZBMDExJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVAAGu2DRzWkKljmXySX1korHL4fMnoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tXMCIY -# DzIwMjExMjA5MDM1MTUxWhgPMjAyMTEyMTAwMzUxNTFaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi1cCAQAwCgIBAAICFmICAf8wBwIBAAICEh0wCgIFAOVc3NcC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQAcxjpqy9KLSwM37+FXLc0BH8vQ -# bi/JiOUtzx1U3w8DY7ed3asVEpLwGzUKiZ6rI29ZJuKH6YlwiWrAcHP9QgQnWNwg -# LXWMiZLEeOE63JCAWeL4odLTq1DKced93+APIOfcpQ1ap6X/BY4fKpscksm/q98S -# mmAs+7pjsbcUGpWLtzGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABhnjlGYn4JEvMAAEAAAGGMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEINEG -# q0+SCFYCT6sOQMZPpgnAOe4W2XF/PwFbVzs1WLMVMIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgGpmI4LIsCFTGiYyfRAR7m7Fa2guxVNIw17mcAiq8Qn4wgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYZ45RmJ+CRL -# zAABAAABhjAiBCAUmIgeNWf4KXB+/obIOhBMrPwiJ83+1ebXflyLLm9rjjANBgkq -# hkiG9w0BAQsFAASCAgBXBmO2FJAq4az5Z1fXe3nTGflWCimqnMzUudZ0JD5Omi9t -# KDRFGDjYxgAo4r26b3zc73bN/7kkUkJwwdDc2RsABuzjHa04XSfIbry8JwBw7utB -# lwotvUH6Wa22GXu0POFqMEywdRl2x4XM04hgdUfZdWznuVRzZACn1NIfYhjmsL97 -# WMTYX7dx4OVEIFWriI/R5+8p0IXDgLe3AxdrTSedGeQFgsbEvLRkVmU0m3Qsb3Qb -# V+Ds1llgS06AFYlJzgcSbBdr/6gU7V1s3EcH2z4GjPCs2rYmVIZ6XCwkn0no2vc9 -# jEHbLtaBZ7VJ/r3Xvbj/GEYdUbGgVAIdpDFnBKsamV/Z2X9eZZSIxjTnBdh4fdkJ -# 29TRUahZywqEtJWP7LOvjlIHK3Ri9AxxkJrGDhIyvJeOGT6fzT/SvWeHkAoqeGpp -# lqXzs/p5d1rsqFAST8pTTWVXItcmO84qO3+1is32A9nh1ngDva7RGXdsh3+kkobP -# eZkn0HnUxV0OUYgINHsDiCeDhwfElDpvix6/F+1S3yApsfT10k09qOWKBAxq1P7p -# j2Iih/xwZUTOwsPHTvczh8yrOAwVQoWiHKgNKXE4GyZmNAV2oUH0goTkTjqCOw7z -# /7UFMEhbEHABlSIKOQU/1hXDY4d07sfBlWPHskx8A+Yq7rTeFVPcXSnUUcqjcg== -# SIG # End signature block diff --git a/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml b/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml deleted file mode 100644 index 8887031..0000000 --- a/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml +++ /dev/null @@ -1,294 +0,0 @@ - - - - - - - - Counter - - Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSampleSet - - - - - - 25 - left - - - - left - 100 - - - - - - - - Timestamp - - - Readings - - - - - - - - Counter - - Microsoft.PowerShell.Commands.GetCounter.CounterFileInfo - - - - - 30 - left - - - 30 - left - - - 30 - left - - - - - - - - OldestRecord - - - NewestRecord - - - SampleCount - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml b/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml deleted file mode 100644 index 3cb0478..0000000 --- a/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml +++ /dev/null @@ -1,336 +0,0 @@ - - - - - Default - - System.Diagnostics.Eventing.Reader.EventLogRecord - - - ProviderName - - - - - - 25 - - - 8 - right - - - 16 - - - - - - - - - TimeCreated - - - Id - - - LevelDisplayName - - - Message - - - - - - - - - Default - - System.Diagnostics.Eventing.Reader.EventLogConfiguration - - - - - - - 9 - - - - 18 - right - - - - 11 - right - - - - - - - - LogMode - - - MaximumSizeInBytes - - - RecordCount - - - LogName - - - - - - - - Default - - System.Diagnostics.Eventing.Reader.ProviderMetadata - - - - - - - Name - - - LogLinks - - - Opcodes - - - Tasks - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml b/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml deleted file mode 100644 index a365f67..0000000 --- a/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml +++ /dev/null @@ -1,354 +0,0 @@ - - - - - - System.Diagnostics.Eventing.Reader.EventLogConfiguration - - - PSStandardMembers - - - DefaultDisplayPropertySet - - LogName - MaximumSizeInBytes - RecordCount - LogMode - - - - - - - - System.Diagnostics.Eventing.Reader.EventLogRecord - - - PSStandardMembers - - - DefaultDisplayPropertySet - - TimeCreated - ProviderName - Id - Message - - - - - - - - System.Diagnostics.Eventing.Reader.ProviderMetadata - - - ProviderName - Name - - - PSStandardMembers - - - DefaultDisplayPropertySet - - Name - LogLinks - - - - - - - - Microsoft.PowerShell.Commands.GetCounter.CounterSet - - - Counter - Paths - - - - - Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSample - - - PSStandardMembers - - - DefaultDisplayPropertySet - - Path - InstanceName - CookedValue - - - - - - - - Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSampleSet - - - PSStandardMembers - - - DefaultDisplayPropertySet - - Timestamp - Readings - - - - - - - - Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSampleSet - - - Readings - - $strPaths = "" - foreach ($ctr in $this.CounterSamples) - { - $strPaths += ($ctr.Path + " :" + "`n") - $strPaths += ($ctr.CookedValue.ToString() + "`n`n") - } - return $strPaths - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1 b/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1 deleted file mode 100644 index 880d7aa..0000000 --- a/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1 +++ /dev/null @@ -1,231 +0,0 @@ -@{ -GUID="CA046F10-CA64-4740-8FF9-2565DBA61A4F" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -FunctionsToExport = @() -CmdletsToExport="Get-WinEvent", "New-WinEvent", "Get-Counter" -AliasesToExport = @() -NestedModules="Microsoft.PowerShell.Commands.Diagnostics.dll" -TypesToProcess="GetEvent.types.ps1xml" -FormatsToProcess="Event.format.ps1xml", "Diagnostics.format.ps1xml" -HelpInfoURI = 'https://aka.ms/powershell72-help' -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCDPn0/Kw53z57yO -# 1TekDBJE1OmAf8RR94VaWe+Hq0qiG6CCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgODWoe2T6 -# RL6c8rlTHF90KQETb+lXsgMFPg5sa5qcVO8wQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQArTuRkyGCIWatxzP2XmCe8MGk2psH1zX2CtsCxq8Ap -# llWPArMeb/LjOcajbM5kypCRRAbwRz6aDbnQHt8odHEoRZU7pTPP6Gi5YLzfXy5B -# 0ww61qNEDWQD3Js4U0r/D5Bvbm0ewiX+JmBEh1lhTJYzIp8iXuTH3qe9bhKKb++x -# iTOWvO8/HgtkFqax0G4FyoGpyhcxGzGI0hzjTE+8qabrKI0VtLQ4FlvNluxrfISs -# nx56dtXmf0jiOSCWuGbtKydeTR6wtK8b8RfXdSfUfI2TbFk+nuTk9OADnpMxw87X -# rpiALWuM8oSYj9xv4oUCw6fsjnuryMRoM59K86mOjXkEoYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIBHzUJcs5FFt55Hx994HtkOYw1sXWAszphHUNgXU -# AU+vAgZhlV4Kp54YEzIwMjExMjA4MjEwNDEzLjc5NlowBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046MkFENC00QjkyLUZBMDExJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYZ45RmJ+CRL -# zAABAAABhjANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3MzlaFw0yMzAxMjYxOTI3MzlaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjJBRDQtNEI5Mi1GQTAxMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwI3G2Wpv -# 6B4IjAfrgfJpndPOPYO1Yd8+vlfoIxMW3gdCDT+zIbafg14pOu0t0ekUQx60p7Pa -# dH4OjnqNIE1q6ldH9ntj1gIdl4Hq4rdEHTZ6JFdE24DSbVoqqR+R4Iw4w3GPbfc2 -# Q3kfyyFyj+DOhmCWw/FZiTVTlT4bdejyAW6r/Jn4fr3xLjbvhITatr36VyyzgQ0Y -# 4Wr73H3gUcLjYu0qiHutDDb6+p+yDBGmKFznOW8wVt7D+u2VEJoE6JlK0EpVLZus -# dSzhecuUwJXxb2uygAZXlsa/fHlwW9YnlBqMHJ+im9HuK5X4x8/5B5dkuIoX5lWG -# jFMbD2A6Lu/PmUB4hK0CF5G1YaUtBrME73DAKkypk7SEm3BlJXwY/GrVoXWYUGEH -# yfrkLkws0RoEMpoIEgebZNKqjRynRJgR4fPCKrEhwEiTTAc4DXGci4HHOm64EQ1g -# /SDHMFqIKVSxoUbkGbdKNKHhmahuIrAy4we9s7rZJskveZYZiDmtAtBt/gQojxbZ -# 1vO9C11SthkrmkkTMLQf9cDzlVEBeu6KmHX2Sze6ggne3I4cy/5IULnHZ3rM4ZpJ -# c0s2KpGLHaVrEQy4x/mAn4yaYfgeH3MEAWkVjy/qTDh6cDCF/gyz3TaQDtvFnAK7 -# 0LqtbEvBPdBpeCG/hk9l0laYzwiyyGY/HqMCAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBQZtqNFA+9mdEu/h33UhHMN6whcLjAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQDD7mehJY3fTHKC4hj+wBWB8544 -# uaJiMMIHnhK9ONTM7VraTYzx0U/TcLJ6gxw1tRzM5uu8kswJNlHNp7RedsAiwviV -# QZV9AL8IbZRLJTwNehCwk+BVcY2gh3ZGZmx8uatPZrRueyhhTTD2PvFVLrfwh2li -# DG/dEPNIHTKj79DlEcPIWoOCUp7p0ORMwQ95kVaibpX89pvjhPl2Fm0CBO3pXXJg -# 0bydpQ5dDDTv/qb0+WYF/vNVEU/MoMEQqlUWWuXECTqx6TayJuLJ6uU7K5QyTkQ/ -# l24IhGjDzf5AEZOrINYzkWVyNfUOpIxnKsWTBN2ijpZ/Tun5qrmo9vNIDT0lobgn -# ulae17NaEO9oiEJJH1tQ353dhuRi+A00PR781iYlzF5JU1DrEfEyNx8CWgERi90L -# KsYghZBCDjQ3DiJjfUZLqONeHrJfcmhz5/bfm8+aAaUPpZFeP0g0Iond6XNk4YiY -# bWPFoofc0LwcqSALtuIAyz6f3d+UaZZsp41U4hCIoGj6hoDIuU839bo/mZ/AgESw -# GxIXs0gZU6A+2qIUe60QdA969wWSzucKOisng9HCSZLF1dqc3QUawr0C0U41784K -# o9vckAG3akwYuVGcs6hM/SqEhoe9jHwe4Xp81CrTB1l9+EIdukCbP0kyzx0WZzte -# eiDN5rdiiQR9mBJuljCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046MkFENC00Qjky -# LUZBMDExJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVAAGu2DRzWkKljmXySX1korHL4fMnoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tXMCIY -# DzIwMjExMjA5MDM1MTUxWhgPMjAyMTEyMTAwMzUxNTFaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi1cCAQAwCgIBAAICFmICAf8wBwIBAAICEh0wCgIFAOVc3NcC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQAcxjpqy9KLSwM37+FXLc0BH8vQ -# bi/JiOUtzx1U3w8DY7ed3asVEpLwGzUKiZ6rI29ZJuKH6YlwiWrAcHP9QgQnWNwg -# LXWMiZLEeOE63JCAWeL4odLTq1DKced93+APIOfcpQ1ap6X/BY4fKpscksm/q98S -# mmAs+7pjsbcUGpWLtzGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABhnjlGYn4JEvMAAEAAAGGMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIIOe -# Fteykp3uhjp/CbUuslldSIpFBtmy2s0K3N7X+v4KMIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgGpmI4LIsCFTGiYyfRAR7m7Fa2guxVNIw17mcAiq8Qn4wgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYZ45RmJ+CRL -# zAABAAABhjAiBCAUmIgeNWf4KXB+/obIOhBMrPwiJ83+1ebXflyLLm9rjjANBgkq -# hkiG9w0BAQsFAASCAgBf6Fat07wOy6aoLnxthDrldarQW8T2Ds6iTbNLhloJSJ1O -# Iu3QX6b7ktkdWHUtcOrW6wQ5y/EpoKQgPvT4+bs6e9QgdZqsz31NAecxGcivBfQz -# nxE8j6o46ky4HWO46ppqFjrz4ENa0ELpE8LC4fQC2h4N1EQPNkh9MQMunYZSK2Ck -# ritrVAuivl6vaeuVJyNBh0G20owR+ZDTocTnZYnOi4DqgKsrqe/8Q+kmQPmMZpig -# 3brD1Lg5JT/0zGlwNqvarcBJHRidNXrVJLxiHIcDTg4rwD+T4FN8EAbg+ioyv47T -# I6Ob7+gcrL2UdhVkZSUSqdVQVIX1V2SvP41TSHx7UCptCG0MaPiWYN5IGFlSKdRf -# hDv8Qb1cjW/wq3yQMBQBkV1g7CO48FoHlOl45b7dzXvn0b8LsYj2+gYfqzbJqacZ -# FOCrSVKIq5rlJAFKYra81Lzuryl3hpeXsREPc80w6gBZuwtq3ML/Z0YN7/rQQTs2 -# tsGyS4Ti76HltquYmkkQEfan1uk0RU91wujLFd7KZ3urFVvjqsqH9zSpxp7pCKT7 -# Sh6wf0zmG4SBX5DVQ0sHERamwpv6dqdDuadT3j9hnmsktM8uozim4Zzz0KI4DN1p -# IJE2x0YOHgYqr91aJMwULeVv3gGpcMUx6d08hSS6RDA7ne+UhH226yoyJsaYcQ== -# SIG # End signature block diff --git a/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 b/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 deleted file mode 100644 index 5d9ffc6..0000000 --- a/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 +++ /dev/null @@ -1,229 +0,0 @@ -@{ -GUID="56D66100-99A0-4FFC-A12D-EEE9A6718AEF" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -FunctionsToExport = @() -CmdletsToExport="Start-Transcript", "Stop-Transcript" -AliasesToExport = @() -NestedModules="Microsoft.PowerShell.ConsoleHost.dll" -HelpInfoURI = 'https://aka.ms/powershell72-help' -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCCAN6qOMSgIZSKy -# niFjiV1FZGi6ofshkAXyBqiHSReb1aCCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgkynSeA0x -# XjLakAqmd0XMmOd0Xz2RQ1n1Heu6kO1y5N0wQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQBp+M1foZUndpZVBWaBgxj5ssitpnOInfqiMoO3MG1s -# H2bxWJO09yPVWWu1/hkCjpRID00eSBj71TcZ/C1ZkQimhy2bxMM7YjngYf1A20r7 -# Luw3ZbAOPs92h91TG0a1L2PJa7rjJy57BgwnHFTgNrWkCR7VXElf2LnjCbONyJPy -# rVNLQaGGM78KKhd6Tp2LDd+R8sT19o2lD5bBrVubPim3XifI6hn4f66a1no72w3S -# 9ol7radXalJgKkxKzQnAVHPiOB+GAL/J457mswnvP+eRD/kUlEPsFRCVEMKejOdo -# 69jQhGOZJH0CuLU1HlhzU6X/poT4dnIJ9d+aCMX0cfE6oYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIJb96bqFa1hrFgpYPU2ayB0LEBtlTfOe8EwuWTs9 -# L81TAgZhlV4jeFAYEzIwMjExMjA4MjEwNDEzLjY4NVowBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046OEQ0MS00QkY3LUIzQjcxJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYguzcaBQeG8 -# KgABAAABiDANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3NDBaFw0yMzAxMjYxOTI3NDBaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjhENDEtNEJGNy1CM0I3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAmucQCAQm -# kcXHyDrV4S88VeJg2XGqNKcWpsrapRKFWchhjLsf/M9XN9bgznLN48BXPAtOlwoe -# dB2kN4bZdPP3KdRNbYq1tNFUh8UnmjCCr+CjLlrigHcmS0R+rsN2gBMXlLEZh2W/ -# COuD9VOLsb2P2jDp433V4rUAAUW82M7rg81d3OcctO+1XW1h3EtbQtS6QEkw6DYI -# uvfX7Aw8jXHZnsMugP8ZA1otprpTNUh/zRWC7CJyBzymQIDSCdWhVfD4shxe+Rs6 -# 1axf27bTg5H/V/SkNd9hzM6Nq/y2OjDKrLtuN9hS53569uhTNQeAhAVDfeHpEzlM -# vtXOyX6MTme3jnHdHPj6GLT9AMRIrAf96hPYOiPEBvHtrg6MpiI3+l6NlbSOs16/ -# FTeljT1+sdsWGtFTZvea9pAqV1aB795aDkmZ6sRm5jtdnVazfoWrHd3vDeh35WV0 -# 8vW4TlOfEcV2+KbairPxaFkJ4+tlsJ+MfsVOiTr/ZnDgaMaHnzzogelI3AofDU9I -# TbMkTtTxrLPygTbRdtbptrnLzBn2jzR4TJfkQo+hzWuaMu5OtMZiKV2I5MO0m1mK -# uUAgoq+442Lw8CQuj9EC2F8nTbJb2NcUDg+74dgJis/P8Ba/OrlxW+Trgc6TPGxC -# OtT739UqeslvWD6rNQ6UEO9f7vWDkhd2vtsCAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBRkebVQxKO7zru9+o27GjPljMlKSjAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQBAEFrb+1gIJsv/GKLS2zavm2ek -# 177mk4yu6BuS6ViIuL0e20YN2ddXeiUhEdhk3FRto/GD93k5SIyNJ6X+p8uQMOxI -# 23YOSdyEzLJwh7+ftu0If8y3x6AJ0S1d12OZ7fsYqljHUeccneS9DWqipHk8uM8m -# 2ZbBhRnUN8M4iqg4roJGmZKZ9Fc8Z7ZHJgM97i7fIyA9hJH017z25WrDJlxapD5d -# mMyNyzzfAVqaByemCoBn4VkRCGNISx0xRlcb93W6ENhJF1NBjMl3cKVEHW4d8Y0N -# ZhpdXDteLk9HgbJyeCI2fN9GBrCS1B1ak+194PGiZKL8+gtK7NorAoAMQvFkYgrH -# rWCYfjV6PouC3N+A6wOBrckVOHT9PUIDK5ADCH4ZraQideS9LD/imKHM3I4iazPk -# ocHcFHB9yo5d9lMJZ+pnAAWglQQjMWhUqnE/llA+EqjbO0lAxlmUtVioVUswhT3p -# K6DjFRXM/LUxwTttufz1zBjELkRIZ8uCy1YkMxfBFwEos/QFIlDaFSvUn4IiWZA3 -# VLfAEjy51iJwK2jSIHw+1bjCI+FBHcCTRH2pP3+h5DlQ5AZ/dvcfNrATP1wwz25I -# r8KgKObHRCIYH4VI2VrmOboSHFG79JbHdkPVSjfLxTuTsoh5FzoU1t5urG0rwulo -# ZZFZxTkrxfyTkhvmjDCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046OEQ0MS00QkY3 -# LUIzQjcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVAOE8isx8IBeVPSweD805l5Qdeg5CoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tIMCIY -# DzIwMjExMjA5MDM1MTM2WhgPMjAyMTEyMTAwMzUxMzZaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi0gCAQAwCgIBAAICIScCAf8wBwIBAAICEdowCgIFAOVc3MgC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQBeVbaPZ5ldfNGhiFwP5ALaZGmV -# 4LkTqmcDT5yUk6p3tceYyxhPwMQqshcKt1fSrFqX5J8uNBeTWEpB5D/YyrXGHu/K -# a4Wj/8+nv32LXimt561Ygktjq90QX/Vha0BnifzfBTf/k64ZmtV6FMmvNI9MjNm3 -# QmHj495BbEuSWI20HzGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABiC7NxoFB4bwqAAEAAAGIMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIB5r -# VcRB53ajDn0amN283eZmOuFxfZ1ddPxQGZnO2OCZMIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgZune7awGN0aEgvjP7JyO3NKl7hstX8ChhrKmXtJJQKUwgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYguzcaBQeG8 -# KgABAAABiDAiBCDnGsQwLYuvrNs0JZQ8D1YCe56drKP5aPf/ndr94faZkzANBgkq -# hkiG9w0BAQsFAASCAgBi8EWq1+2L+qQJjtUAiYvFYQS2GX/DAratlOcGOSYqL81P -# DXuByUFsrXsBKqXmeuAfWiNeLWOpiGvy10qNldd/AsVdVrba72n8rzGLQ1od91L4 -# CljkSRtcq/LmvjdWPqa+ySqda1OpsD80ZOFstCnTysY9S6SDqvWgZYr+UtRJsng4 -# jp8cUCQBAcjQ1N/dHGUAs/Tvfr5kHdDGynKKMGdDEUKtM2jjznIIWnxPzZoyXEi4 -# 8ePyJ/mTh3grNa3oOSGxuC+8ejye9Bc4JPSYYzhzJw+M0LAgBLQxj/HdYiuGIK7w -# TOUrqctErkPgosq1NdUAqQZakDXVpouiB+FTez3hiR2QAY1uR5lHvGD9zJValYMH -# OQEzjO5Bh+2cauVdMp012ULRJBIcVVrjUcSihcyD6EbUlyzu0VQFNFANkbFpqsf6 -# gS9p4j//r8AfQv8xwyy2N0Ql5caRRf5Vlfjp8c2ikMMvY19A53qBKs+aE093B+4Z -# 72wg2wnorYKun9fGpnfs+JufmnDf64O8a9pXV+XM9lVmgmWb0ScKAxn+N9dZrwD7 -# DbjlvSnLEUciHzyEO9wQ8/gu3L6E2Ugho+AbIDStmNhSIQiMDJblWZk5aLc8SGPr -# tts+mmDoB+lun57BwYPZKhgmnekQ9j9tCZaDKWa/ocKNByI+2+YBrNev3M37rQ== -# SIG # End signature block diff --git a/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 b/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 deleted file mode 100644 index 5d2f511..0000000 --- a/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 +++ /dev/null @@ -1,289 +0,0 @@ -@{ -GUID="EEFCB906-B326-4E99-9F54-8B4BB6EF3C6D" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -NestedModules="Microsoft.PowerShell.Commands.Management.dll" -HelpInfoURI = 'https://aka.ms/powershell72-help' -FunctionsToExport = @() -AliasesToExport = @("gcb", "gin", "gtz", "scb", "stz") -CmdletsToExport=@("Add-Content", - "Clear-Content", - "Get-Clipboard", - "Set-Clipboard", - "Clear-ItemProperty", - "Join-Path", - "Convert-Path", - "Copy-ItemProperty", - "Get-ChildItem", - "Get-Content", - "Get-ItemProperty", - "Get-ItemPropertyValue", - "Move-ItemProperty", - "Get-Location", - "Set-Location", - "Push-Location", - "Pop-Location", - "New-PSDrive", - "Remove-PSDrive", - "Get-PSDrive", - "Get-Item", - "New-Item", - "Set-Item", - "Remove-Item", - "Move-Item", - "Rename-Item", - "Copy-Item", - "Clear-Item", - "Invoke-Item", - "Get-PSProvider", - "New-ItemProperty", - "Split-Path", - "Test-Path", - "Test-Connection", - "Get-Process", - "Stop-Process", - "Wait-Process", - "Debug-Process", - "Start-Process", - "Remove-ItemProperty", - "Rename-ItemProperty", - "Resolve-Path", - "Get-Service", - "Stop-Service", - "Start-Service", - "Suspend-Service", - "Resume-Service", - "Restart-Service", - "Set-Service", - "New-Service", - "Remove-Service", - "Set-Content", - "Set-ItemProperty", - "Restart-Computer", - "Stop-Computer", - "Rename-Computer", - "Get-ComputerInfo", - "Get-TimeZone", - "Set-TimeZone", - "Get-HotFix", - "Clear-RecycleBin") -} - -# SIG # Begin signature block -# MIInuAYJKoZIhvcNAQcCoIInqTCCJ6UCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCAOkUHfBYP8n8JI -# rFMR/Pi6BPlAC/b/pz0LBmd3yrLJC6CCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjTCCGYkCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgbwKAFcUU -# n/a8C1e7lODkKydexiPQBTRqAUaY8lpIXxYwQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQAS8cDlYOVWF3oFPi1M2yWWdC1wbCMgPa2utU2WgHpJ -# FdgkgR5zgZhKx2APsR5uSgSfvs9YfPYm8+NRMvxAYm4e/Bf1JgTP9gsgqxQ/xXB+ -# NqOASjMjv7v+wTLPMa/i//jTTxjqcmHebx0tVR6f0Fpr9BU7PxW996xh2vKdxVnV -# YXxHwAmhJ1TxUaZC0hVRtriJrBfAsuQ2g/aCn5wZ6YXKVJ63IBZ+jnivf80fnSYc -# t+Zl4LqAiaSvpQ7GgPo/RggihGdWk+AuZCcY9SOJYAypK3Hvu4KHy4+5GEW3+9LI -# uQ3+9k1MG+Xng2uR0sDenzNJN89weif/W6AwmTwRl69ToYIXFzCCFxMGCisGAQQB -# gjcDAwExghcDMIIW/wYJKoZIhvcNAQcCoIIW8DCCFuwCAQMxDzANBglghkgBZQME -# AgEFADCCAVcGCyqGSIb3DQEJEAEEoIIBRgSCAUIwggE+AgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIGUlM1IvDbHn/VrMmR6UJYC2nOP4lY0xhCVtPuKI -# CRBSAgZhlV4jeGYYETIwMjExMjA4MjEwNDE0LjdaMASAAgH0oIHYpIHVMIHSMQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNy -# b3NvZnQgSXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxl -# cyBUU1MgRVNOOjhENDEtNEJGNy1CM0I3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGlt -# ZS1TdGFtcCBTZXJ2aWNloIIRaDCCBxQwggT8oAMCAQICEzMAAAGILs3GgUHhvCoA -# AQAAAYgwDQYJKoZIhvcNAQELBQAwfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldh -# c2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBD -# b3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIw -# MTAwHhcNMjExMDI4MTkyNzQwWhcNMjMwMTI2MTkyNzQwWjCB0jELMAkGA1UEBhMC -# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV -# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEtMCsGA1UECxMkTWljcm9zb2Z0IEly -# ZWxhbmQgT3BlcmF0aW9ucyBMaW1pdGVkMSYwJAYDVQQLEx1UaGFsZXMgVFNTIEVT -# Tjo4RDQxLTRCRjctQjNCNzElMCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAg -# U2VydmljZTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAJrnEAgEJpHF -# x8g61eEvPFXiYNlxqjSnFqbK2qUShVnIYYy7H/zPVzfW4M5yzePAVzwLTpcKHnQd -# pDeG2XTz9ynUTW2KtbTRVIfFJ5owgq/goy5a4oB3JktEfq7DdoATF5SxGYdlvwjr -# g/VTi7G9j9ow6eN91eK1AAFFvNjO64PNXdznHLTvtV1tYdxLW0LUukBJMOg2CLr3 -# 1+wMPI1x2Z7DLoD/GQNaLaa6UzVIf80Vguwicgc8pkCA0gnVoVXw+LIcXvkbOtWs -# X9u204OR/1f0pDXfYczOjav8tjowyqy7bjfYUud+evboUzUHgIQFQ33h6RM5TL7V -# zsl+jE5nt45x3Rz4+hi0/QDESKwH/eoT2DojxAbx7a4OjKYiN/pejZW0jrNevxU3 -# pY09frHbFhrRU2b3mvaQKldWge/eWg5JmerEZuY7XZ1Ws36Fqx3d7w3od+VldPL1 -# uE5TnxHFdvim2oqz8WhZCePrZbCfjH7FTok6/2Zw4GjGh5886IHpSNwKHw1PSE2z -# JE7U8ayz8oE20XbW6ba5y8wZ9o80eEyX5EKPoc1rmjLuTrTGYildiOTDtJtZirlA -# IKKvuONi8PAkLo/RAthfJ02yW9jXFA4Pu+HYCYrPz/AWvzq5cVvk64HOkzxsQjrU -# +9/VKnrJb1g+qzUOlBDvX+71g5IXdr7bAgMBAAGjggE2MIIBMjAdBgNVHQ4EFgQU -# ZHm1UMSju867vfqNuxoz5YzJSkowHwYDVR0jBBgwFoAUn6cVXQBeYl2D9OXSZacb -# UzUZ6XIwXwYDVR0fBFgwVjBUoFKgUIZOaHR0cDovL3d3dy5taWNyb3NvZnQuY29t -# L3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwVGltZS1TdGFtcCUyMFBDQSUyMDIwMTAo -# MSkuY3JsMGwGCCsGAQUFBwEBBGAwXjBcBggrBgEFBQcwAoZQaHR0cDovL3d3dy5t -# aWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9NaWNyb3NvZnQlMjBUaW1lLVN0YW1w -# JTIwUENBJTIwMjAxMCgxKS5jcnQwDAYDVR0TAQH/BAIwADATBgNVHSUEDDAKBggr -# BgEFBQcDCDANBgkqhkiG9w0BAQsFAAOCAgEAQBBa2/tYCCbL/xii0ts2r5tnpNe+ -# 5pOMrugbkulYiLi9HttGDdnXV3olIRHYZNxUbaPxg/d5OUiMjSel/qfLkDDsSNt2 -# DknchMyycIe/n7btCH/Mt8egCdEtXddjme37GKpYx1HnHJ3kvQ1qoqR5PLjPJtmW -# wYUZ1DfDOIqoOK6CRpmSmfRXPGe2RyYDPe4u3yMgPYSR9Ne89uVqwyZcWqQ+XZjM -# jcs83wFamgcnpgqAZ+FZEQhjSEsdMUZXG/d1uhDYSRdTQYzJd3ClRB1uHfGNDWYa -# XVw7Xi5PR4GycngiNnzfRgawktQdWpPtfeDxomSi/PoLSuzaKwKADELxZGIKx61g -# mH41ej6LgtzfgOsDga3JFTh0/T1CAyuQAwh+Ga2kInXkvSw/4pihzNyOImsz5KHB -# 3BRwfcqOXfZTCWfqZwAFoJUEIzFoVKpxP5ZQPhKo2ztJQMZZlLVYqFVLMIU96Sug -# 4xUVzPy1McE7bbn89cwYxC5ESGfLgstWJDMXwRcBKLP0BSJQ2hUr1J+CIlmQN1S3 -# wBI8udYicCto0iB8PtW4wiPhQR3Ak0R9qT9/oeQ5UOQGf3b3HzawEz9cMM9uSK/C -# oCjmx0QiGB+FSNla5jm6EhxRu/SWx3ZD1Uo3y8U7k7KIeRc6FNbebqxtK8LpaGWR -# WcU5K8X8k5Ib5owwggdxMIIFWaADAgECAhMzAAAAFcXna54Cm0mZAAAAAAAVMA0G -# CSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3Rv -# bjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0 -# aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3Jp -# dHkgMjAxMDAeFw0yMTA5MzAxODIyMjVaFw0zMDA5MzAxODMyMjVaMHwxCzAJBgNV -# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w -# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m -# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC -# CgKCAgEA5OGmTOe0ciELeaLL1yR5vQ7VgtP97pwHB9KpbE51yMo1V/YBf2xK4OK9 -# uT4XYDP/XE/HZveVU3Fa4n5KWv64NmeFRiMMtY0Tz3cywBAY6GB9alKDRLemjkZr -# BxTzxXb1hlDcwUTIcVxRMTegCjhuje3XD9gmU3w5YQJ6xKr9cmmvHaus9ja+NSZk -# 2pg7uhp7M62AW36MEBydUv626GIl3GoPz130/o5Tz9bshVZN7928jaTjkY+yOSxR -# nOlwaQ3KNi1wjjHINSi947SHJMPgyY9+tVSP3PoFVZhtaDuaRr3tpK56KTesy+uD -# RedGbsoy1cCGMFxPLOJiss254o2I5JasAUq7vnGpF1tnYN74kpEeHT39IM9zfUGa -# RnXNxF803RKJ1v2lIH1+/NmeRd+2ci/bfV+AutuqfjbsNkz2K26oElHovwUDo9Fz -# pk03dJQcNIIP8BDyt0cY7afomXw/TNuvXsLz1dhzPUNOwTM5TI4CvEJoLhDqhFFG -# 4tG9ahhaYQFzymeiXtcodgLiMxhy16cg8ML6EgrXY28MyTZki1ugpoMhXV8wdJGU -# lNi5UPkLiWHzNgY1GIRH29wb0f2y1BzFa/ZcUlFdEtsluq9QBXpsxREdcu+N+VLE -# hReTwDwV2xo3xwgVGD94q0W29R6HXtqPnhZyacaue7e3PmriLq0CAwEAAaOCAd0w -# ggHZMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFCqnUv5kxJq+ -# gpE8RjUpzxD/LwTuMB0GA1UdDgQWBBSfpxVdAF5iXYP05dJlpxtTNRnpcjBcBgNV -# HSAEVTBTMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wEwYDVR0l -# BAwwCgYIKwYBBQUHAwgwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P -# BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU1fZWy4/oolxiaNE9 -# lJBb186aGMQwVgYDVR0fBE8wTTBLoEmgR4ZFaHR0cDovL2NybC5taWNyb3NvZnQu -# Y29tL3BraS9jcmwvcHJvZHVjdHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYtMjMuY3Js -# MFoGCCsGAQUFBwEBBE4wTDBKBggrBgEFBQcwAoY+aHR0cDovL3d3dy5taWNyb3Nv -# ZnQuY29tL3BraS9jZXJ0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5jcnQwDQYJ -# KoZIhvcNAQELBQADggIBAJ1VffwqreEsH2cBMSRb4Z5yS/ypb+pcFLY+TkdkeLEG -# k5c9MTO1OdfCcTY/2mRsfNB1OW27DzHkwo/7bNGhlBgi7ulmZzpTTd2YurYeeNg2 -# LpypglYAA7AFvonoaeC6Ce5732pvvinLbtg/SHUB2RjebYIM9W0jVOR4U3UkV7nd -# n/OOPcbzaN9l9qRWqveVtihVJ9AkvUCgvxm2EhIRXT0n4ECWOKz3+SmJw7wXsFSF -# QrP8DJ6LGYnn8AtqgcKBGUIZUnWKNsIdw2FzLixre24/LAl4FOmRsqlb30mjdAy8 -# 7JGA0j3mSj5mO0+7hvoyGtmW9I/2kQH2zsZ0/fZMcm8Qq3UwxTSwethQ/gpY3UA8 -# x1RtnWN0SCyxTkctwRQEcb9k+SS+c23Kjgm9swFXSVRk2XPXfx5bRAGOWhmRaw2f -# pCjcZxkoJLo4S5pu+yFUa2pFEUep8beuyOiJXk+d0tBMdrVXVAmxaQFEfnyhYWxz -# /gq77EFmPWn9y8FBSX5+k77L+DvktxW/tM4+pTFRhLy/AsGConsXHRWJjXD+57XQ -# KBqJC4822rpM+Zv/Cuk0+CQ1ZyvgDbjmjJnW4SLq8CdCPSWU5nR0W2rRnj7tfqAx -# M328y+l7vzhwRNGQ8cirOoo6CGJ/2XBjU02N7oJtpQUQwXEGahC0HVUzWLOhcGby -# oYIC1zCCAkACAQEwggEAoYHYpIHVMIHSMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQgSXJlbGFuZCBPcGVyYXRp -# b25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1MgRVNOOjhENDEtNEJGNy1C -# M0I3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNloiMKAQEw -# BwYFKw4DAhoDFQDhPIrMfCAXlT0sHg/NOZeUHXoOQqCBgzCBgKR+MHwxCzAJBgNV -# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w -# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m -# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMA0GCSqGSIb3DQEBBQUAAgUA5VuLSDAiGA8y -# MDIxMTIwOTAzNTEzNloYDzIwMjExMjEwMDM1MTM2WjB3MD0GCisGAQQBhFkKBAEx -# LzAtMAoCBQDlW4tIAgEAMAoCAQACAiEnAgH/MAcCAQACAhHaMAoCBQDlXNzIAgEA -# MDYGCisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEAAgMHoSChCjAI -# AgEAAgMBhqAwDQYJKoZIhvcNAQEFBQADgYEAXlW2j2eZXXzRoYhcD+QC2mRpleC5 -# E6pnA0+clJOqd7XHmMsYT8DEKrIXCrdX0qxal+SfLjQXk1hKQeQ/2Mq1xh7vymuF -# o//Pp799i14preetWIJLY6vdEF/1YWtAZ4n83wU3/5OuGZrVehTJrzSPTIzZt0Jh -# 4+PeQWxLkliNtB8xggQNMIIECQIBATCBkzB8MQswCQYDVQQGEwJVUzETMBEGA1UE -# CBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9z -# b2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQ -# Q0EgMjAxMAITMwAAAYguzcaBQeG8KgABAAABiDANBglghkgBZQMEAgEFAKCCAUow -# GgYJKoZIhvcNAQkDMQ0GCyqGSIb3DQEJEAEEMC8GCSqGSIb3DQEJBDEiBCAAZlzS -# rT4vVB7wRIbsGvay4ACd2gPSgT3yS7r8RrU5XTCB+gYLKoZIhvcNAQkQAi8xgeow -# gecwgeQwgb0EIGbp3u2sBjdGhIL4z+ycjtzSpe4bLV/AoYaypl7SSUClMIGYMIGA -# pH4wfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcT -# B1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UE -# AxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTACEzMAAAGILs3GgUHhvCoA -# AQAAAYgwIgQg5xrEMC2Lr6zbNCWUPA9WAnuenayj+Wj3/53a/eH2mZMwDQYJKoZI -# hvcNAQELBQAEggIAOr4i66ksCOJ3Rw8xoMzAdJVQl257tTcsAl9f6cACnWS8wb5g -# W+fRBFGeoxzjBgn34Rn0NPmfz5+vx9D314QAmjWt//l6S8hmldXyUlrixC6aOGik -# +CRaSnhf0CY2o3vBSYsYV3gJx0PSnDq6/T2B+S9TY90hvl+NgkzCNBnyLEDPgDXB -# e9XQi88hUWqZxpjaTmAI26+fr9z7AMrtnA4hxEzDbh6VGDhXKZ4F//b3E6Xj6ppB -# AJBmkEH42AnDBuFGEr2iLkKbU25t0ZuD7whLQ7CaQ8yVOppTuG4kqNbsUmIPzxtI -# wlznjxAV7nN+BrIuNmraWiBmszVsqSm1FhcZBBL3jj98szffT9zmcRKwPKlO8J88 -# mHFY0io9zXsE8Cv87ezrCIDVhbIm3gHj8dMr8tiWmo9ejacYgEZSGNBAwdku6O+G -# PZ1WsWBQ1MNLRtye9FWMqGog7yqeb/iHtJH3hH7MFLgXMVHuKjI7rcIGlWKOyTbA -# Cllth+6In3BRDC/VUiSKD6SfVYyEjKdLM3dURYi/NzUJ3tapoE4DUBYt2xZlDEGO -# j/L2KpzIlyi5MhU3YZwTkAZwSNqmPKZ+f5w6j0cOhilqTOYMmVB5OycslZv6ODcW -# pcGpnK6b2QNfFMEvtGrIvflWQC95c9hwlJ2O3Fuh5Hroza3f7PgYUmrxctU= -# SIG # End signature block diff --git a/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 b/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 deleted file mode 100644 index b3dd852..0000000 --- a/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 +++ /dev/null @@ -1,229 +0,0 @@ -@{ -GUID="A94C8C7E-9810-47C0-B8AF-65089C13A35A" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -FunctionsToExport = @() -CmdletsToExport="Get-Acl", "Set-Acl", "Get-PfxCertificate", "Get-Credential", "Get-ExecutionPolicy", "Set-ExecutionPolicy", "Get-AuthenticodeSignature", "Set-AuthenticodeSignature", "ConvertFrom-SecureString", "ConvertTo-SecureString", "Get-CmsMessage", "Unprotect-CmsMessage", "Protect-CmsMessage" , "New-FileCatalog" , "Test-FileCatalog" -AliasesToExport = @() -NestedModules="Microsoft.PowerShell.Security.dll" -HelpInfoURI = 'https://aka.ms/powershell72-help' -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCD++xTkW7oivoiQ -# gqU/R85f/MwSI1hVEeaegSriXP6+BqCCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgWHV5GUzu -# +l9zI1GEYPanTVvtHVRaoSkM2bZBhM+rt9YwQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQByeqL4g0Ci96GXfmQN8rvCAtpT2N0neMZ9mozeBeyF -# 5hYxQhatRKLDNrOJei542+AM9l8AmsmKtJvtE8wJUkVGZqxBSiMwv7nV1uMQgVhK -# crEIUsmJO+EStsx+gA3VyfugAElJEJtTInobbDPofwO4DS8xUBpW/OLaq3XVjRga -# JOh7s7RMx+7Gysq96jaguaW2H2llklxhsKZwf3Mdi+/5BhF8tIevEqPuk4ly1oXh -# qY4/BD0pFNygoTWMp6ecxNQM2EE1N1j3y30h36Gsk5aDMeUFrRNtFFWFF1HbrbH3 -# thOhL/rqSQkbxAR2CNSGQtzrNuLF+1/xJEHXgBNGyEWioYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIC9rz69tGAbCMg2r367oWNBEt5XvxdFCe04Dw8cQ -# hWtJAgZhlV5AOHEYEzIwMjExMjA4MjEwNDE0Ljc5MVowBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046M0JENC00QjgwLTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYm0v4YwhBxL -# jwABAAABiTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3NDFaFw0yMzAxMjYxOTI3NDFaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjNCRDQtNEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvQZXxZFm -# a6plmuOyvNpV8xONOwcYolZG/BjyZWGSk5JOGaLyrKId5VxVHWHlsmJE4Svnzsdp -# sKmVx8otONveIUFvSceEZp8VXmu5m1fu8L7c+3lwXcibjccqtEvtQslokQVx0r+L -# 54abrNDarwFG73IaRidIS1i9c+unJ8oYyhDRLrCysFAVxyQhPNZkWK7Z8/VGukaK -# LAWHXCh/+R53h42gFL+9/mAALxzCXXuofi8f/XKCm7xNwVc1hONCCz6oq94AufzV -# NkkIW4brUQgYpCcJm9U0XNmQvtropYDn9UtY8YQ0NKenXPtdgLHdQ8Nnv3igErKL -# rWI0a5n5jjdKfwk+8mvakqdZmlOseeOS1XspQNJAK1uZllAITcnQZOcO5ofjOQ33 -# ujWckAXdz+/x3o7l4AU/TSOMzGZMwhUdtVwC3dSbItpSVFgnjM2COEJ9zgCadvOi -# rGDLN471jZI2jClkjsJTdgPk343TQA4JFvds/unZq0uLr+niZ3X44OBx2x+gVlln -# 2c4UbZXNueA4yS1TJGbbJFIILAmTUA9Auj5eISGTbNiyWx79HnCOTar39QEKozm4 -# LnTmDXy0/KI/H/nYZGKuTHfckP28wQS06rD+fDS5xLwcRMCW92DkHXmtbhGyRilB -# OL5LxZelQfxt54wl4WUC0AdAEolPekODwO8CAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBSXbx+zR1p4IIAeguA6rHKkrfl7UDAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQCOtLdpWUI4KwfLLrfaKrLB92Dq -# bAspGWM41TaO4Jl+sHxPo522uu3GKQCjmkRWreHtlfyy9kOk7LWax3k3ke8Gtfet -# fbh7qH0LeV2XOWg39BOnHf6mTcZq7FYSZZch1JDQjc98+Odlow+oWih0Dbt4CV/e -# 19ZcE+1n1zzWkskUEd0f5jPIUis33p+vkY8szduAtCcIcPFUhI8Hb5alPUAPMjGz -# wKb7NIKbnf8j8cP18As5IveckF0oh1cw63RY/vPK62LDYdpi7WnG2ObvngfWVKtw -# iwTI4jHj2cO9q37HDe/PPl216gSpUZh0ap24mKmMDfcKp1N4mEdsxz4oseOrPYeF -# sHHWJFJ6Aivvqn70KTeJpp5r+DxSqbeSy0mxIUOq/lAaUxgNSQVUX26t8r+fciko -# fKv23WHrtRV3t7rVTsB9YzrRaiikmz68K5HWdt9MqULxPQPo+ppZ0LRqkOae466+ -# UKRY0JxWtdrMc5vHlHZfnqjawj/RsM2S6Q6fa9T9CnY1Nz7DYBG3yZJyCPFsrgU0 -# 5s9ljqfsSptpFdUh9R4ce+L71SWDLM2x/1MFLLHAMbXsEp8KloEGtaDULnxtfS2t -# YhfuKGqRXoEfDPAMnIdTvQPh3GHQ4SjkkBARHL0MY75alhGTKHWjC2aLVOo8obKI -# Bk8hfnFDUf/EyVw4uTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0JENC00Qjgw -# LTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVACGlCa3ketyeuey7bJNpWkMuiCcQoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tYMCIY -# DzIwMjExMjA5MDM1MTUyWhgPMjAyMTEyMTAwMzUxNTJaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi1gCAQAwCgIBAAICHvwCAf8wBwIBAAICETcwCgIFAOVc3NgC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQCbF/Q1IJzqUwQBkXn+GjUxZzVN -# O+9p1fpL7W8dEy9/m1L7dl968KiYqfO5rekvXeSUDTFYrkS/r0w8p2ZZ7d0TMtJt -# TrKmc85aRmxtSvCNAS2stE2sS2Y5np5+/02w3DDn3Nni6vvF8nsuiIlbiyHrGQrC -# 9eis1rpLSNvXisSYoDGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABibS/hjCEHEuPAAEAAAGJMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIM9O -# ao85t+tQMGnb/NodpJQMwx5JXiYYilGmLk9FSvn+MIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgZndHMdxQV1VsbpWHOTHqWEycvcRJm7cY69l/UmT8j0UwgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYm0v4YwhBxL -# jwABAAABiTAiBCCErc3WAJDL+6+RTcx4qvTV2Dv0bP6a0jmZjnUp3u9sbzANBgkq -# hkiG9w0BAQsFAASCAgCzngLNnPmqawyfurGD6pabQJgWV4nP5zle9pu9tx4c1pTi -# SKAeREqAeOs5Bcg46nHpP+Flb+4BQ68zc2JUv1p1P7OlmpKshGEd1Sgpj0izHI8E -# JW8lmMXuRudxbw/761rpDKViWtWQ1lzxhyDeqJw1tiGIAcbX7P26zcoC+jp19GlY -# DaXcIJDZM/u5UUKDtKNSBIvTX+UDfuAEAwmH37GcuHTnvm1txdDZF2DNEn9Jzj7y -# TvHglap7FeMIvo/Um4cLq8xdSJxOYbGGQ5qCdc6vIGXC8HebpR3bIPxldyKDPdpd -# LdvDD0k+rnDHmMsmgQuihIG8rDiadJ/7YtexaDNm4aYRa8PD5SabeUwi94eYZ4a7 -# 25ZkBy6FQAY13i0RgSRicx2Ryowd0Hg0DWSAfHSJc5CnL7qWNTOhwvX7wEUGbe/0 -# 1GZR+ZYiJRO83/lQAEurvVJuEZ3dKTpeJB4FOP6oIc76pL3GvW9XINxo49WiIbzl -# YEToH4oTa5F5vUCvF2Wa5tDlpa60LFSJDP1VyWCYPP+sflKLkYvG3PmXSYYbCprL -# yS0rypa9ACBp7Q2rZTa1s3j7jtNa3Fa5RZ9gAulFkUVVZ+F0Pm7aUvnRAf54+Ri6 -# aoF9G+flQpzZn8nYCRFfiqcQ9wKPA6lZBGEqzGBLAZqzsmmrSgcwVjdN6ZwqYg== -# SIG # End signature block diff --git a/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 b/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 deleted file mode 100644 index 927c504..0000000 --- a/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 +++ /dev/null @@ -1,248 +0,0 @@ -@{ -GUID = "1DA87E53-152B-403E-98DC-74D7B4D63D59" -Author = "PowerShell" -CompanyName = "Microsoft Corporation" -Copyright = "Copyright (c) Microsoft Corporation." -ModuleVersion = "7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion = "3.0" -CmdletsToExport = @( - 'Export-Alias', 'Get-Alias', 'Import-Alias', 'New-Alias', 'Remove-Alias', 'Set-Alias', 'Export-Clixml', 'Import-Clixml', - 'Measure-Command', 'Trace-Command', 'ConvertFrom-Csv', 'ConvertTo-Csv', 'Export-Csv', 'Import-Csv', 'Get-Culture', - 'Format-Custom', 'Get-Date', 'Set-Date', 'Write-Debug', 'Wait-Debugger', 'Register-EngineEvent', 'Write-Error', - 'Get-Event', 'New-Event', 'Remove-Event', 'Unregister-Event', 'Wait-Event', 'Get-EventSubscriber', 'Invoke-Expression', - 'Out-File', 'Unblock-File', 'Get-FileHash', 'Export-FormatData', 'Get-FormatData', 'Update-FormatData', 'New-Guid', - 'Format-Hex', 'Get-Host', 'Read-Host', 'Write-Host', 'ConvertTo-Html', 'Write-Information', 'ConvertFrom-Json', - 'ConvertTo-Json', 'Test-Json', 'Format-List', 'Import-LocalizedData', 'Send-MailMessage', 'ConvertFrom-Markdown', - 'Show-Markdown', 'Get-MarkdownOption', 'Set-MarkdownOption', 'Add-Member', 'Get-Member', 'Compare-Object', 'Group-Object', - 'Measure-Object', 'New-Object', 'Select-Object', 'Sort-Object', 'Tee-Object', 'Register-ObjectEvent', 'Write-Output', - 'Import-PowerShellDataFile', 'Write-Progress', 'Disable-PSBreakpoint', 'Enable-PSBreakpoint', 'Get-PSBreakpoint', - 'Remove-PSBreakpoint', 'Set-PSBreakpoint', 'Get-PSCallStack', 'Export-PSSession', 'Import-PSSession', 'Get-Random', - 'Invoke-RestMethod', 'Debug-Runspace', 'Get-Runspace', 'Disable-RunspaceDebug', 'Enable-RunspaceDebug', - 'Get-RunspaceDebug', 'ConvertFrom-SddlString', 'Start-Sleep', 'Join-String', 'Out-String', 'Select-String', - 'ConvertFrom-StringData', 'Format-Table', 'New-TemporaryFile', 'New-TimeSpan', 'Get-TraceSource', 'Set-TraceSource', - 'Add-Type', 'Get-TypeData', 'Remove-TypeData', 'Update-TypeData', 'Get-UICulture', 'Get-Unique', 'Get-Uptime', - 'Clear-Variable', 'Get-Variable', 'New-Variable', 'Remove-Variable', 'Set-Variable', 'Get-Verb', 'Write-Verbose', - 'Write-Warning', 'Invoke-WebRequest', 'Format-Wide', 'ConvertTo-Xml', 'Select-Xml', 'Get-Error', 'Update-List', - 'Out-GridView', 'Show-Command', 'Out-Printer' -) -FunctionsToExport = @() -AliasesToExport = @('fhx') -NestedModules = @("Microsoft.PowerShell.Commands.Utility.dll") -HelpInfoURI = 'https://aka.ms/powershell72-help' -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCBA95ukw/cTrslZ -# 8GEROXuMEYH1RJd2ZOe5U1EPFSWVsaCCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgqoEvsipU -# dEXkK33kvZSyP9Cx3IROdWp1ndiqGNS27hEwQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQBHzboagxcQ8L50vNYxDsscrvzcGeLtxdwkaQTW10v2 -# aTPJXDVIFjRwioUbqfGvtBDaq9QFgLBcV3qb5zGL0K33nlBa4+dK0AgYlbbkpnSp -# l9l3tTHoSRiKtFdmpIpsRQPXGZ5c6iGkicQNtX/D2c6SBQ++qayvldFZcU16y/4C -# IUzeFA8TYMYRJnGQRC7BG1xqAWztt+WIUGlO5kQOnuNYczbq/zvBrT5nBRwhqcQQ -# YzJRwkNf2F+G88rnBESxNxegRusbUX+v3bwsa6uxxLpSeqSDD3JasgCzS1eaTBYn -# NXGeHxHdweiG14ABsGjSbxT+wtB6eeNj0ymmsYJdm7ApoYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIIEUntqZM075d/Xv5VtLazUG/C8XTr8E5AIBTLPG -# 2f+4AgZhlV5AOGMYEzIwMjExMjA4MjEwNDE0LjMzOFowBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046M0JENC00QjgwLTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYm0v4YwhBxL -# jwABAAABiTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3NDFaFw0yMzAxMjYxOTI3NDFaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjNCRDQtNEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvQZXxZFm -# a6plmuOyvNpV8xONOwcYolZG/BjyZWGSk5JOGaLyrKId5VxVHWHlsmJE4Svnzsdp -# sKmVx8otONveIUFvSceEZp8VXmu5m1fu8L7c+3lwXcibjccqtEvtQslokQVx0r+L -# 54abrNDarwFG73IaRidIS1i9c+unJ8oYyhDRLrCysFAVxyQhPNZkWK7Z8/VGukaK -# LAWHXCh/+R53h42gFL+9/mAALxzCXXuofi8f/XKCm7xNwVc1hONCCz6oq94AufzV -# NkkIW4brUQgYpCcJm9U0XNmQvtropYDn9UtY8YQ0NKenXPtdgLHdQ8Nnv3igErKL -# rWI0a5n5jjdKfwk+8mvakqdZmlOseeOS1XspQNJAK1uZllAITcnQZOcO5ofjOQ33 -# ujWckAXdz+/x3o7l4AU/TSOMzGZMwhUdtVwC3dSbItpSVFgnjM2COEJ9zgCadvOi -# rGDLN471jZI2jClkjsJTdgPk343TQA4JFvds/unZq0uLr+niZ3X44OBx2x+gVlln -# 2c4UbZXNueA4yS1TJGbbJFIILAmTUA9Auj5eISGTbNiyWx79HnCOTar39QEKozm4 -# LnTmDXy0/KI/H/nYZGKuTHfckP28wQS06rD+fDS5xLwcRMCW92DkHXmtbhGyRilB -# OL5LxZelQfxt54wl4WUC0AdAEolPekODwO8CAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBSXbx+zR1p4IIAeguA6rHKkrfl7UDAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQCOtLdpWUI4KwfLLrfaKrLB92Dq -# bAspGWM41TaO4Jl+sHxPo522uu3GKQCjmkRWreHtlfyy9kOk7LWax3k3ke8Gtfet -# fbh7qH0LeV2XOWg39BOnHf6mTcZq7FYSZZch1JDQjc98+Odlow+oWih0Dbt4CV/e -# 19ZcE+1n1zzWkskUEd0f5jPIUis33p+vkY8szduAtCcIcPFUhI8Hb5alPUAPMjGz -# wKb7NIKbnf8j8cP18As5IveckF0oh1cw63RY/vPK62LDYdpi7WnG2ObvngfWVKtw -# iwTI4jHj2cO9q37HDe/PPl216gSpUZh0ap24mKmMDfcKp1N4mEdsxz4oseOrPYeF -# sHHWJFJ6Aivvqn70KTeJpp5r+DxSqbeSy0mxIUOq/lAaUxgNSQVUX26t8r+fciko -# fKv23WHrtRV3t7rVTsB9YzrRaiikmz68K5HWdt9MqULxPQPo+ppZ0LRqkOae466+ -# UKRY0JxWtdrMc5vHlHZfnqjawj/RsM2S6Q6fa9T9CnY1Nz7DYBG3yZJyCPFsrgU0 -# 5s9ljqfsSptpFdUh9R4ce+L71SWDLM2x/1MFLLHAMbXsEp8KloEGtaDULnxtfS2t -# YhfuKGqRXoEfDPAMnIdTvQPh3GHQ4SjkkBARHL0MY75alhGTKHWjC2aLVOo8obKI -# Bk8hfnFDUf/EyVw4uTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0JENC00Qjgw -# LTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVACGlCa3ketyeuey7bJNpWkMuiCcQoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tYMCIY -# DzIwMjExMjA5MDM1MTUyWhgPMjAyMTEyMTAwMzUxNTJaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi1gCAQAwCgIBAAICHvwCAf8wBwIBAAICETcwCgIFAOVc3NgC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQCbF/Q1IJzqUwQBkXn+GjUxZzVN -# O+9p1fpL7W8dEy9/m1L7dl968KiYqfO5rekvXeSUDTFYrkS/r0w8p2ZZ7d0TMtJt -# TrKmc85aRmxtSvCNAS2stE2sS2Y5np5+/02w3DDn3Nni6vvF8nsuiIlbiyHrGQrC -# 9eis1rpLSNvXisSYoDGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABibS/hjCEHEuPAAEAAAGJMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEINjr -# jaYjHvF5zcuiSPmsJnfGwWcQHYP/2CYeqIoTLbM/MIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgZndHMdxQV1VsbpWHOTHqWEycvcRJm7cY69l/UmT8j0UwgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYm0v4YwhBxL -# jwABAAABiTAiBCCErc3WAJDL+6+RTcx4qvTV2Dv0bP6a0jmZjnUp3u9sbzANBgkq -# hkiG9w0BAQsFAASCAgBlISYxvNqg3TVBqRooVDAWRo+EMXUl4mBMwOvnI755iHjz -# ksXBl+FBaJdTbgfrrbkqVuTFgjnA7/1hzx8FuYRnz7aS7yWbUamn2DKeVHfcmL4w -# luTTDqklOtM/LNUOi2iRHQHG2+bi8OvJIavShvbjjv9telA3MY+ONzP+2t7H2ESf -# 7Sht+eH7Il5Wc9p2QB1o2iMaRK+TZoE1petI8ZxSJn0F6rFdBGIOI1mhNaZTZGuk -# UVAe9v6kd5k9BQZ1mfLCVf+A86Ul66fvrwAtETiuFMWYQhbnRWRLElWVUA/3zIS4 -# MVVyPlFjINt2m980WlIgHkt+K+cSbEtIUZ4Scpt/Tf9K0Kd2PEV+2z5n7xbwDPhy -# uczGyZm+0/NH6HDWrr74wX7+UJQzHGU7cP6yIDk/MJF5+E6ahKx6XfJYB2TK28qi -# K0g2HqkFhgS6zvnoNZNpWd28UKH9TLZIyWY9I7jKEMxP6jLzPugPYsL8pxvJLsAI -# /vn5Go+lLdNHUykJgB2ChUKsm3x1aUrSpGiW8UJ5xUiJ5RB1nFfUv0AWHcouYl92 -# FJhWIn3qaZExP6R7NijbAMyoYChcDgPrOGseESmfGZuVFbhE7gMai1VIRCLnmBoK -# Der+JOgsWW/eHU9nN5uuyP6uqtP01F5eayK++qjH+B9xQAJNq79RVXVvyaNZlw== -# SIG # End signature block diff --git a/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1 b/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1 deleted file mode 100644 index a370f4c..0000000 --- a/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1 +++ /dev/null @@ -1,230 +0,0 @@ -@{ -GUID="766204A6-330E-4263-A7AB-46C87AFC366C" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -FunctionsToExport = @() -CmdletsToExport="Disable-WSManCredSSP", "Enable-WSManCredSSP", "Get-WSManCredSSP", "Set-WSManQuickConfig", "Test-WSMan", "Invoke-WSManAction", "Connect-WSMan", "Disconnect-WSMan", "Get-WSManInstance", "Set-WSManInstance", "Remove-WSManInstance", "New-WSManInstance", "New-WSManSessionOption" -AliasesToExport = @() -NestedModules="Microsoft.WSMan.Management.dll" -FormatsToProcess="WSMan.format.ps1xml" -HelpInfoURI = 'https://aka.ms/powershell72-help' -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCB+Ujs/uIRQu9NJ -# wrRJEY/iIf48rrMaCNk+CtkIzIqDVqCCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgypxuMQwq -# 1eGPEmRm52ViV1FEshB3MTFlVOkKoUKOQmgwQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQBwQLkeEMe+dK/nBzeh5yKFRrxpey/F+58vzZS97hfh -# rOZPhi6B29T/8kJqtTW8EVhdy+XNARi5JYKvFt6cO1TFJlb9H6ncq7TAYPV6ue/R -# 1CmnXltjWiRYZAibhN3Y7Yq+pnqIskQb8LI499I2Sg8JLuvRXBYqUb6F4wZ/vgH2 -# Vz/dHRgonqNkI94s5mOFXG0TX3/JzQD+xj3NWFNeOUCLsQQ0k7EA2pcF9odFgyNS -# QY0KGk3Bu+KcQUxmPdbgtIoM1ebLvINLR3mpD6xeWuusLS2NXX/7x3otBPyC17R2 -# hjh5a4lKYQH16inEdSg6jGkMXymnKOPRAmXZnFI9FET1oYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIGqYa00kDq7cefzR97imqg4FhBGef4q3IvGpky5C -# NPnvAgZhlV5AOG4YEzIwMjExMjA4MjEwNDE0LjYwN1owBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046M0JENC00QjgwLTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYm0v4YwhBxL -# jwABAAABiTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3NDFaFw0yMzAxMjYxOTI3NDFaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjNCRDQtNEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvQZXxZFm -# a6plmuOyvNpV8xONOwcYolZG/BjyZWGSk5JOGaLyrKId5VxVHWHlsmJE4Svnzsdp -# sKmVx8otONveIUFvSceEZp8VXmu5m1fu8L7c+3lwXcibjccqtEvtQslokQVx0r+L -# 54abrNDarwFG73IaRidIS1i9c+unJ8oYyhDRLrCysFAVxyQhPNZkWK7Z8/VGukaK -# LAWHXCh/+R53h42gFL+9/mAALxzCXXuofi8f/XKCm7xNwVc1hONCCz6oq94AufzV -# NkkIW4brUQgYpCcJm9U0XNmQvtropYDn9UtY8YQ0NKenXPtdgLHdQ8Nnv3igErKL -# rWI0a5n5jjdKfwk+8mvakqdZmlOseeOS1XspQNJAK1uZllAITcnQZOcO5ofjOQ33 -# ujWckAXdz+/x3o7l4AU/TSOMzGZMwhUdtVwC3dSbItpSVFgnjM2COEJ9zgCadvOi -# rGDLN471jZI2jClkjsJTdgPk343TQA4JFvds/unZq0uLr+niZ3X44OBx2x+gVlln -# 2c4UbZXNueA4yS1TJGbbJFIILAmTUA9Auj5eISGTbNiyWx79HnCOTar39QEKozm4 -# LnTmDXy0/KI/H/nYZGKuTHfckP28wQS06rD+fDS5xLwcRMCW92DkHXmtbhGyRilB -# OL5LxZelQfxt54wl4WUC0AdAEolPekODwO8CAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBSXbx+zR1p4IIAeguA6rHKkrfl7UDAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQCOtLdpWUI4KwfLLrfaKrLB92Dq -# bAspGWM41TaO4Jl+sHxPo522uu3GKQCjmkRWreHtlfyy9kOk7LWax3k3ke8Gtfet -# fbh7qH0LeV2XOWg39BOnHf6mTcZq7FYSZZch1JDQjc98+Odlow+oWih0Dbt4CV/e -# 19ZcE+1n1zzWkskUEd0f5jPIUis33p+vkY8szduAtCcIcPFUhI8Hb5alPUAPMjGz -# wKb7NIKbnf8j8cP18As5IveckF0oh1cw63RY/vPK62LDYdpi7WnG2ObvngfWVKtw -# iwTI4jHj2cO9q37HDe/PPl216gSpUZh0ap24mKmMDfcKp1N4mEdsxz4oseOrPYeF -# sHHWJFJ6Aivvqn70KTeJpp5r+DxSqbeSy0mxIUOq/lAaUxgNSQVUX26t8r+fciko -# fKv23WHrtRV3t7rVTsB9YzrRaiikmz68K5HWdt9MqULxPQPo+ppZ0LRqkOae466+ -# UKRY0JxWtdrMc5vHlHZfnqjawj/RsM2S6Q6fa9T9CnY1Nz7DYBG3yZJyCPFsrgU0 -# 5s9ljqfsSptpFdUh9R4ce+L71SWDLM2x/1MFLLHAMbXsEp8KloEGtaDULnxtfS2t -# YhfuKGqRXoEfDPAMnIdTvQPh3GHQ4SjkkBARHL0MY75alhGTKHWjC2aLVOo8obKI -# Bk8hfnFDUf/EyVw4uTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0JENC00Qjgw -# LTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVACGlCa3ketyeuey7bJNpWkMuiCcQoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tYMCIY -# DzIwMjExMjA5MDM1MTUyWhgPMjAyMTEyMTAwMzUxNTJaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi1gCAQAwCgIBAAICHvwCAf8wBwIBAAICETcwCgIFAOVc3NgC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQCbF/Q1IJzqUwQBkXn+GjUxZzVN -# O+9p1fpL7W8dEy9/m1L7dl968KiYqfO5rekvXeSUDTFYrkS/r0w8p2ZZ7d0TMtJt -# TrKmc85aRmxtSvCNAS2stE2sS2Y5np5+/02w3DDn3Nni6vvF8nsuiIlbiyHrGQrC -# 9eis1rpLSNvXisSYoDGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABibS/hjCEHEuPAAEAAAGJMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIN1F -# wmeehZy4wMNXqLnULVbk4oVsB3cWo9ryHOQxmYoPMIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgZndHMdxQV1VsbpWHOTHqWEycvcRJm7cY69l/UmT8j0UwgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYm0v4YwhBxL -# jwABAAABiTAiBCCErc3WAJDL+6+RTcx4qvTV2Dv0bP6a0jmZjnUp3u9sbzANBgkq -# hkiG9w0BAQsFAASCAgAWjRg7KzoR7Kd4cPnoMh490c1gOoabocbdzphBISFn24S4 -# Nomokt8QSkLypqSgMe0FQyCku8urnNIhX6CA1FObkCe+DFM9FFaOHNY3Lqv4oVGW -# O2nCjMXPxj8FMZM7UyZB11zPMhPHaleWP0UQPuqEf/d6V8vbh23OyZ9RfYUKft+m -# zKsR+gnqKtrmAuqLSrwoo/6JvgchTRqV+ODeDc1l3JfbhQW+6hFryB3RSAau+Msg -# n/QwOqIYCYJl/t7kV/Ze7WF97Kc294zbuRT4LTMccfms19oeACHoZpU2H7JWSEZn -# MTMnaEVlM+9ylAgC4wxiEsXlJCI5K167HTpkfR3/9/4hJo+5Pmacd0HQjpP6zDqw -# a8sveaOAmaI0eRC6ByG00sBwPmbRTRvDA4Dc2b3bKqINgkZpM7/NFmclkho4jvF0 -# XJ4jk/Ul2rvaQtTrWY0ZCITR79XpLpRZMukTFTybSZrE+bERy3eK/KNee4Wbt6wz -# 86sci4DvgqPc1nBsX0Y5iWhiPA2I9rXH36iH7ZI7D/I4+0qEWLxfsLNTUthwb8Zg -# 1ukHkIyEk14gOar+Exf4MRZ8slf1518X2zoCj6ZeYfXB8pRz/+N7w8rEtbKCjX+U -# dyI16Oy8vNwWWZRdoG6e2rMmvDDSTz34db1DymXU+a92+q/qcwFAkl1dPVTn5Q== -# SIG # End signature block diff --git a/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml b/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml deleted file mode 100644 index 8907c23..0000000 --- a/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml +++ /dev/null @@ -1,451 +0,0 @@ - - - - - - - System.Xml.XmlElement#http://schemas.dmtf.org/wbem/wsman/identity/1/wsmanidentity.xsd#IdentifyResponse - - System.Xml.XmlElement#http://schemas.dmtf.org/wbem/wsman/identity/1/wsmanidentity.xsd#IdentifyResponse - - - - - - - wsmid - - - ProtocolVersion - - - ProductVendor - - - ProductVersion - - - - - - - - Microsoft.WSMan.Management.WSManConfigElement - - Microsoft.WSMan.Management.WSManConfigElement - - - PSParentPath - - - - - - - 15 - - - - 30 - - - - - - - TypeNameOfElement - - - Name - - - - - - - - Microsoft.WSMan.Management.WSManConfigContainerElement - - Microsoft.WSMan.Management.WSManConfigContainerElement - - - PSParentPath - - - - - - - 15 - - - - 35 - - - - - - - - - - TypeNameOfElement - - - Keys - - - Name - - - - - - - - Microsoft.WSMan.Management.WSManConfigLeafElement - - Microsoft.WSMan.Management.WSManConfigLeafElement - - - PSParentPath - - - - - - - 15 - - - - 30 - - - - 15 - - - - - - - - - - TypeNameOfElement - - - Name - - - SourceOfValue - - - Value - - - - - - - - Microsoft.WSMan.Management.WSManConfigLeafElement#InitParams - - Microsoft.WSMan.Management.WSManConfigLeafElement#InitParams - - - PSParentPath - - - - - - - 30 - - - - 20 - - - - - - - Name - - - Value - - - - - - - - Microsoft.WSMan.Management.WSManConfigContainerElement#ComputerLevel - - Microsoft.WSMan.Management.WSManConfigContainerElement#ComputerLevel - - - PSParentPath - - - - - - - 45 - - - - 20 - - - - - - - Name - - - TypeNameOfElement - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psd1 b/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psd1 deleted file mode 100644 index 626dc3a..0000000 --- a/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psd1 +++ /dev/null @@ -1,207 +0,0 @@ -@{ - GUID="c61d6278-02a3-4618-ae37-a524d40a7f44 " - Author="PowerShell" - CompanyName="Microsoft Corporation" - Copyright="Copyright (c) Microsoft Corporation." - ModuleVersion="7.0.0.0" - CompatiblePSEditions = @("Core") - PowerShellVersion="3.0" - ModuleToProcess="PSDiagnostics.psm1" - FunctionsToExport="Disable-PSTrace","Disable-PSWSManCombinedTrace","Disable-WSManTrace","Enable-PSTrace","Enable-PSWSManCombinedTrace","Enable-WSManTrace","Get-LogProperties","Set-LogProperties","Start-Trace","Stop-Trace" - CmdletsToExport = @() - AliasesToExport = @() - HelpInfoUri="https://aka.ms/powershell72-help" -} - -# SIG # Begin signature block -# MIIjkQYJKoZIhvcNAQcCoIIjgjCCI34CAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCD/dfsIexbywzf4 -# vgDANLKxbLCeK+0wW4ZnFQP22V0sXqCCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIVZjCCFWICAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgoT0Qfn6u -# IFQn6DGWcQzw34/4HzFrnEYbuu3YQlqVoaQwQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQCt/xkRVxP7BXqiUQi+IuzI0bokgJJBF15CLUb5UcOl -# ojrCl4Rx34i0hAAoWt5uOvUG37LQEGnKm5DEgRwG5d+R8SHjAZxk83VzPAg9c7S/ -# GLe8AdcLJ4L5rjGb5YReU+eIPGNvrcZu8JYN2dlBO1nY6axLwonRTpQj43J7wrWd -# InSCbV8CnUfK4/lgftJ5P7SCNLe7Enjv8dQOahg3B4BMReQxHm/SZWgSGb8t++wI -# ZWCw6sRh+XjE63P3VzhAp8Z8KOR3TSCE4Bt5tfy8xDbmePlVrK3GKoVVq4RkVn96 -# 4TRCHvs3RZTQm57yJ2NplI10zIqZz2geZRns5nVGDHcYoYIS8DCCEuwGCisGAQQB -# gjcDAwExghLcMIIS2AYJKoZIhvcNAQcCoIISyTCCEsUCAQMxDzANBglghkgBZQME -# AgEFADCCAVQGCyqGSIb3DQEJEAEEoIIBQwSCAT8wggE7AgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIG5NKJe+omftR+S4BYKgAMTO7Tl6rem9xPJkoE7D -# yZYZAgZhk97zjjgYEjIwMjExMjA4MjEwNDE0Ljg2WjAEgAIB9KCB1KSB0TCBzjEL -# MAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1v -# bmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEpMCcGA1UECxMgTWlj -# cm9zb2Z0IE9wZXJhdGlvbnMgUHVlcnRvIFJpY28xJjAkBgNVBAsTHVRoYWxlcyBU -# U1MgRVNOOjMyQkQtRTNENS0zQjFEMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1T -# dGFtcCBTZXJ2aWNloIIORDCCBPUwggPdoAMCAQICEzMAAAFi0P4C8wHlzUkAAAAA -# AWIwDQYJKoZIhvcNAQELBQAwfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hp -# bmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jw -# b3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAw -# HhcNMjEwMTE0MTkwMjIyWhcNMjIwNDExMTkwMjIyWjCBzjELMAkGA1UEBhMCVVMx -# EzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoT -# FU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEpMCcGA1UECxMgTWljcm9zb2Z0IE9wZXJh -# dGlvbnMgUHVlcnRvIFJpY28xJjAkBgNVBAsTHVRoYWxlcyBUU1MgRVNOOjMyQkQt -# RTNENS0zQjFEMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNl -# MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA74ah1Pa5wvcyvYNCy/YQ -# s1tK8rIGlh1Qq1QFaJmYVXLXykb+m5yCStzmL227wJjsalZX8JA2YcbaZV5Icwm9 -# vAJz8AC/sk/dsUK3pmDvkhtVI04YDV6otuZCILpQB9Ipcs3d0e1Dl2KKFvdibOk0 -# /0rRxU9l+/Yxeb5lVTRERLxzI+Rd6Xv5QQYT6Sp2IE0N1vzIFd3yyO773T5XifNg -# L5lZbtIUnYUVmUBKlVoemO/54aiFeVBpIG+YzhDTF7cuHNAzxWIbP1wt4VIqAV9J -# juqLMvvBSD56pi8NTKM9fxrERAeaTS2HbfBYfmnRZ27Czjeo0ijQ5DSZGi0ErvWf -# KQIDAQABo4IBGzCCARcwHQYDVR0OBBYEFMvEShFgSkO3OnzgHlaVk3aQ/iprMB8G -# A1UdIwQYMBaAFNVjOlyKMZDzQ3t8RhvFM2hahW1VMFYGA1UdHwRPME0wS6BJoEeG -# RWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Rp -# bVN0YVBDQV8yMDEwLTA3LTAxLmNybDBaBggrBgEFBQcBAQROMEwwSgYIKwYBBQUH -# MAKGPmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljVGltU3Rh -# UENBXzIwMTAtMDctMDEuY3J0MAwGA1UdEwEB/wQCMAAwEwYDVR0lBAwwCgYIKwYB -# BQUHAwgwDQYJKoZIhvcNAQELBQADggEBAC1BrcOhdhtb9xcAJtxVIUZ7iALwZewX -# FIdPcmDAVT810k5xuRwVNW9Onq+WZO8ebqwiOSdEEHReLU0FOo/DbS7q79PsKdz/ -# PSBPqZ/1ysjRVH0L5HUK2N7NgpkR1lnt+41BaOzJ+00OFDL5GqeqvK3RWh7MtqWF -# 6KKcfNkP/hjiFlg9/S7xNK/Vl8q10HB5YbdBTQun8j1Jsih6YMb3tFQsxw++ra5+ -# FSnc4yJhAYvVaqTKRKepEmwzYhwDiXh2ag80/p0uDkOvs1WhgogwidpBVmNLAMxm -# FavK9+LNfRKvPIuCQw+EsxWR8vFBBJDfs14WTsXVF94CQ1YCHqYI5EEwggZxMIIE -# WaADAgECAgphCYEqAAAAAAACMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJV -# UzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UE -# ChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9v -# dCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgMjAxMDAeFw0xMDA3MDEyMTM2NTVaFw0y -# NTA3MDEyMTQ2NTVaMHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9u -# MRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRp -# b24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwMIIBIjAN -# BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqR0NvHcRijog7PwTl/X6f2mUa3RU -# ENWlCgCChfvtfGhLLF/Fw+Vhwna3PmYrW/AVUycEMR9BGxqVHc4JE458YTBZsTBE -# D/FgiIRUQwzXTbg4CLNC3ZOs1nMwVyaCo0UN0Or1R4HNvyRgMlhgRvJYR4YyhB50 -# YWeRX4FUsc+TTJLBxKZd0WETbijGGvmGgLvfYfxGwScdJGcSchohiq9LZIlQYrFd -# /XcfPfBXday9ikJNQFHRD5wGPmd/9WbAA5ZEfu/QS/1u5ZrKsajyeioKMfDaTgaR -# togINeh4HLDpmc085y9Euqf03GS9pAHBIAmTeM38vMDJRF1eFpwBBU8iTQIDAQAB -# o4IB5jCCAeIwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFNVjOlyKMZDzQ3t8 -# RhvFM2hahW1VMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB -# hjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFNX2VsuP6KJcYmjRPZSQW9fO -# mhjEMFYGA1UdHwRPME0wS6BJoEeGRWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w -# a2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNybDBaBggr -# BgEFBQcBAQROMEwwSgYIKwYBBQUHMAKGPmh0dHA6Ly93d3cubWljcm9zb2Z0LmNv -# bS9wa2kvY2VydHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYtMjMuY3J0MIGgBgNVHSAB -# Af8EgZUwgZIwgY8GCSsGAQQBgjcuAzCBgTA9BggrBgEFBQcCARYxaHR0cDovL3d3 -# dy5taWNyb3NvZnQuY29tL1BLSS9kb2NzL0NQUy9kZWZhdWx0Lmh0bTBABggrBgEF -# BQcCAjA0HjIgHQBMAGUAZwBhAGwAXwBQAG8AbABpAGMAeQBfAFMAdABhAHQAZQBt -# AGUAbgB0AC4gHTANBgkqhkiG9w0BAQsFAAOCAgEAB+aIUQ3ixuCYP4FxAz2do6Eh -# b7Prpsz1Mb7PBeKp/vpXbRkws8LFZslq3/Xn8Hi9x6ieJeP5vO1rVFcIK1GCRBL7 -# uVOMzPRgEop2zEBAQZvcXBf/XPleFzWYJFZLdO9CEMivv3/Gf/I3fVo/HPKZeUqR -# UgCvOA8X9S95gWXZqbVr5MfO9sp6AG9LMEQkIjzP7QOllo9ZKby2/QThcJ8ySif9 -# Va8v/rbljjO7Yl+a21dA6fHOmWaQjP9qYn/dxUoLkSbiOewZSnFjnXshbcOco6I8 -# +n99lmqQeKZt0uGc+R38ONiU9MalCpaGpL2eGq4EQoO4tYCbIjggtSXlZOz39L9+ -# Y1klD3ouOVd2onGqBooPiRa6YacRy5rYDkeagMXQzafQ732D8OE7cQnfXXSYIghh -# 2rBQHm+98eEA3+cxB6STOvdlR3jo+KhIq/fecn5ha293qYHLpwmsObvsxsvYgrRy -# zR30uIUBHoD7G4kqVDmyW9rIDVWZeodzOwjmmC3qjeAzLhIp9cAvVCch98isTtoo -# uLGp25ayp0Kiyc8ZQU3ghvkqmqMRZjDTu3QyS99je/WZii8bxyGvWbWu3EQ8l1Bx -# 16HSxVXjad5XwdHeMMD9zOZN+w2/XU/pnR4ZOC+8z1gFLu8NoFA12u8JJxzVs341 -# Hgi62jbb01+P3nSISRKhggLSMIICOwIBATCB/KGB1KSB0TCBzjELMAkGA1UEBhMC -# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV -# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEpMCcGA1UECxMgTWljcm9zb2Z0IE9w -# ZXJhdGlvbnMgUHVlcnRvIFJpY28xJjAkBgNVBAsTHVRoYWxlcyBUU1MgRVNOOjMy -# QkQtRTNENS0zQjFEMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2 -# aWNloiMKAQEwBwYFKw4DAhoDFQCas/oKGtvPRrHuznufk+indULyDKCBgzCBgKR+ -# MHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMT -# HU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwMA0GCSqGSIb3DQEBBQUAAgUA -# 5Vtd4DAiGA8yMDIxMTIwODIwMzc1MloYDzIwMjExMjA5MjAzNzUyWjB3MD0GCisG -# AQQBhFkKBAExLzAtMAoCBQDlW13gAgEAMAoCAQACAiXlAgH/MAcCAQACAhIPMAoC -# BQDlXK9gAgEAMDYGCisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEA -# AgMHoSChCjAIAgEAAgMBhqAwDQYJKoZIhvcNAQEFBQADgYEAM2SMFWUY36bc2OtE -# Rp28goB1/JaCRplwIWPeW6MSG1c3i2g4X2GIc4vvRrc834fuuJ+Qm07NFeRHQA61 -# lJAHbTlZBMdkDILSVP+20NGOy6B3k5K1WMfGN0Et9EQJpvfEJaB2F4d+LCCNd/MM -# dXEvG2iFxgW3C4TCWZENGlxsa5ExggMNMIIDCQIBATCBkzB8MQswCQYDVQQGEwJV -# UzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UE -# ChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGlt -# ZS1TdGFtcCBQQ0EgMjAxMAITMwAAAWLQ/gLzAeXNSQAAAAABYjANBglghkgBZQME -# AgEFAKCCAUowGgYJKoZIhvcNAQkDMQ0GCyqGSIb3DQEJEAEEMC8GCSqGSIb3DQEJ -# BDEiBCB66+Xkbn3ewO+BRQNGeKLsT3CZTxRw6oyH+Hqt0XKBjzCB+gYLKoZIhvcN -# AQkQAi8xgeowgecwgeQwgb0EIIqqGJX7PA0OulTsNEHsyLnvGLoYE1iwaOBmqrap -# UwoyMIGYMIGApH4wfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24x -# EDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlv -# bjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTACEzMAAAFi -# 0P4C8wHlzUkAAAAAAWIwIgQgPmj2PBaeW66dmUvg/M3GbG9dSU9ROIZo6V1zy7iW -# 604wDQYJKoZIhvcNAQELBQAEggEA6MvaPUzarjssGW9T9f6ohr8y3PWDaJKtB/jB -# siPN63Ektk0b2P1aJLd+FV3f3m4dq25TfYZEIliZtog2M9YOce/24reMnhBbyWwO -# tVGurL4kJQ2+z3qsASFQvZxc4O2NVFQDyyued5Y4+imuQGM3u4TOo5DSTCsvqw89 -# P5J99wB5W9hifpU65qjBROE+LNY6aMF0bIGeDbqb0m9cPe8JE2gZN+SMQQ9kzTUm -# eLAuoyvdm6wGrsx8/xgC2XFHA47DLev3lgUfx6FczxiRna/aI6Y8oqY+Z/R5Vd/L -# vZwZYPSInN7G2gVwJV9/VzLkLQ5hjDJrDMAyZ1smJnQAdnVlLg== -# SIG # End signature block diff --git a/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psm1 b/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psm1 deleted file mode 100644 index f4c16f0..0000000 --- a/linguard/core/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psm1 +++ /dev/null @@ -1,663 +0,0 @@ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. - -<# - PowerShell Diagnostics Module - This module contains a set of wrapper scripts that - enable a user to use ETW tracing in Windows - PowerShell. - #> - -$script:Logman="$env:windir\system32\logman.exe" -$script:wsmanlogfile = "$env:windir\system32\wsmtraces.log" -$script:wsmprovfile = "$env:windir\system32\wsmtraceproviders.txt" -$script:wsmsession = "wsmlog" -$script:pssession = "PSTrace" -$script:psprovidername="Microsoft-Windows-PowerShell" -$script:wsmprovidername = "Microsoft-Windows-WinRM" -$script:oplog = "/Operational" -$script:analyticlog="/Analytic" -$script:debuglog="/Debug" -$script:wevtutil="$env:windir\system32\wevtutil.exe" -$script:slparam = "sl" -$script:glparam = "gl" - -function Start-Trace -{ - Param( - [Parameter(Mandatory=$true, - Position=0)] - [string] - $SessionName, - [Parameter(Position=1)] - [ValidateNotNullOrEmpty()] - [string] - $OutputFilePath, - [Parameter(Position=2)] - [ValidateNotNullOrEmpty()] - [string] - $ProviderFilePath, - [Parameter()] - [Switch] - $ETS, - [Parameter()] - [ValidateSet("bin", "bincirc", "csv", "tsv", "sql")] - $Format, - [Parameter()] - [int] - $MinBuffers=0, - [Parameter()] - [int] - $MaxBuffers=256, - [Parameter()] - [int] - $BufferSizeInKB = 0, - [Parameter()] - [int] - $MaxLogFileSizeInMB=0 - ) - - Process - { - $executestring = " start $SessionName" - - if ($ETS) - { - $executestring += " -ets" - } - - if ($null -ne $OutputFilePath) - { - $executestring += " -o ""$OutputFilePath""" - } - - if ($null -ne $ProviderFilePath) - { - $executestring += " -pf ""$ProviderFilePath""" - } - - if ($null -ne $Format) - { - $executestring += " -f $Format" - } - - if ($MinBuffers -ne 0 -or $MaxBuffers -ne 256) - { - $executestring += " -nb $MinBuffers $MaxBuffers" - } - - if ($BufferSizeInKB -ne 0) - { - $executestring += " -bs $BufferSizeInKB" - } - - if ($MaxLogFileSizeInMB -ne 0) - { - $executestring += " -max $MaxLogFileSizeInMB" - } - - & $script:Logman $executestring.Split(" ") - } -} - -function Stop-Trace -{ - param( - [Parameter(Mandatory=$true, - Position=0)] - $SessionName, - [Parameter()] - [switch] - $ETS - ) - - Process - { - if ($ETS) - { - & $script:Logman update $SessionName -ets - & $script:Logman stop $SessionName -ets - } - else - { - & $script:Logman update $SessionName - & $script:Logman stop $SessionName - } - } -} - -function Enable-WSManTrace -{ - - # winrm - "{04c6e16d-b99f-4a3a-9b3e-b8325bbc781e} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii - - # winrsmgr - "{c0a36be8-a515-4cfa-b2b6-2676366efff7} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - # WinrsExe - "{f1cab2c0-8beb-4fa2-90e1-8f17e0acdd5d} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - # WinrsCmd - "{03992646-3dfe-4477-80e3-85936ace7abb} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - # IPMIPrv - "{651d672b-e11f-41b7-add3-c2f6a4023672} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - #IpmiDrv - "{D5C6A3E9-FA9C-434e-9653-165B4FC869E4} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - # WSManProvHost - "{6e1b64d7-d3be-4651-90fb-3583af89d7f1} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - # Event Forwarding - "{6FCDF39A-EF67-483D-A661-76D715C6B008} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - Start-Trace -SessionName $script:wsmsession -ETS -OutputFilePath $script:wsmanlogfile -Format bincirc -MinBuffers 16 -MaxBuffers 256 -BufferSizeInKB 64 -MaxLogFileSizeInMB 256 -ProviderFilePath $script:wsmprovfile -} - -function Disable-WSManTrace -{ - Stop-Trace $script:wsmsession -ETS -} - -function Enable-PSWSManCombinedTrace -{ - param ( - [switch] $DoNotOverwriteExistingTrace - ) - - $provfile = [io.path]::GetTempFilename() - - $traceFileName = [string][Guid]::NewGuid() - if ($DoNotOverwriteExistingTrace) { - $fileName = [string][guid]::newguid() - $logfile = $PSHOME + "\\Traces\\PSTrace_$fileName.etl" - } else { - $logfile = $PSHOME + "\\Traces\\PSTrace.etl" - } - - "Microsoft-Windows-PowerShell 0 5" | Out-File $provfile -Encoding ascii - "Microsoft-Windows-WinRM 0 5" | Out-File $provfile -Encoding ascii -Append - - if (!(Test-Path $PSHOME\Traces)) - { - New-Item -ItemType Directory -Force $PSHOME\Traces | Out-Null - } - - if (Test-Path $logfile) - { - Remove-Item -Force $logfile | Out-Null - } - - Start-Trace -SessionName $script:pssession -OutputFilePath $logfile -ProviderFilePath $provfile -ETS - - Remove-Item $provfile -Force -ea 0 -} - -function Disable-PSWSManCombinedTrace -{ - Stop-Trace -SessionName $script:pssession -ETS -} - -function Set-LogProperties -{ - param( - [Parameter(Mandatory=$true, Position=0, ValueFromPipeline=$true)] - [Microsoft.PowerShell.Diagnostics.LogDetails] - $LogDetails, - [switch] $Force - ) - - Process - { - if ($LogDetails.AutoBackup -and !$LogDetails.Retention) - { - throw (New-Object System.InvalidOperationException) - } - - $enabled = $LogDetails.Enabled.ToString() - $retention = $LogDetails.Retention.ToString() - $autobackup = $LogDetails.AutoBackup.ToString() - $maxLogSize = $LogDetails.MaxLogSize.ToString() - $osVersion = [Version] (Get-CimInstance Win32_OperatingSystem).Version - - if (($LogDetails.Type -eq "Analytic") -or ($LogDetails.Type -eq "Debug")) - { - if ($LogDetails.Enabled) - { - if($osVersion -lt 6.3.7600) - { - & $script:wevtutil $script:slparam $LogDetails.Name -e:$Enabled - } - else - { - & $script:wevtutil /q:$Force $script:slparam $LogDetails.Name -e:$Enabled - } - } - else - { - if($osVersion -lt 6.3.7600) - { - & $script:wevtutil $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ms:$MaxLogSize - } - else - { - & $script:wevtutil /q:$Force $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ms:$MaxLogSize - } - } - } - else - { - if($osVersion -lt 6.3.7600) - { - & $script:wevtutil $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ab:$AutoBackup -ms:$MaxLogSize - } - else - { - & $script:wevtutil /q:$Force $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ab:$AutoBackup -ms:$MaxLogSize - } - } - } -} - -function ConvertTo-Bool([string]$value) -{ - if ($value -ieq "true") - { - return $true - } - else - { - return $false - } -} - -function Get-LogProperties -{ - param( - [Parameter(Mandatory=$true, ValueFromPipeline=$true, Position=0)] $Name - ) - - Process - { - $details = & $script:wevtutil $script:glparam $Name - $indexes = @(1,2,8,9,10) - $value = @() - foreach($index in $indexes) - { - $value += @(($details[$index].SubString($details[$index].IndexOf(":")+1)).Trim()) - } - - $enabled = ConvertTo-Bool $value[0] - $retention = ConvertTo-Bool $value[2] - $autobackup = ConvertTo-Bool $value[3] - - New-Object Microsoft.PowerShell.Diagnostics.LogDetails $Name, $enabled, $value[1], $retention, $autobackup, $value[4] - } -} - -function Enable-PSTrace -{ - param( - [switch] $Force, - [switch] $AnalyticOnly - ) - - $Properties = Get-LogProperties ($script:psprovidername + $script:analyticlog) - - if (!$Properties.Enabled) { - $Properties.Enabled = $true - if ($Force) { - Set-LogProperties $Properties -Force - } else { - Set-LogProperties $Properties - } - } - - if (!$AnalyticOnly) { - $Properties = Get-LogProperties ($script:psprovidername + $script:debuglog) - if (!$Properties.Enabled) { - $Properties.Enabled = $true - if ($Force) { - Set-LogProperties $Properties -Force - } else { - Set-LogProperties $Properties - } - } - } -} - -function Disable-PSTrace -{ - param( - [switch] $AnalyticOnly - ) - $Properties = Get-LogProperties ($script:psprovidername + $script:analyticlog) - if ($Properties.Enabled) { - $Properties.Enabled = $false - Set-LogProperties $Properties - } - - if (!$AnalyticOnly) { - $Properties = Get-LogProperties ($script:psprovidername + $script:debuglog) - if ($Properties.Enabled) { - $Properties.Enabled = $false - Set-LogProperties $Properties - } - } -} -Add-Type @" -using System; - -namespace Microsoft.PowerShell.Diagnostics -{ - public class LogDetails - { - public string Name - { - get - { - return name; - } - } - private string name; - - public bool Enabled - { - get - { - return enabled; - } - set - { - enabled = value; - } - } - private bool enabled; - - public string Type - { - get - { - return type; - } - } - private string type; - - public bool Retention - { - get - { - return retention; - } - set - { - retention = value; - } - } - private bool retention; - - public bool AutoBackup - { - get - { - return autoBackup; - } - set - { - autoBackup = value; - } - } - private bool autoBackup; - - public int MaxLogSize - { - get - { - return maxLogSize; - } - set - { - maxLogSize = value; - } - } - private int maxLogSize; - - public LogDetails(string name, bool enabled, string type, bool retention, bool autoBackup, int maxLogSize) - { - this.name = name; - this.enabled = enabled; - this.type = type; - this.retention = retention; - this.autoBackup = autoBackup; - this.maxLogSize = maxLogSize; - } - } -} -"@ - -if (Get-Command logman.exe -Type Application -ErrorAction SilentlyContinue) -{ - Export-ModuleMember Disable-PSTrace, Disable-PSWSManCombinedTrace, Disable-WSManTrace, Enable-PSTrace, Enable-PSWSManCombinedTrace, Enable-WSManTrace, Get-LogProperties, Set-LogProperties, Start-Trace, Stop-Trace -} -else -{ - # Currently we only support these cmdlets as logman.exe is not available on systems like Nano and IoT - Export-ModuleMember Disable-PSTrace, Enable-PSTrace, Get-LogProperties, Set-LogProperties -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCBzuFp8c8UN6ilP -# /hSmUPDtAUbo8uWTs6wUbaR/ZpM1B6CCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgSB3jjVY/ -# WMZ8WHFGDewy2JQLkkMsgxe7OQ9hGxl1POAwQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQDECdQe+dGfTQ9+1MUoap76UXkZqRUtWJtHANEX9QRF -# zu/zYxq/dvy7faWSumOPbC+fRwu+83u+3CYadkq+B7I6NDeWqTacnJnPk+uV78yi -# UnGjJx9i8cu6fUBS7HhFg1+VS5IZsor64K33Etj9NPBvVxW/AdbcA1Vm1/HCcnfC -# ZVVP8SUsEQsnksf1sgEix5zjYP5yoRrc7zZ31CsfFUseccW0GbjWVellm+JVYQR8 -# PyRw/UvU9wBEGmoG05yKQHMtIQzbgamTF+mFpvvLdNamUk2kTBtPw8esiUQSQSKT -# 893Bw7LCuWiqo8pwi1U45lsh2/5GrxKGyLwQY3vXep01oYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIEeWczI88EUPcg8HePXnLkMZtTRhTovyeZypUyUE -# AkF4AgZhlV5AOFwYEzIwMjExMjA4MjEwNDE0LjA2NVowBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046M0JENC00QjgwLTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYm0v4YwhBxL -# jwABAAABiTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3NDFaFw0yMzAxMjYxOTI3NDFaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjNCRDQtNEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvQZXxZFm -# a6plmuOyvNpV8xONOwcYolZG/BjyZWGSk5JOGaLyrKId5VxVHWHlsmJE4Svnzsdp -# sKmVx8otONveIUFvSceEZp8VXmu5m1fu8L7c+3lwXcibjccqtEvtQslokQVx0r+L -# 54abrNDarwFG73IaRidIS1i9c+unJ8oYyhDRLrCysFAVxyQhPNZkWK7Z8/VGukaK -# LAWHXCh/+R53h42gFL+9/mAALxzCXXuofi8f/XKCm7xNwVc1hONCCz6oq94AufzV -# NkkIW4brUQgYpCcJm9U0XNmQvtropYDn9UtY8YQ0NKenXPtdgLHdQ8Nnv3igErKL -# rWI0a5n5jjdKfwk+8mvakqdZmlOseeOS1XspQNJAK1uZllAITcnQZOcO5ofjOQ33 -# ujWckAXdz+/x3o7l4AU/TSOMzGZMwhUdtVwC3dSbItpSVFgnjM2COEJ9zgCadvOi -# rGDLN471jZI2jClkjsJTdgPk343TQA4JFvds/unZq0uLr+niZ3X44OBx2x+gVlln -# 2c4UbZXNueA4yS1TJGbbJFIILAmTUA9Auj5eISGTbNiyWx79HnCOTar39QEKozm4 -# LnTmDXy0/KI/H/nYZGKuTHfckP28wQS06rD+fDS5xLwcRMCW92DkHXmtbhGyRilB -# OL5LxZelQfxt54wl4WUC0AdAEolPekODwO8CAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBSXbx+zR1p4IIAeguA6rHKkrfl7UDAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQCOtLdpWUI4KwfLLrfaKrLB92Dq -# bAspGWM41TaO4Jl+sHxPo522uu3GKQCjmkRWreHtlfyy9kOk7LWax3k3ke8Gtfet -# fbh7qH0LeV2XOWg39BOnHf6mTcZq7FYSZZch1JDQjc98+Odlow+oWih0Dbt4CV/e -# 19ZcE+1n1zzWkskUEd0f5jPIUis33p+vkY8szduAtCcIcPFUhI8Hb5alPUAPMjGz -# wKb7NIKbnf8j8cP18As5IveckF0oh1cw63RY/vPK62LDYdpi7WnG2ObvngfWVKtw -# iwTI4jHj2cO9q37HDe/PPl216gSpUZh0ap24mKmMDfcKp1N4mEdsxz4oseOrPYeF -# sHHWJFJ6Aivvqn70KTeJpp5r+DxSqbeSy0mxIUOq/lAaUxgNSQVUX26t8r+fciko -# fKv23WHrtRV3t7rVTsB9YzrRaiikmz68K5HWdt9MqULxPQPo+ppZ0LRqkOae466+ -# UKRY0JxWtdrMc5vHlHZfnqjawj/RsM2S6Q6fa9T9CnY1Nz7DYBG3yZJyCPFsrgU0 -# 5s9ljqfsSptpFdUh9R4ce+L71SWDLM2x/1MFLLHAMbXsEp8KloEGtaDULnxtfS2t -# YhfuKGqRXoEfDPAMnIdTvQPh3GHQ4SjkkBARHL0MY75alhGTKHWjC2aLVOo8obKI -# Bk8hfnFDUf/EyVw4uTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0JENC00Qjgw -# LTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVACGlCa3ketyeuey7bJNpWkMuiCcQoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tYMCIY -# DzIwMjExMjA5MDM1MTUyWhgPMjAyMTEyMTAwMzUxNTJaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi1gCAQAwCgIBAAICHvwCAf8wBwIBAAICETcwCgIFAOVc3NgC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQCbF/Q1IJzqUwQBkXn+GjUxZzVN -# O+9p1fpL7W8dEy9/m1L7dl968KiYqfO5rekvXeSUDTFYrkS/r0w8p2ZZ7d0TMtJt -# TrKmc85aRmxtSvCNAS2stE2sS2Y5np5+/02w3DDn3Nni6vvF8nsuiIlbiyHrGQrC -# 9eis1rpLSNvXisSYoDGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABibS/hjCEHEuPAAEAAAGJMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIE9C -# YLePpB7z2n25zIz6S9czmnMvqhq9zWDUWGRetdy3MIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgZndHMdxQV1VsbpWHOTHqWEycvcRJm7cY69l/UmT8j0UwgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYm0v4YwhBxL -# jwABAAABiTAiBCCErc3WAJDL+6+RTcx4qvTV2Dv0bP6a0jmZjnUp3u9sbzANBgkq -# hkiG9w0BAQsFAASCAgCLuF4LX6ghAt1uercf24wmzMJ22FHRyklnWLILmQXDOSwZ -# bLzptb/gXN2KtDnQU3xF02SLNfmPvFCYkU7l9pYTmDQ18Pm6GtnwLMke8xbMlWsl -# 2gZCMMI3Q40kidzeZ3yYggxf5a+YP0JI3rcgZuRDnEeJ69oUqVvD/sWPTuWqKV7V -# 2jb5gnLURKrzDKPYf1trvb7M2oRkxXToLOEtbsHI2O46WJCbGrYlERk6Sp8+nmPD -# oQ7Lz8Vq5xXn3L8z3QqDI0UCdxxd32JBQbzMZ21xI+JgljiGXv3TSrtz+0M88mLM -# m+Kf7LHqDN3v6xfGI+AWD5KPfxzLekMmtTIlkeA93MolkgeFfkx5BpqbWLrbd63S -# RzhF88sZt47hwzoDfn4DMzFOrtbJqbdVWcVtIgY07AmWUSvpNtXgljty4kzg1rHV -# v2m6ezcnQa0D9a8WQJSd+gRfD6BEmDBOyGL7w49Tcgp2vZiWWdnHrWeRXMp+N4Fs -# 4IbQ51teHXISCvqZoVaz8/jEvWPftKkwcXuM89+S7hN4NMq0zpON1lizLV/FPP7p -# bpAQuaBgSY2f0Hfyko8JAH/KJFpmuzjTTcUAwvru2dsCdakB4kd6k6JHpu+XjWez -# M4lfX7MZegJiXfCQ8QBIKwg80WLwjJjjHrvTap+yPG9goxm6Nzh+UftgAcz+Qw== -# SIG # End signature block diff --git a/linguard/core/managers/YamlConfigurationManager.cs b/linguard/core/managers/YamlConfigurationManager.cs deleted file mode 100644 index 694432c..0000000 --- a/linguard/core/managers/YamlConfigurationManager.cs +++ /dev/null @@ -1,32 +0,0 @@ -using Linguard.Core.Configuration; -using Linguard.Core.Configuration.Serialization; -using Linguard.Core.Utils; - -namespace Linguard.Core.Managers; - -public class YamlConfigurationManager : FileConfigurationManager { - private static readonly string[] SupportedExtensions = {"yaml", "yml"}; - - private FileInfo? _configurationFile; - protected sealed override FileInfo ConfigurationFile { - get { - if (_configurationFile != default) return _configurationFile; - var filename = Path.Combine(WorkingDirectory.BaseDirectory.FullName, AssemblyInfo.Product.ToLower()); - var tries = 0; - while (tries < SupportedExtensions.Length && _configurationFile is not { Exists: true }) { - var filepath = Path.ChangeExtension(filename, SupportedExtensions[tries]); - _configurationFile = new FileInfo(filepath); - tries++; - } - return _configurationFile!; - } - } - - public override void LoadDefaults() { - // Ignore - } - - public YamlConfigurationManager(IConfiguration configuration, IWorkingDirectory workingDirectory) - : base(configuration, workingDirectory, new YamlConfigurationSerializer()) { - } -} \ No newline at end of file diff --git a/linguard/core/obj/Core.csproj.nuget.dgspec.json b/linguard/core/obj/Core.csproj.nuget.dgspec.json deleted file mode 100644 index a5712e7..0000000 --- a/linguard/core/obj/Core.csproj.nuget.dgspec.json +++ /dev/null @@ -1,152 +0,0 @@ -{ - "format": 1, - "restore": { - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj": {} - }, - "projects": { - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj": { - "version": "2.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj", - "projectName": "Linguard.Core", - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj", - "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": { - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj": { - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "Bogus": { - "target": "Package", - "version": "[34.0.1, )" - }, - "ByteSize": { - "target": "Package", - "version": "[2.1.1, )" - }, - "FluentValidation": { - "target": "Package", - "version": "[10.3.6, )" - }, - "IPNetwork2": { - "target": "Package", - "version": "[2.5.386, )" - }, - "Microsoft.PowerShell.SDK": { - "target": "Package", - "version": "[7.2.1, )" - }, - "System.Management.Automation": { - "target": "Package", - "version": "[7.2.1, )" - }, - "YamlDotNet": { - "target": "Package", - "version": "[11.2.1, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" - } - } - }, - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj": { - "version": "2.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj", - "projectName": "Linguard.Log", - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj", - "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "NLog": { - "target": "Package", - "version": "[4.7.13, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/linguard/core/obj/Core.csproj.nuget.g.props b/linguard/core/obj/Core.csproj.nuget.g.props deleted file mode 100644 index a320f3a..0000000 --- a/linguard/core/obj/Core.csproj.nuget.g.props +++ /dev/null @@ -1,1956 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\theyu\.nuget\packages\ - PackageReference - 6.0.0 - - - - - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\Microsoft.CSharp.dll - ref\ - True - ref\Microsoft.CSharp.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\Microsoft.VisualBasic.Core.dll - ref\ - True - ref\Microsoft.VisualBasic.Core.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\Microsoft.VisualBasic.dll - ref\ - True - ref\Microsoft.VisualBasic.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\Microsoft.Win32.Primitives.dll - ref\ - True - ref\Microsoft.Win32.Primitives.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\Microsoft.Win32.Registry.dll - ref\ - True - ref\Microsoft.Win32.Registry.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.AppContext.dll - ref\ - True - ref\System.AppContext.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Buffers.dll - ref\ - True - ref\System.Buffers.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Collections.Concurrent.dll - ref\ - True - ref\System.Collections.Concurrent.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Collections.Immutable.dll - ref\ - True - ref\System.Collections.Immutable.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Collections.NonGeneric.dll - ref\ - True - ref\System.Collections.NonGeneric.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Collections.Specialized.dll - ref\ - True - ref\System.Collections.Specialized.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Collections.dll - ref\ - True - ref\System.Collections.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.ComponentModel.Annotations.dll - ref\ - True - ref\System.ComponentModel.Annotations.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.ComponentModel.DataAnnotations.dll - ref\ - True - ref\System.ComponentModel.DataAnnotations.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.ComponentModel.EventBasedAsync.dll - ref\ - True - ref\System.ComponentModel.EventBasedAsync.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.ComponentModel.Primitives.dll - ref\ - True - ref\System.ComponentModel.Primitives.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.ComponentModel.TypeConverter.dll - ref\ - True - ref\System.ComponentModel.TypeConverter.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.ComponentModel.dll - ref\ - True - ref\System.ComponentModel.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Configuration.dll - ref\ - True - ref\System.Configuration.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Console.dll - ref\ - True - ref\System.Console.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Core.dll - ref\ - True - ref\System.Core.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Data.Common.dll - ref\ - True - ref\System.Data.Common.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Data.DataSetExtensions.dll - ref\ - True - ref\System.Data.DataSetExtensions.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Data.dll - ref\ - True - ref\System.Data.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Diagnostics.Contracts.dll - ref\ - True - ref\System.Diagnostics.Contracts.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Diagnostics.Debug.dll - ref\ - True - ref\System.Diagnostics.Debug.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Diagnostics.DiagnosticSource.dll - ref\ - True - ref\System.Diagnostics.DiagnosticSource.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Diagnostics.FileVersionInfo.dll - ref\ - True - ref\System.Diagnostics.FileVersionInfo.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Diagnostics.Process.dll - ref\ - True - ref\System.Diagnostics.Process.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Diagnostics.StackTrace.dll - ref\ - True - ref\System.Diagnostics.StackTrace.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Diagnostics.TextWriterTraceListener.dll - ref\ - True - ref\System.Diagnostics.TextWriterTraceListener.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Diagnostics.Tools.dll - ref\ - True - ref\System.Diagnostics.Tools.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Diagnostics.TraceSource.dll - ref\ - True - ref\System.Diagnostics.TraceSource.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Diagnostics.Tracing.dll - ref\ - True - ref\System.Diagnostics.Tracing.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Drawing.Primitives.dll - ref\ - True - ref\System.Drawing.Primitives.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Drawing.dll - ref\ - True - ref\System.Drawing.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Dynamic.Runtime.dll - ref\ - True - ref\System.Dynamic.Runtime.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Formats.Asn1.dll - ref\ - True - ref\System.Formats.Asn1.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Globalization.Calendars.dll - ref\ - True - ref\System.Globalization.Calendars.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Globalization.Extensions.dll - ref\ - True - ref\System.Globalization.Extensions.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Globalization.dll - ref\ - True - ref\System.Globalization.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.IO.Compression.Brotli.dll - ref\ - True - ref\System.IO.Compression.Brotli.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.IO.Compression.FileSystem.dll - ref\ - True - ref\System.IO.Compression.FileSystem.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.IO.Compression.ZipFile.dll - ref\ - True - ref\System.IO.Compression.ZipFile.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.IO.Compression.dll - ref\ - True - ref\System.IO.Compression.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.IO.FileSystem.AccessControl.dll - ref\ - True - ref\System.IO.FileSystem.AccessControl.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.IO.FileSystem.DriveInfo.dll - ref\ - True - ref\System.IO.FileSystem.DriveInfo.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.IO.FileSystem.Primitives.dll - ref\ - True - ref\System.IO.FileSystem.Primitives.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.IO.FileSystem.Watcher.dll - ref\ - True - ref\System.IO.FileSystem.Watcher.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.IO.FileSystem.dll - ref\ - True - ref\System.IO.FileSystem.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.IO.IsolatedStorage.dll - ref\ - True - ref\System.IO.IsolatedStorage.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.IO.MemoryMappedFiles.dll - ref\ - True - ref\System.IO.MemoryMappedFiles.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.IO.Pipes.AccessControl.dll - ref\ - True - ref\System.IO.Pipes.AccessControl.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.IO.Pipes.dll - ref\ - True - ref\System.IO.Pipes.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.IO.UnmanagedMemoryStream.dll - ref\ - True - ref\System.IO.UnmanagedMemoryStream.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.IO.dll - ref\ - True - ref\System.IO.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Linq.Expressions.dll - ref\ - True - ref\System.Linq.Expressions.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Linq.Parallel.dll - ref\ - True - ref\System.Linq.Parallel.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Linq.Queryable.dll - ref\ - True - ref\System.Linq.Queryable.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Linq.dll - ref\ - True - ref\System.Linq.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Memory.dll - ref\ - True - ref\System.Memory.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Net.Http.Json.dll - ref\ - True - ref\System.Net.Http.Json.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Net.Http.dll - ref\ - True - ref\System.Net.Http.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Net.HttpListener.dll - ref\ - True - ref\System.Net.HttpListener.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Net.Mail.dll - ref\ - True - ref\System.Net.Mail.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Net.NameResolution.dll - ref\ - True - ref\System.Net.NameResolution.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Net.NetworkInformation.dll - ref\ - True - ref\System.Net.NetworkInformation.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Net.Ping.dll - ref\ - True - ref\System.Net.Ping.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Net.Primitives.dll - ref\ - True - ref\System.Net.Primitives.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Net.Requests.dll - ref\ - True - ref\System.Net.Requests.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Net.Security.dll - ref\ - True - ref\System.Net.Security.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Net.ServicePoint.dll - ref\ - True - ref\System.Net.ServicePoint.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Net.Sockets.dll - ref\ - True - ref\System.Net.Sockets.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Net.WebClient.dll - ref\ - True - ref\System.Net.WebClient.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Net.WebHeaderCollection.dll - ref\ - True - ref\System.Net.WebHeaderCollection.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Net.WebProxy.dll - ref\ - True - ref\System.Net.WebProxy.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Net.WebSockets.Client.dll - ref\ - True - ref\System.Net.WebSockets.Client.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Net.WebSockets.dll - ref\ - True - ref\System.Net.WebSockets.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Net.dll - ref\ - True - ref\System.Net.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Numerics.Vectors.dll - ref\ - True - ref\System.Numerics.Vectors.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Numerics.dll - ref\ - True - ref\System.Numerics.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.ObjectModel.dll - ref\ - True - ref\System.ObjectModel.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Reflection.DispatchProxy.dll - ref\ - True - ref\System.Reflection.DispatchProxy.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Reflection.Emit.ILGeneration.dll - ref\ - True - ref\System.Reflection.Emit.ILGeneration.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Reflection.Emit.Lightweight.dll - ref\ - True - ref\System.Reflection.Emit.Lightweight.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Reflection.Emit.dll - ref\ - True - ref\System.Reflection.Emit.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Reflection.Extensions.dll - ref\ - True - ref\System.Reflection.Extensions.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Reflection.Metadata.dll - ref\ - True - ref\System.Reflection.Metadata.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Reflection.Primitives.dll - ref\ - True - ref\System.Reflection.Primitives.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Reflection.TypeExtensions.dll - ref\ - True - ref\System.Reflection.TypeExtensions.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Reflection.dll - ref\ - True - ref\System.Reflection.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Resources.Reader.dll - ref\ - True - ref\System.Resources.Reader.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Resources.ResourceManager.dll - ref\ - True - ref\System.Resources.ResourceManager.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Resources.Writer.dll - ref\ - True - ref\System.Resources.Writer.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Runtime.CompilerServices.Unsafe.dll - ref\ - True - ref\System.Runtime.CompilerServices.Unsafe.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Runtime.CompilerServices.VisualC.dll - ref\ - True - ref\System.Runtime.CompilerServices.VisualC.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Runtime.Extensions.dll - ref\ - True - ref\System.Runtime.Extensions.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Runtime.Handles.dll - ref\ - True - ref\System.Runtime.Handles.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Runtime.InteropServices.RuntimeInformation.dll - ref\ - True - ref\System.Runtime.InteropServices.RuntimeInformation.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Runtime.InteropServices.dll - ref\ - True - ref\System.Runtime.InteropServices.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Runtime.Intrinsics.dll - ref\ - True - ref\System.Runtime.Intrinsics.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Runtime.Loader.dll - ref\ - True - ref\System.Runtime.Loader.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Runtime.Numerics.dll - ref\ - True - ref\System.Runtime.Numerics.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Runtime.Serialization.Formatters.dll - ref\ - True - ref\System.Runtime.Serialization.Formatters.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Runtime.Serialization.Json.dll - ref\ - True - ref\System.Runtime.Serialization.Json.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Runtime.Serialization.Primitives.dll - ref\ - True - ref\System.Runtime.Serialization.Primitives.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Runtime.Serialization.Xml.dll - ref\ - True - ref\System.Runtime.Serialization.Xml.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Runtime.Serialization.dll - ref\ - True - ref\System.Runtime.Serialization.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Runtime.dll - ref\ - True - ref\System.Runtime.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Security.AccessControl.dll - ref\ - True - ref\System.Security.AccessControl.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Security.Claims.dll - ref\ - True - ref\System.Security.Claims.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Security.Cryptography.Algorithms.dll - ref\ - True - ref\System.Security.Cryptography.Algorithms.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Security.Cryptography.Cng.dll - ref\ - True - ref\System.Security.Cryptography.Cng.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Security.Cryptography.Csp.dll - ref\ - True - ref\System.Security.Cryptography.Csp.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Security.Cryptography.Encoding.dll - ref\ - True - ref\System.Security.Cryptography.Encoding.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Security.Cryptography.OpenSsl.dll - ref\ - True - ref\System.Security.Cryptography.OpenSsl.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Security.Cryptography.Primitives.dll - ref\ - True - ref\System.Security.Cryptography.Primitives.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Security.Cryptography.X509Certificates.dll - ref\ - True - ref\System.Security.Cryptography.X509Certificates.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Security.Principal.Windows.dll - ref\ - True - ref\System.Security.Principal.Windows.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Security.Principal.dll - ref\ - True - ref\System.Security.Principal.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Security.SecureString.dll - ref\ - True - ref\System.Security.SecureString.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Security.dll - ref\ - True - ref\System.Security.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.ServiceModel.Web.dll - ref\ - True - ref\System.ServiceModel.Web.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.ServiceProcess.dll - ref\ - True - ref\System.ServiceProcess.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Text.Encoding.CodePages.dll - ref\ - True - ref\System.Text.Encoding.CodePages.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Text.Encoding.Extensions.dll - ref\ - True - ref\System.Text.Encoding.Extensions.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Text.Encoding.dll - ref\ - True - ref\System.Text.Encoding.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Text.Encodings.Web.dll - ref\ - True - ref\System.Text.Encodings.Web.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Text.Json.dll - ref\ - True - ref\System.Text.Json.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Text.RegularExpressions.dll - ref\ - True - ref\System.Text.RegularExpressions.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Threading.Channels.dll - ref\ - True - ref\System.Threading.Channels.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Threading.Overlapped.dll - ref\ - True - ref\System.Threading.Overlapped.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Threading.Tasks.Dataflow.dll - ref\ - True - ref\System.Threading.Tasks.Dataflow.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Threading.Tasks.Extensions.dll - ref\ - True - ref\System.Threading.Tasks.Extensions.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Threading.Tasks.Parallel.dll - ref\ - True - ref\System.Threading.Tasks.Parallel.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Threading.Tasks.dll - ref\ - True - ref\System.Threading.Tasks.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Threading.Thread.dll - ref\ - True - ref\System.Threading.Thread.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Threading.ThreadPool.dll - ref\ - True - ref\System.Threading.ThreadPool.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Threading.Timer.dll - ref\ - True - ref\System.Threading.Timer.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Threading.dll - ref\ - True - ref\System.Threading.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Transactions.Local.dll - ref\ - True - ref\System.Transactions.Local.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Transactions.dll - ref\ - True - ref\System.Transactions.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.ValueTuple.dll - ref\ - True - ref\System.ValueTuple.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Web.HttpUtility.dll - ref\ - True - ref\System.Web.HttpUtility.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Web.dll - ref\ - True - ref\System.Web.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Windows.dll - ref\ - True - ref\System.Windows.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Xml.Linq.dll - ref\ - True - ref\System.Xml.Linq.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Xml.ReaderWriter.dll - ref\ - True - ref\System.Xml.ReaderWriter.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Xml.Serialization.dll - ref\ - True - ref\System.Xml.Serialization.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Xml.XDocument.dll - ref\ - True - ref\System.Xml.XDocument.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Xml.XPath.XDocument.dll - ref\ - True - ref\System.Xml.XPath.XDocument.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Xml.XPath.dll - ref\ - True - ref\System.Xml.XPath.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Xml.XmlDocument.dll - ref\ - True - ref\System.Xml.XmlDocument.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Xml.XmlSerializer.dll - ref\ - True - ref\System.Xml.XmlSerializer.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.Xml.dll - ref\ - True - ref\System.Xml.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\System.dll - ref\ - True - ref\System.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\WindowsBase.dll - ref\ - True - ref\WindowsBase.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\mscorlib.dll - ref\ - True - ref\mscorlib.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - ref\netstandard.dll - ref\ - True - ref\netstandard.dll - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 - runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Host\ - True - runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 - runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Management\ - True - runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 - runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Security\ - True - runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 - runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Utility\ - True - runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - runtimes\win\lib\net6.0\Modules\CimCmdlets\CimCmdlets.psd1 - runtimes\win\lib\net6.0\Modules\CimCmdlets\ - True - runtimes\win\lib\net6.0\Modules\CimCmdlets\CimCmdlets.psd1 - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Diagnostics.format.ps1xml - runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\ - True - runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Diagnostics.format.ps1xml - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Event.format.ps1xml - runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\ - True - runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Event.format.ps1xml - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\GetEvent.types.ps1xml - runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\ - True - runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\GetEvent.types.ps1xml - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Microsoft.PowerShell.Diagnostics.psd1 - runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\ - True - runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Microsoft.PowerShell.Diagnostics.psd1 - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 - runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Host\ - True - runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 - runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Management\ - True - runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 - runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Security\ - True - runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 - runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Utility\ - True - runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\Microsoft.WSMan.Management.psd1 - runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\ - True - runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\Microsoft.WSMan.Management.psd1 - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\WSMan.format.ps1xml - runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\ - True - runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\WSMan.format.ps1xml - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psd1 - runtimes\win\lib\net6.0\Modules\PSDiagnostics\ - True - runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psd1 - - - Microsoft.PowerShell.SDK - 7.2.1 - None - false - PreserveNewest - runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psm1 - runtimes\win\lib\net6.0\Modules\PSDiagnostics\ - True - runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psm1 - - - - C:\Users\theyu\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.2 - - \ No newline at end of file diff --git a/linguard/core/obj/Core.csproj.nuget.g.targets b/linguard/core/obj/Core.csproj.nuget.g.targets deleted file mode 100644 index 3dc06ef..0000000 --- a/linguard/core/obj/Core.csproj.nuget.g.targets +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/linguard/core/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/linguard/core/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs deleted file mode 100644 index 36203c7..0000000 --- a/linguard/core/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/linguard/core/obj/Debug/net6.0/Core.AssemblyInfo.cs b/linguard/core/obj/Debug/net6.0/Core.AssemblyInfo.cs deleted file mode 100644 index 3983b46..0000000 --- a/linguard/core/obj/Debug/net6.0/Core.AssemblyInfo.cs +++ /dev/null @@ -1,22 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("José Antonio Mazón San Bartolomé")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("2.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("2.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("Linguard")] -[assembly: System.Reflection.AssemblyTitleAttribute("Linguard.Core")] -[assembly: System.Reflection.AssemblyVersionAttribute("2.0.0.0")] - -// Generado por la clase WriteCodeFragment de MSBuild. - diff --git a/linguard/core/obj/Debug/net6.0/Core.AssemblyInfoInputs.cache b/linguard/core/obj/Debug/net6.0/Core.AssemblyInfoInputs.cache deleted file mode 100644 index 8cf798f..0000000 --- a/linguard/core/obj/Debug/net6.0/Core.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -42dc7dcec18b3b0ffe596162affceb09efba0432 diff --git a/linguard/core/obj/Debug/net6.0/Core.GeneratedMSBuildEditorConfig.editorconfig b/linguard/core/obj/Debug/net6.0/Core.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 7a4b9b1..0000000 --- a/linguard/core/obj/Debug/net6.0/Core.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,10 +0,0 @@ -is_global = true -build_property.TargetFramework = net6.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = Linguard.Core -build_property.ProjectDir = C:\Users\theyu\repos\linguard\Linguard\Core\ diff --git a/linguard/core/obj/Debug/net6.0/Core.GlobalUsings.g.cs b/linguard/core/obj/Debug/net6.0/Core.GlobalUsings.g.cs deleted file mode 100644 index 8578f3d..0000000 --- a/linguard/core/obj/Debug/net6.0/Core.GlobalUsings.g.cs +++ /dev/null @@ -1,8 +0,0 @@ -// -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/linguard/core/obj/Debug/net6.0/Core.assets.cache b/linguard/core/obj/Debug/net6.0/Core.assets.cache deleted file mode 100644 index 794fb76..0000000 Binary files a/linguard/core/obj/Debug/net6.0/Core.assets.cache and /dev/null differ diff --git a/linguard/core/obj/Debug/net6.0/Core.csproj.AssemblyReference.cache b/linguard/core/obj/Debug/net6.0/Core.csproj.AssemblyReference.cache deleted file mode 100644 index 9be2078..0000000 Binary files a/linguard/core/obj/Debug/net6.0/Core.csproj.AssemblyReference.cache and /dev/null differ diff --git a/linguard/core/obj/Debug/net6.0/Core.csproj.CopyComplete b/linguard/core/obj/Debug/net6.0/Core.csproj.CopyComplete deleted file mode 100644 index e69de29..0000000 diff --git a/linguard/core/obj/Debug/net6.0/Core.csproj.CoreCompileInputs.cache b/linguard/core/obj/Debug/net6.0/Core.csproj.CoreCompileInputs.cache deleted file mode 100644 index 72cb13a..0000000 --- a/linguard/core/obj/Debug/net6.0/Core.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -e08480963090218d4e97ba8805db50a57ff0d7c4 diff --git a/linguard/core/obj/Debug/net6.0/Core.csproj.FileListAbsolute.txt b/linguard/core/obj/Debug/net6.0/Core.csproj.FileListAbsolute.txt deleted file mode 100644 index f3b84f6..0000000 --- a/linguard/core/obj/Debug/net6.0/Core.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,386 +0,0 @@ -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\Linguard.Core.deps.json -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\Linguard.Core.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\Linguard.Core.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\Linguard.Core.pdb -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\obj\Debug\net6.0\Core.csproj.AssemblyReference.cache -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\obj\Debug\net6.0\Core.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\obj\Debug\net6.0\Core.AssemblyInfoInputs.cache -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\obj\Debug\net6.0\Core.AssemblyInfo.cs -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\obj\Debug\net6.0\Core.csproj.CoreCompileInputs.cache -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\obj\Debug\net6.0\Linguard.Core.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\obj\Debug\net6.0\ref\Linguard.Core.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\obj\Debug\net6.0\Linguard.Core.pdb -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\Microsoft.CSharp.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\Microsoft.VisualBasic.Core.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\Microsoft.VisualBasic.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\Microsoft.Win32.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\Microsoft.Win32.Registry.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.AppContext.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Buffers.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Collections.Concurrent.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Collections.Immutable.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Collections.NonGeneric.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Collections.Specialized.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Collections.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.ComponentModel.Annotations.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.ComponentModel.DataAnnotations.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.ComponentModel.EventBasedAsync.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.ComponentModel.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.ComponentModel.TypeConverter.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.ComponentModel.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Configuration.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Console.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Core.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Data.Common.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Data.DataSetExtensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Data.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Diagnostics.Contracts.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Diagnostics.Debug.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Diagnostics.DiagnosticSource.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Diagnostics.FileVersionInfo.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Diagnostics.Process.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Diagnostics.StackTrace.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Diagnostics.TextWriterTraceListener.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Diagnostics.Tools.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Diagnostics.TraceSource.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Diagnostics.Tracing.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Drawing.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Drawing.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Dynamic.Runtime.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Formats.Asn1.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Globalization.Calendars.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Globalization.Extensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Globalization.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.IO.Compression.Brotli.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.IO.Compression.FileSystem.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.IO.Compression.ZipFile.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.IO.Compression.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.IO.FileSystem.AccessControl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.IO.FileSystem.DriveInfo.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.IO.FileSystem.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.IO.FileSystem.Watcher.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.IO.FileSystem.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.IO.IsolatedStorage.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.IO.MemoryMappedFiles.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.IO.Pipes.AccessControl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.IO.Pipes.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.IO.UnmanagedMemoryStream.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.IO.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Linq.Expressions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Linq.Parallel.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Linq.Queryable.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Linq.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Memory.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Net.Http.Json.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Net.Http.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Net.HttpListener.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Net.Mail.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Net.NameResolution.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Net.NetworkInformation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Net.Ping.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Net.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Net.Requests.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Net.Security.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Net.ServicePoint.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Net.Sockets.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Net.WebClient.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Net.WebHeaderCollection.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Net.WebProxy.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Net.WebSockets.Client.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Net.WebSockets.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Net.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Numerics.Vectors.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Numerics.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.ObjectModel.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Reflection.DispatchProxy.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Reflection.Emit.ILGeneration.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Reflection.Emit.Lightweight.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Reflection.Emit.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Reflection.Extensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Reflection.Metadata.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Reflection.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Reflection.TypeExtensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Reflection.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Resources.Reader.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Resources.ResourceManager.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Resources.Writer.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Runtime.CompilerServices.Unsafe.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Runtime.CompilerServices.VisualC.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Runtime.Extensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Runtime.Handles.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Runtime.InteropServices.RuntimeInformation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Runtime.InteropServices.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Runtime.Intrinsics.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Runtime.Loader.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Runtime.Numerics.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Runtime.Serialization.Formatters.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Runtime.Serialization.Json.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Runtime.Serialization.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Runtime.Serialization.Xml.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Runtime.Serialization.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Runtime.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Security.AccessControl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Security.Claims.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Security.Cryptography.Algorithms.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Security.Cryptography.Cng.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Security.Cryptography.Csp.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Security.Cryptography.Encoding.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Security.Cryptography.OpenSsl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Security.Cryptography.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Security.Cryptography.X509Certificates.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Security.Principal.Windows.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Security.Principal.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Security.SecureString.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Security.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.ServiceModel.Web.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.ServiceProcess.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Text.Encoding.CodePages.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Text.Encoding.Extensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Text.Encoding.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Text.Encodings.Web.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Text.Json.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Text.RegularExpressions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Threading.Channels.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Threading.Overlapped.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Threading.Tasks.Dataflow.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Threading.Tasks.Extensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Threading.Tasks.Parallel.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Threading.Tasks.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Threading.Thread.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Threading.ThreadPool.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Threading.Timer.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Threading.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Transactions.Local.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Transactions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.ValueTuple.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Web.HttpUtility.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Web.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Windows.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Xml.Linq.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Xml.ReaderWriter.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Xml.Serialization.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Xml.XDocument.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Xml.XPath.XDocument.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Xml.XPath.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Xml.XmlDocument.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Xml.XmlSerializer.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.Xml.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\System.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\WindowsBase.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\mscorlib.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\ref\netstandard.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\CimCmdlets\CimCmdlets.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Diagnostics.format.ps1xml -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Event.format.ps1xml -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\GetEvent.types.ps1xml -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Microsoft.PowerShell.Diagnostics.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\Microsoft.WSMan.Management.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\WSMan.format.ps1xml -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psm1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\Linguard.Log.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\bin\Debug\net6.0\Linguard.Log.pdb -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\obj\Debug\net6.0\Core.csproj.CopyComplete -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\obj\Debug\net6.0\Core.csproj.GenerateResource.cache -C:\Users\theyu\repos\linguard-dotnet\Linguard\Core\obj\Debug\net6.0\Linguard.Core.Validation.resources -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\Microsoft.CSharp.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\Microsoft.VisualBasic.Core.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\Microsoft.VisualBasic.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\Microsoft.Win32.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\Microsoft.Win32.Registry.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.AppContext.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Buffers.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Collections.Concurrent.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Collections.Immutable.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Collections.NonGeneric.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Collections.Specialized.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Collections.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.ComponentModel.Annotations.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.ComponentModel.DataAnnotations.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.ComponentModel.EventBasedAsync.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.ComponentModel.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.ComponentModel.TypeConverter.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.ComponentModel.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Configuration.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Console.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Core.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Data.Common.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Data.DataSetExtensions.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Data.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Diagnostics.Contracts.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Diagnostics.Debug.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Diagnostics.DiagnosticSource.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Diagnostics.FileVersionInfo.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Diagnostics.Process.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Diagnostics.StackTrace.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Diagnostics.TextWriterTraceListener.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Diagnostics.Tools.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Diagnostics.TraceSource.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Diagnostics.Tracing.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Drawing.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Drawing.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Dynamic.Runtime.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Formats.Asn1.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Globalization.Calendars.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Globalization.Extensions.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Globalization.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.IO.Compression.Brotli.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.IO.Compression.FileSystem.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.IO.Compression.ZipFile.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.IO.Compression.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.IO.FileSystem.AccessControl.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.IO.FileSystem.DriveInfo.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.IO.FileSystem.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.IO.FileSystem.Watcher.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.IO.FileSystem.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.IO.IsolatedStorage.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.IO.MemoryMappedFiles.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.IO.Pipes.AccessControl.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.IO.Pipes.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.IO.UnmanagedMemoryStream.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.IO.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Linq.Expressions.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Linq.Parallel.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Linq.Queryable.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Linq.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Memory.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Net.Http.Json.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Net.Http.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Net.HttpListener.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Net.Mail.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Net.NameResolution.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Net.NetworkInformation.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Net.Ping.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Net.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Net.Requests.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Net.Security.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Net.ServicePoint.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Net.Sockets.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Net.WebClient.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Net.WebHeaderCollection.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Net.WebProxy.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Net.WebSockets.Client.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Net.WebSockets.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Net.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Numerics.Vectors.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Numerics.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.ObjectModel.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Reflection.DispatchProxy.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Reflection.Emit.ILGeneration.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Reflection.Emit.Lightweight.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Reflection.Emit.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Reflection.Extensions.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Reflection.Metadata.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Reflection.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Reflection.TypeExtensions.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Reflection.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Resources.Reader.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Resources.ResourceManager.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Resources.Writer.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Runtime.CompilerServices.Unsafe.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Runtime.CompilerServices.VisualC.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Runtime.Extensions.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Runtime.Handles.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Runtime.InteropServices.RuntimeInformation.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Runtime.InteropServices.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Runtime.Intrinsics.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Runtime.Loader.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Runtime.Numerics.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Runtime.Serialization.Formatters.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Runtime.Serialization.Json.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Runtime.Serialization.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Runtime.Serialization.Xml.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Runtime.Serialization.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Runtime.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Security.AccessControl.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Security.Claims.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Security.Cryptography.Algorithms.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Security.Cryptography.Cng.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Security.Cryptography.Csp.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Security.Cryptography.Encoding.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Security.Cryptography.OpenSsl.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Security.Cryptography.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Security.Cryptography.X509Certificates.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Security.Principal.Windows.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Security.Principal.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Security.SecureString.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Security.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.ServiceModel.Web.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.ServiceProcess.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Text.Encoding.CodePages.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Text.Encoding.Extensions.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Text.Encoding.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Text.Encodings.Web.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Text.Json.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Text.RegularExpressions.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Threading.Channels.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Threading.Overlapped.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Threading.Tasks.Dataflow.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Threading.Tasks.Extensions.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Threading.Tasks.Parallel.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Threading.Tasks.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Threading.Thread.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Threading.ThreadPool.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Threading.Timer.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Threading.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Transactions.Local.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Transactions.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.ValueTuple.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Web.HttpUtility.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Web.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Windows.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Xml.Linq.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Xml.ReaderWriter.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Xml.Serialization.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Xml.XDocument.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Xml.XPath.XDocument.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Xml.XPath.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Xml.XmlDocument.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Xml.XmlSerializer.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.Xml.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\System.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\WindowsBase.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\mscorlib.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\netstandard.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\CimCmdlets\CimCmdlets.psd1 -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Diagnostics.format.ps1xml -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Event.format.ps1xml -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\GetEvent.types.ps1xml -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Microsoft.PowerShell.Diagnostics.psd1 -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\Microsoft.WSMan.Management.psd1 -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\WSMan.format.ps1xml -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psd1 -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psm1 -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\Linguard.Core.deps.json -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\Linguard.Core.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\ref\Linguard.Core.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\Linguard.Core.pdb -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\Linguard.Log.dll -C:\Users\theyu\repos\linguard\Linguard\Core\bin\Debug\net6.0\Linguard.Log.pdb -C:\Users\theyu\repos\linguard\Linguard\Core\obj\Debug\net6.0\Core.csproj.AssemblyReference.cache -C:\Users\theyu\repos\linguard\Linguard\Core\obj\Debug\net6.0\Linguard.Core.Validation.resources -C:\Users\theyu\repos\linguard\Linguard\Core\obj\Debug\net6.0\Core.csproj.GenerateResource.cache -C:\Users\theyu\repos\linguard\Linguard\Core\obj\Debug\net6.0\Core.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\theyu\repos\linguard\Linguard\Core\obj\Debug\net6.0\Core.AssemblyInfoInputs.cache -C:\Users\theyu\repos\linguard\Linguard\Core\obj\Debug\net6.0\Core.AssemblyInfo.cs -C:\Users\theyu\repos\linguard\Linguard\Core\obj\Debug\net6.0\Core.csproj.CoreCompileInputs.cache -C:\Users\theyu\repos\linguard\Linguard\Core\obj\Debug\net6.0\Core.csproj.CopyComplete -C:\Users\theyu\repos\linguard\Linguard\Core\obj\Debug\net6.0\Linguard.Core.dll -C:\Users\theyu\repos\linguard\Linguard\Core\obj\Debug\net6.0\ref\Linguard.Core.dll -C:\Users\theyu\repos\linguard\Linguard\Core\obj\Debug\net6.0\Linguard.Core.pdb diff --git a/linguard/core/obj/Debug/net6.0/Core.csproj.GenerateResource.cache b/linguard/core/obj/Debug/net6.0/Core.csproj.GenerateResource.cache deleted file mode 100644 index 16f8ceb..0000000 Binary files a/linguard/core/obj/Debug/net6.0/Core.csproj.GenerateResource.cache and /dev/null differ diff --git a/linguard/core/obj/Debug/net6.0/Linguard.Core.Resources.Validation.en.resources b/linguard/core/obj/Debug/net6.0/Linguard.Core.Resources.Validation.en.resources deleted file mode 100644 index 6c05a97..0000000 Binary files a/linguard/core/obj/Debug/net6.0/Linguard.Core.Resources.Validation.en.resources and /dev/null differ diff --git a/linguard/core/obj/Debug/net6.0/Linguard.Core.Validation.resources b/linguard/core/obj/Debug/net6.0/Linguard.Core.Validation.resources deleted file mode 100644 index 4ddb64c..0000000 Binary files a/linguard/core/obj/Debug/net6.0/Linguard.Core.Validation.resources and /dev/null differ diff --git a/linguard/core/obj/Debug/net6.0/Linguard.Core.dll b/linguard/core/obj/Debug/net6.0/Linguard.Core.dll deleted file mode 100644 index ece45f5..0000000 Binary files a/linguard/core/obj/Debug/net6.0/Linguard.Core.dll and /dev/null differ diff --git a/linguard/core/obj/Debug/net6.0/Linguard.Core.pdb b/linguard/core/obj/Debug/net6.0/Linguard.Core.pdb deleted file mode 100644 index 4b3b436..0000000 Binary files a/linguard/core/obj/Debug/net6.0/Linguard.Core.pdb and /dev/null differ diff --git a/linguard/core/obj/Debug/net6.0/en/Linguard.Core.resources.cs b/linguard/core/obj/Debug/net6.0/en/Linguard.Core.resources.cs deleted file mode 100644 index cecd474..0000000 --- a/linguard/core/obj/Debug/net6.0/en/Linguard.Core.resources.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("José Antonio Mazón San Bartolomé")] -[assembly: System.Reflection.AssemblyCopyrightAttribute(" ")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("2.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("2.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("Linguard")] -[assembly: System.Reflection.AssemblyTitleAttribute("Linguard.Core")] -[assembly: System.Reflection.AssemblyVersionAttribute("2.0.0.0")] -[assembly: System.Reflection.AssemblyCultureAttribute("en")] - -// Generado por la clase WriteCodeFragment de MSBuild. - diff --git a/linguard/core/obj/Debug/net6.0/en/Linguard.Core.resources.dll b/linguard/core/obj/Debug/net6.0/en/Linguard.Core.resources.dll deleted file mode 100644 index f2e5979..0000000 Binary files a/linguard/core/obj/Debug/net6.0/en/Linguard.Core.resources.dll and /dev/null differ diff --git a/linguard/core/obj/Debug/net6.0/ref/Linguard.Core.dll b/linguard/core/obj/Debug/net6.0/ref/Linguard.Core.dll deleted file mode 100644 index 596fb40..0000000 Binary files a/linguard/core/obj/Debug/net6.0/ref/Linguard.Core.dll and /dev/null differ diff --git a/linguard/core/obj/project.assets.json b/linguard/core/obj/project.assets.json deleted file mode 100644 index 21f5151..0000000 --- a/linguard/core/obj/project.assets.json +++ /dev/null @@ -1,7980 +0,0 @@ -{ - "version": 3, - "targets": { - "net6.0": { - "Bogus/34.0.1": { - "type": "package", - "compile": { - "lib/net6.0/Bogus.dll": {} - }, - "runtime": { - "lib/net6.0/Bogus.dll": {} - } - }, - "ByteSize/2.1.1": { - "type": "package", - "compile": { - "lib/net5.0/ByteSize.dll": {} - }, - "runtime": { - "lib/net5.0/ByteSize.dll": {} - } - }, - "FluentValidation/10.3.6": { - "type": "package", - "compile": { - "lib/net6.0/FluentValidation.dll": {} - }, - "runtime": { - "lib/net6.0/FluentValidation.dll": {} - } - }, - "IPNetwork2/2.5.386": { - "type": "package", - "compile": { - "lib/net5.0/System.Net.IPNetwork.dll": {} - }, - "runtime": { - "lib/net5.0/System.Net.IPNetwork.dll": {} - } - }, - "Markdig.Signed/0.22.0": { - "type": "package", - "compile": { - "lib/netcoreapp3.1/Markdig.Signed.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Markdig.Signed.dll": {} - } - }, - "Microsoft.ApplicationInsights/2.18.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.DiagnosticSource": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {} - } - }, - "Microsoft.Bcl.AsyncInterfaces/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} - } - }, - "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": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {} - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.CodeAnalysis.Common": "[4.0.1]" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {} - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CSharp/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netstandard1.3/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.Extensions.ObjectPool/5.0.10": { - "type": "package", - "compile": { - "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": {} - }, - "runtime": { - "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": {} - } - }, - "Microsoft.Management.Infrastructure/2.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Management.Infrastructure.Runtime.Unix": "2.0.0", - "Microsoft.Management.Infrastructure.Runtime.Win": "2.0.0" - }, - "compile": { - "ref/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {}, - "ref/netstandard1.6/Microsoft.Management.Infrastructure.dll": {} - }, - "runtime": { - "lib/netstandard1.6/_._": {} - } - }, - "Microsoft.Management.Infrastructure.CimCmdlets/7.2.1": { - "type": "package", - "dependencies": { - "System.Management.Automation": "7.2.1" - }, - "compile": { - "ref/net6.0/System.Management.Automation.dll": {} - }, - "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": {} - }, - "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": {} - }, - "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": {} - }, - "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": {} - }, - "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": {} - }, - "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": {}, - "ref/net6.0/Microsoft.PowerShell.ConsoleHost.dll": {}, - "ref/net6.0/System.Management.Automation.dll": {} - }, - "contentFiles": { - "contentFiles/any/any/ref/Microsoft.CSharp.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/Microsoft.CSharp.dll" - }, - "contentFiles/any/any/ref/Microsoft.VisualBasic.Core.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/Microsoft.VisualBasic.Core.dll" - }, - "contentFiles/any/any/ref/Microsoft.VisualBasic.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/Microsoft.VisualBasic.dll" - }, - "contentFiles/any/any/ref/Microsoft.Win32.Primitives.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/Microsoft.Win32.Primitives.dll" - }, - "contentFiles/any/any/ref/Microsoft.Win32.Registry.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/Microsoft.Win32.Registry.dll" - }, - "contentFiles/any/any/ref/System.AppContext.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.AppContext.dll" - }, - "contentFiles/any/any/ref/System.Buffers.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Buffers.dll" - }, - "contentFiles/any/any/ref/System.Collections.Concurrent.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Collections.Concurrent.dll" - }, - "contentFiles/any/any/ref/System.Collections.Immutable.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Collections.Immutable.dll" - }, - "contentFiles/any/any/ref/System.Collections.NonGeneric.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Collections.NonGeneric.dll" - }, - "contentFiles/any/any/ref/System.Collections.Specialized.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Collections.Specialized.dll" - }, - "contentFiles/any/any/ref/System.Collections.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Collections.dll" - }, - "contentFiles/any/any/ref/System.ComponentModel.Annotations.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.ComponentModel.Annotations.dll" - }, - "contentFiles/any/any/ref/System.ComponentModel.DataAnnotations.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.ComponentModel.DataAnnotations.dll" - }, - "contentFiles/any/any/ref/System.ComponentModel.EventBasedAsync.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.ComponentModel.EventBasedAsync.dll" - }, - "contentFiles/any/any/ref/System.ComponentModel.Primitives.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.ComponentModel.Primitives.dll" - }, - "contentFiles/any/any/ref/System.ComponentModel.TypeConverter.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.ComponentModel.TypeConverter.dll" - }, - "contentFiles/any/any/ref/System.ComponentModel.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.ComponentModel.dll" - }, - "contentFiles/any/any/ref/System.Configuration.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Configuration.dll" - }, - "contentFiles/any/any/ref/System.Console.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Console.dll" - }, - "contentFiles/any/any/ref/System.Core.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Core.dll" - }, - "contentFiles/any/any/ref/System.Data.Common.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Data.Common.dll" - }, - "contentFiles/any/any/ref/System.Data.DataSetExtensions.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Data.DataSetExtensions.dll" - }, - "contentFiles/any/any/ref/System.Data.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Data.dll" - }, - "contentFiles/any/any/ref/System.Diagnostics.Contracts.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Diagnostics.Contracts.dll" - }, - "contentFiles/any/any/ref/System.Diagnostics.Debug.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Diagnostics.Debug.dll" - }, - "contentFiles/any/any/ref/System.Diagnostics.DiagnosticSource.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Diagnostics.DiagnosticSource.dll" - }, - "contentFiles/any/any/ref/System.Diagnostics.FileVersionInfo.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Diagnostics.FileVersionInfo.dll" - }, - "contentFiles/any/any/ref/System.Diagnostics.Process.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Diagnostics.Process.dll" - }, - "contentFiles/any/any/ref/System.Diagnostics.StackTrace.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Diagnostics.StackTrace.dll" - }, - "contentFiles/any/any/ref/System.Diagnostics.TextWriterTraceListener.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Diagnostics.TextWriterTraceListener.dll" - }, - "contentFiles/any/any/ref/System.Diagnostics.Tools.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Diagnostics.Tools.dll" - }, - "contentFiles/any/any/ref/System.Diagnostics.TraceSource.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Diagnostics.TraceSource.dll" - }, - "contentFiles/any/any/ref/System.Diagnostics.Tracing.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Diagnostics.Tracing.dll" - }, - "contentFiles/any/any/ref/System.Drawing.Primitives.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Drawing.Primitives.dll" - }, - "contentFiles/any/any/ref/System.Drawing.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Drawing.dll" - }, - "contentFiles/any/any/ref/System.Dynamic.Runtime.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Dynamic.Runtime.dll" - }, - "contentFiles/any/any/ref/System.Formats.Asn1.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Formats.Asn1.dll" - }, - "contentFiles/any/any/ref/System.Globalization.Calendars.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Globalization.Calendars.dll" - }, - "contentFiles/any/any/ref/System.Globalization.Extensions.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Globalization.Extensions.dll" - }, - "contentFiles/any/any/ref/System.Globalization.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Globalization.dll" - }, - "contentFiles/any/any/ref/System.IO.Compression.Brotli.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.IO.Compression.Brotli.dll" - }, - "contentFiles/any/any/ref/System.IO.Compression.FileSystem.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.IO.Compression.FileSystem.dll" - }, - "contentFiles/any/any/ref/System.IO.Compression.ZipFile.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.IO.Compression.ZipFile.dll" - }, - "contentFiles/any/any/ref/System.IO.Compression.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.IO.Compression.dll" - }, - "contentFiles/any/any/ref/System.IO.FileSystem.AccessControl.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.IO.FileSystem.AccessControl.dll" - }, - "contentFiles/any/any/ref/System.IO.FileSystem.DriveInfo.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.IO.FileSystem.DriveInfo.dll" - }, - "contentFiles/any/any/ref/System.IO.FileSystem.Primitives.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.IO.FileSystem.Primitives.dll" - }, - "contentFiles/any/any/ref/System.IO.FileSystem.Watcher.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.IO.FileSystem.Watcher.dll" - }, - "contentFiles/any/any/ref/System.IO.FileSystem.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.IO.FileSystem.dll" - }, - "contentFiles/any/any/ref/System.IO.IsolatedStorage.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.IO.IsolatedStorage.dll" - }, - "contentFiles/any/any/ref/System.IO.MemoryMappedFiles.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.IO.MemoryMappedFiles.dll" - }, - "contentFiles/any/any/ref/System.IO.Pipes.AccessControl.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.IO.Pipes.AccessControl.dll" - }, - "contentFiles/any/any/ref/System.IO.Pipes.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.IO.Pipes.dll" - }, - "contentFiles/any/any/ref/System.IO.UnmanagedMemoryStream.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.IO.UnmanagedMemoryStream.dll" - }, - "contentFiles/any/any/ref/System.IO.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.IO.dll" - }, - "contentFiles/any/any/ref/System.Linq.Expressions.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Linq.Expressions.dll" - }, - "contentFiles/any/any/ref/System.Linq.Parallel.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Linq.Parallel.dll" - }, - "contentFiles/any/any/ref/System.Linq.Queryable.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Linq.Queryable.dll" - }, - "contentFiles/any/any/ref/System.Linq.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Linq.dll" - }, - "contentFiles/any/any/ref/System.Memory.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Memory.dll" - }, - "contentFiles/any/any/ref/System.Net.Http.Json.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.Http.Json.dll" - }, - "contentFiles/any/any/ref/System.Net.Http.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.Http.dll" - }, - "contentFiles/any/any/ref/System.Net.HttpListener.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.HttpListener.dll" - }, - "contentFiles/any/any/ref/System.Net.Mail.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.Mail.dll" - }, - "contentFiles/any/any/ref/System.Net.NameResolution.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.NameResolution.dll" - }, - "contentFiles/any/any/ref/System.Net.NetworkInformation.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.NetworkInformation.dll" - }, - "contentFiles/any/any/ref/System.Net.Ping.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.Ping.dll" - }, - "contentFiles/any/any/ref/System.Net.Primitives.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.Primitives.dll" - }, - "contentFiles/any/any/ref/System.Net.Requests.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.Requests.dll" - }, - "contentFiles/any/any/ref/System.Net.Security.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.Security.dll" - }, - "contentFiles/any/any/ref/System.Net.ServicePoint.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.ServicePoint.dll" - }, - "contentFiles/any/any/ref/System.Net.Sockets.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.Sockets.dll" - }, - "contentFiles/any/any/ref/System.Net.WebClient.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.WebClient.dll" - }, - "contentFiles/any/any/ref/System.Net.WebHeaderCollection.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.WebHeaderCollection.dll" - }, - "contentFiles/any/any/ref/System.Net.WebProxy.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.WebProxy.dll" - }, - "contentFiles/any/any/ref/System.Net.WebSockets.Client.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.WebSockets.Client.dll" - }, - "contentFiles/any/any/ref/System.Net.WebSockets.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.WebSockets.dll" - }, - "contentFiles/any/any/ref/System.Net.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Net.dll" - }, - "contentFiles/any/any/ref/System.Numerics.Vectors.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Numerics.Vectors.dll" - }, - "contentFiles/any/any/ref/System.Numerics.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Numerics.dll" - }, - "contentFiles/any/any/ref/System.ObjectModel.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.ObjectModel.dll" - }, - "contentFiles/any/any/ref/System.Reflection.DispatchProxy.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Reflection.DispatchProxy.dll" - }, - "contentFiles/any/any/ref/System.Reflection.Emit.ILGeneration.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Reflection.Emit.ILGeneration.dll" - }, - "contentFiles/any/any/ref/System.Reflection.Emit.Lightweight.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Reflection.Emit.Lightweight.dll" - }, - "contentFiles/any/any/ref/System.Reflection.Emit.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Reflection.Emit.dll" - }, - "contentFiles/any/any/ref/System.Reflection.Extensions.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Reflection.Extensions.dll" - }, - "contentFiles/any/any/ref/System.Reflection.Metadata.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Reflection.Metadata.dll" - }, - "contentFiles/any/any/ref/System.Reflection.Primitives.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Reflection.Primitives.dll" - }, - "contentFiles/any/any/ref/System.Reflection.TypeExtensions.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Reflection.TypeExtensions.dll" - }, - "contentFiles/any/any/ref/System.Reflection.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Reflection.dll" - }, - "contentFiles/any/any/ref/System.Resources.Reader.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Resources.Reader.dll" - }, - "contentFiles/any/any/ref/System.Resources.ResourceManager.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Resources.ResourceManager.dll" - }, - "contentFiles/any/any/ref/System.Resources.Writer.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Resources.Writer.dll" - }, - "contentFiles/any/any/ref/System.Runtime.CompilerServices.Unsafe.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Runtime.CompilerServices.Unsafe.dll" - }, - "contentFiles/any/any/ref/System.Runtime.CompilerServices.VisualC.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Runtime.CompilerServices.VisualC.dll" - }, - "contentFiles/any/any/ref/System.Runtime.Extensions.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Runtime.Extensions.dll" - }, - "contentFiles/any/any/ref/System.Runtime.Handles.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Runtime.Handles.dll" - }, - "contentFiles/any/any/ref/System.Runtime.InteropServices.RuntimeInformation.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Runtime.InteropServices.RuntimeInformation.dll" - }, - "contentFiles/any/any/ref/System.Runtime.InteropServices.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Runtime.InteropServices.dll" - }, - "contentFiles/any/any/ref/System.Runtime.Intrinsics.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Runtime.Intrinsics.dll" - }, - "contentFiles/any/any/ref/System.Runtime.Loader.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Runtime.Loader.dll" - }, - "contentFiles/any/any/ref/System.Runtime.Numerics.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Runtime.Numerics.dll" - }, - "contentFiles/any/any/ref/System.Runtime.Serialization.Formatters.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Runtime.Serialization.Formatters.dll" - }, - "contentFiles/any/any/ref/System.Runtime.Serialization.Json.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Runtime.Serialization.Json.dll" - }, - "contentFiles/any/any/ref/System.Runtime.Serialization.Primitives.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Runtime.Serialization.Primitives.dll" - }, - "contentFiles/any/any/ref/System.Runtime.Serialization.Xml.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Runtime.Serialization.Xml.dll" - }, - "contentFiles/any/any/ref/System.Runtime.Serialization.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Runtime.Serialization.dll" - }, - "contentFiles/any/any/ref/System.Runtime.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Runtime.dll" - }, - "contentFiles/any/any/ref/System.Security.AccessControl.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Security.AccessControl.dll" - }, - "contentFiles/any/any/ref/System.Security.Claims.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Security.Claims.dll" - }, - "contentFiles/any/any/ref/System.Security.Cryptography.Algorithms.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Security.Cryptography.Algorithms.dll" - }, - "contentFiles/any/any/ref/System.Security.Cryptography.Cng.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Security.Cryptography.Cng.dll" - }, - "contentFiles/any/any/ref/System.Security.Cryptography.Csp.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Security.Cryptography.Csp.dll" - }, - "contentFiles/any/any/ref/System.Security.Cryptography.Encoding.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Security.Cryptography.Encoding.dll" - }, - "contentFiles/any/any/ref/System.Security.Cryptography.OpenSsl.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Security.Cryptography.OpenSsl.dll" - }, - "contentFiles/any/any/ref/System.Security.Cryptography.Primitives.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Security.Cryptography.Primitives.dll" - }, - "contentFiles/any/any/ref/System.Security.Cryptography.X509Certificates.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Security.Cryptography.X509Certificates.dll" - }, - "contentFiles/any/any/ref/System.Security.Principal.Windows.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Security.Principal.Windows.dll" - }, - "contentFiles/any/any/ref/System.Security.Principal.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Security.Principal.dll" - }, - "contentFiles/any/any/ref/System.Security.SecureString.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Security.SecureString.dll" - }, - "contentFiles/any/any/ref/System.Security.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Security.dll" - }, - "contentFiles/any/any/ref/System.ServiceModel.Web.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.ServiceModel.Web.dll" - }, - "contentFiles/any/any/ref/System.ServiceProcess.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.ServiceProcess.dll" - }, - "contentFiles/any/any/ref/System.Text.Encoding.CodePages.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Text.Encoding.CodePages.dll" - }, - "contentFiles/any/any/ref/System.Text.Encoding.Extensions.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Text.Encoding.Extensions.dll" - }, - "contentFiles/any/any/ref/System.Text.Encoding.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Text.Encoding.dll" - }, - "contentFiles/any/any/ref/System.Text.Encodings.Web.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Text.Encodings.Web.dll" - }, - "contentFiles/any/any/ref/System.Text.Json.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Text.Json.dll" - }, - "contentFiles/any/any/ref/System.Text.RegularExpressions.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Text.RegularExpressions.dll" - }, - "contentFiles/any/any/ref/System.Threading.Channels.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Threading.Channels.dll" - }, - "contentFiles/any/any/ref/System.Threading.Overlapped.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Threading.Overlapped.dll" - }, - "contentFiles/any/any/ref/System.Threading.Tasks.Dataflow.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Threading.Tasks.Dataflow.dll" - }, - "contentFiles/any/any/ref/System.Threading.Tasks.Extensions.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Threading.Tasks.Extensions.dll" - }, - "contentFiles/any/any/ref/System.Threading.Tasks.Parallel.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Threading.Tasks.Parallel.dll" - }, - "contentFiles/any/any/ref/System.Threading.Tasks.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Threading.Tasks.dll" - }, - "contentFiles/any/any/ref/System.Threading.Thread.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Threading.Thread.dll" - }, - "contentFiles/any/any/ref/System.Threading.ThreadPool.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Threading.ThreadPool.dll" - }, - "contentFiles/any/any/ref/System.Threading.Timer.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Threading.Timer.dll" - }, - "contentFiles/any/any/ref/System.Threading.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Threading.dll" - }, - "contentFiles/any/any/ref/System.Transactions.Local.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Transactions.Local.dll" - }, - "contentFiles/any/any/ref/System.Transactions.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Transactions.dll" - }, - "contentFiles/any/any/ref/System.ValueTuple.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.ValueTuple.dll" - }, - "contentFiles/any/any/ref/System.Web.HttpUtility.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Web.HttpUtility.dll" - }, - "contentFiles/any/any/ref/System.Web.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Web.dll" - }, - "contentFiles/any/any/ref/System.Windows.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Windows.dll" - }, - "contentFiles/any/any/ref/System.Xml.Linq.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Xml.Linq.dll" - }, - "contentFiles/any/any/ref/System.Xml.ReaderWriter.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Xml.ReaderWriter.dll" - }, - "contentFiles/any/any/ref/System.Xml.Serialization.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Xml.Serialization.dll" - }, - "contentFiles/any/any/ref/System.Xml.XDocument.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Xml.XDocument.dll" - }, - "contentFiles/any/any/ref/System.Xml.XPath.XDocument.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Xml.XPath.XDocument.dll" - }, - "contentFiles/any/any/ref/System.Xml.XPath.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Xml.XPath.dll" - }, - "contentFiles/any/any/ref/System.Xml.XmlDocument.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Xml.XmlDocument.dll" - }, - "contentFiles/any/any/ref/System.Xml.XmlSerializer.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Xml.XmlSerializer.dll" - }, - "contentFiles/any/any/ref/System.Xml.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.Xml.dll" - }, - "contentFiles/any/any/ref/System.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/System.dll" - }, - "contentFiles/any/any/ref/WindowsBase.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/WindowsBase.dll" - }, - "contentFiles/any/any/ref/mscorlib.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/mscorlib.dll" - }, - "contentFiles/any/any/ref/netstandard.dll": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "ref/netstandard.dll" - }, - "contentFiles/any/any/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "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": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "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": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "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": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "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": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "runtimes/win/lib/net6.0/Modules/CimCmdlets/CimCmdlets.psd1" - }, - "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "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": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "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": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "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": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "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": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "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": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "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": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "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": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "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": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "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": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml" - }, - "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psd1": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psd1" - }, - "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psm1": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": true, - "outputPath": "runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psm1" - } - }, - "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": {} - }, - "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/_._": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {} - }, - "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": {} - }, - "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": {} - }, - "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": {} - }, - "runtime": { - "lib/netstandard2.0/Namotion.Reflection.dll": {} - } - }, - "Newtonsoft.Json/13.0.1": { - "type": "package", - "compile": { - "lib/netstandard2.0/Newtonsoft.Json.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": {} - } - }, - "NJsonSchema/10.5.2": { - "type": "package", - "dependencies": { - "Namotion.Reflection": "2.0.3", - "Newtonsoft.Json": "9.0.1" - }, - "compile": { - "lib/netstandard2.0/NJsonSchema.dll": {} - }, - "runtime": { - "lib/netstandard2.0/NJsonSchema.dll": {} - } - }, - "NLog/4.7.13": { - "type": "package", - "compile": { - "lib/netstandard2.0/NLog.dll": {} - }, - "runtime": { - "lib/netstandard2.0/NLog.dll": {} - } - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.CodeDom.dll": {} - }, - "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/_._": {} - } - }, - "System.Collections.Immutable/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Collections.Immutable.dll": {} - } - }, - "System.ComponentModel.Composition/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.ComponentModel.Composition.dll": {} - }, - "runtime": { - "lib/net6.0/System.ComponentModel.Composition.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.ComponentModel.Composition.Registration.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Configuration.ConfigurationManager.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Data.Odbc.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Data.OleDb.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/netcoreapp2.1/System.Data.SqlClient.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - } - }, - "System.Diagnostics.DiagnosticSource/5.0.0": { - "type": "package", - "compile": { - "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {} - }, - "runtime": { - "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {} - } - }, - "System.Diagnostics.EventLog/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Diagnostics.EventLog.dll": {} - }, - "runtime": { - "lib/net6.0/System.Diagnostics.EventLog.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.DirectoryServices.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.DirectoryServices.AccountManagement.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.DirectoryServices.Protocols.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Drawing.Common.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} - } - }, - "System.Formats.Asn1/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Formats.Asn1.dll": {} - }, - "runtime": { - "lib/net6.0/System.Formats.Asn1.dll": {} - }, - "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/_._": {} - } - }, - "System.IO/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.IO.dll": {} - } - }, - "System.IO.Packaging/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.IO.Packaging.dll": {} - }, - "runtime": { - "lib/net6.0/System.IO.Packaging.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.IO.Ports.dll": {} - }, - "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/_._": {} - }, - "runtime": { - "lib/netstandard1.6/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.Linq.Expressions.dll": {} - } - }, - "System.Management/6.0.0": { - "type": "package", - "dependencies": { - "System.CodeDom": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Management.dll": {} - }, - "runtime": { - "lib/net6.0/System.Management.dll": {} - }, - "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": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Net.Http.WinHttpHandler.dll": {} - }, - "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": {} - }, - "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": {} - }, - "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": {} - } - }, - "System.Reflection.Context/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/net6.0/System.Reflection.Context.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Reflection.DispatchProxy/4.7.1": { - "type": "package", - "compile": { - "ref/netstandard2.0/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/netcoreapp2.0/System.Reflection.DispatchProxy.dll": {} - } - }, - "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/_._": {} - }, - "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/_._": {} - }, - "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/_._": {} - }, - "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/_._": {} - } - }, - "System.Reflection.Metadata/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/_._": {} - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - } - }, - "System.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.dll": {} - } - }, - "System.Runtime.Caching/6.0.0": { - "type": "package", - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Runtime.Caching.dll": {} - }, - "runtime": { - "lib/net6.0/System.Runtime.Caching.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} - }, - "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/_._": {} - } - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - } - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - }, - "compile": { - "ref/netcoreapp1.1/_._": {} - } - }, - "System.Security.AccessControl/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Security.AccessControl.dll": {} - }, - "runtime": { - "lib/net6.0/System.Security.AccessControl.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Security.Cryptography.Pkcs.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Security.Cryptography.Xml.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Security.Permissions.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Security.Principal.Windows/5.0.0": { - "type": "package", - "compile": { - "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.ServiceModel.Duplex/4.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": {} - } - }, - "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": {} - } - }, - "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": {} - } - }, - "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": {}, - "lib/net6.0/System.ServiceModel.dll": {} - } - }, - "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": {} - } - }, - "System.ServiceModel.Syndication/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.ServiceModel.Syndication.dll": {} - }, - "runtime": { - "lib/net6.0/System.ServiceModel.Syndication.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.ServiceProcess.ServiceController.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Speech.dll": {} - }, - "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": {} - } - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Text.Encoding.CodePages.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Text.Encodings.Web.dll": {} - }, - "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/_._": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Threading.AccessControl.dll": {} - }, - "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": {} - } - }, - "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": {} - }, - "runtime": { - "lib/netstandard2.0/System.Web.Services.Description.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Windows.Extensions.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "YamlDotNet/11.2.1": { - "type": "package", - "compile": { - "lib/netstandard2.1/YamlDotNet.dll": {} - }, - "runtime": { - "lib/netstandard2.1/YamlDotNet.dll": {} - } - }, - "Linguard.Log/2.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v6.0", - "dependencies": { - "NLog": "4.7.13" - }, - "compile": { - "bin/placeholder/Linguard.Log.dll": {} - }, - "runtime": { - "bin/placeholder/Linguard.Log.dll": {} - } - } - } - }, - "libraries": { - "Bogus/34.0.1": { - "sha512": "49iq7QrD0wb7V4/FcK8p3dWdJxNUbojaqK9L6KRvdikIuRjt38EsNp7QXICcYdbYw01K8BHUdxlnTNn/YX3qDA==", - "type": "package", - "path": "bogus/34.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "bogus.34.0.1.nupkg.sha512", - "bogus.nuspec", - "lib/net40/Bogus.dll", - "lib/net40/Bogus.xml", - "lib/net6.0/Bogus.dll", - "lib/net6.0/Bogus.xml", - "lib/netstandard1.3/Bogus.dll", - "lib/netstandard1.3/Bogus.xml", - "lib/netstandard2.0/Bogus.dll", - "lib/netstandard2.0/Bogus.xml" - ] - }, - "ByteSize/2.1.1": { - "sha512": "D+Y3NpbHrW21vZwwegeWf/8iAg2Mr0s7n1su8Ysho+O9dctJ5/EkWUi19QVxc6+nZl080gGTXBP/Nz0twSI3dA==", - "type": "package", - "path": "bytesize/2.1.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "bytesize.2.1.1.nupkg.sha512", - "bytesize.nuspec", - "lib/net45/ByteSize.dll", - "lib/net45/ByteSize.xml", - "lib/net5.0/ByteSize.dll", - "lib/net5.0/ByteSize.xml", - "lib/netstandard1.0/ByteSize.dll", - "lib/netstandard1.0/ByteSize.xml", - "lib/netstandard2.0/ByteSize.dll", - "lib/netstandard2.0/ByteSize.xml", - "lib/netstandard2.1/ByteSize.dll", - "lib/netstandard2.1/ByteSize.xml" - ] - }, - "FluentValidation/10.3.6": { - "sha512": "iMd370ZDx6ydm8t7bIFdRbSKX0e42lpvCtifUSbTSXOk5iKjmgl7HU0PXBhIWQAyIRi3gCwfMI9luj8H6K+byw==", - "type": "package", - "path": "fluentvalidation/10.3.6", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "fluent-validation-icon.png", - "fluentvalidation.10.3.6.nupkg.sha512", - "fluentvalidation.nuspec", - "lib/net5.0/FluentValidation.dll", - "lib/net5.0/FluentValidation.xml", - "lib/net6.0/FluentValidation.dll", - "lib/net6.0/FluentValidation.xml", - "lib/netstandard2.0/FluentValidation.dll", - "lib/netstandard2.0/FluentValidation.xml", - "lib/netstandard2.1/FluentValidation.dll", - "lib/netstandard2.1/FluentValidation.xml" - ] - }, - "IPNetwork2/2.5.386": { - "sha512": "6ihnNm82vyJsUYYfR2BRTziY/mQ5UGLsQZuhdSYPeTlbQLhBW/4BC9hBz3h5bFDn8PkVw9dP0cpv9brIBmk4Fw==", - "type": "package", - "path": "ipnetwork2/2.5.386", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE", - "ipnetwork2.2.5.386.nupkg.sha512", - "ipnetwork2.nuspec", - "lib/net40/System.Net.IPNetwork.dll", - "lib/net40/System.Net.IPNetwork.xml", - "lib/net45/System.Net.IPNetwork.dll", - "lib/net45/System.Net.IPNetwork.xml", - "lib/net46/System.Net.IPNetwork.dll", - "lib/net46/System.Net.IPNetwork.xml", - "lib/net47/System.Net.IPNetwork.dll", - "lib/net47/System.Net.IPNetwork.xml", - "lib/net48/System.Net.IPNetwork.dll", - "lib/net48/System.Net.IPNetwork.xml", - "lib/net5.0/System.Net.IPNetwork.dll", - "lib/net5.0/System.Net.IPNetwork.xml", - "lib/netcoreapp3.1/System.Net.IPNetwork.dll", - "lib/netcoreapp3.1/System.Net.IPNetwork.xml", - "lib/netstandard1.6/System.Net.IPNetwork.dll", - "lib/netstandard1.6/System.Net.IPNetwork.xml", - "lib/netstandard2.0/System.Net.IPNetwork.dll", - "lib/netstandard2.0/System.Net.IPNetwork.xml", - "lib/netstandard2.1/System.Net.IPNetwork.dll", - "lib/netstandard2.1/System.Net.IPNetwork.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.1": { - "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", - "type": "package", - "path": "newtonsoft.json/13.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.md", - "lib/net20/Newtonsoft.Json.dll", - "lib/net20/Newtonsoft.Json.xml", - "lib/net35/Newtonsoft.Json.dll", - "lib/net35/Newtonsoft.Json.xml", - "lib/net40/Newtonsoft.Json.dll", - "lib/net40/Newtonsoft.Json.xml", - "lib/net45/Newtonsoft.Json.dll", - "lib/net45/Newtonsoft.Json.xml", - "lib/netstandard1.0/Newtonsoft.Json.dll", - "lib/netstandard1.0/Newtonsoft.Json.xml", - "lib/netstandard1.3/Newtonsoft.Json.dll", - "lib/netstandard1.3/Newtonsoft.Json.xml", - "lib/netstandard2.0/Newtonsoft.Json.dll", - "lib/netstandard2.0/Newtonsoft.Json.xml", - "newtonsoft.json.13.0.1.nupkg.sha512", - "newtonsoft.json.nuspec", - "packageIcon.png" - ] - }, - "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" - ] - }, - "NLog/4.7.13": { - "sha512": "AvoGpCuq36B+0wY313XA6gC+YeMvk24rqF8P+HS9fInBGOjCzPjpXp2ln9ATZjPOJtXgHfc8zNmTjyswFGLxvg==", - "type": "package", - "path": "nlog/4.7.13", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/monoandroid44/NLog.dll", - "lib/monoandroid44/NLog.xml", - "lib/net35/NLog.dll", - "lib/net35/NLog.xml", - "lib/net40-client/NLog.dll", - "lib/net40-client/NLog.xml", - "lib/net45/NLog.dll", - "lib/net45/NLog.xml", - "lib/netstandard1.3/NLog.dll", - "lib/netstandard1.3/NLog.xml", - "lib/netstandard1.5/NLog.dll", - "lib/netstandard1.5/NLog.xml", - "lib/netstandard2.0/NLog.dll", - "lib/netstandard2.0/NLog.xml", - "lib/sl4/NLog.dll", - "lib/sl4/NLog.xml", - "lib/sl5/NLog.dll", - "lib/sl5/NLog.xml", - "lib/wp8/NLog.dll", - "lib/wp8/NLog.xml", - "lib/xamarinios10/NLog.dll", - "lib/xamarinios10/NLog.xml", - "nlog.4.7.13.nupkg.sha512", - "nlog.nuspec" - ] - }, - "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" - ] - }, - "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.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" - ] - }, - "YamlDotNet/11.2.1": { - "sha512": "tBt8K+korVfrjH9wyDEhiLKxbs8qoLCLIFwvYgkSUuMC9//w3z0cFQ8LQAI/5MCKq+BMil0cfRTRvPeE7eXhQw==", - "type": "package", - "path": "yamldotnet/11.2.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.txt", - "images/yamldotnet.png", - "lib/net20/YamlDotNet.dll", - "lib/net20/YamlDotNet.xml", - "lib/net35-client/YamlDotNet.dll", - "lib/net35-client/YamlDotNet.xml", - "lib/net35/YamlDotNet.dll", - "lib/net35/YamlDotNet.xml", - "lib/net45/YamlDotNet.dll", - "lib/net45/YamlDotNet.xml", - "lib/netstandard1.3/YamlDotNet.dll", - "lib/netstandard1.3/YamlDotNet.xml", - "lib/netstandard2.1/YamlDotNet.dll", - "lib/netstandard2.1/YamlDotNet.xml", - "yamldotnet.11.2.1.nupkg.sha512", - "yamldotnet.nuspec" - ] - }, - "Linguard.Log/2.0.0": { - "type": "project", - "path": "../Log/Log.csproj", - "msbuildProject": "../Log/Log.csproj" - } - }, - "projectFileDependencyGroups": { - "net6.0": [ - "Bogus >= 34.0.1", - "ByteSize >= 2.1.1", - "FluentValidation >= 10.3.6", - "IPNetwork2 >= 2.5.386", - "Linguard.Log >= 2.0.0", - "Microsoft.PowerShell.SDK >= 7.2.1", - "System.Management.Automation >= 7.2.1", - "YamlDotNet >= 11.2.1" - ] - }, - "packageFolders": { - "C:\\Users\\theyu\\.nuget\\packages\\": {} - }, - "project": { - "version": "2.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj", - "projectName": "Linguard.Core", - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj", - "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": { - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj": { - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "Bogus": { - "target": "Package", - "version": "[34.0.1, )" - }, - "ByteSize": { - "target": "Package", - "version": "[2.1.1, )" - }, - "FluentValidation": { - "target": "Package", - "version": "[10.3.6, )" - }, - "IPNetwork2": { - "target": "Package", - "version": "[2.5.386, )" - }, - "Microsoft.PowerShell.SDK": { - "target": "Package", - "version": "[7.2.1, )" - }, - "System.Management.Automation": { - "target": "Package", - "version": "[7.2.1, )" - }, - "YamlDotNet": { - "target": "Package", - "version": "[11.2.1, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/linguard/core/obj/project.nuget.cache b/linguard/core/obj/project.nuget.cache deleted file mode 100644 index edfa9ab..0000000 --- a/linguard/core/obj/project.nuget.cache +++ /dev/null @@ -1,130 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "/Ex2cZAHpEKpZNoOU/iDlq9qXdYn1/d6DlItSiwmBmRzcTXgjt/QoTeqdzYU1CKjBVIAp8reMipEaFgftd1ROg==", - "success": true, - "projectFilePath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj", - "expectedPackageFiles": [ - "C:\\Users\\theyu\\.nuget\\packages\\bogus\\34.0.1\\bogus.34.0.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\bytesize\\2.1.1\\bytesize.2.1.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\fluentvalidation\\10.3.6\\fluentvalidation.10.3.6.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\ipnetwork2\\2.5.386\\ipnetwork2.2.5.386.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\markdig.signed\\0.22.0\\markdig.signed.0.22.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.applicationinsights\\2.18.0\\microsoft.applicationinsights.2.18.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\5.0.0\\microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.2\\microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.codeanalysis.common\\4.0.1\\microsoft.codeanalysis.common.4.0.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.0.1\\microsoft.codeanalysis.csharp.4.0.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.csharp\\4.3.0\\microsoft.csharp.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.objectpool\\5.0.10\\microsoft.extensions.objectpool.5.0.10.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.management.infrastructure\\2.0.0\\microsoft.management.infrastructure.2.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.management.infrastructure.cimcmdlets\\7.2.1\\microsoft.management.infrastructure.cimcmdlets.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.management.infrastructure.runtime.unix\\2.0.0\\microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.management.infrastructure.runtime.win\\2.0.0\\microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.netcore.windows.apisets\\1.0.1\\microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.commands.diagnostics\\7.2.1\\microsoft.powershell.commands.diagnostics.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.commands.management\\7.2.1\\microsoft.powershell.commands.management.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.commands.utility\\7.2.1\\microsoft.powershell.commands.utility.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.consolehost\\7.2.1\\microsoft.powershell.consolehost.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.coreclr.eventing\\7.2.1\\microsoft.powershell.coreclr.eventing.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.markdownrender\\7.2.0\\microsoft.powershell.markdownrender.7.2.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.native\\7.2.0\\microsoft.powershell.native.7.2.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.sdk\\7.2.1\\microsoft.powershell.sdk.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.security\\7.2.1\\microsoft.powershell.security.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.win32.registry.accesscontrol\\6.0.0\\microsoft.win32.registry.accesscontrol.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.windows.compatibility\\6.0.0\\microsoft.windows.compatibility.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.wsman.management\\7.2.1\\microsoft.wsman.management.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.wsman.runtime\\7.2.1\\microsoft.wsman.runtime.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\namotion.reflection\\2.0.3\\namotion.reflection.2.0.3.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\njsonschema\\10.5.2\\njsonschema.10.5.2.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\nlog\\4.7.13\\nlog.4.7.13.nupkg.sha512", - "C:\\Users\\theyu\\.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\\theyu\\.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\\theyu\\.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\\theyu\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.7.0\\runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.native.system.io.ports\\6.0.0\\runtime.native.system.io.ports.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.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\\theyu\\.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\\theyu\\.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\\theyu\\.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\\theyu\\.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\\theyu\\.nuget\\packages\\system.codedom\\6.0.0\\system.codedom.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.componentmodel.composition\\6.0.0\\system.componentmodel.composition.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.componentmodel.composition.registration\\6.0.0\\system.componentmodel.composition.registration.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.0\\system.configuration.configurationmanager.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.data.odbc\\6.0.0\\system.data.odbc.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.data.oledb\\6.0.0\\system.data.oledb.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.data.sqlclient\\4.8.3\\system.data.sqlclient.4.8.3.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.diagnosticsource\\5.0.0\\system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.eventlog\\6.0.0\\system.diagnostics.eventlog.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.performancecounter\\6.0.0\\system.diagnostics.performancecounter.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.directoryservices\\6.0.0\\system.directoryservices.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.directoryservices.accountmanagement\\6.0.0\\system.directoryservices.accountmanagement.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.directoryservices.protocols\\6.0.0\\system.directoryservices.protocols.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.formats.asn1\\6.0.0\\system.formats.asn1.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.io.packaging\\6.0.0\\system.io.packaging.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.io.ports\\6.0.0\\system.io.ports.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.management\\6.0.0\\system.management.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.management.automation\\7.2.1\\system.management.automation.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.net.http.winhttphandler\\6.0.0\\system.net.http.winhttphandler.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.private.servicemodel\\4.9.0\\system.private.servicemodel.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.context\\6.0.0\\system.reflection.context.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.dispatchproxy\\4.7.1\\system.reflection.dispatchproxy.4.7.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.metadata\\5.0.0\\system.reflection.metadata.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.caching\\6.0.0\\system.runtime.caching.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.pkcs\\6.0.0\\system.security.cryptography.pkcs.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.protecteddata\\6.0.0\\system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.xml\\6.0.0\\system.security.cryptography.xml.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.duplex\\4.9.0\\system.servicemodel.duplex.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.http\\4.9.0\\system.servicemodel.http.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.nettcp\\4.9.0\\system.servicemodel.nettcp.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.primitives\\4.9.0\\system.servicemodel.primitives.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.security\\4.9.0\\system.servicemodel.security.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.syndication\\6.0.0\\system.servicemodel.syndication.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.serviceprocess.servicecontroller\\6.0.0\\system.serviceprocess.servicecontroller.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.speech\\6.0.0\\system.speech.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.text.encoding.codepages\\6.0.0\\system.text.encoding.codepages.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.text.encodings.web\\6.0.0\\system.text.encodings.web.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.threading.accesscontrol\\6.0.0\\system.threading.accesscontrol.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.web.services.description\\4.9.0\\system.web.services.description.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\yamldotnet\\11.2.1\\yamldotnet.11.2.1.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/linguard/core/obj/project.packagespec.json b/linguard/core/obj/project.packagespec.json deleted file mode 100644 index 5b75177..0000000 --- a/linguard/core/obj/project.packagespec.json +++ /dev/null @@ -1 +0,0 @@ -"restore":{"projectUniqueName":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj","projectName":"Linguard.Core","projectPath":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj","outputPath":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net6.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net6.0":{"targetAlias":"net6.0","projectReferences":{"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj":{"projectPath":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net6.0":{"targetAlias":"net6.0","dependencies":{"Bogus":{"target":"Package","version":"[34.0.1, )"},"ByteSize":{"target":"Package","version":"[2.1.1, )"},"FluentValidation":{"target":"Package","version":"[10.3.6, )"},"IPNetwork2":{"target":"Package","version":"[2.5.386, )"},"Microsoft.PowerShell.SDK":{"target":"Package","version":"[7.2.1, )"},"System.Management.Automation":{"target":"Package","version":"[7.2.1, )"},"YamlDotNet":{"target":"Package","version":"[11.2.1, )"}},"imports":["net461","net462","net47","net471","net472","net48"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/linguard/core/obj/rider.project.restore.info b/linguard/core/obj/rider.project.restore.info deleted file mode 100644 index 7965e4a..0000000 --- a/linguard/core/obj/rider.project.restore.info +++ /dev/null @@ -1 +0,0 @@ -16455551442908398 \ No newline at end of file diff --git a/linguard/web/Pages/EditClient.razor b/linguard/web/Pages/EditClient.razor deleted file mode 100644 index f537e55..0000000 --- a/linguard/web/Pages/EditClient.razor +++ /dev/null @@ -1,33 +0,0 @@ -@page "/client/{id:guid}" -@using Linguard.Core.Utils -@using Linguard.Core.Managers -@using Linguard.Core.Models.Wireguard -@using Linguard.Core.Services -@using Linguard.Core.Configuration - -@inject IConfigurationManager _configurationManager -@inject IWireguardService _wireguardService -@inject NotificationService _notificationService -@inject DialogService _dialogService -@inject NavigationManager _navigationManager -@inject IJSRuntime _js - - -@code { - const string Title = "Client"; - [Parameter] - public Guid Id { get; set; } - - IWireguardConfiguration Configuration => _configurationManager.Configuration.Wireguard; - Client? Client => Configuration.Interfaces.SelectMany(i => i.Clients).SingleOrDefault(i => i.Id == Id); -} - -@($"{AssemblyInfo.Product} | {Title}") - -@if (Client == default) { -

Oops, it looks like the client you are looking for does not exist.

- return; -} - - - diff --git a/linguard/web/Pages/EditInterface.razor b/linguard/web/Pages/EditInterface.razor deleted file mode 100644 index 5c12331..0000000 --- a/linguard/web/Pages/EditInterface.razor +++ /dev/null @@ -1,306 +0,0 @@ -@page "/interface/{id:guid}" -@using Linguard.Core.Utils -@using Linguard.Core.Models.Wireguard -@using Linguard.Core.Services -@using Linguard.Core.Managers -@using Linguard.Core.Configuration -@using System.Net.NetworkInformation -@using ByteSizeLib -@using FluentValidation -@using Linguard.Core.Models -@using Linguard.Web.Services -@using Linguard.Web.Utils - -@inject IConfigurationManager _configurationManager -@inject IWireguardService _wireguardService -@inject IWebService _webService; -@inject NotificationService _notificationService -@inject DialogService _dialogService -@inject NavigationManager _navigationManager -@inject IJSRuntime _js -@inject AbstractValidator _validator - -@code { - const string Title = "Interface"; - [Parameter] - public Guid Id { get; set; } - - IConfiguration Configuration => _configurationManager.Configuration; - Interface? Iface => Configuration.Wireguard.Interfaces.SingleOrDefault(i => i.Id == Id); - -} -@($"{AssemblyInfo.Product} | {Title}") - -@if (Iface == default) { -

Oops, it looks like the interface you are looking for does not exist.

- return; -} - -
-
-

- @Title - @if (InterfaceNames.Contains(Iface.Name)) { - - } - else { - - } -

-
-
- - - - - -
-
- @if (InterfaceNames.Contains(Iface.Name)) { - - } - else { - - } - - - -
-
-
- - - - - - - - - - @if (!Iface.Clients.Any()) { -

- It looks like there are no clients yet. Why don't you - add one? -

- } - else { - - - - - - Total: @Iface.Clients.Count - - - - - - - - - - - - - - - } -
-
- -
- -
- -

Real time

- @if (realTimeTraffic == default || realTimeChartData.All(d => d.Value == default)) { -

There is no data yet.

- } - else { - - - -
- @data.ToString() -
-
-
-
- } -
-
- -
- -

History

- @if (!Configuration.Traffic.Enabled) { -

- It looks like traffic data storage is disabled. - Enable it to get more statistics. -

- } - -

There is no data yet.

-
-
-
-
-
-
- -
- - -@code { - - TrafficData? realTimeTraffic => _wireguardService.GetTrafficData(Iface) - .SingleOrDefault(e => e.Peer is Interface); - - IEnumerable realTimeChartData => new List { - new() { - Key = "Received", - Value = realTimeTraffic?.ReceivedData ?? ByteSize.FromBytes(0) - }, - new() { - Key = "Transmitted", - Value = realTimeTraffic?.SentData ?? ByteSize.FromBytes(0) - } - }; - - void Submit(Interface args) { - var result = _validator.Validate(args); - if (result.IsValid) { - _configurationManager.Save(); - _navigationManager.NavigateTo("wireguard"); - return; - } - } - - void StartInterface() { - try { - _wireguardService.StartInterface(Iface); - } - catch (Exception e) { - _notificationService.Notify(new NotificationMessage { - Severity = NotificationSeverity.Error, - Summary = $"Unable to start interface", - Detail = e.Message - }); - } - } - - void StopInterface() { - try { - _wireguardService.StopInterface(Iface); - } - catch (Exception e) { - _notificationService.Notify(new NotificationMessage { - Severity = NotificationSeverity.Error, - Summary = $"Unable to stop interface", - Detail = e.Message - }); - } - } - - async void ShowQrCode(IWireguardPeer peer) { - var qr = $"data:image/png;base64, {Convert.ToBase64String(_webService.GetQrCode(peer))}" ; - await _dialogService.OpenAsync($"Configuration of {peer.Name}", ds => - @
-
-
- -
-
-
, - new DialogOptions { - Style = "min-height:auto;min-width:auto;width:auto" - } - ); - } - - void EditWireguardClient(Client client) { - _navigationManager.NavigateTo($"{nameof(Client).ToLower()}/{client.Id}"); - } - - async void ConfirmRemoveWireguardPeer(IWireguardPeer peer) { - var peerType = peer.GetType().Name.ToLower(); - var remove = await _dialogService.Confirm( - $"Are you sure you want to delete {peer.Name}? This cannot be undone.", - $"Delete {peerType} {peer.Name}", - new ConfirmOptions { - OkButtonText = "Yes", - CancelButtonText = "No", - CloseDialogOnOverlayClick = true, - }); - if (remove == default || !remove.Value) return; - try { - RemoveWireguardPeer(peer); - _configurationManager.Save(); - } - catch (Exception e) { - _notificationService.Notify(new NotificationMessage { - Severity = NotificationSeverity.Error, - Summary = $"Unable to remove {peerType} {peer.Name}", - Detail = e.Message - }); - } - } - - void RemoveWireguardPeer(IWireguardPeer peer) { - _webService.RemoveWireguardModel(peer); - switch (peer) { - case Client client: - RemoveClient(client); - break; - case Interface iface: - RemoveInterface(iface); - break; - } - } - - IEnumerable InterfaceNames => NetworkInterface.GetAllNetworkInterfaces() - .Select(i => i.Name) - //.Concat(Configuration.Interfaces.Select(i => i.Name)) - //.Distinct() - .OrderBy(n => n); - - RadzenDataGrid _clientsGrid; - - void RemoveClient(Client client) { - Iface.Clients.Remove(client); - //_clientsGrid.Reload(); - } - - void RemoveInterface(Interface iface) { - Configuration.Wireguard.Interfaces.Remove(iface); - _navigationManager.NavigateTo("wireguard"); - } - - void AddClient() { - _navigationManager.NavigateTo($"/add-{nameof(Client).ToLower()}?{nameof(Interface)}={Iface.Id}"); - } -} \ No newline at end of file diff --git a/linguard/web/bin/Debug/net6.0/Bogus.dll b/linguard/web/bin/Debug/net6.0/Bogus.dll deleted file mode 100644 index 84e6073..0000000 Binary files a/linguard/web/bin/Debug/net6.0/Bogus.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/FluentValidation.dll b/linguard/web/bin/Debug/net6.0/FluentValidation.dll deleted file mode 100644 index fd90d11..0000000 Binary files a/linguard/web/bin/Debug/net6.0/FluentValidation.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/Linguard.Core.dll b/linguard/web/bin/Debug/net6.0/Linguard.Core.dll deleted file mode 100644 index ece45f5..0000000 Binary files a/linguard/web/bin/Debug/net6.0/Linguard.Core.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/Linguard.Core.pdb b/linguard/web/bin/Debug/net6.0/Linguard.Core.pdb deleted file mode 100644 index 4b3b436..0000000 Binary files a/linguard/web/bin/Debug/net6.0/Linguard.Core.pdb and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/Linguard.Log.dll b/linguard/web/bin/Debug/net6.0/Linguard.Log.dll deleted file mode 100644 index 561b728..0000000 Binary files a/linguard/web/bin/Debug/net6.0/Linguard.Log.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/Linguard.Log.pdb b/linguard/web/bin/Debug/net6.0/Linguard.Log.pdb deleted file mode 100644 index ef5cdfa..0000000 Binary files a/linguard/web/bin/Debug/net6.0/Linguard.Log.pdb and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/Linguard.Web.deps.json b/linguard/web/bin/Debug/net6.0/Linguard.Web.deps.json deleted file mode 100644 index 4b4e09b..0000000 --- a/linguard/web/bin/Debug/net6.0/Linguard.Web.deps.json +++ /dev/null @@ -1,2582 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v6.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v6.0": { - "Linguard.Web/2.0.0-dev": { - "dependencies": { - "Linguard.Core": "2.0.0", - "QRCoder": "1.4.3", - "Radzen.Blazor": "3.15.2" - }, - "runtime": { - "Linguard.Web.dll": {} - } - }, - "Bogus/34.0.1": { - "runtime": { - "lib/net6.0/Bogus.dll": { - "assemblyVersion": "34.0.1.0", - "fileVersion": "34.0.1.0" - } - } - }, - "ByteSize/2.1.1": { - "runtime": { - "lib/net5.0/ByteSize.dll": { - "assemblyVersion": "2.1.1.0", - "fileVersion": "2.1.1.0" - } - } - }, - "FluentValidation/10.3.6": { - "runtime": { - "lib/net6.0/FluentValidation.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "10.3.6.0" - } - } - }, - "IPNetwork2/2.5.386": { - "runtime": { - "lib/net5.0/System.Net.IPNetwork.dll": { - "assemblyVersion": "2.5.386.0", - "fileVersion": "2.5.386.0" - } - } - }, - "LibSassBuilder/2.0.1": {}, - "Markdig.Signed/0.22.0": { - "runtime": { - "lib/netcoreapp3.1/Markdig.Signed.dll": { - "assemblyVersion": "0.22.0.0", - "fileVersion": "0.22.0.0" - } - } - }, - "Microsoft.ApplicationInsights/2.18.0": { - "dependencies": { - "System.Diagnostics.DiagnosticSource": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": { - "assemblyVersion": "2.18.0.315", - "fileVersion": "2.18.0.315" - } - } - }, - "Microsoft.AspNetCore.Authorization/5.0.0": { - "dependencies": { - "Microsoft.AspNetCore.Metadata": "5.0.0", - "Microsoft.Extensions.Logging.Abstractions": "5.0.0", - "Microsoft.Extensions.Options": "5.0.0" - } - }, - "Microsoft.AspNetCore.Components/5.0.0": { - "dependencies": { - "Microsoft.AspNetCore.Authorization": "5.0.0", - "Microsoft.AspNetCore.Components.Analyzers": "5.0.0" - } - }, - "Microsoft.AspNetCore.Components.Analyzers/5.0.0": {}, - "Microsoft.AspNetCore.Components.Forms/5.0.0": { - "dependencies": { - "Microsoft.AspNetCore.Components": "5.0.0" - } - }, - "Microsoft.AspNetCore.Components.Web/5.0.0": { - "dependencies": { - "Microsoft.AspNetCore.Components": "5.0.0", - "Microsoft.AspNetCore.Components.Forms": "5.0.0", - "Microsoft.Extensions.DependencyInjection": "5.0.0", - "Microsoft.JSInterop": "5.0.0", - "System.IO.Pipelines": "5.0.0" - } - }, - "Microsoft.AspNetCore.Metadata/5.0.0": {}, - "Microsoft.Bcl.AsyncInterfaces/5.0.0": { - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.CodeAnalysis.Analyzers/3.3.2": {}, - "Microsoft.CodeAnalysis.Common/4.0.1": { - "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": "6.0.0", - "System.Text.Encoding.CodePages": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.0.121.55815" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp/4.0.1": { - "dependencies": { - "Microsoft.CodeAnalysis.Common": "4.0.1" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.0.121.55815" - } - }, - "resources": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CSharp/4.7.0": {}, - "Microsoft.Extensions.DependencyInjection/5.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0" - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {}, - "Microsoft.Extensions.Logging.Abstractions/5.0.0": {}, - "Microsoft.Extensions.ObjectPool/5.0.10": {}, - "Microsoft.Extensions.Options/5.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.Primitives": "5.0.0" - } - }, - "Microsoft.Extensions.Primitives/5.0.0": {}, - "Microsoft.JSInterop/5.0.0": {}, - "Microsoft.Management.Infrastructure/2.0.0": { - "dependencies": { - "Microsoft.Management.Infrastructure.Runtime.Unix": "2.0.0", - "Microsoft.Management.Infrastructure.Runtime.Win": "2.0.0" - } - }, - "Microsoft.Management.Infrastructure.CimCmdlets/7.2.1": { - "dependencies": { - "System.Management.Automation": "7.2.1" - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.0.0.0" - } - } - }, - "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { - "runtimeTargets": { - "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win-arm", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win-arm", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win-arm64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win-arm64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win10-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win10-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win10-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win10-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win7-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win7-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win7-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win7-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win8-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win8-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win8-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win8-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win81-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win81-x64", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { - "rid": "win81-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { - "rid": "win81-x86", - "assetType": "runtime", - "assemblyVersion": "1.0.0.0", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm/native/mi.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm/native/miutils.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/native/mi.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win-arm64/native/miutils.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win10-x64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/native/mi.dll": { - "rid": "win10-x64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x64/native/miutils.dll": { - "rid": "win10-x64", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win10-x86", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/native/mi.dll": { - "rid": "win10-x86", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win10-x86/native/miutils.dll": { - "rid": "win10-x86", - "assetType": "native", - "fileVersion": "10.0.18362.1" - }, - "runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win7-x64", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x64/native/mi.dll": { - "rid": "win7-x64", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x64/native/miutils.dll": { - "rid": "win7-x64", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win7-x86", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x86/native/mi.dll": { - "rid": "win7-x86", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win7-x86/native/miutils.dll": { - "rid": "win7-x86", - "assetType": "native", - "fileVersion": "10.0.14394.1000" - }, - "runtimes/win8-x64/native/mi.dll": { - "rid": "win8-x64", - "assetType": "native", - "fileVersion": "6.2.9200.22812" - }, - "runtimes/win8-x64/native/miutils.dll": { - "rid": "win8-x64", - "assetType": "native", - "fileVersion": "6.2.9200.22812" - }, - "runtimes/win8-x86/native/mi.dll": { - "rid": "win8-x86", - "assetType": "native", - "fileVersion": "6.2.9200.22812" - }, - "runtimes/win8-x86/native/miutils.dll": { - "rid": "win8-x86", - "assetType": "native", - "fileVersion": "6.2.9200.22812" - }, - "runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win81-x64", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x64/native/mi.dll": { - "rid": "win81-x64", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x64/native/miutils.dll": { - "rid": "win81-x64", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { - "rid": "win81-x86", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x86/native/mi.dll": { - "rid": "win81-x86", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - }, - "runtimes/win81-x86/native/miutils.dll": { - "rid": "win81-x86", - "assetType": "native", - "fileVersion": "6.3.9600.16384" - } - } - }, - "Microsoft.NETCore.Windows.ApiSets/1.0.1": {}, - "Microsoft.PowerShell.Commands.Diagnostics/7.2.1": { - "dependencies": { - "System.Management.Automation": "7.2.1" - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.Commands.Management/7.2.1": { - "dependencies": { - "Microsoft.PowerShell.Security": "7.2.1", - "System.ServiceProcess.ServiceController": "6.0.0" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.Commands.Utility/7.2.1": { - "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" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.ConsoleHost/7.2.1": { - "dependencies": { - "System.Management.Automation": "7.2.1" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.CoreCLR.Eventing/7.2.1": { - "dependencies": { - "System.Diagnostics.EventLog": "6.0.0" - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.MarkdownRender/7.2.0": { - "dependencies": { - "Markdig.Signed": "0.22.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll": { - "assemblyVersion": "7.2.0.0", - "fileVersion": "7.2.0.0" - } - } - }, - "Microsoft.PowerShell.Native/7.2.0": { - "runtimeTargets": { - "runtimes/linux-arm/native/libpsl-native.so": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-arm64/native/libpsl-native.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-musl-x64/native/libpsl-native.so": { - "rid": "linux-musl-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libmi.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libpsl-native.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux-x64/native/libpsrpclient.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libmi.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libpsl-native.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libpsrpclient.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-arm/native/pwrshplugin.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-arm64/native/pwrshplugin.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-x64/native/pwrshplugin.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - }, - "runtimes/win-x86/native/pwrshplugin.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "10.0.10011.16384" - } - } - }, - "Microsoft.PowerShell.SDK/7.2.1": { - "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" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.PowerShell.Security/7.2.1": { - "dependencies": { - "System.Management.Automation": "7.2.1" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.Win32.Registry/4.7.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Security.Principal.Windows": "5.0.0" - } - }, - "Microsoft.Win32.Registry.AccessControl/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "runtime": { - "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Windows.Compatibility/6.0.0": { - "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" - } - }, - "Microsoft.WSMan.Management/7.2.1": { - "dependencies": { - "Microsoft.WSMan.Runtime": "7.2.1", - "System.Management.Automation": "7.2.1", - "System.ServiceProcess.ServiceController": "6.0.0" - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Microsoft.WSMan.Runtime/7.2.1": { - "runtimeTargets": { - "runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "Namotion.Reflection/2.0.3": { - "dependencies": { - "Microsoft.CSharp": "4.7.0" - }, - "runtime": { - "lib/netstandard2.0/Namotion.Reflection.dll": { - "assemblyVersion": "2.0.3.0", - "fileVersion": "2.0.3.0" - } - } - }, - "Newtonsoft.Json/13.0.1": { - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.1.25517" - } - } - }, - "NJsonSchema/10.5.2": { - "dependencies": { - "Namotion.Reflection": "2.0.3", - "Newtonsoft.Json": "13.0.1" - }, - "runtime": { - "lib/netstandard2.0/NJsonSchema.dll": { - "assemblyVersion": "10.5.2.0", - "fileVersion": "10.5.2.0" - } - } - }, - "NLog/4.7.13": { - "runtime": { - "lib/netstandard2.0/NLog.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.7.13.493" - } - } - }, - "QRCoder/1.4.3": { - "runtime": { - "lib/net6.0/QRCoder.dll": { - "assemblyVersion": "1.4.3.0", - "fileVersion": "1.4.3.0" - } - } - }, - "Radzen.Blazor/3.15.2": { - "dependencies": { - "LibSassBuilder": "2.0.1", - "Microsoft.AspNetCore.Components": "5.0.0", - "Microsoft.AspNetCore.Components.Web": "5.0.0", - "Microsoft.CSharp": "4.7.0", - "System.Linq.Dynamic.Core": "1.2.12" - }, - "runtime": { - "lib/net5.0/Radzen.Blazor.dll": { - "assemblyVersion": "3.15.2.0", - "fileVersion": "3.15.2.0" - } - } - }, - "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": { - "runtimeTargets": { - "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so": { - "rid": "linux-arm", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": { - "runtimeTargets": { - "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so": { - "rid": "linux-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": { - "runtimeTargets": { - "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so": { - "rid": "linux-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.native.System.Data.SqlClient.sni/4.7.0": { - "dependencies": { - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" - } - }, - "runtime.native.System.IO.Ports/6.0.0": { - "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": { - "runtimeTargets": { - "runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib": { - "rid": "osx-arm64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": { - "runtimeTargets": { - "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "runtimeTargets": { - "runtimes/win-arm64/native/sni.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "4.6.25512.1" - } - } - }, - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "runtimeTargets": { - "runtimes/win-x64/native/sni.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "4.6.25512.1" - } - } - }, - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "runtimeTargets": { - "runtimes/win-x86/native/sni.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "4.6.25512.1" - } - } - }, - "System.CodeDom/6.0.0": { - "runtime": { - "lib/net6.0/System.CodeDom.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Collections.Immutable/5.0.0": {}, - "System.ComponentModel.Composition/6.0.0": { - "runtime": { - "lib/net6.0/System.ComponentModel.Composition.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.ComponentModel.Composition.Registration/6.0.0": { - "dependencies": { - "System.ComponentModel.Composition": "6.0.0", - "System.Reflection.Context": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.ComponentModel.Composition.Registration.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "dependencies": { - "System.Security.Cryptography.ProtectedData": "6.0.0", - "System.Security.Permissions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Configuration.ConfigurationManager.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Data.Odbc/6.0.0": { - "dependencies": { - "System.Text.Encoding.CodePages": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Data.Odbc.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll": { - "rid": "freebsd", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/illumos/lib/net6.0/System.Data.Odbc.dll": { - "rid": "illumos", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/ios/lib/net6.0/System.Data.Odbc.dll": { - "rid": "ios", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/linux/lib/net6.0/System.Data.Odbc.dll": { - "rid": "linux", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/osx/lib/net6.0/System.Data.Odbc.dll": { - "rid": "osx", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/solaris/lib/net6.0/System.Data.Odbc.dll": { - "rid": "solaris", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/tvos/lib/net6.0/System.Data.Odbc.dll": { - "rid": "tvos", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.Data.Odbc.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Data.OleDb/6.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0", - "System.Diagnostics.PerformanceCounter": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Data.OleDb.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Data.OleDb.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Data.SqlClient/4.8.3": { - "dependencies": { - "Microsoft.Win32.Registry": "4.7.0", - "System.Security.Principal.Windows": "5.0.0", - "runtime.native.System.Data.SqlClient.sni": "4.7.0" - }, - "runtime": { - "lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "assemblyVersion": "4.6.1.3", - "fileVersion": "4.700.21.41603" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "4.6.1.3", - "fileVersion": "4.700.21.41603" - }, - "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.6.1.3", - "fileVersion": "4.700.21.41603" - } - } - }, - "System.Diagnostics.DiagnosticSource/5.0.0": {}, - "System.Diagnostics.EventLog/6.0.0": {}, - "System.Diagnostics.PerformanceCounter/6.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.DirectoryServices/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Security.Permissions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.DirectoryServices.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.DirectoryServices.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.DirectoryServices.AccountManagement/6.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0", - "System.DirectoryServices": "6.0.0", - "System.DirectoryServices.Protocols": "6.0.0", - "System.Security.AccessControl": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.DirectoryServices.AccountManagement.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.DirectoryServices.Protocols/6.0.0": { - "runtime": { - "lib/net6.0/System.DirectoryServices.Protocols.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll": { - "rid": "linux", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll": { - "rid": "osx", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Drawing.Common/6.0.0": { - "dependencies": { - "Microsoft.Win32.SystemEvents": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Drawing.Common.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Formats.Asn1/6.0.0": {}, - "System.IO.Packaging/6.0.0": { - "runtime": { - "lib/net6.0/System.IO.Packaging.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.IO.Pipelines/5.0.0": {}, - "System.IO.Ports/6.0.0": { - "dependencies": { - "runtime.native.System.IO.Ports": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.IO.Ports.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.IO.Ports.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - }, - "runtimes/win/lib/net6.0/System.IO.Ports.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Linq.Dynamic.Core/1.2.12": { - "runtime": { - "lib/net5.0/System.Linq.Dynamic.Core.dll": { - "assemblyVersion": "1.2.12.0", - "fileVersion": "1.2.12.0" - } - } - }, - "System.Management/6.0.0": { - "dependencies": { - "System.CodeDom": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Management.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Management.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Management.Automation/7.2.1": { - "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" - }, - "runtimeTargets": { - "runtimes/unix/lib/net6.0/System.Management.Automation.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - }, - "runtimes/win/lib/net6.0/System.Management.Automation.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.2.1.500", - "fileVersion": "7.2.1.500" - } - } - }, - "System.Memory/4.5.4": {}, - "System.Net.Http.WinHttpHandler/6.0.0": { - "runtime": { - "lib/net6.0/System.Net.Http.WinHttpHandler.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Numerics.Vectors/4.5.0": {}, - "System.Private.ServiceModel/4.9.0": { - "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": "6.0.0", - "System.Security.Principal.Windows": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Private.ServiceModel.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - }, - "resources": { - "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.Context/6.0.0": { - "runtime": { - "lib/net6.0/System.Reflection.Context.dll": { - "assemblyVersion": "4.0.3.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Reflection.DispatchProxy/4.7.1": {}, - "System.Reflection.Metadata/5.0.0": {}, - "System.Runtime.Caching/6.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Runtime.Caching.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, - "System.Security.AccessControl/6.0.0": {}, - "System.Security.Cryptography.Pkcs/6.0.0": { - "dependencies": { - "System.Formats.Asn1": "6.0.0" - } - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "runtime": { - "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Cryptography.Xml/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Security.Cryptography.Pkcs": "6.0.0" - } - }, - "System.Security.Permissions/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0", - "System.Windows.Extensions": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Security.Permissions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Security.Principal.Windows/5.0.0": {}, - "System.ServiceModel.Duplex/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0", - "System.ServiceModel.Primitives": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.Duplex.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.Http/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0", - "System.ServiceModel.Primitives": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.Http.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.NetTcp/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0", - "System.ServiceModel.Primitives": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.NetTcp.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.Primitives/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.Primitives.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - }, - "lib/net6.0/System.ServiceModel.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.Security/4.9.0": { - "dependencies": { - "System.Private.ServiceModel": "4.9.0", - "System.ServiceModel.Primitives": "4.9.0" - }, - "runtime": { - "lib/net6.0/System.ServiceModel.Security.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - } - }, - "System.ServiceModel.Syndication/6.0.0": { - "runtime": { - "lib/net6.0/System.ServiceModel.Syndication.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.ServiceProcess.ServiceController/6.0.0": { - "dependencies": { - "System.Diagnostics.EventLog": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.ServiceProcess.ServiceController.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Speech/6.0.0": { - "runtime": { - "lib/net6.0/System.Speech.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Speech.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Text.Encoding.CodePages/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Text.Encodings.Web/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Threading.AccessControl/6.0.0": { - "dependencies": { - "System.Security.AccessControl": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Threading.AccessControl.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Threading.AccessControl.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Threading.Tasks.Extensions/4.5.4": {}, - "System.Web.Services.Description/4.9.0": { - "runtime": { - "lib/netstandard2.0/System.Web.Services.Description.dll": { - "assemblyVersion": "4.9.0.0", - "fileVersion": "4.900.21.52002" - } - }, - "resources": { - "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": { - "dependencies": { - "System.Drawing.Common": "6.0.0" - }, - "runtime": { - "lib/net6.0/System.Windows.Extensions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "YamlDotNet/11.2.1": { - "runtime": { - "lib/netstandard2.1/YamlDotNet.dll": { - "assemblyVersion": "11.0.0.0", - "fileVersion": "11.2.1.0" - } - } - }, - "Linguard.Core/2.0.0": { - "dependencies": { - "Bogus": "34.0.1", - "ByteSize": "2.1.1", - "FluentValidation": "10.3.6", - "IPNetwork2": "2.5.386", - "Linguard.Log": "2.0.0", - "Microsoft.PowerShell.SDK": "7.2.1", - "System.Management.Automation": "7.2.1", - "YamlDotNet": "11.2.1" - }, - "runtime": { - "Linguard.Core.dll": {} - } - }, - "Linguard.Log/2.0.0": { - "dependencies": { - "NLog": "4.7.13" - }, - "runtime": { - "Linguard.Log.dll": {} - } - } - } - }, - "libraries": { - "Linguard.Web/2.0.0-dev": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Bogus/34.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-49iq7QrD0wb7V4/FcK8p3dWdJxNUbojaqK9L6KRvdikIuRjt38EsNp7QXICcYdbYw01K8BHUdxlnTNn/YX3qDA==", - "path": "bogus/34.0.1", - "hashPath": "bogus.34.0.1.nupkg.sha512" - }, - "ByteSize/2.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-D+Y3NpbHrW21vZwwegeWf/8iAg2Mr0s7n1su8Ysho+O9dctJ5/EkWUi19QVxc6+nZl080gGTXBP/Nz0twSI3dA==", - "path": "bytesize/2.1.1", - "hashPath": "bytesize.2.1.1.nupkg.sha512" - }, - "FluentValidation/10.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iMd370ZDx6ydm8t7bIFdRbSKX0e42lpvCtifUSbTSXOk5iKjmgl7HU0PXBhIWQAyIRi3gCwfMI9luj8H6K+byw==", - "path": "fluentvalidation/10.3.6", - "hashPath": "fluentvalidation.10.3.6.nupkg.sha512" - }, - "IPNetwork2/2.5.386": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6ihnNm82vyJsUYYfR2BRTziY/mQ5UGLsQZuhdSYPeTlbQLhBW/4BC9hBz3h5bFDn8PkVw9dP0cpv9brIBmk4Fw==", - "path": "ipnetwork2/2.5.386", - "hashPath": "ipnetwork2.2.5.386.nupkg.sha512" - }, - "LibSassBuilder/2.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-f+7TWQtCirW94VdzKL9SaAfeSF96TeEqdtDztmTGbndrcUlZZlL6uJLZKQCXQgj1BB3OqX0584OCvqFHrkAusA==", - "path": "libsassbuilder/2.0.1", - "hashPath": "libsassbuilder.2.0.1.nupkg.sha512" - }, - "Markdig.Signed/0.22.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7x3FqS3wk8DXyQLuflD47tBs6+ly6k4VtoDCzlDWfy7XHVsBIi7eGYEM15sPAcwSCQjOksNWE8U5r2v0Sk5FzQ==", - "path": "markdig.signed/0.22.0", - "hashPath": "markdig.signed.0.22.0.nupkg.sha512" - }, - "Microsoft.ApplicationInsights/2.18.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-milJB3VOCoC4EWmpE/Co9cOJ7SV6Ji6VqV4Rf5UlqL9QCg+rAX1y+3Y+j1Gu/j4IExYiPq7SEKqkP2BFnEu6Vw==", - "path": "microsoft.applicationinsights/2.18.0", - "hashPath": "microsoft.applicationinsights.2.18.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Authorization/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kNiUekkQZIgd0k8WJZVLpdaJSTgpwHT+gn9slPtON4FC8vGGsFWQo3Bd5wo363EJuxlOgszUNQBbpLAaFh1kFg==", - "path": "microsoft.aspnetcore.authorization/5.0.0", - "hashPath": "microsoft.aspnetcore.authorization.5.0.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Components/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kfJF9EqJGzVgfEN15vWI+8g+ZhtlMAk9YO6G8lXKO9s1AxWv+Ct4OLOMO46PXyjPWWJ7X9gded9EFVFyxsdyjg==", - "path": "microsoft.aspnetcore.components/5.0.0", - "hashPath": "microsoft.aspnetcore.components.5.0.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Components.Analyzers/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-G5SP+2FO90d84XB90A1NBKJaDjhkhcv3kDumd7zughGt1tNQn92sCpBoRs51LT1M1Cp4w4cD/WHS8WB8t5ol9A==", - "path": "microsoft.aspnetcore.components.analyzers/5.0.0", - "hashPath": "microsoft.aspnetcore.components.analyzers.5.0.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Components.Forms/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6Xdql+Sbx7XM1XjNXx6iyEmlAujTM2GFgeOdzlHip3h6g/M3D/al+K945JuFQ5HlBUQv3SL0c6Okencad6nVmA==", - "path": "microsoft.aspnetcore.components.forms/5.0.0", - "hashPath": "microsoft.aspnetcore.components.forms.5.0.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Components.Web/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TYnULwOuF43ITRlL02CmVoXLb1t1NSNbmUXuIrS4IMJd+HjK+sIisTRoJOr4L13LDWmOr1OM8teA04tOFf4I6w==", - "path": "microsoft.aspnetcore.components.web/5.0.0", - "hashPath": "microsoft.aspnetcore.components.web.5.0.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Metadata/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Gr7YSfoYYnyiQ3+se9RjiZhj2h7I9uDn0ps1kPfxGqLbC8fzpfAzb3EPbHz0sBHtw8aBE0zyckZixmAMqHJnpA==", - "path": "microsoft.aspnetcore.metadata/5.0.0", - "hashPath": "microsoft.aspnetcore.metadata.5.0.0.nupkg.sha512" - }, - "Microsoft.Bcl.AsyncInterfaces/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W8DPQjkMScOMTtJbPwmPyj9c3zYSFGawDW3jwlBOOsnY+EzZFLgNQ/UMkK35JmkNOVPdCyPr2Tw7Vv9N+KA3ZQ==", - "path": "microsoft.bcl.asyncinterfaces/5.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Analyzers/3.3.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA==", - "path": "microsoft.codeanalysis.analyzers/3.3.2", - "hashPath": "microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Common/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SMREwaVD5SzatlWhh9aahQAtSWdb63NcE//f+bQzgHSECU6xtDtaxk0kwV+asdFfr6HtW38UeO6jvqdfzudg3w==", - "path": "microsoft.codeanalysis.common/4.0.1", - "hashPath": "microsoft.codeanalysis.common.4.0.1.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Q9RxxydPpUElj/x1/qykDTUGsRoKbJG8H5XUSeMGmMu54fBiuX1xyanom9caa1oQfh5JIW1BgLxobSaWs4WyHQ==", - "path": "microsoft.codeanalysis.csharp/4.0.1", - "hashPath": "microsoft.codeanalysis.csharp.4.0.1.nupkg.sha512" - }, - "Microsoft.CSharp/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", - "path": "microsoft.csharp/4.7.0", - "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==", - "path": "microsoft.extensions.dependencyinjection/5.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==", - "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==", - "path": "microsoft.extensions.logging.abstractions/5.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.ObjectPool/5.0.10": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pp9tbGqIhdEXL6Q1yJl+zevAJSq4BsxqhS1GXzBvEsEz9DDNu9GLNzgUy2xyFc4YjB4m4Ff2YEWTnvQvVYdkvQ==", - "path": "microsoft.extensions.objectpool/5.0.10", - "hashPath": "microsoft.extensions.objectpool.5.0.10.nupkg.sha512" - }, - "Microsoft.Extensions.Options/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==", - "path": "microsoft.extensions.options/5.0.0", - "hashPath": "microsoft.extensions.options.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==", - "path": "microsoft.extensions.primitives/5.0.0", - "hashPath": "microsoft.extensions.primitives.5.0.0.nupkg.sha512" - }, - "Microsoft.JSInterop/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qhLTZMoOsAbDWwE7M+VbjxH3EuP654tclaOhi6Sf7Xh6bj6TXDO0GiNQeNPdebMClKMGELJezOwbFp1BFB+9Ug==", - "path": "microsoft.jsinterop/5.0.0", - "hashPath": "microsoft.jsinterop.5.0.0.nupkg.sha512" - }, - "Microsoft.Management.Infrastructure/2.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IaKZRNBBv3sdrmBWd+aqwHq8cVHk/3WgWFAN/dt40MRY9rbtHiDfTTmaEN0tGTmQqGCGDo/ncntA8MvFMvcsRw==", - "path": "microsoft.management.infrastructure/2.0.0", - "hashPath": "microsoft.management.infrastructure.2.0.0.nupkg.sha512" - }, - "Microsoft.Management.Infrastructure.CimCmdlets/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xe1x237SCyrjpmW1mP1T69/OOc/gtU66P8wVC+b4/u7Hz7fIO6B8P5yVQQfb79rAe1GocruIpQlX4KXTFQf09w==", - "path": "microsoft.management.infrastructure.cimcmdlets/7.2.1", - "hashPath": "microsoft.management.infrastructure.cimcmdlets.7.2.1.nupkg.sha512" - }, - "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-p0lslMX5bdWLxO2P7ao+rjAMOB0LEwPYpzvdCQ2OEYgX2NxFpQ8ILvqPGnYlTAb53rT8gu5DyIol1HboHFYfxQ==", - "path": "microsoft.management.infrastructure.runtime.unix/2.0.0", - "hashPath": "microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512" - }, - "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vjBWQeDOjgernkrOdbEgn7M70SF7hof7ORdKPSlL06Uc15+oYdth5dZju9KsgUoti/cwnkZTiwtDx/lRtay0sA==", - "path": "microsoft.management.infrastructure.runtime.win/2.0.0", - "hashPath": "microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512" - }, - "Microsoft.NETCore.Windows.ApiSets/1.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==", - "path": "microsoft.netcore.windows.apisets/1.0.1", - "hashPath": "microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512" - }, - "Microsoft.PowerShell.Commands.Diagnostics/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Bgw4Egv7cnYUTWAy6koxg+0+/8K6rqUdlAiAxuJby9FeDPZQFfqCHQqlyP9JDa6lvbtmeBx1btFDx6Kh8bxdwQ==", - "path": "microsoft.powershell.commands.diagnostics/7.2.1", - "hashPath": "microsoft.powershell.commands.diagnostics.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.Commands.Management/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YAMrGDF2QTg6Gwz07+m1+BnmcYsPyywfY4J8nOpImfXZLLNhD7zQQP0orNHu9WPPV3/+E33qUyPj5J3ugCMk6A==", - "path": "microsoft.powershell.commands.management/7.2.1", - "hashPath": "microsoft.powershell.commands.management.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.Commands.Utility/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PU15IxUJd7nSacTstlxqJoEeGlI+BH6cUKTppkkIIxEj7EfwC5nD1qTL41xye63BFeZmOFeqAhMI6LtJUd875g==", - "path": "microsoft.powershell.commands.utility/7.2.1", - "hashPath": "microsoft.powershell.commands.utility.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.ConsoleHost/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uAPSsTmkOa7na1+OAPF87yBRwD1Ka/qXThoyrlvP9ihzMWfHM52k3MuKVEGi04VP3Wdi7U4Rzkr3svxDDmkHgA==", - "path": "microsoft.powershell.consolehost/7.2.1", - "hashPath": "microsoft.powershell.consolehost.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.CoreCLR.Eventing/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fUz7InjavqKtslkQN828nWbZLnmmJRL9rn4b3e/XXdx0BcN+65x/pSgMnehwDVGIoqUPUMXN54eDo4HRVcLA5g==", - "path": "microsoft.powershell.coreclr.eventing/7.2.1", - "hashPath": "microsoft.powershell.coreclr.eventing.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.MarkdownRender/7.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1vqDtdX9RCGsMWCbzp0CIxZW3slWgq8mYHDfUlUKzmkV57fMAn4m0Gy2OtsqopZzrOiVJci+QCWx5FB7BVpMlw==", - "path": "microsoft.powershell.markdownrender/7.2.0", - "hashPath": "microsoft.powershell.markdownrender.7.2.0.nupkg.sha512" - }, - "Microsoft.PowerShell.Native/7.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TauOu3bYr4DRh9HpH3+fgaL+y2GY47KLsgU6qX1NDLqHshdEaCCjiF0N5sDEgCEhSb38FwWhpdFTIQvoOcYCXQ==", - "path": "microsoft.powershell.native/7.2.0", - "hashPath": "microsoft.powershell.native.7.2.0.nupkg.sha512" - }, - "Microsoft.PowerShell.SDK/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UufIcywqI/22p0oqC5qg+yDoW39U2JAQyaHxy2Tr/h0hdWuFimtmhxp/FDXTxszgOdobtjcrCkSzqcoNmu/vQQ==", - "path": "microsoft.powershell.sdk/7.2.1", - "hashPath": "microsoft.powershell.sdk.7.2.1.nupkg.sha512" - }, - "Microsoft.PowerShell.Security/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GV3RuuOmXHAaEjeBcyixdzUIAQvHW6xgoWwafzTe97DbhI+N1sg4fa/FQ9pd8lqG+kkWxGwTy1VgudXX6rhUkg==", - "path": "microsoft.powershell.security/7.2.1", - "hashPath": "microsoft.powershell.security.7.2.1.nupkg.sha512" - }, - "Microsoft.Win32.Registry/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", - "path": "microsoft.win32.registry/4.7.0", - "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry.AccessControl/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UoE+eeuBKL+GFHxHV3FjHlY5K8Wr/IR7Ee/a2oDNqFodF1iMqyt5hIs0U9Z217AbWrHrNle4750kD03hv1IMZw==", - "path": "microsoft.win32.registry.accesscontrol/6.0.0", - "hashPath": "microsoft.win32.registry.accesscontrol.6.0.0.nupkg.sha512" - }, - "Microsoft.Win32.SystemEvents/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", - "path": "microsoft.win32.systemevents/6.0.0", - "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" - }, - "Microsoft.Windows.Compatibility/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9esuK5JqnjkDgO9/AHesyJSG0aKwpfLVzTw6nIGYhqE91VLxZyv3HKulNoPVy/NOuyAaf1kE4FKtdZDzdd/SLw==", - "path": "microsoft.windows.compatibility/6.0.0", - "hashPath": "microsoft.windows.compatibility.6.0.0.nupkg.sha512" - }, - "Microsoft.WSMan.Management/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vMOJMof4eLql180G4PmTurN8h8+VmPaf1l/Tqq+GI7HYyNv140iY3/Z18MiZA4dRG14qghLNo5JxtTolY7b4og==", - "path": "microsoft.wsman.management/7.2.1", - "hashPath": "microsoft.wsman.management.7.2.1.nupkg.sha512" - }, - "Microsoft.WSMan.Runtime/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v14vzUXIg7opXoQI8Eb82dvsRwBNylZ44lvyXOBSRCiVfvMhyTqE8bpPWbwwmQ5JZRnG/dP5/aOYuu9l163fyQ==", - "path": "microsoft.wsman.runtime/7.2.1", - "hashPath": "microsoft.wsman.runtime.7.2.1.nupkg.sha512" - }, - "Namotion.Reflection/2.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tZCe/UrSBAMW8A4TjD/SlpRHaWjnHlSWdyRuOXhf3yrE0OX+4fXg0uzj7mwFDclXznfCGRAZbP+akPt4G/mclw==", - "path": "namotion.reflection/2.0.3", - "hashPath": "namotion.reflection.2.0.3.nupkg.sha512" - }, - "Newtonsoft.Json/13.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", - "path": "newtonsoft.json/13.0.1", - "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" - }, - "NJsonSchema/10.5.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vr2CbySuXh74TQFU0rGJYZOS492xOE64cPXdB7a0cfXJb/N45Bf4v7sd4LOla0jNhgc5V/B61Ko3qecriL195w==", - "path": "njsonschema/10.5.2", - "hashPath": "njsonschema.10.5.2.nupkg.sha512" - }, - "NLog/4.7.13": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AvoGpCuq36B+0wY313XA6gC+YeMvk24rqF8P+HS9fInBGOjCzPjpXp2ln9ATZjPOJtXgHfc8zNmTjyswFGLxvg==", - "path": "nlog/4.7.13", - "hashPath": "nlog.4.7.13.nupkg.sha512" - }, - "QRCoder/1.4.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fWuFqjm8GTlEb2GqBl3Hi8HZZeZQwBSHxvRPtPjyNbT82H0ff0JwavKRBmMaXCno1Av6McPC8aJzri0Mj2w9Jw==", - "path": "qrcoder/1.4.3", - "hashPath": "qrcoder.1.4.3.nupkg.sha512" - }, - "Radzen.Blazor/3.15.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KlNfXNy3miobmXUZJeLkeRIDpI6N3FaszVFiVrjdplVYUvA+1kmMhBPP+fEZel4CbGVEDsSp0EZFnBfiUxN0gw==", - "path": "radzen.blazor/3.15.2", - "hashPath": "radzen.blazor.3.15.2.nupkg.sha512" - }, - "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-75q52H7CSpgIoIDwXb9o833EvBZIXJ0mdPhz1E6jSisEXUBlSCPalC29cj3EXsjpuDwr0dj1LRXZepIQH/oL4Q==", - "path": "runtime.linux-arm.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.linux-arm.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xn2bMThmXr3CsvOYmS8ex2Yz1xo+kcnhVg2iVhS9PlmqjZPAkrEo/I40wjrBZH/tU4kvH0s1AE8opAvQ3KIS8g==", - "path": "runtime.linux-arm64.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.linux-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-16nbNXwv0sC+gLGIuecri0skjuh6R1maIJggsaNP7MQBcbVcEfWFUOkEnsnvoLEjy0XerfibuRptfQ8AmdIcWA==", - "path": "runtime.linux-x64.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.linux-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.native.System.Data.SqlClient.sni/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", - "path": "runtime.native.system.data.sqlclient.sni/4.7.0", - "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512" - }, - "runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KaaXlpOcuZjMdmyF5wzzx3b+PRKIzt6A5Ax9dKenPDQbVJAFpev+casD0BIig1pBcbs3zx7CqWemzUJKAeHdSQ==", - "path": "runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fXG12NodG1QrCdoaeSQ1gVnk/koi4WYY4jZtarMkZeQMyReBm1nZlSRoPnUjLr2ZR36TiMjpcGnQfxymieUe7w==", - "path": "runtime.osx-arm64.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.osx-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/As+zPY49+dSUXkh+fTUbyPhqrdGN//evLxo4Vue88pfh1BHZgF7q4kMblTkxYvwR6Vi03zSYxysSFktO8/SDQ==", - "path": "runtime.osx-x64.runtime.native.system.io.ports/6.0.0", - "hashPath": "runtime.osx-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" - }, - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", - "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", - "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" - }, - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", - "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", - "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" - }, - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", - "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", - "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" - }, - "System.CodeDom/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", - "path": "system.codedom/6.0.0", - "hashPath": "system.codedom.6.0.0.nupkg.sha512" - }, - "System.Collections.Immutable/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", - "path": "system.collections.immutable/5.0.0", - "hashPath": "system.collections.immutable.5.0.0.nupkg.sha512" - }, - "System.ComponentModel.Composition/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-60Qv+F7oxomOjJeTDA5Z4iCyFbQ0B/2Mi5HT+13pxxq0lVnu2ipbWMzFB+RWKr3wWKA8BSncXr9PH/fECwMX5Q==", - "path": "system.componentmodel.composition/6.0.0", - "hashPath": "system.componentmodel.composition.6.0.0.nupkg.sha512" - }, - "System.ComponentModel.Composition.Registration/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+i3RLlOgTsf15VeADBPpzPyRiXq71aLSuzdHeNtmq9f6BwpF3OWhB76p0WDUNCa3Z+SLD4dJbBM9yAep7kQCGA==", - "path": "system.componentmodel.composition.registration/6.0.0", - "hashPath": "system.componentmodel.composition.registration.6.0.0.nupkg.sha512" - }, - "System.Configuration.ConfigurationManager/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", - "path": "system.configuration.configurationmanager/6.0.0", - "hashPath": "system.configuration.configurationmanager.6.0.0.nupkg.sha512" - }, - "System.Data.Odbc/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pnZjwe0Qwr1Rnp7NExd5zz4YwXJrYuAbWNKjEQpTzCEg6f/L5DYJS7w3hG3vgSj1t/r79UL390YzXIklf1VuQQ==", - "path": "system.data.odbc/6.0.0", - "hashPath": "system.data.odbc.6.0.0.nupkg.sha512" - }, - "System.Data.OleDb/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LQ8PjTIF1LtrrlGiyiTVjAkQtTWKm9GSNnygIlWjhN9y88s7xhy6DUNDDkmQQ9f6ex7mA4k0Tl97lz/CklaiLg==", - "path": "system.data.oledb/6.0.0", - "hashPath": "system.data.oledb.6.0.0.nupkg.sha512" - }, - "System.Data.SqlClient/4.8.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yERfVLXAY0QbylAgaGLByYN0hFxX28aeEQ0hUgJO+Ntn1AfmWl5HHUoYJA0Yl9HhIUUJHVaS/Sw/RLZr5aaC+A==", - "path": "system.data.sqlclient/4.8.3", - "hashPath": "system.data.sqlclient.4.8.3.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==", - "path": "system.diagnostics.diagnosticsource/5.0.0", - "hashPath": "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512" - }, - "System.Diagnostics.EventLog/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", - "path": "system.diagnostics.eventlog/6.0.0", - "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512" - }, - "System.Diagnostics.PerformanceCounter/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-gbeE5tNp/oB7O8kTTLh3wPPJCxpNOphXPTWVs1BsYuFOYapFijWuh0LYw1qnDo4gwDUYPXOmpTIhvtxisGsYOQ==", - "path": "system.diagnostics.performancecounter/6.0.0", - "hashPath": "system.diagnostics.performancecounter.6.0.0.nupkg.sha512" - }, - "System.DirectoryServices/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kp/Op0nxDVGlElDKh8TsXO0GKXftQgAB6sJk0wUetZK1Rr0Pbd86Tn7AllLLlROFZa4BTl/LVHakljtGELFzCg==", - "path": "system.directoryservices/6.0.0", - "hashPath": "system.directoryservices.6.0.0.nupkg.sha512" - }, - "System.DirectoryServices.AccountManagement/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2iKkY6VC4WX6H13N8WhH2SRUfWCwg2KZR5w9JIS9cw9N8cZhT7VXxHX0L6OX6Po419aSu2LWrJE9tu6b+cUnPA==", - "path": "system.directoryservices.accountmanagement/6.0.0", - "hashPath": "system.directoryservices.accountmanagement.6.0.0.nupkg.sha512" - }, - "System.DirectoryServices.Protocols/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-++WKU7HQPo/FJdhywWw+q2lLjcVAGVw5XLH9kRCV+4DvkhVAcHCksh0ezIqwNROmaU9LMJN0d/LAdeWXu3pi6Q==", - "path": "system.directoryservices.protocols/6.0.0", - "hashPath": "system.directoryservices.protocols.6.0.0.nupkg.sha512" - }, - "System.Drawing.Common/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", - "path": "system.drawing.common/6.0.0", - "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" - }, - "System.Formats.Asn1/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA==", - "path": "system.formats.asn1/6.0.0", - "hashPath": "system.formats.asn1.6.0.0.nupkg.sha512" - }, - "System.IO.Packaging/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-C7OkTRIjqIjAKu6ef/fuj8ynCZTPcTYZnvHaq48bniACgXXJogmEoIc56YCDNTc14xhsbLmgpS3KP+evbsUa2g==", - "path": "system.io.packaging/6.0.0", - "hashPath": "system.io.packaging.6.0.0.nupkg.sha512" - }, - "System.IO.Pipelines/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==", - "path": "system.io.pipelines/5.0.0", - "hashPath": "system.io.pipelines.5.0.0.nupkg.sha512" - }, - "System.IO.Ports/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dRyGI7fUESar5ZLIpiBOaaNLW7YyOBGftjj5Of+xcduC/Rjl7RjhEnWDvvNBmHuF3d0tdXoqdVI/yrVA8f00XA==", - "path": "system.io.ports/6.0.0", - "hashPath": "system.io.ports.6.0.0.nupkg.sha512" - }, - "System.Linq.Dynamic.Core/1.2.12": { - "type": "package", - "serviceable": true, - "sha512": "sha512-wJDLhidcJnLAJeZ4z10YVAxMm4rTW0zlYmUjriJTo4eGLHD5NKZOm6qFabkn5TinbfZ6LM9LeYFPyiQMpRly3Q==", - "path": "system.linq.dynamic.core/1.2.12", - "hashPath": "system.linq.dynamic.core.1.2.12.nupkg.sha512" - }, - "System.Management/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sHsESYMmPDhQuOC66h6AEOs/XowzKsbT9srMbX71TCXP58hkpn1BqBjdmKj1+DCA/WlBETX1K5WjQHwmV0Txrg==", - "path": "system.management/6.0.0", - "hashPath": "system.management.6.0.0.nupkg.sha512" - }, - "System.Management.Automation/7.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YlTE+q14vQ1YU//A5+/Jwl5+L5r6uOVIWuB4D/T9r80AaCeUAZMMvTKjgvIr9lwkovwQflVL+1JfBAi9f0q0KA==", - "path": "system.management.automation/7.2.1", - "hashPath": "system.management.automation.7.2.1.nupkg.sha512" - }, - "System.Memory/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", - "path": "system.memory/4.5.4", - "hashPath": "system.memory.4.5.4.nupkg.sha512" - }, - "System.Net.Http.WinHttpHandler/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jubNN9jH4NzVrvEf4fGwESLBsfH8whWNbHMhgM6IwA8UCt6+/M19bbOHc21JhigvC2HQKCl8HKGZMcBtIpzqIg==", - "path": "system.net.http.winhttphandler/6.0.0", - "hashPath": "system.net.http.winhttphandler.6.0.0.nupkg.sha512" - }, - "System.Numerics.Vectors/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", - "path": "system.numerics.vectors/4.5.0", - "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" - }, - "System.Private.ServiceModel/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d3RjkrtpjUQ63PzFmm/SZ4aOXeJNP+8YW5QeP0lCJy8iX4xlHdlNLWTF9sRn9SmrFTK757kQXT9Op/R4l858uw==", - "path": "system.private.servicemodel/4.9.0", - "hashPath": "system.private.servicemodel.4.9.0.nupkg.sha512" - }, - "System.Reflection.Context/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vi+Gb41oyOYie7uLSsjRmfRg3bryUg5DssJvj3gDUl0D8z6ipSm6/yi/XNx2rcS5iVMvHcwRUHjcx7ixv0K3/w==", - "path": "system.reflection.context/6.0.0", - "hashPath": "system.reflection.context.6.0.0.nupkg.sha512" - }, - "System.Reflection.DispatchProxy/4.7.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-C1sMLwIG6ILQ2bmOT4gh62V6oJlyF4BlHcVMrOoor49p0Ji2tA8QAoqyMcIhAdH6OHKJ8m7BU+r4LK2CUEOKqw==", - "path": "system.reflection.dispatchproxy/4.7.1", - "hashPath": "system.reflection.dispatchproxy.4.7.1.nupkg.sha512" - }, - "System.Reflection.Metadata/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==", - "path": "system.reflection.metadata/5.0.0", - "hashPath": "system.reflection.metadata.5.0.0.nupkg.sha512" - }, - "System.Runtime.Caching/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==", - "path": "system.runtime.caching/6.0.0", - "hashPath": "system.runtime.caching.6.0.0.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" - }, - "System.Security.AccessControl/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", - "path": "system.security.accesscontrol/6.0.0", - "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Pkcs/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-elM3x+xSRhzQysiqo85SbidJJ2YbZlnvmh+53TuSZHsD7dNuuEWser+9EFtY+rYupBwkq2avc6ZCO3/6qACgmg==", - "path": "system.security.cryptography.pkcs/6.0.0", - "hashPath": "system.security.cryptography.pkcs.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.ProtectedData/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", - "path": "system.security.cryptography.protecteddata/6.0.0", - "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Xml/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-puJ4UCh9JVRwOCyCIcq71JY6Axr8Sp8E2GjTIU1Fj8hm4+oX6NEoyGFGa/+pBG8SrVxbQPSj7hvtaREyTHHsmw==", - "path": "system.security.cryptography.xml/6.0.0", - "hashPath": "system.security.cryptography.xml.6.0.0.nupkg.sha512" - }, - "System.Security.Permissions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", - "path": "system.security.permissions/6.0.0", - "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" - }, - "System.Security.Principal.Windows/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", - "path": "system.security.principal.windows/5.0.0", - "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" - }, - "System.ServiceModel.Duplex/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Yb8MFiJxBBtm2JnfS/5SxYzm2HqkEmHu5xeaVIHXy83sNpty9wc30JifH2xgda821D6nr1UctbwbdZqN4LBUKQ==", - "path": "system.servicemodel.duplex/4.9.0", - "hashPath": "system.servicemodel.duplex.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.Http/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z+s3RkLNzJ31fDXAjqXdXp67FqsNG4V3Md3r7FOrzMkHmg61gY8faEfTFPBLxU9tax1HPWt6IHVAquXBKySJaw==", - "path": "system.servicemodel.http/4.9.0", - "hashPath": "system.servicemodel.http.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.NetTcp/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nXgnnkrZERUF/KwmoLwZPkc7fqgiq94DXkmUZBvDNh/LdZquDvjy2NbhJLElpApOa5x8zEoQoBZyJ2PqNC39qg==", - "path": "system.servicemodel.nettcp/4.9.0", - "hashPath": "system.servicemodel.nettcp.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.Primitives/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LTFPVdS8Nf76xg/wRZkDa+2Q+GnjTOmwkTlwuoetwX37mAfYnGkf7p8ydhpDwVmomNljpUOhUUGxfjQyd5YcOg==", - "path": "system.servicemodel.primitives/4.9.0", - "hashPath": "system.servicemodel.primitives.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.Security/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iurpbSmPgotHps94VQ6acvL6hU2gjiuBmQI7PwLLN76jsbSpUcahT0PglccKIAwoMujATk/LWtAapBHpwCFn2g==", - "path": "system.servicemodel.security/4.9.0", - "hashPath": "system.servicemodel.security.4.9.0.nupkg.sha512" - }, - "System.ServiceModel.Syndication/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cp1mMNG87iJtE0oHXFtfWT6cfski2JNo5iU0siTPi/uN2k1CIJI6FE4jr4v3got2dzt7wBq17fSy44btun9GiA==", - "path": "system.servicemodel.syndication/6.0.0", - "hashPath": "system.servicemodel.syndication.6.0.0.nupkg.sha512" - }, - "System.ServiceProcess.ServiceController/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qMBvG8ZFbkXoe0Z5/D7FAAadfPkH2v7vSuh2xsLf3U6jNoejpIdeV18A0htiASsLK1CCAc/p59kaLXlt2yB1gw==", - "path": "system.serviceprocess.servicecontroller/6.0.0", - "hashPath": "system.serviceprocess.servicecontroller.6.0.0.nupkg.sha512" - }, - "System.Speech/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GQovERMrNP0Vbtgk8LzH4PlFS6lqHgsL9WkUmv8Kkxa0m0vNakitytpHZlfJ9WR7n9WKLXh68nn2kyL9mflnLg==", - "path": "system.speech/6.0.0", - "hashPath": "system.speech.6.0.0.nupkg.sha512" - }, - "System.Text.Encoding.CodePages/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", - "path": "system.text.encoding.codepages/6.0.0", - "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512" - }, - "System.Text.Encodings.Web/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", - "path": "system.text.encodings.web/6.0.0", - "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" - }, - "System.Threading.AccessControl/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2258mqWesMch/xCpcnjJBgJP33yhpZLGLbEOm01qwq0efG4b+NG8c9sxYOWNxmDQ82swXrnQRl1Yp2wC1NrfZA==", - "path": "system.threading.accesscontrol/6.0.0", - "hashPath": "system.threading.accesscontrol.6.0.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", - "path": "system.threading.tasks.extensions/4.5.4", - "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" - }, - "System.Web.Services.Description/4.9.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d20B3upsWddwSG5xF3eQLs0cAV3tXDsBNqP4kh02ylfgZwqfpf4f/9KiZVIGIoxULt2cKqxWs+U4AdNAJ7L8cQ==", - "path": "system.web.services.description/4.9.0", - "hashPath": "system.web.services.description.4.9.0.nupkg.sha512" - }, - "System.Windows.Extensions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", - "path": "system.windows.extensions/6.0.0", - "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" - }, - "YamlDotNet/11.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tBt8K+korVfrjH9wyDEhiLKxbs8qoLCLIFwvYgkSUuMC9//w3z0cFQ8LQAI/5MCKq+BMil0cfRTRvPeE7eXhQw==", - "path": "yamldotnet/11.2.1", - "hashPath": "yamldotnet.11.2.1.nupkg.sha512" - }, - "Linguard.Core/2.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Linguard.Log/2.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/linguard/web/bin/Debug/net6.0/Linguard.Web.dll b/linguard/web/bin/Debug/net6.0/Linguard.Web.dll deleted file mode 100644 index d9d2020..0000000 Binary files a/linguard/web/bin/Debug/net6.0/Linguard.Web.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/Linguard.Web.exe b/linguard/web/bin/Debug/net6.0/Linguard.Web.exe deleted file mode 100644 index 05545c9..0000000 Binary files a/linguard/web/bin/Debug/net6.0/Linguard.Web.exe and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/Linguard.Web.pdb b/linguard/web/bin/Debug/net6.0/Linguard.Web.pdb deleted file mode 100644 index 1cfd366..0000000 Binary files a/linguard/web/bin/Debug/net6.0/Linguard.Web.pdb and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/Linguard.Web.runtimeconfig.json b/linguard/web/bin/Debug/net6.0/Linguard.Web.runtimeconfig.json deleted file mode 100644 index dfb1b77..0000000 --- a/linguard/web/bin/Debug/net6.0/Linguard.Web.runtimeconfig.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "net6.0", - "frameworks": [ - { - "name": "Microsoft.NETCore.App", - "version": "6.0.0" - }, - { - "name": "Microsoft.AspNetCore.App", - "version": "6.0.0" - } - ], - "configProperties": { - "System.GC.Server": true, - "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false - } - } -} \ No newline at end of file diff --git a/linguard/web/bin/Debug/net6.0/Linguard.Web.staticwebassets.runtime.json b/linguard/web/bin/Debug/net6.0/Linguard.Web.staticwebassets.runtime.json deleted file mode 100644 index b23b2ac..0000000 --- a/linguard/web/bin/Debug/net6.0/Linguard.Web.staticwebassets.runtime.json +++ /dev/null @@ -1 +0,0 @@ -{"ContentRoots":["C:\\Users\\theyu\\repos\\linguard\\Linguard\\Web\\wwwroot\\","C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\"],"Root":{"Children":{"css":{"Children":{"bootstrap":{"Children":{"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap/bootstrap.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"js":{"Children":{"helper.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/helper.js"},"Patterns":null}},"Asset":null,"Patterns":null},"_content":{"Children":{"Radzen.Blazor":{"Children":{"css":{"Children":{"dark-base.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/dark-base.css"},"Patterns":null},"dark.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/dark.css"},"Patterns":null},"default-base.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/default-base.css"},"Patterns":null},"default.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/default.css"},"Patterns":null},"humanistic-base.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/humanistic-base.css"},"Patterns":null},"humanistic.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/humanistic.css"},"Patterns":null},"software-base.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/software-base.css"},"Patterns":null},"software.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/software.css"},"Patterns":null},"standard-base.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/standard-base.css"},"Patterns":null},"standard.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/standard.css"},"Patterns":null}},"Asset":null,"Patterns":null},"fonts":{"Children":{"MaterialIcons-Regular.woff":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/MaterialIcons-Regular.woff"},"Patterns":null},"roboto-v15-latin-300.woff":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/roboto-v15-latin-300.woff"},"Patterns":null},"roboto-v15-latin-700.woff":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/roboto-v15-latin-700.woff"},"Patterns":null},"roboto-v15-latin-regular.woff":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/roboto-v15-latin-regular.woff"},"Patterns":null},"SourceSansPro-Black.woff":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/SourceSansPro-Black.woff"},"Patterns":null},"SourceSansPro-BlackIt.woff":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/SourceSansPro-BlackIt.woff"},"Patterns":null},"SourceSansPro-Bold.woff":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/SourceSansPro-Bold.woff"},"Patterns":null},"SourceSansPro-BoldIt.woff":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/SourceSansPro-BoldIt.woff"},"Patterns":null},"SourceSansPro-ExtraLight.woff":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/SourceSansPro-ExtraLight.woff"},"Patterns":null},"SourceSansPro-ExtraLightIt.woff":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/SourceSansPro-ExtraLightIt.woff"},"Patterns":null},"SourceSansPro-It.woff":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/SourceSansPro-It.woff"},"Patterns":null},"SourceSansPro-Light.woff":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/SourceSansPro-Light.woff"},"Patterns":null},"SourceSansPro-LightIt.woff":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/SourceSansPro-LightIt.woff"},"Patterns":null},"SourceSansPro-Regular.woff":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/SourceSansPro-Regular.woff"},"Patterns":null},"SourceSansPro-Semibold.woff":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/SourceSansPro-Semibold.woff"},"Patterns":null},"SourceSansPro-SemiboldIt.woff":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/SourceSansPro-SemiboldIt.woff"},"Patterns":null}},"Asset":null,"Patterns":null},"Radzen.Blazor.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Radzen.Blazor.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/linguard/web/bin/Debug/net6.0/Markdig.Signed.dll b/linguard/web/bin/Debug/net6.0/Markdig.Signed.dll deleted file mode 100644 index 722a399..0000000 Binary files a/linguard/web/bin/Debug/net6.0/Markdig.Signed.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/Microsoft.ApplicationInsights.dll b/linguard/web/bin/Debug/net6.0/Microsoft.ApplicationInsights.dll deleted file mode 100644 index 8ef5eef..0000000 Binary files a/linguard/web/bin/Debug/net6.0/Microsoft.ApplicationInsights.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll b/linguard/web/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll deleted file mode 100644 index be25bdb..0000000 Binary files a/linguard/web/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.dll b/linguard/web/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.dll deleted file mode 100644 index 581191d..0000000 Binary files a/linguard/web/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/Microsoft.CodeAnalysis.dll b/linguard/web/bin/Debug/net6.0/Microsoft.CodeAnalysis.dll deleted file mode 100644 index c653dc8..0000000 Binary files a/linguard/web/bin/Debug/net6.0/Microsoft.CodeAnalysis.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/Microsoft.PowerShell.MarkdownRender.dll b/linguard/web/bin/Debug/net6.0/Microsoft.PowerShell.MarkdownRender.dll deleted file mode 100644 index 68f0076..0000000 Binary files a/linguard/web/bin/Debug/net6.0/Microsoft.PowerShell.MarkdownRender.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/Microsoft.Win32.Registry.AccessControl.dll b/linguard/web/bin/Debug/net6.0/Microsoft.Win32.Registry.AccessControl.dll deleted file mode 100644 index b598181..0000000 Binary files a/linguard/web/bin/Debug/net6.0/Microsoft.Win32.Registry.AccessControl.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll b/linguard/web/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll deleted file mode 100644 index 3ab5850..0000000 Binary files a/linguard/web/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/NJsonSchema.dll b/linguard/web/bin/Debug/net6.0/NJsonSchema.dll deleted file mode 100644 index 0e6ee5b..0000000 Binary files a/linguard/web/bin/Debug/net6.0/NJsonSchema.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/NLog.config b/linguard/web/bin/Debug/net6.0/NLog.config deleted file mode 100644 index 3975d5d..0000000 --- a/linguard/web/bin/Debug/net6.0/NLog.config +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/linguard/web/bin/Debug/net6.0/NLog.dll b/linguard/web/bin/Debug/net6.0/NLog.dll deleted file mode 100644 index 4aa35e7..0000000 Binary files a/linguard/web/bin/Debug/net6.0/NLog.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/Namotion.Reflection.dll b/linguard/web/bin/Debug/net6.0/Namotion.Reflection.dll deleted file mode 100644 index 39dbbfa..0000000 Binary files a/linguard/web/bin/Debug/net6.0/Namotion.Reflection.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/Newtonsoft.Json.dll b/linguard/web/bin/Debug/net6.0/Newtonsoft.Json.dll deleted file mode 100644 index 1ffeabe..0000000 Binary files a/linguard/web/bin/Debug/net6.0/Newtonsoft.Json.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/Radzen.Blazor.dll b/linguard/web/bin/Debug/net6.0/Radzen.Blazor.dll deleted file mode 100644 index 01b7d23..0000000 Binary files a/linguard/web/bin/Debug/net6.0/Radzen.Blazor.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.CodeDom.dll b/linguard/web/bin/Debug/net6.0/System.CodeDom.dll deleted file mode 100644 index 54c82b6..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.CodeDom.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.ComponentModel.Composition.Registration.dll b/linguard/web/bin/Debug/net6.0/System.ComponentModel.Composition.Registration.dll deleted file mode 100644 index 586e1af..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.ComponentModel.Composition.Registration.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.ComponentModel.Composition.dll b/linguard/web/bin/Debug/net6.0/System.ComponentModel.Composition.dll deleted file mode 100644 index 3e063b3..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.ComponentModel.Composition.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll b/linguard/web/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll deleted file mode 100644 index d67c8a8..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.Data.Odbc.dll b/linguard/web/bin/Debug/net6.0/System.Data.Odbc.dll deleted file mode 100644 index 5101278..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.Data.OleDb.dll b/linguard/web/bin/Debug/net6.0/System.Data.OleDb.dll deleted file mode 100644 index f7840cd..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.Data.OleDb.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.Data.SqlClient.dll b/linguard/web/bin/Debug/net6.0/System.Data.SqlClient.dll deleted file mode 100644 index d03f8a1..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.Data.SqlClient.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.Diagnostics.PerformanceCounter.dll b/linguard/web/bin/Debug/net6.0/System.Diagnostics.PerformanceCounter.dll deleted file mode 100644 index e9092d7..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.Diagnostics.PerformanceCounter.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.DirectoryServices.AccountManagement.dll b/linguard/web/bin/Debug/net6.0/System.DirectoryServices.AccountManagement.dll deleted file mode 100644 index 77183e0..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.DirectoryServices.AccountManagement.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.DirectoryServices.Protocols.dll b/linguard/web/bin/Debug/net6.0/System.DirectoryServices.Protocols.dll deleted file mode 100644 index d62b127..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.DirectoryServices.Protocols.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.DirectoryServices.dll b/linguard/web/bin/Debug/net6.0/System.DirectoryServices.dll deleted file mode 100644 index 803611c..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.DirectoryServices.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.Drawing.Common.dll b/linguard/web/bin/Debug/net6.0/System.Drawing.Common.dll deleted file mode 100644 index be6915e..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.Drawing.Common.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.IO.Packaging.dll b/linguard/web/bin/Debug/net6.0/System.IO.Packaging.dll deleted file mode 100644 index 007253e..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.IO.Packaging.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.IO.Ports.dll b/linguard/web/bin/Debug/net6.0/System.IO.Ports.dll deleted file mode 100644 index e10e943..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.IO.Ports.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.Linq.Dynamic.Core.dll b/linguard/web/bin/Debug/net6.0/System.Linq.Dynamic.Core.dll deleted file mode 100644 index 3d5c26b..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.Linq.Dynamic.Core.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.Management.dll b/linguard/web/bin/Debug/net6.0/System.Management.dll deleted file mode 100644 index fae6cf1..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.Management.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.Net.Http.WinHttpHandler.dll b/linguard/web/bin/Debug/net6.0/System.Net.Http.WinHttpHandler.dll deleted file mode 100644 index 2490b06..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.Net.Http.WinHttpHandler.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.Net.IPNetwork.dll b/linguard/web/bin/Debug/net6.0/System.Net.IPNetwork.dll deleted file mode 100644 index 9b94f0c..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.Net.IPNetwork.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.Private.ServiceModel.dll b/linguard/web/bin/Debug/net6.0/System.Private.ServiceModel.dll deleted file mode 100644 index 82e7a91..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.Private.ServiceModel.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.Reflection.Context.dll b/linguard/web/bin/Debug/net6.0/System.Reflection.Context.dll deleted file mode 100644 index 3faa973..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.Reflection.Context.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.Runtime.Caching.dll b/linguard/web/bin/Debug/net6.0/System.Runtime.Caching.dll deleted file mode 100644 index 14826eb..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.Runtime.Caching.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll b/linguard/web/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll deleted file mode 100644 index 1ba8770..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.Security.Permissions.dll b/linguard/web/bin/Debug/net6.0/System.Security.Permissions.dll deleted file mode 100644 index 39dd4df..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.Security.Permissions.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.ServiceModel.Duplex.dll b/linguard/web/bin/Debug/net6.0/System.ServiceModel.Duplex.dll deleted file mode 100644 index 7eeafd5..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.ServiceModel.Duplex.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.ServiceModel.Http.dll b/linguard/web/bin/Debug/net6.0/System.ServiceModel.Http.dll deleted file mode 100644 index 79aab9d..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.ServiceModel.Http.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.ServiceModel.NetTcp.dll b/linguard/web/bin/Debug/net6.0/System.ServiceModel.NetTcp.dll deleted file mode 100644 index a59b27e..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.ServiceModel.NetTcp.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.ServiceModel.Primitives.dll b/linguard/web/bin/Debug/net6.0/System.ServiceModel.Primitives.dll deleted file mode 100644 index 8c32245..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.ServiceModel.Primitives.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.ServiceModel.Security.dll b/linguard/web/bin/Debug/net6.0/System.ServiceModel.Security.dll deleted file mode 100644 index 5f2fc73..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.ServiceModel.Security.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.ServiceModel.Syndication.dll b/linguard/web/bin/Debug/net6.0/System.ServiceModel.Syndication.dll deleted file mode 100644 index 0dab5e1..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.ServiceModel.Syndication.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.ServiceModel.dll b/linguard/web/bin/Debug/net6.0/System.ServiceModel.dll deleted file mode 100644 index e7849b5..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.ServiceModel.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.ServiceProcess.ServiceController.dll b/linguard/web/bin/Debug/net6.0/System.ServiceProcess.ServiceController.dll deleted file mode 100644 index 3e5508c..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.ServiceProcess.ServiceController.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.Speech.dll b/linguard/web/bin/Debug/net6.0/System.Speech.dll deleted file mode 100644 index 9d14819..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.Speech.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.Threading.AccessControl.dll b/linguard/web/bin/Debug/net6.0/System.Threading.AccessControl.dll deleted file mode 100644 index b6d69a4..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.Threading.AccessControl.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.Web.Services.Description.dll b/linguard/web/bin/Debug/net6.0/System.Web.Services.Description.dll deleted file mode 100644 index c230b5c..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.Web.Services.Description.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/System.Windows.Extensions.dll b/linguard/web/bin/Debug/net6.0/System.Windows.Extensions.dll deleted file mode 100644 index c3e8844..0000000 Binary files a/linguard/web/bin/Debug/net6.0/System.Windows.Extensions.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/YamlDotNet.dll b/linguard/web/bin/Debug/net6.0/YamlDotNet.dll deleted file mode 100644 index 76b7999..0000000 Binary files a/linguard/web/bin/Debug/net6.0/YamlDotNet.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/appsettings.Development.json b/linguard/web/bin/Debug/net6.0/appsettings.Development.json deleted file mode 100644 index 770d3e9..0000000 --- a/linguard/web/bin/Debug/net6.0/appsettings.Development.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "DetailedErrors": true, - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft.AspNetCore": "Warning" - } - } -} diff --git a/linguard/web/bin/Debug/net6.0/appsettings.json b/linguard/web/bin/Debug/net6.0/appsettings.json deleted file mode 100644 index 10f68b8..0000000 --- a/linguard/web/bin/Debug/net6.0/appsettings.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft.AspNetCore": "Warning" - } - }, - "AllowedHosts": "*" -} diff --git a/linguard/web/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/web/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index d0282cc..0000000 Binary files a/linguard/web/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.resources.dll b/linguard/web/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index fd3063e..0000000 Binary files a/linguard/web/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/cs/System.Private.ServiceModel.resources.dll b/linguard/web/bin/Debug/net6.0/cs/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 2cedcf5..0000000 Binary files a/linguard/web/bin/Debug/net6.0/cs/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/cs/System.Web.Services.Description.resources.dll b/linguard/web/bin/Debug/net6.0/cs/System.Web.Services.Description.resources.dll deleted file mode 100644 index efe25cb..0000000 Binary files a/linguard/web/bin/Debug/net6.0/cs/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/web/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index e079e05..0000000 Binary files a/linguard/web/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.resources.dll b/linguard/web/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 54aa47d..0000000 Binary files a/linguard/web/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/de/System.Private.ServiceModel.resources.dll b/linguard/web/bin/Debug/net6.0/de/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 3dc63b8..0000000 Binary files a/linguard/web/bin/Debug/net6.0/de/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/de/System.Web.Services.Description.resources.dll b/linguard/web/bin/Debug/net6.0/de/System.Web.Services.Description.resources.dll deleted file mode 100644 index 1f9fae9..0000000 Binary files a/linguard/web/bin/Debug/net6.0/de/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/web/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 4afd9fa..0000000 Binary files a/linguard/web/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.resources.dll b/linguard/web/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 2d6218e..0000000 Binary files a/linguard/web/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/es/System.Private.ServiceModel.resources.dll b/linguard/web/bin/Debug/net6.0/es/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 65078e9..0000000 Binary files a/linguard/web/bin/Debug/net6.0/es/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/es/System.Web.Services.Description.resources.dll b/linguard/web/bin/Debug/net6.0/es/System.Web.Services.Description.resources.dll deleted file mode 100644 index edfce43..0000000 Binary files a/linguard/web/bin/Debug/net6.0/es/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/web/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 93a31c1..0000000 Binary files a/linguard/web/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.resources.dll b/linguard/web/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index a22b8d5..0000000 Binary files a/linguard/web/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/fr/System.Private.ServiceModel.resources.dll b/linguard/web/bin/Debug/net6.0/fr/System.Private.ServiceModel.resources.dll deleted file mode 100644 index a2ad076..0000000 Binary files a/linguard/web/bin/Debug/net6.0/fr/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/fr/System.Web.Services.Description.resources.dll b/linguard/web/bin/Debug/net6.0/fr/System.Web.Services.Description.resources.dll deleted file mode 100644 index a9e94e0..0000000 Binary files a/linguard/web/bin/Debug/net6.0/fr/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/web/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 7f9325d..0000000 Binary files a/linguard/web/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.resources.dll b/linguard/web/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index e71779f..0000000 Binary files a/linguard/web/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/it/System.Private.ServiceModel.resources.dll b/linguard/web/bin/Debug/net6.0/it/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 7bb0d14..0000000 Binary files a/linguard/web/bin/Debug/net6.0/it/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/it/System.Web.Services.Description.resources.dll b/linguard/web/bin/Debug/net6.0/it/System.Web.Services.Description.resources.dll deleted file mode 100644 index d8b5101..0000000 Binary files a/linguard/web/bin/Debug/net6.0/it/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/web/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 58a375d..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.resources.dll b/linguard/web/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 8c8510d..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ja/System.Private.ServiceModel.resources.dll b/linguard/web/bin/Debug/net6.0/ja/System.Private.ServiceModel.resources.dll deleted file mode 100644 index c92e54a..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ja/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ja/System.Web.Services.Description.resources.dll b/linguard/web/bin/Debug/net6.0/ja/System.Web.Services.Description.resources.dll deleted file mode 100644 index d166bd0..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ja/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/web/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 3b3f0ed..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.resources.dll b/linguard/web/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 66458d5..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ko/System.Private.ServiceModel.resources.dll b/linguard/web/bin/Debug/net6.0/ko/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 5f09fb1..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ko/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ko/System.Web.Services.Description.resources.dll b/linguard/web/bin/Debug/net6.0/ko/System.Web.Services.Description.resources.dll deleted file mode 100644 index 7acc280..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ko/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/web/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 0c6175e..0000000 Binary files a/linguard/web/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.resources.dll b/linguard/web/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 82ff47c..0000000 Binary files a/linguard/web/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/pl/System.Private.ServiceModel.resources.dll b/linguard/web/bin/Debug/net6.0/pl/System.Private.ServiceModel.resources.dll deleted file mode 100644 index bcdbbbb..0000000 Binary files a/linguard/web/bin/Debug/net6.0/pl/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/pl/System.Web.Services.Description.resources.dll b/linguard/web/bin/Debug/net6.0/pl/System.Web.Services.Description.resources.dll deleted file mode 100644 index 421c859..0000000 Binary files a/linguard/web/bin/Debug/net6.0/pl/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/web/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 2d2ccbe..0000000 Binary files a/linguard/web/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/linguard/web/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index b583d8e..0000000 Binary files a/linguard/web/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/pt-BR/System.Private.ServiceModel.resources.dll b/linguard/web/bin/Debug/net6.0/pt-BR/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 6138c5d..0000000 Binary files a/linguard/web/bin/Debug/net6.0/pt-BR/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/pt-BR/System.Web.Services.Description.resources.dll b/linguard/web/bin/Debug/net6.0/pt-BR/System.Web.Services.Description.resources.dll deleted file mode 100644 index 8d4c892..0000000 Binary files a/linguard/web/bin/Debug/net6.0/pt-BR/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/Linguard.Web.dll b/linguard/web/bin/Debug/net6.0/ref/Linguard.Web.dll deleted file mode 100644 index bda7695..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/Linguard.Web.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/Microsoft.CSharp.dll b/linguard/web/bin/Debug/net6.0/ref/Microsoft.CSharp.dll deleted file mode 100644 index 00529c3..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/Microsoft.CSharp.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/Microsoft.VisualBasic.Core.dll b/linguard/web/bin/Debug/net6.0/ref/Microsoft.VisualBasic.Core.dll deleted file mode 100644 index d37bdc6..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/Microsoft.VisualBasic.Core.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/Microsoft.VisualBasic.dll b/linguard/web/bin/Debug/net6.0/ref/Microsoft.VisualBasic.dll deleted file mode 100644 index eb198db..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/Microsoft.VisualBasic.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/Microsoft.Win32.Primitives.dll b/linguard/web/bin/Debug/net6.0/ref/Microsoft.Win32.Primitives.dll deleted file mode 100644 index e39072e..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/Microsoft.Win32.Primitives.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/Microsoft.Win32.Registry.dll b/linguard/web/bin/Debug/net6.0/ref/Microsoft.Win32.Registry.dll deleted file mode 100644 index 0e4ca23..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/Microsoft.Win32.Registry.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.AppContext.dll b/linguard/web/bin/Debug/net6.0/ref/System.AppContext.dll deleted file mode 100644 index 949e26a..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.AppContext.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Buffers.dll b/linguard/web/bin/Debug/net6.0/ref/System.Buffers.dll deleted file mode 100644 index 0ba2017..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Buffers.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Collections.Concurrent.dll b/linguard/web/bin/Debug/net6.0/ref/System.Collections.Concurrent.dll deleted file mode 100644 index a34bdfd..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Collections.Concurrent.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Collections.Immutable.dll b/linguard/web/bin/Debug/net6.0/ref/System.Collections.Immutable.dll deleted file mode 100644 index 3559d71..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Collections.Immutable.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Collections.NonGeneric.dll b/linguard/web/bin/Debug/net6.0/ref/System.Collections.NonGeneric.dll deleted file mode 100644 index 0ff1e9e..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Collections.NonGeneric.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Collections.Specialized.dll b/linguard/web/bin/Debug/net6.0/ref/System.Collections.Specialized.dll deleted file mode 100644 index 9e63d8f..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Collections.Specialized.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Collections.dll b/linguard/web/bin/Debug/net6.0/ref/System.Collections.dll deleted file mode 100644 index c563b3d..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Collections.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.ComponentModel.Annotations.dll b/linguard/web/bin/Debug/net6.0/ref/System.ComponentModel.Annotations.dll deleted file mode 100644 index e719616..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.ComponentModel.Annotations.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.ComponentModel.DataAnnotations.dll b/linguard/web/bin/Debug/net6.0/ref/System.ComponentModel.DataAnnotations.dll deleted file mode 100644 index e92b9ec..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.ComponentModel.DataAnnotations.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.ComponentModel.EventBasedAsync.dll b/linguard/web/bin/Debug/net6.0/ref/System.ComponentModel.EventBasedAsync.dll deleted file mode 100644 index c13cab7..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.ComponentModel.EventBasedAsync.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.ComponentModel.Primitives.dll b/linguard/web/bin/Debug/net6.0/ref/System.ComponentModel.Primitives.dll deleted file mode 100644 index 2c8ac32..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.ComponentModel.Primitives.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.ComponentModel.TypeConverter.dll b/linguard/web/bin/Debug/net6.0/ref/System.ComponentModel.TypeConverter.dll deleted file mode 100644 index 8af874e..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.ComponentModel.TypeConverter.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.ComponentModel.dll b/linguard/web/bin/Debug/net6.0/ref/System.ComponentModel.dll deleted file mode 100644 index dedec7c..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.ComponentModel.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Configuration.dll b/linguard/web/bin/Debug/net6.0/ref/System.Configuration.dll deleted file mode 100644 index 54fdf89..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Configuration.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Console.dll b/linguard/web/bin/Debug/net6.0/ref/System.Console.dll deleted file mode 100644 index 5934da2..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Console.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Core.dll b/linguard/web/bin/Debug/net6.0/ref/System.Core.dll deleted file mode 100644 index b5abba6..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Core.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Data.Common.dll b/linguard/web/bin/Debug/net6.0/ref/System.Data.Common.dll deleted file mode 100644 index fb6df46..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Data.Common.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Data.DataSetExtensions.dll b/linguard/web/bin/Debug/net6.0/ref/System.Data.DataSetExtensions.dll deleted file mode 100644 index e5afb2e..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Data.DataSetExtensions.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Data.dll b/linguard/web/bin/Debug/net6.0/ref/System.Data.dll deleted file mode 100644 index e54bdf1..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Data.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Diagnostics.Contracts.dll b/linguard/web/bin/Debug/net6.0/ref/System.Diagnostics.Contracts.dll deleted file mode 100644 index b2a4266..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Diagnostics.Contracts.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Diagnostics.Debug.dll b/linguard/web/bin/Debug/net6.0/ref/System.Diagnostics.Debug.dll deleted file mode 100644 index a0cd3f8..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Diagnostics.Debug.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Diagnostics.DiagnosticSource.dll b/linguard/web/bin/Debug/net6.0/ref/System.Diagnostics.DiagnosticSource.dll deleted file mode 100644 index 39a6217..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Diagnostics.DiagnosticSource.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Diagnostics.FileVersionInfo.dll b/linguard/web/bin/Debug/net6.0/ref/System.Diagnostics.FileVersionInfo.dll deleted file mode 100644 index 439c771..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Diagnostics.FileVersionInfo.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Diagnostics.Process.dll b/linguard/web/bin/Debug/net6.0/ref/System.Diagnostics.Process.dll deleted file mode 100644 index 2091f8c..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Diagnostics.Process.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Diagnostics.StackTrace.dll b/linguard/web/bin/Debug/net6.0/ref/System.Diagnostics.StackTrace.dll deleted file mode 100644 index 4b5a3d7..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Diagnostics.StackTrace.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Diagnostics.TextWriterTraceListener.dll b/linguard/web/bin/Debug/net6.0/ref/System.Diagnostics.TextWriterTraceListener.dll deleted file mode 100644 index 1a5cbf2..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Diagnostics.TextWriterTraceListener.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Diagnostics.Tools.dll b/linguard/web/bin/Debug/net6.0/ref/System.Diagnostics.Tools.dll deleted file mode 100644 index 335c9c1..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Diagnostics.Tools.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Diagnostics.TraceSource.dll b/linguard/web/bin/Debug/net6.0/ref/System.Diagnostics.TraceSource.dll deleted file mode 100644 index 749ba40..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Diagnostics.TraceSource.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Diagnostics.Tracing.dll b/linguard/web/bin/Debug/net6.0/ref/System.Diagnostics.Tracing.dll deleted file mode 100644 index 338074d..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Diagnostics.Tracing.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Drawing.Primitives.dll b/linguard/web/bin/Debug/net6.0/ref/System.Drawing.Primitives.dll deleted file mode 100644 index 8c0a332..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Drawing.Primitives.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Drawing.dll b/linguard/web/bin/Debug/net6.0/ref/System.Drawing.dll deleted file mode 100644 index b226cf3..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Drawing.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Dynamic.Runtime.dll b/linguard/web/bin/Debug/net6.0/ref/System.Dynamic.Runtime.dll deleted file mode 100644 index 70edfa6..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Dynamic.Runtime.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Formats.Asn1.dll b/linguard/web/bin/Debug/net6.0/ref/System.Formats.Asn1.dll deleted file mode 100644 index 8625760..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Formats.Asn1.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Globalization.Calendars.dll b/linguard/web/bin/Debug/net6.0/ref/System.Globalization.Calendars.dll deleted file mode 100644 index 21a0037..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Globalization.Calendars.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Globalization.Extensions.dll b/linguard/web/bin/Debug/net6.0/ref/System.Globalization.Extensions.dll deleted file mode 100644 index 0dd96b7..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Globalization.Extensions.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Globalization.dll b/linguard/web/bin/Debug/net6.0/ref/System.Globalization.dll deleted file mode 100644 index 1c2e682..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Globalization.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.IO.Compression.Brotli.dll b/linguard/web/bin/Debug/net6.0/ref/System.IO.Compression.Brotli.dll deleted file mode 100644 index 297977e..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.IO.Compression.Brotli.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.IO.Compression.FileSystem.dll b/linguard/web/bin/Debug/net6.0/ref/System.IO.Compression.FileSystem.dll deleted file mode 100644 index 6586130..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.IO.Compression.FileSystem.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.IO.Compression.ZipFile.dll b/linguard/web/bin/Debug/net6.0/ref/System.IO.Compression.ZipFile.dll deleted file mode 100644 index 6c9be3c..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.IO.Compression.ZipFile.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.IO.Compression.dll b/linguard/web/bin/Debug/net6.0/ref/System.IO.Compression.dll deleted file mode 100644 index 832d832..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.IO.Compression.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.IO.FileSystem.AccessControl.dll b/linguard/web/bin/Debug/net6.0/ref/System.IO.FileSystem.AccessControl.dll deleted file mode 100644 index 37f5c30..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.IO.FileSystem.AccessControl.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.IO.FileSystem.DriveInfo.dll b/linguard/web/bin/Debug/net6.0/ref/System.IO.FileSystem.DriveInfo.dll deleted file mode 100644 index 3fafa94..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.IO.FileSystem.DriveInfo.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.IO.FileSystem.Primitives.dll b/linguard/web/bin/Debug/net6.0/ref/System.IO.FileSystem.Primitives.dll deleted file mode 100644 index 7e7c838..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.IO.FileSystem.Primitives.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.IO.FileSystem.Watcher.dll b/linguard/web/bin/Debug/net6.0/ref/System.IO.FileSystem.Watcher.dll deleted file mode 100644 index 413f9b4..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.IO.FileSystem.Watcher.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.IO.FileSystem.dll b/linguard/web/bin/Debug/net6.0/ref/System.IO.FileSystem.dll deleted file mode 100644 index e2be89f..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.IO.FileSystem.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.IO.IsolatedStorage.dll b/linguard/web/bin/Debug/net6.0/ref/System.IO.IsolatedStorage.dll deleted file mode 100644 index a17e9fc..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.IO.IsolatedStorage.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.IO.MemoryMappedFiles.dll b/linguard/web/bin/Debug/net6.0/ref/System.IO.MemoryMappedFiles.dll deleted file mode 100644 index 2d4175d..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.IO.MemoryMappedFiles.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.IO.Pipes.AccessControl.dll b/linguard/web/bin/Debug/net6.0/ref/System.IO.Pipes.AccessControl.dll deleted file mode 100644 index 8627e1d..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.IO.Pipes.AccessControl.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.IO.Pipes.dll b/linguard/web/bin/Debug/net6.0/ref/System.IO.Pipes.dll deleted file mode 100644 index 401b732..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.IO.Pipes.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.IO.UnmanagedMemoryStream.dll b/linguard/web/bin/Debug/net6.0/ref/System.IO.UnmanagedMemoryStream.dll deleted file mode 100644 index 9c49c70..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.IO.UnmanagedMemoryStream.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.IO.dll b/linguard/web/bin/Debug/net6.0/ref/System.IO.dll deleted file mode 100644 index 02ce4e2..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.IO.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Linq.Expressions.dll b/linguard/web/bin/Debug/net6.0/ref/System.Linq.Expressions.dll deleted file mode 100644 index 65c06c3..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Linq.Expressions.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Linq.Parallel.dll b/linguard/web/bin/Debug/net6.0/ref/System.Linq.Parallel.dll deleted file mode 100644 index 02a5fa6..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Linq.Parallel.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Linq.Queryable.dll b/linguard/web/bin/Debug/net6.0/ref/System.Linq.Queryable.dll deleted file mode 100644 index 0eeb7c8..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Linq.Queryable.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Linq.dll b/linguard/web/bin/Debug/net6.0/ref/System.Linq.dll deleted file mode 100644 index 2a86c79..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Linq.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Memory.dll b/linguard/web/bin/Debug/net6.0/ref/System.Memory.dll deleted file mode 100644 index 388044d..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Memory.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Net.Http.Json.dll b/linguard/web/bin/Debug/net6.0/ref/System.Net.Http.Json.dll deleted file mode 100644 index 22997ef..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Net.Http.Json.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Net.Http.dll b/linguard/web/bin/Debug/net6.0/ref/System.Net.Http.dll deleted file mode 100644 index abaf3da..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Net.Http.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Net.HttpListener.dll b/linguard/web/bin/Debug/net6.0/ref/System.Net.HttpListener.dll deleted file mode 100644 index 55c3152..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Net.HttpListener.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Net.Mail.dll b/linguard/web/bin/Debug/net6.0/ref/System.Net.Mail.dll deleted file mode 100644 index 8c06ec8..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Net.Mail.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Net.NameResolution.dll b/linguard/web/bin/Debug/net6.0/ref/System.Net.NameResolution.dll deleted file mode 100644 index 98dd2d8..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Net.NameResolution.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Net.NetworkInformation.dll b/linguard/web/bin/Debug/net6.0/ref/System.Net.NetworkInformation.dll deleted file mode 100644 index 842064d..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Net.NetworkInformation.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Net.Ping.dll b/linguard/web/bin/Debug/net6.0/ref/System.Net.Ping.dll deleted file mode 100644 index 0d4d3a9..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Net.Ping.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Net.Primitives.dll b/linguard/web/bin/Debug/net6.0/ref/System.Net.Primitives.dll deleted file mode 100644 index d54f4bd..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Net.Primitives.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Net.Requests.dll b/linguard/web/bin/Debug/net6.0/ref/System.Net.Requests.dll deleted file mode 100644 index f314471..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Net.Requests.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Net.Security.dll b/linguard/web/bin/Debug/net6.0/ref/System.Net.Security.dll deleted file mode 100644 index 4e348d7..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Net.Security.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Net.ServicePoint.dll b/linguard/web/bin/Debug/net6.0/ref/System.Net.ServicePoint.dll deleted file mode 100644 index 6077da1..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Net.ServicePoint.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Net.Sockets.dll b/linguard/web/bin/Debug/net6.0/ref/System.Net.Sockets.dll deleted file mode 100644 index 1af0691..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Net.Sockets.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Net.WebClient.dll b/linguard/web/bin/Debug/net6.0/ref/System.Net.WebClient.dll deleted file mode 100644 index 6a4a572..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Net.WebClient.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Net.WebHeaderCollection.dll b/linguard/web/bin/Debug/net6.0/ref/System.Net.WebHeaderCollection.dll deleted file mode 100644 index 114289b..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Net.WebHeaderCollection.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Net.WebProxy.dll b/linguard/web/bin/Debug/net6.0/ref/System.Net.WebProxy.dll deleted file mode 100644 index d65ea58..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Net.WebProxy.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Net.WebSockets.Client.dll b/linguard/web/bin/Debug/net6.0/ref/System.Net.WebSockets.Client.dll deleted file mode 100644 index 5717169..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Net.WebSockets.Client.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Net.WebSockets.dll b/linguard/web/bin/Debug/net6.0/ref/System.Net.WebSockets.dll deleted file mode 100644 index 5bfa921..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Net.WebSockets.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Net.dll b/linguard/web/bin/Debug/net6.0/ref/System.Net.dll deleted file mode 100644 index 62feba4..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Net.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Numerics.Vectors.dll b/linguard/web/bin/Debug/net6.0/ref/System.Numerics.Vectors.dll deleted file mode 100644 index 2c3a984..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Numerics.Vectors.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Numerics.dll b/linguard/web/bin/Debug/net6.0/ref/System.Numerics.dll deleted file mode 100644 index 5d186c8..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Numerics.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.ObjectModel.dll b/linguard/web/bin/Debug/net6.0/ref/System.ObjectModel.dll deleted file mode 100644 index f92cc11..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.ObjectModel.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Reflection.DispatchProxy.dll b/linguard/web/bin/Debug/net6.0/ref/System.Reflection.DispatchProxy.dll deleted file mode 100644 index b888c4b..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Reflection.DispatchProxy.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Reflection.Emit.ILGeneration.dll b/linguard/web/bin/Debug/net6.0/ref/System.Reflection.Emit.ILGeneration.dll deleted file mode 100644 index 81911c6..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Reflection.Emit.ILGeneration.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Reflection.Emit.Lightweight.dll b/linguard/web/bin/Debug/net6.0/ref/System.Reflection.Emit.Lightweight.dll deleted file mode 100644 index 045952c..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Reflection.Emit.Lightweight.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Reflection.Emit.dll b/linguard/web/bin/Debug/net6.0/ref/System.Reflection.Emit.dll deleted file mode 100644 index e579588..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Reflection.Emit.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Reflection.Extensions.dll b/linguard/web/bin/Debug/net6.0/ref/System.Reflection.Extensions.dll deleted file mode 100644 index 7987d1d..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Reflection.Extensions.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Reflection.Metadata.dll b/linguard/web/bin/Debug/net6.0/ref/System.Reflection.Metadata.dll deleted file mode 100644 index 50158de..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Reflection.Metadata.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Reflection.Primitives.dll b/linguard/web/bin/Debug/net6.0/ref/System.Reflection.Primitives.dll deleted file mode 100644 index d9210c0..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Reflection.Primitives.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Reflection.TypeExtensions.dll b/linguard/web/bin/Debug/net6.0/ref/System.Reflection.TypeExtensions.dll deleted file mode 100644 index 792c8c8..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Reflection.TypeExtensions.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Reflection.dll b/linguard/web/bin/Debug/net6.0/ref/System.Reflection.dll deleted file mode 100644 index 3021f73..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Reflection.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Resources.Reader.dll b/linguard/web/bin/Debug/net6.0/ref/System.Resources.Reader.dll deleted file mode 100644 index e46173b..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Resources.Reader.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Resources.ResourceManager.dll b/linguard/web/bin/Debug/net6.0/ref/System.Resources.ResourceManager.dll deleted file mode 100644 index fc44423..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Resources.ResourceManager.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Resources.Writer.dll b/linguard/web/bin/Debug/net6.0/ref/System.Resources.Writer.dll deleted file mode 100644 index 68980f9..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Resources.Writer.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.Unsafe.dll b/linguard/web/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.Unsafe.dll deleted file mode 100644 index 546930e..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.Unsafe.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.VisualC.dll b/linguard/web/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.VisualC.dll deleted file mode 100644 index 277cb81..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.VisualC.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Runtime.Extensions.dll b/linguard/web/bin/Debug/net6.0/ref/System.Runtime.Extensions.dll deleted file mode 100644 index 441841e..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Runtime.Extensions.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Runtime.Handles.dll b/linguard/web/bin/Debug/net6.0/ref/System.Runtime.Handles.dll deleted file mode 100644 index 70e3278..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Runtime.Handles.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll b/linguard/web/bin/Debug/net6.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll deleted file mode 100644 index 89f8d39..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Runtime.InteropServices.dll b/linguard/web/bin/Debug/net6.0/ref/System.Runtime.InteropServices.dll deleted file mode 100644 index a39d097..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Runtime.InteropServices.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Runtime.Intrinsics.dll b/linguard/web/bin/Debug/net6.0/ref/System.Runtime.Intrinsics.dll deleted file mode 100644 index c9fcd40..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Runtime.Intrinsics.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Runtime.Loader.dll b/linguard/web/bin/Debug/net6.0/ref/System.Runtime.Loader.dll deleted file mode 100644 index f109988..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Runtime.Loader.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Runtime.Numerics.dll b/linguard/web/bin/Debug/net6.0/ref/System.Runtime.Numerics.dll deleted file mode 100644 index 89937d1..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Runtime.Numerics.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Runtime.Serialization.Formatters.dll b/linguard/web/bin/Debug/net6.0/ref/System.Runtime.Serialization.Formatters.dll deleted file mode 100644 index 5438ce3..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Runtime.Serialization.Formatters.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Runtime.Serialization.Json.dll b/linguard/web/bin/Debug/net6.0/ref/System.Runtime.Serialization.Json.dll deleted file mode 100644 index 399a512..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Runtime.Serialization.Json.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Runtime.Serialization.Primitives.dll b/linguard/web/bin/Debug/net6.0/ref/System.Runtime.Serialization.Primitives.dll deleted file mode 100644 index c402e8a..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Runtime.Serialization.Primitives.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Runtime.Serialization.Xml.dll b/linguard/web/bin/Debug/net6.0/ref/System.Runtime.Serialization.Xml.dll deleted file mode 100644 index 84fffc5..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Runtime.Serialization.Xml.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Runtime.Serialization.dll b/linguard/web/bin/Debug/net6.0/ref/System.Runtime.Serialization.dll deleted file mode 100644 index 1c1891a..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Runtime.Serialization.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Runtime.dll b/linguard/web/bin/Debug/net6.0/ref/System.Runtime.dll deleted file mode 100644 index 921a08b..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Runtime.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Security.AccessControl.dll b/linguard/web/bin/Debug/net6.0/ref/System.Security.AccessControl.dll deleted file mode 100644 index 2c6f9f4..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Security.AccessControl.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Security.Claims.dll b/linguard/web/bin/Debug/net6.0/ref/System.Security.Claims.dll deleted file mode 100644 index b6297f6..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Security.Claims.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Security.Cryptography.Algorithms.dll b/linguard/web/bin/Debug/net6.0/ref/System.Security.Cryptography.Algorithms.dll deleted file mode 100644 index 4b89540..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Security.Cryptography.Algorithms.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Security.Cryptography.Cng.dll b/linguard/web/bin/Debug/net6.0/ref/System.Security.Cryptography.Cng.dll deleted file mode 100644 index e76a578..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Security.Cryptography.Cng.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Security.Cryptography.Csp.dll b/linguard/web/bin/Debug/net6.0/ref/System.Security.Cryptography.Csp.dll deleted file mode 100644 index 2ceae69..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Security.Cryptography.Csp.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Security.Cryptography.Encoding.dll b/linguard/web/bin/Debug/net6.0/ref/System.Security.Cryptography.Encoding.dll deleted file mode 100644 index a975809..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Security.Cryptography.Encoding.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Security.Cryptography.OpenSsl.dll b/linguard/web/bin/Debug/net6.0/ref/System.Security.Cryptography.OpenSsl.dll deleted file mode 100644 index df3a3a9..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Security.Cryptography.OpenSsl.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Security.Cryptography.Primitives.dll b/linguard/web/bin/Debug/net6.0/ref/System.Security.Cryptography.Primitives.dll deleted file mode 100644 index 21222a6..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Security.Cryptography.Primitives.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Security.Cryptography.X509Certificates.dll b/linguard/web/bin/Debug/net6.0/ref/System.Security.Cryptography.X509Certificates.dll deleted file mode 100644 index eee372d..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Security.Cryptography.X509Certificates.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Security.Principal.Windows.dll b/linguard/web/bin/Debug/net6.0/ref/System.Security.Principal.Windows.dll deleted file mode 100644 index 9a3798b..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Security.Principal.Windows.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Security.Principal.dll b/linguard/web/bin/Debug/net6.0/ref/System.Security.Principal.dll deleted file mode 100644 index 0dbfa46..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Security.Principal.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Security.SecureString.dll b/linguard/web/bin/Debug/net6.0/ref/System.Security.SecureString.dll deleted file mode 100644 index 7299b40..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Security.SecureString.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Security.dll b/linguard/web/bin/Debug/net6.0/ref/System.Security.dll deleted file mode 100644 index b83e96a..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Security.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.ServiceModel.Web.dll b/linguard/web/bin/Debug/net6.0/ref/System.ServiceModel.Web.dll deleted file mode 100644 index a4d4e0f..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.ServiceModel.Web.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.ServiceProcess.dll b/linguard/web/bin/Debug/net6.0/ref/System.ServiceProcess.dll deleted file mode 100644 index 86c09dc..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.ServiceProcess.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Text.Encoding.CodePages.dll b/linguard/web/bin/Debug/net6.0/ref/System.Text.Encoding.CodePages.dll deleted file mode 100644 index 5ce72b1..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Text.Encoding.CodePages.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Text.Encoding.Extensions.dll b/linguard/web/bin/Debug/net6.0/ref/System.Text.Encoding.Extensions.dll deleted file mode 100644 index 05e497a..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Text.Encoding.Extensions.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Text.Encoding.dll b/linguard/web/bin/Debug/net6.0/ref/System.Text.Encoding.dll deleted file mode 100644 index 46c5400..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Text.Encoding.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Text.Encodings.Web.dll b/linguard/web/bin/Debug/net6.0/ref/System.Text.Encodings.Web.dll deleted file mode 100644 index f2b10eb..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Text.Encodings.Web.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Text.Json.dll b/linguard/web/bin/Debug/net6.0/ref/System.Text.Json.dll deleted file mode 100644 index 37851d2..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Text.Json.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Text.RegularExpressions.dll b/linguard/web/bin/Debug/net6.0/ref/System.Text.RegularExpressions.dll deleted file mode 100644 index 983cbbd..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Text.RegularExpressions.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Threading.Channels.dll b/linguard/web/bin/Debug/net6.0/ref/System.Threading.Channels.dll deleted file mode 100644 index 34ae646..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Threading.Channels.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Threading.Overlapped.dll b/linguard/web/bin/Debug/net6.0/ref/System.Threading.Overlapped.dll deleted file mode 100644 index 9092609..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Threading.Overlapped.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Threading.Tasks.Dataflow.dll b/linguard/web/bin/Debug/net6.0/ref/System.Threading.Tasks.Dataflow.dll deleted file mode 100644 index 0731d06..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Threading.Tasks.Dataflow.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Threading.Tasks.Extensions.dll b/linguard/web/bin/Debug/net6.0/ref/System.Threading.Tasks.Extensions.dll deleted file mode 100644 index e5840ae..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Threading.Tasks.Extensions.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Threading.Tasks.Parallel.dll b/linguard/web/bin/Debug/net6.0/ref/System.Threading.Tasks.Parallel.dll deleted file mode 100644 index 5bec78b..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Threading.Tasks.Parallel.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Threading.Tasks.dll b/linguard/web/bin/Debug/net6.0/ref/System.Threading.Tasks.dll deleted file mode 100644 index 04704d0..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Threading.Tasks.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Threading.Thread.dll b/linguard/web/bin/Debug/net6.0/ref/System.Threading.Thread.dll deleted file mode 100644 index de9a348..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Threading.Thread.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Threading.ThreadPool.dll b/linguard/web/bin/Debug/net6.0/ref/System.Threading.ThreadPool.dll deleted file mode 100644 index efab9c3..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Threading.ThreadPool.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Threading.Timer.dll b/linguard/web/bin/Debug/net6.0/ref/System.Threading.Timer.dll deleted file mode 100644 index 718a039..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Threading.Timer.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Threading.dll b/linguard/web/bin/Debug/net6.0/ref/System.Threading.dll deleted file mode 100644 index d697919..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Threading.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Transactions.Local.dll b/linguard/web/bin/Debug/net6.0/ref/System.Transactions.Local.dll deleted file mode 100644 index 03df1fb..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Transactions.Local.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Transactions.dll b/linguard/web/bin/Debug/net6.0/ref/System.Transactions.dll deleted file mode 100644 index 1bd2e0a..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Transactions.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.ValueTuple.dll b/linguard/web/bin/Debug/net6.0/ref/System.ValueTuple.dll deleted file mode 100644 index b6103f6..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.ValueTuple.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Web.HttpUtility.dll b/linguard/web/bin/Debug/net6.0/ref/System.Web.HttpUtility.dll deleted file mode 100644 index c77ebab..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Web.HttpUtility.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Web.dll b/linguard/web/bin/Debug/net6.0/ref/System.Web.dll deleted file mode 100644 index d04d5e3..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Web.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Windows.dll b/linguard/web/bin/Debug/net6.0/ref/System.Windows.dll deleted file mode 100644 index 9133038..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Windows.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Xml.Linq.dll b/linguard/web/bin/Debug/net6.0/ref/System.Xml.Linq.dll deleted file mode 100644 index d8aa5cd..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Xml.Linq.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Xml.ReaderWriter.dll b/linguard/web/bin/Debug/net6.0/ref/System.Xml.ReaderWriter.dll deleted file mode 100644 index 66f199d..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Xml.ReaderWriter.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Xml.Serialization.dll b/linguard/web/bin/Debug/net6.0/ref/System.Xml.Serialization.dll deleted file mode 100644 index 92bc678..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Xml.Serialization.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Xml.XDocument.dll b/linguard/web/bin/Debug/net6.0/ref/System.Xml.XDocument.dll deleted file mode 100644 index 5ba2260..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Xml.XDocument.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Xml.XPath.XDocument.dll b/linguard/web/bin/Debug/net6.0/ref/System.Xml.XPath.XDocument.dll deleted file mode 100644 index be27c4e..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Xml.XPath.XDocument.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Xml.XPath.dll b/linguard/web/bin/Debug/net6.0/ref/System.Xml.XPath.dll deleted file mode 100644 index 22482d8..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Xml.XPath.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Xml.XmlDocument.dll b/linguard/web/bin/Debug/net6.0/ref/System.Xml.XmlDocument.dll deleted file mode 100644 index 20d0fac..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Xml.XmlDocument.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Xml.XmlSerializer.dll b/linguard/web/bin/Debug/net6.0/ref/System.Xml.XmlSerializer.dll deleted file mode 100644 index 0a1664c..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Xml.XmlSerializer.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.Xml.dll b/linguard/web/bin/Debug/net6.0/ref/System.Xml.dll deleted file mode 100644 index f2b768e..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.Xml.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/System.dll b/linguard/web/bin/Debug/net6.0/ref/System.dll deleted file mode 100644 index 9e8d0a4..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/System.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/WindowsBase.dll b/linguard/web/bin/Debug/net6.0/ref/WindowsBase.dll deleted file mode 100644 index 1032969..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/WindowsBase.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/mscorlib.dll b/linguard/web/bin/Debug/net6.0/ref/mscorlib.dll deleted file mode 100644 index 31e8f9b..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/mscorlib.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ref/netstandard.dll b/linguard/web/bin/Debug/net6.0/ref/netstandard.dll deleted file mode 100644 index 1452256..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ref/netstandard.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/web/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 08d18ad..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.resources.dll b/linguard/web/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 0d0a62d..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ru/System.Private.ServiceModel.resources.dll b/linguard/web/bin/Debug/net6.0/ru/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 11f804c..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ru/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/ru/System.Web.Services.Description.resources.dll b/linguard/web/bin/Debug/net6.0/ru/System.Web.Services.Description.resources.dll deleted file mode 100644 index a43bf0d..0000000 Binary files a/linguard/web/bin/Debug/net6.0/ru/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll b/linguard/web/bin/Debug/net6.0/runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll deleted file mode 100644 index 8e0d27d..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/illumos/lib/net6.0/System.Data.Odbc.dll b/linguard/web/bin/Debug/net6.0/runtimes/illumos/lib/net6.0/System.Data.Odbc.dll deleted file mode 100644 index 86425c9..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/illumos/lib/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/ios/lib/net6.0/System.Data.Odbc.dll b/linguard/web/bin/Debug/net6.0/runtimes/ios/lib/net6.0/System.Data.Odbc.dll deleted file mode 100644 index 72945c5..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/ios/lib/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/linux-arm/native/libSystem.IO.Ports.Native.so b/linguard/web/bin/Debug/net6.0/runtimes/linux-arm/native/libSystem.IO.Ports.Native.so deleted file mode 100644 index 78b5008..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/linux-arm/native/libSystem.IO.Ports.Native.so and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/linux-arm/native/libpsl-native.so b/linguard/web/bin/Debug/net6.0/runtimes/linux-arm/native/libpsl-native.so deleted file mode 100644 index eb7876d..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/linux-arm/native/libpsl-native.so and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so b/linguard/web/bin/Debug/net6.0/runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so deleted file mode 100644 index dd85d2d..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/linux-arm64/native/libpsl-native.so b/linguard/web/bin/Debug/net6.0/runtimes/linux-arm64/native/libpsl-native.so deleted file mode 100644 index ed4929b..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/linux-arm64/native/libpsl-native.so and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/linux-musl-x64/native/libpsl-native.so b/linguard/web/bin/Debug/net6.0/runtimes/linux-musl-x64/native/libpsl-native.so deleted file mode 100644 index 222670d..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/linux-musl-x64/native/libpsl-native.so and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/linux-x64/native/libSystem.IO.Ports.Native.so b/linguard/web/bin/Debug/net6.0/runtimes/linux-x64/native/libSystem.IO.Ports.Native.so deleted file mode 100644 index 9dbd44e..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/linux-x64/native/libSystem.IO.Ports.Native.so and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/linux-x64/native/libmi.so b/linguard/web/bin/Debug/net6.0/runtimes/linux-x64/native/libmi.so deleted file mode 100644 index e87da8d..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/linux-x64/native/libmi.so and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/linux-x64/native/libpsl-native.so b/linguard/web/bin/Debug/net6.0/runtimes/linux-x64/native/libpsl-native.so deleted file mode 100644 index c04a0e3..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/linux-x64/native/libpsl-native.so and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/linux-x64/native/libpsrpclient.so b/linguard/web/bin/Debug/net6.0/runtimes/linux-x64/native/libpsrpclient.so deleted file mode 100644 index 029ac86..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/linux-x64/native/libpsrpclient.so and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.Data.Odbc.dll b/linguard/web/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.Data.Odbc.dll deleted file mode 100644 index 6e67ec3..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll b/linguard/web/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll deleted file mode 100644 index 75139e1..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib b/linguard/web/bin/Debug/net6.0/runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib deleted file mode 100644 index 974ae77..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib b/linguard/web/bin/Debug/net6.0/runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib deleted file mode 100644 index 96ba9bf..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.Data.Odbc.dll b/linguard/web/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.Data.Odbc.dll deleted file mode 100644 index eef28b5..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll b/linguard/web/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll deleted file mode 100644 index 3a64667..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/osx/native/libmi.dylib b/linguard/web/bin/Debug/net6.0/runtimes/osx/native/libmi.dylib deleted file mode 100644 index 71880e4..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/osx/native/libmi.dylib and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/osx/native/libpsl-native.dylib b/linguard/web/bin/Debug/net6.0/runtimes/osx/native/libpsl-native.dylib deleted file mode 100644 index f4df8f4..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/osx/native/libpsl-native.dylib and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/osx/native/libpsrpclient.dylib b/linguard/web/bin/Debug/net6.0/runtimes/osx/native/libpsrpclient.dylib deleted file mode 100644 index 13680bf..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/osx/native/libpsrpclient.dylib and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/solaris/lib/net6.0/System.Data.Odbc.dll b/linguard/web/bin/Debug/net6.0/runtimes/solaris/lib/net6.0/System.Data.Odbc.dll deleted file mode 100644 index e283d99..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/solaris/lib/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/tvos/lib/net6.0/System.Data.Odbc.dll b/linguard/web/bin/Debug/net6.0/runtimes/tvos/lib/net6.0/System.Data.Odbc.dll deleted file mode 100644 index 9648360..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/tvos/lib/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll b/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll deleted file mode 100644 index 93d7ef2..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll b/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll deleted file mode 100644 index 3258453..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll b/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll deleted file mode 100644 index 8cedac7..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll b/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll deleted file mode 100644 index 0ca804c..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll b/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll deleted file mode 100644 index 60f30e3..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 b/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 deleted file mode 100644 index 53e9bc5..0000000 --- a/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 +++ /dev/null @@ -1,14 +0,0 @@ -@{ -GUID="56D66100-99A0-4FFC-A12D-EEE9A6718AEF" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -FunctionsToExport = @() -CmdletsToExport="Start-Transcript", "Stop-Transcript" -AliasesToExport = @() -NestedModules="Microsoft.PowerShell.ConsoleHost.dll" -HelpInfoURI = 'https://aka.ms/powershell72-help' -} diff --git a/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 b/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 deleted file mode 100644 index 8d4d985..0000000 --- a/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 +++ /dev/null @@ -1,60 +0,0 @@ -@{ -GUID="EEFCB906-B326-4E99-9F54-8B4BB6EF3C6D" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -NestedModules="Microsoft.PowerShell.Commands.Management.dll" -HelpInfoURI = 'https://aka.ms/powershell72-help' -FunctionsToExport = @() -AliasesToExport = @("gcb", "gtz", "scb") -CmdletsToExport=@("Add-Content", - "Clear-Content", - "Clear-ItemProperty", - "Join-Path", - "Convert-Path", - "Copy-ItemProperty", - "Get-ChildItem", - "Get-Clipboard", - "Set-Clipboard", - "Get-Content", - "Get-ItemProperty", - "Get-ItemPropertyValue", - "Move-ItemProperty", - "Get-Location", - "Set-Location", - "Push-Location", - "Pop-Location", - "New-PSDrive", - "Remove-PSDrive", - "Get-PSDrive", - "Get-Item", - "New-Item", - "Set-Item", - "Remove-Item", - "Move-Item", - "Rename-Item", - "Copy-Item", - "Clear-Item", - "Invoke-Item", - "Get-PSProvider", - "New-ItemProperty", - "Split-Path", - "Test-Path", - "Get-Process", - "Stop-Process", - "Wait-Process", - "Debug-Process", - "Start-Process", - "Test-Connection", - "Remove-ItemProperty", - "Rename-ItemProperty", - "Resolve-Path", - "Set-Content", - "Set-ItemProperty", - "Get-TimeZone", - "Stop-Computer", - "Restart-Computer") -} diff --git a/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 b/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 deleted file mode 100644 index 9c9f978..0000000 --- a/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 +++ /dev/null @@ -1,14 +0,0 @@ -@{ -GUID="A94C8C7E-9810-47C0-B8AF-65089C13A35A" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -FunctionsToExport = @() -CmdletsToExport="Get-Credential", "Get-ExecutionPolicy", "Set-ExecutionPolicy", "ConvertFrom-SecureString", "ConvertTo-SecureString", "Get-PfxCertificate" , "Protect-CmsMessage", "Unprotect-CmsMessage", "Get-CmsMessage" -AliasesToExport = @() -NestedModules="Microsoft.PowerShell.Security.dll" -HelpInfoURI = 'https://aka.ms/powershell72-help' -} diff --git a/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 b/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 deleted file mode 100644 index 8efcaa0..0000000 --- a/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 +++ /dev/null @@ -1,34 +0,0 @@ -@{ -GUID = "1DA87E53-152B-403E-98DC-74D7B4D63D59" -Author = "PowerShell" -CompanyName = "Microsoft Corporation" -Copyright = "Copyright (c) Microsoft Corporation." -ModuleVersion = "7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion = "3.0" -CmdletsToExport = @( - 'Export-Alias', 'Get-Alias', 'Import-Alias', 'New-Alias', 'Remove-Alias', 'Set-Alias', 'Export-Clixml', - 'Import-Clixml', 'Measure-Command', 'Trace-Command', 'ConvertFrom-Csv', 'ConvertTo-Csv', 'Export-Csv', - 'Import-Csv', 'Get-Culture', 'Format-Custom', 'Get-Date', 'Set-Date', 'Write-Debug', 'Wait-Debugger', - 'Register-EngineEvent', 'Write-Error', 'Get-Event', 'New-Event', 'Remove-Event', 'Unregister-Event', - 'Wait-Event', 'Get-EventSubscriber', 'Invoke-Expression', 'Out-File', 'Get-FileHash', 'Export-FormatData', - 'Get-FormatData', 'Update-FormatData', 'New-Guid', 'Format-Hex', 'Get-Host', 'Read-Host', 'Write-Host', - 'ConvertTo-Html', 'Write-Information', 'ConvertFrom-Json', 'ConvertTo-Json', 'Test-Json', 'Format-List', - 'Import-LocalizedData', 'Send-MailMessage', 'ConvertFrom-Markdown', 'Show-Markdown', 'Get-MarkdownOption', - 'Set-MarkdownOption', 'Add-Member', 'Get-Member', 'Compare-Object', 'Group-Object', 'Measure-Object', - 'New-Object', 'Select-Object', 'Sort-Object', 'Tee-Object', 'Register-ObjectEvent', 'Write-Output', - 'Import-PowerShellDataFile', 'Write-Progress', 'Disable-PSBreakpoint', 'Enable-PSBreakpoint', - 'Get-PSBreakpoint', 'Remove-PSBreakpoint', 'Set-PSBreakpoint', 'Get-PSCallStack', 'Export-PSSession', - 'Import-PSSession', 'Get-Random', 'Invoke-RestMethod', 'Debug-Runspace', 'Get-Runspace', - 'Disable-RunspaceDebug', 'Enable-RunspaceDebug', 'Get-RunspaceDebug', 'Start-Sleep', 'Join-String', - 'Out-String', 'Select-String', 'ConvertFrom-StringData', 'Format-Table', 'New-TemporaryFile', 'New-TimeSpan', - 'Get-TraceSource', 'Set-TraceSource', 'Add-Type', 'Get-TypeData', 'Remove-TypeData', 'Update-TypeData', - 'Get-UICulture', 'Get-Unique', 'Get-Uptime', 'Clear-Variable', 'Get-Variable', 'New-Variable', - 'Remove-Variable', 'Set-Variable', 'Get-Verb', 'Write-Verbose', 'Write-Warning', 'Invoke-WebRequest', - 'Format-Wide', 'ConvertTo-Xml', 'Select-Xml', 'Get-Error', 'Update-List', 'Unblock-File' -) -FunctionsToExport = @() -AliasesToExport = @('fhx') -NestedModules = @("Microsoft.PowerShell.Commands.Utility.dll") -HelpInfoURI = 'https://aka.ms/powershell72-help' -} diff --git a/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll b/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll deleted file mode 100644 index 9e26473..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.IO.Ports.dll b/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.IO.Ports.dll deleted file mode 100644 index 8e7b399..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.IO.Ports.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Management.Automation.dll b/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Management.Automation.dll deleted file mode 100644 index a5f1912..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Management.Automation.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll b/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll deleted file mode 100644 index ad2a602..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 78105ed..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/web/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index 2e7bf94..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/web/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index ac47598..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/web/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll deleted file mode 100644 index 56a149b..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll b/linguard/web/bin/Debug/net6.0/runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll deleted file mode 100644 index f60631c..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win-arm/native/mi.dll b/linguard/web/bin/Debug/net6.0/runtimes/win-arm/native/mi.dll deleted file mode 100644 index 7228cd0..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win-arm/native/mi.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win-arm/native/miutils.dll b/linguard/web/bin/Debug/net6.0/runtimes/win-arm/native/miutils.dll deleted file mode 100644 index ab98cbf..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win-arm/native/miutils.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win-arm/native/pwrshplugin.dll b/linguard/web/bin/Debug/net6.0/runtimes/win-arm/native/pwrshplugin.dll deleted file mode 100644 index 0eec871..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win-arm/native/pwrshplugin.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/web/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index 50860ab..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/web/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 9dbe56e..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/web/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll deleted file mode 100644 index a78573d..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll b/linguard/web/bin/Debug/net6.0/runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll deleted file mode 100644 index b148487..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win-arm64/native/mi.dll b/linguard/web/bin/Debug/net6.0/runtimes/win-arm64/native/mi.dll deleted file mode 100644 index eb971a1..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win-arm64/native/mi.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win-arm64/native/miutils.dll b/linguard/web/bin/Debug/net6.0/runtimes/win-arm64/native/miutils.dll deleted file mode 100644 index 0d3985d..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win-arm64/native/miutils.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win-arm64/native/pwrshplugin.dll b/linguard/web/bin/Debug/net6.0/runtimes/win-arm64/native/pwrshplugin.dll deleted file mode 100644 index f36ee7d..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win-arm64/native/pwrshplugin.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win-arm64/native/sni.dll b/linguard/web/bin/Debug/net6.0/runtimes/win-arm64/native/sni.dll deleted file mode 100644 index 7b8f9d8..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win-arm64/native/sni.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll b/linguard/web/bin/Debug/net6.0/runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll deleted file mode 100644 index 9d148cf..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win-x64/native/pwrshplugin.dll b/linguard/web/bin/Debug/net6.0/runtimes/win-x64/native/pwrshplugin.dll deleted file mode 100644 index 74da742..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win-x64/native/pwrshplugin.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win-x64/native/sni.dll b/linguard/web/bin/Debug/net6.0/runtimes/win-x64/native/sni.dll deleted file mode 100644 index c1a05a5..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win-x64/native/sni.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll b/linguard/web/bin/Debug/net6.0/runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll deleted file mode 100644 index 79a3085..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win-x86/native/pwrshplugin.dll b/linguard/web/bin/Debug/net6.0/runtimes/win-x86/native/pwrshplugin.dll deleted file mode 100644 index 200bf77..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win-x86/native/pwrshplugin.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win-x86/native/sni.dll b/linguard/web/bin/Debug/net6.0/runtimes/win-x86/native/sni.dll deleted file mode 100644 index 5fc21ac..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win-x86/native/sni.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll deleted file mode 100644 index c8ff3c8..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll deleted file mode 100644 index 997d268..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll deleted file mode 100644 index 1e4a567..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll deleted file mode 100644 index 3e7ffc4..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll deleted file mode 100644 index 3dfb631..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll deleted file mode 100644 index fa3247a..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll deleted file mode 100644 index b6dc868..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll deleted file mode 100644 index 8ed4dde..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll deleted file mode 100644 index b6a87a7..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll deleted file mode 100644 index 9896fd3..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll deleted file mode 100644 index 18eb223..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll deleted file mode 100644 index 66af198..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/CimCmdlets/CimCmdlets.psd1 b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/CimCmdlets/CimCmdlets.psd1 deleted file mode 100644 index 9c74ac8..0000000 --- a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/CimCmdlets/CimCmdlets.psd1 +++ /dev/null @@ -1,233 +0,0 @@ -@{ -GUID="{Fb6cc51d-c096-4b38-b78d-0fed6277096a}" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -RootModule="Microsoft.Management.Infrastructure.CimCmdlets" -RequiredAssemblies="Microsoft.Management.Infrastructure.CimCmdlets.dll","Microsoft.Management.Infrastructure.Dll" -FunctionsToExport = @() -CmdletsToExport= "Get-CimAssociatedInstance", "Get-CimClass", "Get-CimInstance", "Get-CimSession", "Invoke-CimMethod", - "New-CimInstance","New-CimSession","New-CimSessionOption","Register-CimIndicationEvent","Remove-CimInstance", - "Remove-CimSession","Set-CimInstance", - "Export-BinaryMiLog","Import-BinaryMiLog" -AliasesToExport = "gcim","scim","ncim", "rcim","icim","gcai","rcie","ncms","rcms","gcms","ncso","gcls" -HelpInfoUri="https://aka.ms/powershell72-help" -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCDVr9wtf0/6ef8P -# 7Oewmh6e4caAvboErstvAWik/E+xjqCCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQggKe1Wa+d -# fYvru2vipTPxs79u032BOtU/CXLz68NBYs0wQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQB0Sx7LIYYO505eD5CAwvSG6wwrjjzKL/MSFiL9Nh0Q -# YDyFIX4UsB617gQ/OLzvBaXpzuGbkzdtbxGuknwe5pNeLgzdAPj8f3aMfNM7JnL0 -# Pu6HUmHuaD11aY9bOOoddRWRZDGoSMXaPXvTHGXo8lk672+n6e2SNB28QG1ASAt7 -# 20qZLgr0ujUBlUe4zyg5MxZseqjEGR3bsUSltPOu2F107jcNqj1YZ/HXJHCAniSd -# XdMRipCWeydTNPpPLCWVtcjTyxXnJoDbTEVtyOpFx/0YxCgazCDY0ae+QKzp7sNe -# qbnNd30/F9pJ2S3hu9z9RcpgxbYDIHchMVO970sQOyvNoYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIAaCwImJ8DxZ2FNq1L4wuBej3xtvL6SPai8XFzEz -# uLyVAgZhlV4Kp6EYEzIwMjExMjA4MjEwNDEzLjk2M1owBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046MkFENC00QjkyLUZBMDExJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYZ45RmJ+CRL -# zAABAAABhjANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3MzlaFw0yMzAxMjYxOTI3MzlaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjJBRDQtNEI5Mi1GQTAxMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwI3G2Wpv -# 6B4IjAfrgfJpndPOPYO1Yd8+vlfoIxMW3gdCDT+zIbafg14pOu0t0ekUQx60p7Pa -# dH4OjnqNIE1q6ldH9ntj1gIdl4Hq4rdEHTZ6JFdE24DSbVoqqR+R4Iw4w3GPbfc2 -# Q3kfyyFyj+DOhmCWw/FZiTVTlT4bdejyAW6r/Jn4fr3xLjbvhITatr36VyyzgQ0Y -# 4Wr73H3gUcLjYu0qiHutDDb6+p+yDBGmKFznOW8wVt7D+u2VEJoE6JlK0EpVLZus -# dSzhecuUwJXxb2uygAZXlsa/fHlwW9YnlBqMHJ+im9HuK5X4x8/5B5dkuIoX5lWG -# jFMbD2A6Lu/PmUB4hK0CF5G1YaUtBrME73DAKkypk7SEm3BlJXwY/GrVoXWYUGEH -# yfrkLkws0RoEMpoIEgebZNKqjRynRJgR4fPCKrEhwEiTTAc4DXGci4HHOm64EQ1g -# /SDHMFqIKVSxoUbkGbdKNKHhmahuIrAy4we9s7rZJskveZYZiDmtAtBt/gQojxbZ -# 1vO9C11SthkrmkkTMLQf9cDzlVEBeu6KmHX2Sze6ggne3I4cy/5IULnHZ3rM4ZpJ -# c0s2KpGLHaVrEQy4x/mAn4yaYfgeH3MEAWkVjy/qTDh6cDCF/gyz3TaQDtvFnAK7 -# 0LqtbEvBPdBpeCG/hk9l0laYzwiyyGY/HqMCAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBQZtqNFA+9mdEu/h33UhHMN6whcLjAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQDD7mehJY3fTHKC4hj+wBWB8544 -# uaJiMMIHnhK9ONTM7VraTYzx0U/TcLJ6gxw1tRzM5uu8kswJNlHNp7RedsAiwviV -# QZV9AL8IbZRLJTwNehCwk+BVcY2gh3ZGZmx8uatPZrRueyhhTTD2PvFVLrfwh2li -# DG/dEPNIHTKj79DlEcPIWoOCUp7p0ORMwQ95kVaibpX89pvjhPl2Fm0CBO3pXXJg -# 0bydpQ5dDDTv/qb0+WYF/vNVEU/MoMEQqlUWWuXECTqx6TayJuLJ6uU7K5QyTkQ/ -# l24IhGjDzf5AEZOrINYzkWVyNfUOpIxnKsWTBN2ijpZ/Tun5qrmo9vNIDT0lobgn -# ulae17NaEO9oiEJJH1tQ353dhuRi+A00PR781iYlzF5JU1DrEfEyNx8CWgERi90L -# KsYghZBCDjQ3DiJjfUZLqONeHrJfcmhz5/bfm8+aAaUPpZFeP0g0Iond6XNk4YiY -# bWPFoofc0LwcqSALtuIAyz6f3d+UaZZsp41U4hCIoGj6hoDIuU839bo/mZ/AgESw -# GxIXs0gZU6A+2qIUe60QdA969wWSzucKOisng9HCSZLF1dqc3QUawr0C0U41784K -# o9vckAG3akwYuVGcs6hM/SqEhoe9jHwe4Xp81CrTB1l9+EIdukCbP0kyzx0WZzte -# eiDN5rdiiQR9mBJuljCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046MkFENC00Qjky -# LUZBMDExJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVAAGu2DRzWkKljmXySX1korHL4fMnoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tXMCIY -# DzIwMjExMjA5MDM1MTUxWhgPMjAyMTEyMTAwMzUxNTFaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi1cCAQAwCgIBAAICFmICAf8wBwIBAAICEh0wCgIFAOVc3NcC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQAcxjpqy9KLSwM37+FXLc0BH8vQ -# bi/JiOUtzx1U3w8DY7ed3asVEpLwGzUKiZ6rI29ZJuKH6YlwiWrAcHP9QgQnWNwg -# LXWMiZLEeOE63JCAWeL4odLTq1DKced93+APIOfcpQ1ap6X/BY4fKpscksm/q98S -# mmAs+7pjsbcUGpWLtzGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABhnjlGYn4JEvMAAEAAAGGMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEINEG -# q0+SCFYCT6sOQMZPpgnAOe4W2XF/PwFbVzs1WLMVMIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgGpmI4LIsCFTGiYyfRAR7m7Fa2guxVNIw17mcAiq8Qn4wgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYZ45RmJ+CRL -# zAABAAABhjAiBCAUmIgeNWf4KXB+/obIOhBMrPwiJ83+1ebXflyLLm9rjjANBgkq -# hkiG9w0BAQsFAASCAgBXBmO2FJAq4az5Z1fXe3nTGflWCimqnMzUudZ0JD5Omi9t -# KDRFGDjYxgAo4r26b3zc73bN/7kkUkJwwdDc2RsABuzjHa04XSfIbry8JwBw7utB -# lwotvUH6Wa22GXu0POFqMEywdRl2x4XM04hgdUfZdWznuVRzZACn1NIfYhjmsL97 -# WMTYX7dx4OVEIFWriI/R5+8p0IXDgLe3AxdrTSedGeQFgsbEvLRkVmU0m3Qsb3Qb -# V+Ds1llgS06AFYlJzgcSbBdr/6gU7V1s3EcH2z4GjPCs2rYmVIZ6XCwkn0no2vc9 -# jEHbLtaBZ7VJ/r3Xvbj/GEYdUbGgVAIdpDFnBKsamV/Z2X9eZZSIxjTnBdh4fdkJ -# 29TRUahZywqEtJWP7LOvjlIHK3Ri9AxxkJrGDhIyvJeOGT6fzT/SvWeHkAoqeGpp -# lqXzs/p5d1rsqFAST8pTTWVXItcmO84qO3+1is32A9nh1ngDva7RGXdsh3+kkobP -# eZkn0HnUxV0OUYgINHsDiCeDhwfElDpvix6/F+1S3yApsfT10k09qOWKBAxq1P7p -# j2Iih/xwZUTOwsPHTvczh8yrOAwVQoWiHKgNKXE4GyZmNAV2oUH0goTkTjqCOw7z -# /7UFMEhbEHABlSIKOQU/1hXDY4d07sfBlWPHskx8A+Yq7rTeFVPcXSnUUcqjcg== -# SIG # End signature block diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml deleted file mode 100644 index 8887031..0000000 --- a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml +++ /dev/null @@ -1,294 +0,0 @@ - - - - - - - - Counter - - Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSampleSet - - - - - - 25 - left - - - - left - 100 - - - - - - - - Timestamp - - - Readings - - - - - - - - Counter - - Microsoft.PowerShell.Commands.GetCounter.CounterFileInfo - - - - - 30 - left - - - 30 - left - - - 30 - left - - - - - - - - OldestRecord - - - NewestRecord - - - SampleCount - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml deleted file mode 100644 index 3cb0478..0000000 --- a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml +++ /dev/null @@ -1,336 +0,0 @@ - - - - - Default - - System.Diagnostics.Eventing.Reader.EventLogRecord - - - ProviderName - - - - - - 25 - - - 8 - right - - - 16 - - - - - - - - - TimeCreated - - - Id - - - LevelDisplayName - - - Message - - - - - - - - - Default - - System.Diagnostics.Eventing.Reader.EventLogConfiguration - - - - - - - 9 - - - - 18 - right - - - - 11 - right - - - - - - - - LogMode - - - MaximumSizeInBytes - - - RecordCount - - - LogName - - - - - - - - Default - - System.Diagnostics.Eventing.Reader.ProviderMetadata - - - - - - - Name - - - LogLinks - - - Opcodes - - - Tasks - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml deleted file mode 100644 index a365f67..0000000 --- a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml +++ /dev/null @@ -1,354 +0,0 @@ - - - - - - System.Diagnostics.Eventing.Reader.EventLogConfiguration - - - PSStandardMembers - - - DefaultDisplayPropertySet - - LogName - MaximumSizeInBytes - RecordCount - LogMode - - - - - - - - System.Diagnostics.Eventing.Reader.EventLogRecord - - - PSStandardMembers - - - DefaultDisplayPropertySet - - TimeCreated - ProviderName - Id - Message - - - - - - - - System.Diagnostics.Eventing.Reader.ProviderMetadata - - - ProviderName - Name - - - PSStandardMembers - - - DefaultDisplayPropertySet - - Name - LogLinks - - - - - - - - Microsoft.PowerShell.Commands.GetCounter.CounterSet - - - Counter - Paths - - - - - Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSample - - - PSStandardMembers - - - DefaultDisplayPropertySet - - Path - InstanceName - CookedValue - - - - - - - - Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSampleSet - - - PSStandardMembers - - - DefaultDisplayPropertySet - - Timestamp - Readings - - - - - - - - Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSampleSet - - - Readings - - $strPaths = "" - foreach ($ctr in $this.CounterSamples) - { - $strPaths += ($ctr.Path + " :" + "`n") - $strPaths += ($ctr.CookedValue.ToString() + "`n`n") - } - return $strPaths - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1 b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1 deleted file mode 100644 index 880d7aa..0000000 --- a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1 +++ /dev/null @@ -1,231 +0,0 @@ -@{ -GUID="CA046F10-CA64-4740-8FF9-2565DBA61A4F" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -FunctionsToExport = @() -CmdletsToExport="Get-WinEvent", "New-WinEvent", "Get-Counter" -AliasesToExport = @() -NestedModules="Microsoft.PowerShell.Commands.Diagnostics.dll" -TypesToProcess="GetEvent.types.ps1xml" -FormatsToProcess="Event.format.ps1xml", "Diagnostics.format.ps1xml" -HelpInfoURI = 'https://aka.ms/powershell72-help' -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCDPn0/Kw53z57yO -# 1TekDBJE1OmAf8RR94VaWe+Hq0qiG6CCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgODWoe2T6 -# RL6c8rlTHF90KQETb+lXsgMFPg5sa5qcVO8wQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQArTuRkyGCIWatxzP2XmCe8MGk2psH1zX2CtsCxq8Ap -# llWPArMeb/LjOcajbM5kypCRRAbwRz6aDbnQHt8odHEoRZU7pTPP6Gi5YLzfXy5B -# 0ww61qNEDWQD3Js4U0r/D5Bvbm0ewiX+JmBEh1lhTJYzIp8iXuTH3qe9bhKKb++x -# iTOWvO8/HgtkFqax0G4FyoGpyhcxGzGI0hzjTE+8qabrKI0VtLQ4FlvNluxrfISs -# nx56dtXmf0jiOSCWuGbtKydeTR6wtK8b8RfXdSfUfI2TbFk+nuTk9OADnpMxw87X -# rpiALWuM8oSYj9xv4oUCw6fsjnuryMRoM59K86mOjXkEoYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIBHzUJcs5FFt55Hx994HtkOYw1sXWAszphHUNgXU -# AU+vAgZhlV4Kp54YEzIwMjExMjA4MjEwNDEzLjc5NlowBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046MkFENC00QjkyLUZBMDExJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYZ45RmJ+CRL -# zAABAAABhjANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3MzlaFw0yMzAxMjYxOTI3MzlaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjJBRDQtNEI5Mi1GQTAxMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwI3G2Wpv -# 6B4IjAfrgfJpndPOPYO1Yd8+vlfoIxMW3gdCDT+zIbafg14pOu0t0ekUQx60p7Pa -# dH4OjnqNIE1q6ldH9ntj1gIdl4Hq4rdEHTZ6JFdE24DSbVoqqR+R4Iw4w3GPbfc2 -# Q3kfyyFyj+DOhmCWw/FZiTVTlT4bdejyAW6r/Jn4fr3xLjbvhITatr36VyyzgQ0Y -# 4Wr73H3gUcLjYu0qiHutDDb6+p+yDBGmKFznOW8wVt7D+u2VEJoE6JlK0EpVLZus -# dSzhecuUwJXxb2uygAZXlsa/fHlwW9YnlBqMHJ+im9HuK5X4x8/5B5dkuIoX5lWG -# jFMbD2A6Lu/PmUB4hK0CF5G1YaUtBrME73DAKkypk7SEm3BlJXwY/GrVoXWYUGEH -# yfrkLkws0RoEMpoIEgebZNKqjRynRJgR4fPCKrEhwEiTTAc4DXGci4HHOm64EQ1g -# /SDHMFqIKVSxoUbkGbdKNKHhmahuIrAy4we9s7rZJskveZYZiDmtAtBt/gQojxbZ -# 1vO9C11SthkrmkkTMLQf9cDzlVEBeu6KmHX2Sze6ggne3I4cy/5IULnHZ3rM4ZpJ -# c0s2KpGLHaVrEQy4x/mAn4yaYfgeH3MEAWkVjy/qTDh6cDCF/gyz3TaQDtvFnAK7 -# 0LqtbEvBPdBpeCG/hk9l0laYzwiyyGY/HqMCAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBQZtqNFA+9mdEu/h33UhHMN6whcLjAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQDD7mehJY3fTHKC4hj+wBWB8544 -# uaJiMMIHnhK9ONTM7VraTYzx0U/TcLJ6gxw1tRzM5uu8kswJNlHNp7RedsAiwviV -# QZV9AL8IbZRLJTwNehCwk+BVcY2gh3ZGZmx8uatPZrRueyhhTTD2PvFVLrfwh2li -# DG/dEPNIHTKj79DlEcPIWoOCUp7p0ORMwQ95kVaibpX89pvjhPl2Fm0CBO3pXXJg -# 0bydpQ5dDDTv/qb0+WYF/vNVEU/MoMEQqlUWWuXECTqx6TayJuLJ6uU7K5QyTkQ/ -# l24IhGjDzf5AEZOrINYzkWVyNfUOpIxnKsWTBN2ijpZ/Tun5qrmo9vNIDT0lobgn -# ulae17NaEO9oiEJJH1tQ353dhuRi+A00PR781iYlzF5JU1DrEfEyNx8CWgERi90L -# KsYghZBCDjQ3DiJjfUZLqONeHrJfcmhz5/bfm8+aAaUPpZFeP0g0Iond6XNk4YiY -# bWPFoofc0LwcqSALtuIAyz6f3d+UaZZsp41U4hCIoGj6hoDIuU839bo/mZ/AgESw -# GxIXs0gZU6A+2qIUe60QdA969wWSzucKOisng9HCSZLF1dqc3QUawr0C0U41784K -# o9vckAG3akwYuVGcs6hM/SqEhoe9jHwe4Xp81CrTB1l9+EIdukCbP0kyzx0WZzte -# eiDN5rdiiQR9mBJuljCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046MkFENC00Qjky -# LUZBMDExJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVAAGu2DRzWkKljmXySX1korHL4fMnoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tXMCIY -# DzIwMjExMjA5MDM1MTUxWhgPMjAyMTEyMTAwMzUxNTFaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi1cCAQAwCgIBAAICFmICAf8wBwIBAAICEh0wCgIFAOVc3NcC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQAcxjpqy9KLSwM37+FXLc0BH8vQ -# bi/JiOUtzx1U3w8DY7ed3asVEpLwGzUKiZ6rI29ZJuKH6YlwiWrAcHP9QgQnWNwg -# LXWMiZLEeOE63JCAWeL4odLTq1DKced93+APIOfcpQ1ap6X/BY4fKpscksm/q98S -# mmAs+7pjsbcUGpWLtzGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABhnjlGYn4JEvMAAEAAAGGMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIIOe -# Fteykp3uhjp/CbUuslldSIpFBtmy2s0K3N7X+v4KMIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgGpmI4LIsCFTGiYyfRAR7m7Fa2guxVNIw17mcAiq8Qn4wgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYZ45RmJ+CRL -# zAABAAABhjAiBCAUmIgeNWf4KXB+/obIOhBMrPwiJ83+1ebXflyLLm9rjjANBgkq -# hkiG9w0BAQsFAASCAgBf6Fat07wOy6aoLnxthDrldarQW8T2Ds6iTbNLhloJSJ1O -# Iu3QX6b7ktkdWHUtcOrW6wQ5y/EpoKQgPvT4+bs6e9QgdZqsz31NAecxGcivBfQz -# nxE8j6o46ky4HWO46ppqFjrz4ENa0ELpE8LC4fQC2h4N1EQPNkh9MQMunYZSK2Ck -# ritrVAuivl6vaeuVJyNBh0G20owR+ZDTocTnZYnOi4DqgKsrqe/8Q+kmQPmMZpig -# 3brD1Lg5JT/0zGlwNqvarcBJHRidNXrVJLxiHIcDTg4rwD+T4FN8EAbg+ioyv47T -# I6Ob7+gcrL2UdhVkZSUSqdVQVIX1V2SvP41TSHx7UCptCG0MaPiWYN5IGFlSKdRf -# hDv8Qb1cjW/wq3yQMBQBkV1g7CO48FoHlOl45b7dzXvn0b8LsYj2+gYfqzbJqacZ -# FOCrSVKIq5rlJAFKYra81Lzuryl3hpeXsREPc80w6gBZuwtq3ML/Z0YN7/rQQTs2 -# tsGyS4Ti76HltquYmkkQEfan1uk0RU91wujLFd7KZ3urFVvjqsqH9zSpxp7pCKT7 -# Sh6wf0zmG4SBX5DVQ0sHERamwpv6dqdDuadT3j9hnmsktM8uozim4Zzz0KI4DN1p -# IJE2x0YOHgYqr91aJMwULeVv3gGpcMUx6d08hSS6RDA7ne+UhH226yoyJsaYcQ== -# SIG # End signature block diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 deleted file mode 100644 index 5d9ffc6..0000000 --- a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 +++ /dev/null @@ -1,229 +0,0 @@ -@{ -GUID="56D66100-99A0-4FFC-A12D-EEE9A6718AEF" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -FunctionsToExport = @() -CmdletsToExport="Start-Transcript", "Stop-Transcript" -AliasesToExport = @() -NestedModules="Microsoft.PowerShell.ConsoleHost.dll" -HelpInfoURI = 'https://aka.ms/powershell72-help' -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCCAN6qOMSgIZSKy -# niFjiV1FZGi6ofshkAXyBqiHSReb1aCCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgkynSeA0x -# XjLakAqmd0XMmOd0Xz2RQ1n1Heu6kO1y5N0wQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQBp+M1foZUndpZVBWaBgxj5ssitpnOInfqiMoO3MG1s -# H2bxWJO09yPVWWu1/hkCjpRID00eSBj71TcZ/C1ZkQimhy2bxMM7YjngYf1A20r7 -# Luw3ZbAOPs92h91TG0a1L2PJa7rjJy57BgwnHFTgNrWkCR7VXElf2LnjCbONyJPy -# rVNLQaGGM78KKhd6Tp2LDd+R8sT19o2lD5bBrVubPim3XifI6hn4f66a1no72w3S -# 9ol7radXalJgKkxKzQnAVHPiOB+GAL/J457mswnvP+eRD/kUlEPsFRCVEMKejOdo -# 69jQhGOZJH0CuLU1HlhzU6X/poT4dnIJ9d+aCMX0cfE6oYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIJb96bqFa1hrFgpYPU2ayB0LEBtlTfOe8EwuWTs9 -# L81TAgZhlV4jeFAYEzIwMjExMjA4MjEwNDEzLjY4NVowBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046OEQ0MS00QkY3LUIzQjcxJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYguzcaBQeG8 -# KgABAAABiDANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3NDBaFw0yMzAxMjYxOTI3NDBaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjhENDEtNEJGNy1CM0I3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAmucQCAQm -# kcXHyDrV4S88VeJg2XGqNKcWpsrapRKFWchhjLsf/M9XN9bgznLN48BXPAtOlwoe -# dB2kN4bZdPP3KdRNbYq1tNFUh8UnmjCCr+CjLlrigHcmS0R+rsN2gBMXlLEZh2W/ -# COuD9VOLsb2P2jDp433V4rUAAUW82M7rg81d3OcctO+1XW1h3EtbQtS6QEkw6DYI -# uvfX7Aw8jXHZnsMugP8ZA1otprpTNUh/zRWC7CJyBzymQIDSCdWhVfD4shxe+Rs6 -# 1axf27bTg5H/V/SkNd9hzM6Nq/y2OjDKrLtuN9hS53569uhTNQeAhAVDfeHpEzlM -# vtXOyX6MTme3jnHdHPj6GLT9AMRIrAf96hPYOiPEBvHtrg6MpiI3+l6NlbSOs16/ -# FTeljT1+sdsWGtFTZvea9pAqV1aB795aDkmZ6sRm5jtdnVazfoWrHd3vDeh35WV0 -# 8vW4TlOfEcV2+KbairPxaFkJ4+tlsJ+MfsVOiTr/ZnDgaMaHnzzogelI3AofDU9I -# TbMkTtTxrLPygTbRdtbptrnLzBn2jzR4TJfkQo+hzWuaMu5OtMZiKV2I5MO0m1mK -# uUAgoq+442Lw8CQuj9EC2F8nTbJb2NcUDg+74dgJis/P8Ba/OrlxW+Trgc6TPGxC -# OtT739UqeslvWD6rNQ6UEO9f7vWDkhd2vtsCAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBRkebVQxKO7zru9+o27GjPljMlKSjAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQBAEFrb+1gIJsv/GKLS2zavm2ek -# 177mk4yu6BuS6ViIuL0e20YN2ddXeiUhEdhk3FRto/GD93k5SIyNJ6X+p8uQMOxI -# 23YOSdyEzLJwh7+ftu0If8y3x6AJ0S1d12OZ7fsYqljHUeccneS9DWqipHk8uM8m -# 2ZbBhRnUN8M4iqg4roJGmZKZ9Fc8Z7ZHJgM97i7fIyA9hJH017z25WrDJlxapD5d -# mMyNyzzfAVqaByemCoBn4VkRCGNISx0xRlcb93W6ENhJF1NBjMl3cKVEHW4d8Y0N -# ZhpdXDteLk9HgbJyeCI2fN9GBrCS1B1ak+194PGiZKL8+gtK7NorAoAMQvFkYgrH -# rWCYfjV6PouC3N+A6wOBrckVOHT9PUIDK5ADCH4ZraQideS9LD/imKHM3I4iazPk -# ocHcFHB9yo5d9lMJZ+pnAAWglQQjMWhUqnE/llA+EqjbO0lAxlmUtVioVUswhT3p -# K6DjFRXM/LUxwTttufz1zBjELkRIZ8uCy1YkMxfBFwEos/QFIlDaFSvUn4IiWZA3 -# VLfAEjy51iJwK2jSIHw+1bjCI+FBHcCTRH2pP3+h5DlQ5AZ/dvcfNrATP1wwz25I -# r8KgKObHRCIYH4VI2VrmOboSHFG79JbHdkPVSjfLxTuTsoh5FzoU1t5urG0rwulo -# ZZFZxTkrxfyTkhvmjDCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046OEQ0MS00QkY3 -# LUIzQjcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVAOE8isx8IBeVPSweD805l5Qdeg5CoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tIMCIY -# DzIwMjExMjA5MDM1MTM2WhgPMjAyMTEyMTAwMzUxMzZaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi0gCAQAwCgIBAAICIScCAf8wBwIBAAICEdowCgIFAOVc3MgC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQBeVbaPZ5ldfNGhiFwP5ALaZGmV -# 4LkTqmcDT5yUk6p3tceYyxhPwMQqshcKt1fSrFqX5J8uNBeTWEpB5D/YyrXGHu/K -# a4Wj/8+nv32LXimt561Ygktjq90QX/Vha0BnifzfBTf/k64ZmtV6FMmvNI9MjNm3 -# QmHj495BbEuSWI20HzGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABiC7NxoFB4bwqAAEAAAGIMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIB5r -# VcRB53ajDn0amN283eZmOuFxfZ1ddPxQGZnO2OCZMIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgZune7awGN0aEgvjP7JyO3NKl7hstX8ChhrKmXtJJQKUwgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYguzcaBQeG8 -# KgABAAABiDAiBCDnGsQwLYuvrNs0JZQ8D1YCe56drKP5aPf/ndr94faZkzANBgkq -# hkiG9w0BAQsFAASCAgBi8EWq1+2L+qQJjtUAiYvFYQS2GX/DAratlOcGOSYqL81P -# DXuByUFsrXsBKqXmeuAfWiNeLWOpiGvy10qNldd/AsVdVrba72n8rzGLQ1od91L4 -# CljkSRtcq/LmvjdWPqa+ySqda1OpsD80ZOFstCnTysY9S6SDqvWgZYr+UtRJsng4 -# jp8cUCQBAcjQ1N/dHGUAs/Tvfr5kHdDGynKKMGdDEUKtM2jjznIIWnxPzZoyXEi4 -# 8ePyJ/mTh3grNa3oOSGxuC+8ejye9Bc4JPSYYzhzJw+M0LAgBLQxj/HdYiuGIK7w -# TOUrqctErkPgosq1NdUAqQZakDXVpouiB+FTez3hiR2QAY1uR5lHvGD9zJValYMH -# OQEzjO5Bh+2cauVdMp012ULRJBIcVVrjUcSihcyD6EbUlyzu0VQFNFANkbFpqsf6 -# gS9p4j//r8AfQv8xwyy2N0Ql5caRRf5Vlfjp8c2ikMMvY19A53qBKs+aE093B+4Z -# 72wg2wnorYKun9fGpnfs+JufmnDf64O8a9pXV+XM9lVmgmWb0ScKAxn+N9dZrwD7 -# DbjlvSnLEUciHzyEO9wQ8/gu3L6E2Ugho+AbIDStmNhSIQiMDJblWZk5aLc8SGPr -# tts+mmDoB+lun57BwYPZKhgmnekQ9j9tCZaDKWa/ocKNByI+2+YBrNev3M37rQ== -# SIG # End signature block diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 deleted file mode 100644 index 5d2f511..0000000 --- a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 +++ /dev/null @@ -1,289 +0,0 @@ -@{ -GUID="EEFCB906-B326-4E99-9F54-8B4BB6EF3C6D" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -NestedModules="Microsoft.PowerShell.Commands.Management.dll" -HelpInfoURI = 'https://aka.ms/powershell72-help' -FunctionsToExport = @() -AliasesToExport = @("gcb", "gin", "gtz", "scb", "stz") -CmdletsToExport=@("Add-Content", - "Clear-Content", - "Get-Clipboard", - "Set-Clipboard", - "Clear-ItemProperty", - "Join-Path", - "Convert-Path", - "Copy-ItemProperty", - "Get-ChildItem", - "Get-Content", - "Get-ItemProperty", - "Get-ItemPropertyValue", - "Move-ItemProperty", - "Get-Location", - "Set-Location", - "Push-Location", - "Pop-Location", - "New-PSDrive", - "Remove-PSDrive", - "Get-PSDrive", - "Get-Item", - "New-Item", - "Set-Item", - "Remove-Item", - "Move-Item", - "Rename-Item", - "Copy-Item", - "Clear-Item", - "Invoke-Item", - "Get-PSProvider", - "New-ItemProperty", - "Split-Path", - "Test-Path", - "Test-Connection", - "Get-Process", - "Stop-Process", - "Wait-Process", - "Debug-Process", - "Start-Process", - "Remove-ItemProperty", - "Rename-ItemProperty", - "Resolve-Path", - "Get-Service", - "Stop-Service", - "Start-Service", - "Suspend-Service", - "Resume-Service", - "Restart-Service", - "Set-Service", - "New-Service", - "Remove-Service", - "Set-Content", - "Set-ItemProperty", - "Restart-Computer", - "Stop-Computer", - "Rename-Computer", - "Get-ComputerInfo", - "Get-TimeZone", - "Set-TimeZone", - "Get-HotFix", - "Clear-RecycleBin") -} - -# SIG # Begin signature block -# MIInuAYJKoZIhvcNAQcCoIInqTCCJ6UCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCAOkUHfBYP8n8JI -# rFMR/Pi6BPlAC/b/pz0LBmd3yrLJC6CCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjTCCGYkCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgbwKAFcUU -# n/a8C1e7lODkKydexiPQBTRqAUaY8lpIXxYwQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQAS8cDlYOVWF3oFPi1M2yWWdC1wbCMgPa2utU2WgHpJ -# FdgkgR5zgZhKx2APsR5uSgSfvs9YfPYm8+NRMvxAYm4e/Bf1JgTP9gsgqxQ/xXB+ -# NqOASjMjv7v+wTLPMa/i//jTTxjqcmHebx0tVR6f0Fpr9BU7PxW996xh2vKdxVnV -# YXxHwAmhJ1TxUaZC0hVRtriJrBfAsuQ2g/aCn5wZ6YXKVJ63IBZ+jnivf80fnSYc -# t+Zl4LqAiaSvpQ7GgPo/RggihGdWk+AuZCcY9SOJYAypK3Hvu4KHy4+5GEW3+9LI -# uQ3+9k1MG+Xng2uR0sDenzNJN89weif/W6AwmTwRl69ToYIXFzCCFxMGCisGAQQB -# gjcDAwExghcDMIIW/wYJKoZIhvcNAQcCoIIW8DCCFuwCAQMxDzANBglghkgBZQME -# AgEFADCCAVcGCyqGSIb3DQEJEAEEoIIBRgSCAUIwggE+AgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIGUlM1IvDbHn/VrMmR6UJYC2nOP4lY0xhCVtPuKI -# CRBSAgZhlV4jeGYYETIwMjExMjA4MjEwNDE0LjdaMASAAgH0oIHYpIHVMIHSMQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNy -# b3NvZnQgSXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxl -# cyBUU1MgRVNOOjhENDEtNEJGNy1CM0I3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGlt -# ZS1TdGFtcCBTZXJ2aWNloIIRaDCCBxQwggT8oAMCAQICEzMAAAGILs3GgUHhvCoA -# AQAAAYgwDQYJKoZIhvcNAQELBQAwfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldh -# c2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBD -# b3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIw -# MTAwHhcNMjExMDI4MTkyNzQwWhcNMjMwMTI2MTkyNzQwWjCB0jELMAkGA1UEBhMC -# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV -# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEtMCsGA1UECxMkTWljcm9zb2Z0IEly -# ZWxhbmQgT3BlcmF0aW9ucyBMaW1pdGVkMSYwJAYDVQQLEx1UaGFsZXMgVFNTIEVT -# Tjo4RDQxLTRCRjctQjNCNzElMCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAg -# U2VydmljZTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAJrnEAgEJpHF -# x8g61eEvPFXiYNlxqjSnFqbK2qUShVnIYYy7H/zPVzfW4M5yzePAVzwLTpcKHnQd -# pDeG2XTz9ynUTW2KtbTRVIfFJ5owgq/goy5a4oB3JktEfq7DdoATF5SxGYdlvwjr -# g/VTi7G9j9ow6eN91eK1AAFFvNjO64PNXdznHLTvtV1tYdxLW0LUukBJMOg2CLr3 -# 1+wMPI1x2Z7DLoD/GQNaLaa6UzVIf80Vguwicgc8pkCA0gnVoVXw+LIcXvkbOtWs -# X9u204OR/1f0pDXfYczOjav8tjowyqy7bjfYUud+evboUzUHgIQFQ33h6RM5TL7V -# zsl+jE5nt45x3Rz4+hi0/QDESKwH/eoT2DojxAbx7a4OjKYiN/pejZW0jrNevxU3 -# pY09frHbFhrRU2b3mvaQKldWge/eWg5JmerEZuY7XZ1Ws36Fqx3d7w3od+VldPL1 -# uE5TnxHFdvim2oqz8WhZCePrZbCfjH7FTok6/2Zw4GjGh5886IHpSNwKHw1PSE2z -# JE7U8ayz8oE20XbW6ba5y8wZ9o80eEyX5EKPoc1rmjLuTrTGYildiOTDtJtZirlA -# IKKvuONi8PAkLo/RAthfJ02yW9jXFA4Pu+HYCYrPz/AWvzq5cVvk64HOkzxsQjrU -# +9/VKnrJb1g+qzUOlBDvX+71g5IXdr7bAgMBAAGjggE2MIIBMjAdBgNVHQ4EFgQU -# ZHm1UMSju867vfqNuxoz5YzJSkowHwYDVR0jBBgwFoAUn6cVXQBeYl2D9OXSZacb -# UzUZ6XIwXwYDVR0fBFgwVjBUoFKgUIZOaHR0cDovL3d3dy5taWNyb3NvZnQuY29t -# L3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwVGltZS1TdGFtcCUyMFBDQSUyMDIwMTAo -# MSkuY3JsMGwGCCsGAQUFBwEBBGAwXjBcBggrBgEFBQcwAoZQaHR0cDovL3d3dy5t -# aWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9NaWNyb3NvZnQlMjBUaW1lLVN0YW1w -# JTIwUENBJTIwMjAxMCgxKS5jcnQwDAYDVR0TAQH/BAIwADATBgNVHSUEDDAKBggr -# BgEFBQcDCDANBgkqhkiG9w0BAQsFAAOCAgEAQBBa2/tYCCbL/xii0ts2r5tnpNe+ -# 5pOMrugbkulYiLi9HttGDdnXV3olIRHYZNxUbaPxg/d5OUiMjSel/qfLkDDsSNt2 -# DknchMyycIe/n7btCH/Mt8egCdEtXddjme37GKpYx1HnHJ3kvQ1qoqR5PLjPJtmW -# wYUZ1DfDOIqoOK6CRpmSmfRXPGe2RyYDPe4u3yMgPYSR9Ne89uVqwyZcWqQ+XZjM -# jcs83wFamgcnpgqAZ+FZEQhjSEsdMUZXG/d1uhDYSRdTQYzJd3ClRB1uHfGNDWYa -# XVw7Xi5PR4GycngiNnzfRgawktQdWpPtfeDxomSi/PoLSuzaKwKADELxZGIKx61g -# mH41ej6LgtzfgOsDga3JFTh0/T1CAyuQAwh+Ga2kInXkvSw/4pihzNyOImsz5KHB -# 3BRwfcqOXfZTCWfqZwAFoJUEIzFoVKpxP5ZQPhKo2ztJQMZZlLVYqFVLMIU96Sug -# 4xUVzPy1McE7bbn89cwYxC5ESGfLgstWJDMXwRcBKLP0BSJQ2hUr1J+CIlmQN1S3 -# wBI8udYicCto0iB8PtW4wiPhQR3Ak0R9qT9/oeQ5UOQGf3b3HzawEz9cMM9uSK/C -# oCjmx0QiGB+FSNla5jm6EhxRu/SWx3ZD1Uo3y8U7k7KIeRc6FNbebqxtK8LpaGWR -# WcU5K8X8k5Ib5owwggdxMIIFWaADAgECAhMzAAAAFcXna54Cm0mZAAAAAAAVMA0G -# CSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3Rv -# bjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0 -# aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3Jp -# dHkgMjAxMDAeFw0yMTA5MzAxODIyMjVaFw0zMDA5MzAxODMyMjVaMHwxCzAJBgNV -# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w -# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m -# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC -# CgKCAgEA5OGmTOe0ciELeaLL1yR5vQ7VgtP97pwHB9KpbE51yMo1V/YBf2xK4OK9 -# uT4XYDP/XE/HZveVU3Fa4n5KWv64NmeFRiMMtY0Tz3cywBAY6GB9alKDRLemjkZr -# BxTzxXb1hlDcwUTIcVxRMTegCjhuje3XD9gmU3w5YQJ6xKr9cmmvHaus9ja+NSZk -# 2pg7uhp7M62AW36MEBydUv626GIl3GoPz130/o5Tz9bshVZN7928jaTjkY+yOSxR -# nOlwaQ3KNi1wjjHINSi947SHJMPgyY9+tVSP3PoFVZhtaDuaRr3tpK56KTesy+uD -# RedGbsoy1cCGMFxPLOJiss254o2I5JasAUq7vnGpF1tnYN74kpEeHT39IM9zfUGa -# RnXNxF803RKJ1v2lIH1+/NmeRd+2ci/bfV+AutuqfjbsNkz2K26oElHovwUDo9Fz -# pk03dJQcNIIP8BDyt0cY7afomXw/TNuvXsLz1dhzPUNOwTM5TI4CvEJoLhDqhFFG -# 4tG9ahhaYQFzymeiXtcodgLiMxhy16cg8ML6EgrXY28MyTZki1ugpoMhXV8wdJGU -# lNi5UPkLiWHzNgY1GIRH29wb0f2y1BzFa/ZcUlFdEtsluq9QBXpsxREdcu+N+VLE -# hReTwDwV2xo3xwgVGD94q0W29R6HXtqPnhZyacaue7e3PmriLq0CAwEAAaOCAd0w -# ggHZMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFCqnUv5kxJq+ -# gpE8RjUpzxD/LwTuMB0GA1UdDgQWBBSfpxVdAF5iXYP05dJlpxtTNRnpcjBcBgNV -# HSAEVTBTMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wEwYDVR0l -# BAwwCgYIKwYBBQUHAwgwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P -# BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU1fZWy4/oolxiaNE9 -# lJBb186aGMQwVgYDVR0fBE8wTTBLoEmgR4ZFaHR0cDovL2NybC5taWNyb3NvZnQu -# Y29tL3BraS9jcmwvcHJvZHVjdHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYtMjMuY3Js -# MFoGCCsGAQUFBwEBBE4wTDBKBggrBgEFBQcwAoY+aHR0cDovL3d3dy5taWNyb3Nv -# ZnQuY29tL3BraS9jZXJ0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5jcnQwDQYJ -# KoZIhvcNAQELBQADggIBAJ1VffwqreEsH2cBMSRb4Z5yS/ypb+pcFLY+TkdkeLEG -# k5c9MTO1OdfCcTY/2mRsfNB1OW27DzHkwo/7bNGhlBgi7ulmZzpTTd2YurYeeNg2 -# LpypglYAA7AFvonoaeC6Ce5732pvvinLbtg/SHUB2RjebYIM9W0jVOR4U3UkV7nd -# n/OOPcbzaN9l9qRWqveVtihVJ9AkvUCgvxm2EhIRXT0n4ECWOKz3+SmJw7wXsFSF -# QrP8DJ6LGYnn8AtqgcKBGUIZUnWKNsIdw2FzLixre24/LAl4FOmRsqlb30mjdAy8 -# 7JGA0j3mSj5mO0+7hvoyGtmW9I/2kQH2zsZ0/fZMcm8Qq3UwxTSwethQ/gpY3UA8 -# x1RtnWN0SCyxTkctwRQEcb9k+SS+c23Kjgm9swFXSVRk2XPXfx5bRAGOWhmRaw2f -# pCjcZxkoJLo4S5pu+yFUa2pFEUep8beuyOiJXk+d0tBMdrVXVAmxaQFEfnyhYWxz -# /gq77EFmPWn9y8FBSX5+k77L+DvktxW/tM4+pTFRhLy/AsGConsXHRWJjXD+57XQ -# KBqJC4822rpM+Zv/Cuk0+CQ1ZyvgDbjmjJnW4SLq8CdCPSWU5nR0W2rRnj7tfqAx -# M328y+l7vzhwRNGQ8cirOoo6CGJ/2XBjU02N7oJtpQUQwXEGahC0HVUzWLOhcGby -# oYIC1zCCAkACAQEwggEAoYHYpIHVMIHSMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQgSXJlbGFuZCBPcGVyYXRp -# b25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1MgRVNOOjhENDEtNEJGNy1C -# M0I3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNloiMKAQEw -# BwYFKw4DAhoDFQDhPIrMfCAXlT0sHg/NOZeUHXoOQqCBgzCBgKR+MHwxCzAJBgNV -# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w -# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m -# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMA0GCSqGSIb3DQEBBQUAAgUA5VuLSDAiGA8y -# MDIxMTIwOTAzNTEzNloYDzIwMjExMjEwMDM1MTM2WjB3MD0GCisGAQQBhFkKBAEx -# LzAtMAoCBQDlW4tIAgEAMAoCAQACAiEnAgH/MAcCAQACAhHaMAoCBQDlXNzIAgEA -# MDYGCisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEAAgMHoSChCjAI -# AgEAAgMBhqAwDQYJKoZIhvcNAQEFBQADgYEAXlW2j2eZXXzRoYhcD+QC2mRpleC5 -# E6pnA0+clJOqd7XHmMsYT8DEKrIXCrdX0qxal+SfLjQXk1hKQeQ/2Mq1xh7vymuF -# o//Pp799i14preetWIJLY6vdEF/1YWtAZ4n83wU3/5OuGZrVehTJrzSPTIzZt0Jh -# 4+PeQWxLkliNtB8xggQNMIIECQIBATCBkzB8MQswCQYDVQQGEwJVUzETMBEGA1UE -# CBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9z -# b2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQ -# Q0EgMjAxMAITMwAAAYguzcaBQeG8KgABAAABiDANBglghkgBZQMEAgEFAKCCAUow -# GgYJKoZIhvcNAQkDMQ0GCyqGSIb3DQEJEAEEMC8GCSqGSIb3DQEJBDEiBCAAZlzS -# rT4vVB7wRIbsGvay4ACd2gPSgT3yS7r8RrU5XTCB+gYLKoZIhvcNAQkQAi8xgeow -# gecwgeQwgb0EIGbp3u2sBjdGhIL4z+ycjtzSpe4bLV/AoYaypl7SSUClMIGYMIGA -# pH4wfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcT -# B1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UE -# AxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTACEzMAAAGILs3GgUHhvCoA -# AQAAAYgwIgQg5xrEMC2Lr6zbNCWUPA9WAnuenayj+Wj3/53a/eH2mZMwDQYJKoZI -# hvcNAQELBQAEggIAOr4i66ksCOJ3Rw8xoMzAdJVQl257tTcsAl9f6cACnWS8wb5g -# W+fRBFGeoxzjBgn34Rn0NPmfz5+vx9D314QAmjWt//l6S8hmldXyUlrixC6aOGik -# +CRaSnhf0CY2o3vBSYsYV3gJx0PSnDq6/T2B+S9TY90hvl+NgkzCNBnyLEDPgDXB -# e9XQi88hUWqZxpjaTmAI26+fr9z7AMrtnA4hxEzDbh6VGDhXKZ4F//b3E6Xj6ppB -# AJBmkEH42AnDBuFGEr2iLkKbU25t0ZuD7whLQ7CaQ8yVOppTuG4kqNbsUmIPzxtI -# wlznjxAV7nN+BrIuNmraWiBmszVsqSm1FhcZBBL3jj98szffT9zmcRKwPKlO8J88 -# mHFY0io9zXsE8Cv87ezrCIDVhbIm3gHj8dMr8tiWmo9ejacYgEZSGNBAwdku6O+G -# PZ1WsWBQ1MNLRtye9FWMqGog7yqeb/iHtJH3hH7MFLgXMVHuKjI7rcIGlWKOyTbA -# Cllth+6In3BRDC/VUiSKD6SfVYyEjKdLM3dURYi/NzUJ3tapoE4DUBYt2xZlDEGO -# j/L2KpzIlyi5MhU3YZwTkAZwSNqmPKZ+f5w6j0cOhilqTOYMmVB5OycslZv6ODcW -# pcGpnK6b2QNfFMEvtGrIvflWQC95c9hwlJ2O3Fuh5Hroza3f7PgYUmrxctU= -# SIG # End signature block diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 deleted file mode 100644 index b3dd852..0000000 --- a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 +++ /dev/null @@ -1,229 +0,0 @@ -@{ -GUID="A94C8C7E-9810-47C0-B8AF-65089C13A35A" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -FunctionsToExport = @() -CmdletsToExport="Get-Acl", "Set-Acl", "Get-PfxCertificate", "Get-Credential", "Get-ExecutionPolicy", "Set-ExecutionPolicy", "Get-AuthenticodeSignature", "Set-AuthenticodeSignature", "ConvertFrom-SecureString", "ConvertTo-SecureString", "Get-CmsMessage", "Unprotect-CmsMessage", "Protect-CmsMessage" , "New-FileCatalog" , "Test-FileCatalog" -AliasesToExport = @() -NestedModules="Microsoft.PowerShell.Security.dll" -HelpInfoURI = 'https://aka.ms/powershell72-help' -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCD++xTkW7oivoiQ -# gqU/R85f/MwSI1hVEeaegSriXP6+BqCCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgWHV5GUzu -# +l9zI1GEYPanTVvtHVRaoSkM2bZBhM+rt9YwQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQByeqL4g0Ci96GXfmQN8rvCAtpT2N0neMZ9mozeBeyF -# 5hYxQhatRKLDNrOJei542+AM9l8AmsmKtJvtE8wJUkVGZqxBSiMwv7nV1uMQgVhK -# crEIUsmJO+EStsx+gA3VyfugAElJEJtTInobbDPofwO4DS8xUBpW/OLaq3XVjRga -# JOh7s7RMx+7Gysq96jaguaW2H2llklxhsKZwf3Mdi+/5BhF8tIevEqPuk4ly1oXh -# qY4/BD0pFNygoTWMp6ecxNQM2EE1N1j3y30h36Gsk5aDMeUFrRNtFFWFF1HbrbH3 -# thOhL/rqSQkbxAR2CNSGQtzrNuLF+1/xJEHXgBNGyEWioYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIC9rz69tGAbCMg2r367oWNBEt5XvxdFCe04Dw8cQ -# hWtJAgZhlV5AOHEYEzIwMjExMjA4MjEwNDE0Ljc5MVowBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046M0JENC00QjgwLTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYm0v4YwhBxL -# jwABAAABiTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3NDFaFw0yMzAxMjYxOTI3NDFaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjNCRDQtNEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvQZXxZFm -# a6plmuOyvNpV8xONOwcYolZG/BjyZWGSk5JOGaLyrKId5VxVHWHlsmJE4Svnzsdp -# sKmVx8otONveIUFvSceEZp8VXmu5m1fu8L7c+3lwXcibjccqtEvtQslokQVx0r+L -# 54abrNDarwFG73IaRidIS1i9c+unJ8oYyhDRLrCysFAVxyQhPNZkWK7Z8/VGukaK -# LAWHXCh/+R53h42gFL+9/mAALxzCXXuofi8f/XKCm7xNwVc1hONCCz6oq94AufzV -# NkkIW4brUQgYpCcJm9U0XNmQvtropYDn9UtY8YQ0NKenXPtdgLHdQ8Nnv3igErKL -# rWI0a5n5jjdKfwk+8mvakqdZmlOseeOS1XspQNJAK1uZllAITcnQZOcO5ofjOQ33 -# ujWckAXdz+/x3o7l4AU/TSOMzGZMwhUdtVwC3dSbItpSVFgnjM2COEJ9zgCadvOi -# rGDLN471jZI2jClkjsJTdgPk343TQA4JFvds/unZq0uLr+niZ3X44OBx2x+gVlln -# 2c4UbZXNueA4yS1TJGbbJFIILAmTUA9Auj5eISGTbNiyWx79HnCOTar39QEKozm4 -# LnTmDXy0/KI/H/nYZGKuTHfckP28wQS06rD+fDS5xLwcRMCW92DkHXmtbhGyRilB -# OL5LxZelQfxt54wl4WUC0AdAEolPekODwO8CAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBSXbx+zR1p4IIAeguA6rHKkrfl7UDAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQCOtLdpWUI4KwfLLrfaKrLB92Dq -# bAspGWM41TaO4Jl+sHxPo522uu3GKQCjmkRWreHtlfyy9kOk7LWax3k3ke8Gtfet -# fbh7qH0LeV2XOWg39BOnHf6mTcZq7FYSZZch1JDQjc98+Odlow+oWih0Dbt4CV/e -# 19ZcE+1n1zzWkskUEd0f5jPIUis33p+vkY8szduAtCcIcPFUhI8Hb5alPUAPMjGz -# wKb7NIKbnf8j8cP18As5IveckF0oh1cw63RY/vPK62LDYdpi7WnG2ObvngfWVKtw -# iwTI4jHj2cO9q37HDe/PPl216gSpUZh0ap24mKmMDfcKp1N4mEdsxz4oseOrPYeF -# sHHWJFJ6Aivvqn70KTeJpp5r+DxSqbeSy0mxIUOq/lAaUxgNSQVUX26t8r+fciko -# fKv23WHrtRV3t7rVTsB9YzrRaiikmz68K5HWdt9MqULxPQPo+ppZ0LRqkOae466+ -# UKRY0JxWtdrMc5vHlHZfnqjawj/RsM2S6Q6fa9T9CnY1Nz7DYBG3yZJyCPFsrgU0 -# 5s9ljqfsSptpFdUh9R4ce+L71SWDLM2x/1MFLLHAMbXsEp8KloEGtaDULnxtfS2t -# YhfuKGqRXoEfDPAMnIdTvQPh3GHQ4SjkkBARHL0MY75alhGTKHWjC2aLVOo8obKI -# Bk8hfnFDUf/EyVw4uTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0JENC00Qjgw -# LTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVACGlCa3ketyeuey7bJNpWkMuiCcQoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tYMCIY -# DzIwMjExMjA5MDM1MTUyWhgPMjAyMTEyMTAwMzUxNTJaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi1gCAQAwCgIBAAICHvwCAf8wBwIBAAICETcwCgIFAOVc3NgC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQCbF/Q1IJzqUwQBkXn+GjUxZzVN -# O+9p1fpL7W8dEy9/m1L7dl968KiYqfO5rekvXeSUDTFYrkS/r0w8p2ZZ7d0TMtJt -# TrKmc85aRmxtSvCNAS2stE2sS2Y5np5+/02w3DDn3Nni6vvF8nsuiIlbiyHrGQrC -# 9eis1rpLSNvXisSYoDGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABibS/hjCEHEuPAAEAAAGJMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIM9O -# ao85t+tQMGnb/NodpJQMwx5JXiYYilGmLk9FSvn+MIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgZndHMdxQV1VsbpWHOTHqWEycvcRJm7cY69l/UmT8j0UwgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYm0v4YwhBxL -# jwABAAABiTAiBCCErc3WAJDL+6+RTcx4qvTV2Dv0bP6a0jmZjnUp3u9sbzANBgkq -# hkiG9w0BAQsFAASCAgCzngLNnPmqawyfurGD6pabQJgWV4nP5zle9pu9tx4c1pTi -# SKAeREqAeOs5Bcg46nHpP+Flb+4BQ68zc2JUv1p1P7OlmpKshGEd1Sgpj0izHI8E -# JW8lmMXuRudxbw/761rpDKViWtWQ1lzxhyDeqJw1tiGIAcbX7P26zcoC+jp19GlY -# DaXcIJDZM/u5UUKDtKNSBIvTX+UDfuAEAwmH37GcuHTnvm1txdDZF2DNEn9Jzj7y -# TvHglap7FeMIvo/Um4cLq8xdSJxOYbGGQ5qCdc6vIGXC8HebpR3bIPxldyKDPdpd -# LdvDD0k+rnDHmMsmgQuihIG8rDiadJ/7YtexaDNm4aYRa8PD5SabeUwi94eYZ4a7 -# 25ZkBy6FQAY13i0RgSRicx2Ryowd0Hg0DWSAfHSJc5CnL7qWNTOhwvX7wEUGbe/0 -# 1GZR+ZYiJRO83/lQAEurvVJuEZ3dKTpeJB4FOP6oIc76pL3GvW9XINxo49WiIbzl -# YEToH4oTa5F5vUCvF2Wa5tDlpa60LFSJDP1VyWCYPP+sflKLkYvG3PmXSYYbCprL -# yS0rypa9ACBp7Q2rZTa1s3j7jtNa3Fa5RZ9gAulFkUVVZ+F0Pm7aUvnRAf54+Ri6 -# aoF9G+flQpzZn8nYCRFfiqcQ9wKPA6lZBGEqzGBLAZqzsmmrSgcwVjdN6ZwqYg== -# SIG # End signature block diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 deleted file mode 100644 index 927c504..0000000 --- a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 +++ /dev/null @@ -1,248 +0,0 @@ -@{ -GUID = "1DA87E53-152B-403E-98DC-74D7B4D63D59" -Author = "PowerShell" -CompanyName = "Microsoft Corporation" -Copyright = "Copyright (c) Microsoft Corporation." -ModuleVersion = "7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion = "3.0" -CmdletsToExport = @( - 'Export-Alias', 'Get-Alias', 'Import-Alias', 'New-Alias', 'Remove-Alias', 'Set-Alias', 'Export-Clixml', 'Import-Clixml', - 'Measure-Command', 'Trace-Command', 'ConvertFrom-Csv', 'ConvertTo-Csv', 'Export-Csv', 'Import-Csv', 'Get-Culture', - 'Format-Custom', 'Get-Date', 'Set-Date', 'Write-Debug', 'Wait-Debugger', 'Register-EngineEvent', 'Write-Error', - 'Get-Event', 'New-Event', 'Remove-Event', 'Unregister-Event', 'Wait-Event', 'Get-EventSubscriber', 'Invoke-Expression', - 'Out-File', 'Unblock-File', 'Get-FileHash', 'Export-FormatData', 'Get-FormatData', 'Update-FormatData', 'New-Guid', - 'Format-Hex', 'Get-Host', 'Read-Host', 'Write-Host', 'ConvertTo-Html', 'Write-Information', 'ConvertFrom-Json', - 'ConvertTo-Json', 'Test-Json', 'Format-List', 'Import-LocalizedData', 'Send-MailMessage', 'ConvertFrom-Markdown', - 'Show-Markdown', 'Get-MarkdownOption', 'Set-MarkdownOption', 'Add-Member', 'Get-Member', 'Compare-Object', 'Group-Object', - 'Measure-Object', 'New-Object', 'Select-Object', 'Sort-Object', 'Tee-Object', 'Register-ObjectEvent', 'Write-Output', - 'Import-PowerShellDataFile', 'Write-Progress', 'Disable-PSBreakpoint', 'Enable-PSBreakpoint', 'Get-PSBreakpoint', - 'Remove-PSBreakpoint', 'Set-PSBreakpoint', 'Get-PSCallStack', 'Export-PSSession', 'Import-PSSession', 'Get-Random', - 'Invoke-RestMethod', 'Debug-Runspace', 'Get-Runspace', 'Disable-RunspaceDebug', 'Enable-RunspaceDebug', - 'Get-RunspaceDebug', 'ConvertFrom-SddlString', 'Start-Sleep', 'Join-String', 'Out-String', 'Select-String', - 'ConvertFrom-StringData', 'Format-Table', 'New-TemporaryFile', 'New-TimeSpan', 'Get-TraceSource', 'Set-TraceSource', - 'Add-Type', 'Get-TypeData', 'Remove-TypeData', 'Update-TypeData', 'Get-UICulture', 'Get-Unique', 'Get-Uptime', - 'Clear-Variable', 'Get-Variable', 'New-Variable', 'Remove-Variable', 'Set-Variable', 'Get-Verb', 'Write-Verbose', - 'Write-Warning', 'Invoke-WebRequest', 'Format-Wide', 'ConvertTo-Xml', 'Select-Xml', 'Get-Error', 'Update-List', - 'Out-GridView', 'Show-Command', 'Out-Printer' -) -FunctionsToExport = @() -AliasesToExport = @('fhx') -NestedModules = @("Microsoft.PowerShell.Commands.Utility.dll") -HelpInfoURI = 'https://aka.ms/powershell72-help' -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCBA95ukw/cTrslZ -# 8GEROXuMEYH1RJd2ZOe5U1EPFSWVsaCCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgqoEvsipU -# dEXkK33kvZSyP9Cx3IROdWp1ndiqGNS27hEwQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQBHzboagxcQ8L50vNYxDsscrvzcGeLtxdwkaQTW10v2 -# aTPJXDVIFjRwioUbqfGvtBDaq9QFgLBcV3qb5zGL0K33nlBa4+dK0AgYlbbkpnSp -# l9l3tTHoSRiKtFdmpIpsRQPXGZ5c6iGkicQNtX/D2c6SBQ++qayvldFZcU16y/4C -# IUzeFA8TYMYRJnGQRC7BG1xqAWztt+WIUGlO5kQOnuNYczbq/zvBrT5nBRwhqcQQ -# YzJRwkNf2F+G88rnBESxNxegRusbUX+v3bwsa6uxxLpSeqSDD3JasgCzS1eaTBYn -# NXGeHxHdweiG14ABsGjSbxT+wtB6eeNj0ymmsYJdm7ApoYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIIEUntqZM075d/Xv5VtLazUG/C8XTr8E5AIBTLPG -# 2f+4AgZhlV5AOGMYEzIwMjExMjA4MjEwNDE0LjMzOFowBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046M0JENC00QjgwLTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYm0v4YwhBxL -# jwABAAABiTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3NDFaFw0yMzAxMjYxOTI3NDFaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjNCRDQtNEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvQZXxZFm -# a6plmuOyvNpV8xONOwcYolZG/BjyZWGSk5JOGaLyrKId5VxVHWHlsmJE4Svnzsdp -# sKmVx8otONveIUFvSceEZp8VXmu5m1fu8L7c+3lwXcibjccqtEvtQslokQVx0r+L -# 54abrNDarwFG73IaRidIS1i9c+unJ8oYyhDRLrCysFAVxyQhPNZkWK7Z8/VGukaK -# LAWHXCh/+R53h42gFL+9/mAALxzCXXuofi8f/XKCm7xNwVc1hONCCz6oq94AufzV -# NkkIW4brUQgYpCcJm9U0XNmQvtropYDn9UtY8YQ0NKenXPtdgLHdQ8Nnv3igErKL -# rWI0a5n5jjdKfwk+8mvakqdZmlOseeOS1XspQNJAK1uZllAITcnQZOcO5ofjOQ33 -# ujWckAXdz+/x3o7l4AU/TSOMzGZMwhUdtVwC3dSbItpSVFgnjM2COEJ9zgCadvOi -# rGDLN471jZI2jClkjsJTdgPk343TQA4JFvds/unZq0uLr+niZ3X44OBx2x+gVlln -# 2c4UbZXNueA4yS1TJGbbJFIILAmTUA9Auj5eISGTbNiyWx79HnCOTar39QEKozm4 -# LnTmDXy0/KI/H/nYZGKuTHfckP28wQS06rD+fDS5xLwcRMCW92DkHXmtbhGyRilB -# OL5LxZelQfxt54wl4WUC0AdAEolPekODwO8CAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBSXbx+zR1p4IIAeguA6rHKkrfl7UDAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQCOtLdpWUI4KwfLLrfaKrLB92Dq -# bAspGWM41TaO4Jl+sHxPo522uu3GKQCjmkRWreHtlfyy9kOk7LWax3k3ke8Gtfet -# fbh7qH0LeV2XOWg39BOnHf6mTcZq7FYSZZch1JDQjc98+Odlow+oWih0Dbt4CV/e -# 19ZcE+1n1zzWkskUEd0f5jPIUis33p+vkY8szduAtCcIcPFUhI8Hb5alPUAPMjGz -# wKb7NIKbnf8j8cP18As5IveckF0oh1cw63RY/vPK62LDYdpi7WnG2ObvngfWVKtw -# iwTI4jHj2cO9q37HDe/PPl216gSpUZh0ap24mKmMDfcKp1N4mEdsxz4oseOrPYeF -# sHHWJFJ6Aivvqn70KTeJpp5r+DxSqbeSy0mxIUOq/lAaUxgNSQVUX26t8r+fciko -# fKv23WHrtRV3t7rVTsB9YzrRaiikmz68K5HWdt9MqULxPQPo+ppZ0LRqkOae466+ -# UKRY0JxWtdrMc5vHlHZfnqjawj/RsM2S6Q6fa9T9CnY1Nz7DYBG3yZJyCPFsrgU0 -# 5s9ljqfsSptpFdUh9R4ce+L71SWDLM2x/1MFLLHAMbXsEp8KloEGtaDULnxtfS2t -# YhfuKGqRXoEfDPAMnIdTvQPh3GHQ4SjkkBARHL0MY75alhGTKHWjC2aLVOo8obKI -# Bk8hfnFDUf/EyVw4uTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0JENC00Qjgw -# LTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVACGlCa3ketyeuey7bJNpWkMuiCcQoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tYMCIY -# DzIwMjExMjA5MDM1MTUyWhgPMjAyMTEyMTAwMzUxNTJaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi1gCAQAwCgIBAAICHvwCAf8wBwIBAAICETcwCgIFAOVc3NgC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQCbF/Q1IJzqUwQBkXn+GjUxZzVN -# O+9p1fpL7W8dEy9/m1L7dl968KiYqfO5rekvXeSUDTFYrkS/r0w8p2ZZ7d0TMtJt -# TrKmc85aRmxtSvCNAS2stE2sS2Y5np5+/02w3DDn3Nni6vvF8nsuiIlbiyHrGQrC -# 9eis1rpLSNvXisSYoDGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABibS/hjCEHEuPAAEAAAGJMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEINjr -# jaYjHvF5zcuiSPmsJnfGwWcQHYP/2CYeqIoTLbM/MIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgZndHMdxQV1VsbpWHOTHqWEycvcRJm7cY69l/UmT8j0UwgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYm0v4YwhBxL -# jwABAAABiTAiBCCErc3WAJDL+6+RTcx4qvTV2Dv0bP6a0jmZjnUp3u9sbzANBgkq -# hkiG9w0BAQsFAASCAgBlISYxvNqg3TVBqRooVDAWRo+EMXUl4mBMwOvnI755iHjz -# ksXBl+FBaJdTbgfrrbkqVuTFgjnA7/1hzx8FuYRnz7aS7yWbUamn2DKeVHfcmL4w -# luTTDqklOtM/LNUOi2iRHQHG2+bi8OvJIavShvbjjv9telA3MY+ONzP+2t7H2ESf -# 7Sht+eH7Il5Wc9p2QB1o2iMaRK+TZoE1petI8ZxSJn0F6rFdBGIOI1mhNaZTZGuk -# UVAe9v6kd5k9BQZ1mfLCVf+A86Ul66fvrwAtETiuFMWYQhbnRWRLElWVUA/3zIS4 -# MVVyPlFjINt2m980WlIgHkt+K+cSbEtIUZ4Scpt/Tf9K0Kd2PEV+2z5n7xbwDPhy -# uczGyZm+0/NH6HDWrr74wX7+UJQzHGU7cP6yIDk/MJF5+E6ahKx6XfJYB2TK28qi -# K0g2HqkFhgS6zvnoNZNpWd28UKH9TLZIyWY9I7jKEMxP6jLzPugPYsL8pxvJLsAI -# /vn5Go+lLdNHUykJgB2ChUKsm3x1aUrSpGiW8UJ5xUiJ5RB1nFfUv0AWHcouYl92 -# FJhWIn3qaZExP6R7NijbAMyoYChcDgPrOGseESmfGZuVFbhE7gMai1VIRCLnmBoK -# Der+JOgsWW/eHU9nN5uuyP6uqtP01F5eayK++qjH+B9xQAJNq79RVXVvyaNZlw== -# SIG # End signature block diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1 b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1 deleted file mode 100644 index a370f4c..0000000 --- a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1 +++ /dev/null @@ -1,230 +0,0 @@ -@{ -GUID="766204A6-330E-4263-A7AB-46C87AFC366C" -Author="PowerShell" -CompanyName="Microsoft Corporation" -Copyright="Copyright (c) Microsoft Corporation." -ModuleVersion="7.0.0.0" -CompatiblePSEditions = @("Core") -PowerShellVersion="3.0" -FunctionsToExport = @() -CmdletsToExport="Disable-WSManCredSSP", "Enable-WSManCredSSP", "Get-WSManCredSSP", "Set-WSManQuickConfig", "Test-WSMan", "Invoke-WSManAction", "Connect-WSMan", "Disconnect-WSMan", "Get-WSManInstance", "Set-WSManInstance", "Remove-WSManInstance", "New-WSManInstance", "New-WSManSessionOption" -AliasesToExport = @() -NestedModules="Microsoft.WSMan.Management.dll" -FormatsToProcess="WSMan.format.ps1xml" -HelpInfoURI = 'https://aka.ms/powershell72-help' -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCB+Ujs/uIRQu9NJ -# wrRJEY/iIf48rrMaCNk+CtkIzIqDVqCCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgypxuMQwq -# 1eGPEmRm52ViV1FEshB3MTFlVOkKoUKOQmgwQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQBwQLkeEMe+dK/nBzeh5yKFRrxpey/F+58vzZS97hfh -# rOZPhi6B29T/8kJqtTW8EVhdy+XNARi5JYKvFt6cO1TFJlb9H6ncq7TAYPV6ue/R -# 1CmnXltjWiRYZAibhN3Y7Yq+pnqIskQb8LI499I2Sg8JLuvRXBYqUb6F4wZ/vgH2 -# Vz/dHRgonqNkI94s5mOFXG0TX3/JzQD+xj3NWFNeOUCLsQQ0k7EA2pcF9odFgyNS -# QY0KGk3Bu+KcQUxmPdbgtIoM1ebLvINLR3mpD6xeWuusLS2NXX/7x3otBPyC17R2 -# hjh5a4lKYQH16inEdSg6jGkMXymnKOPRAmXZnFI9FET1oYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIGqYa00kDq7cefzR97imqg4FhBGef4q3IvGpky5C -# NPnvAgZhlV5AOG4YEzIwMjExMjA4MjEwNDE0LjYwN1owBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046M0JENC00QjgwLTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYm0v4YwhBxL -# jwABAAABiTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3NDFaFw0yMzAxMjYxOTI3NDFaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjNCRDQtNEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvQZXxZFm -# a6plmuOyvNpV8xONOwcYolZG/BjyZWGSk5JOGaLyrKId5VxVHWHlsmJE4Svnzsdp -# sKmVx8otONveIUFvSceEZp8VXmu5m1fu8L7c+3lwXcibjccqtEvtQslokQVx0r+L -# 54abrNDarwFG73IaRidIS1i9c+unJ8oYyhDRLrCysFAVxyQhPNZkWK7Z8/VGukaK -# LAWHXCh/+R53h42gFL+9/mAALxzCXXuofi8f/XKCm7xNwVc1hONCCz6oq94AufzV -# NkkIW4brUQgYpCcJm9U0XNmQvtropYDn9UtY8YQ0NKenXPtdgLHdQ8Nnv3igErKL -# rWI0a5n5jjdKfwk+8mvakqdZmlOseeOS1XspQNJAK1uZllAITcnQZOcO5ofjOQ33 -# ujWckAXdz+/x3o7l4AU/TSOMzGZMwhUdtVwC3dSbItpSVFgnjM2COEJ9zgCadvOi -# rGDLN471jZI2jClkjsJTdgPk343TQA4JFvds/unZq0uLr+niZ3X44OBx2x+gVlln -# 2c4UbZXNueA4yS1TJGbbJFIILAmTUA9Auj5eISGTbNiyWx79HnCOTar39QEKozm4 -# LnTmDXy0/KI/H/nYZGKuTHfckP28wQS06rD+fDS5xLwcRMCW92DkHXmtbhGyRilB -# OL5LxZelQfxt54wl4WUC0AdAEolPekODwO8CAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBSXbx+zR1p4IIAeguA6rHKkrfl7UDAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQCOtLdpWUI4KwfLLrfaKrLB92Dq -# bAspGWM41TaO4Jl+sHxPo522uu3GKQCjmkRWreHtlfyy9kOk7LWax3k3ke8Gtfet -# fbh7qH0LeV2XOWg39BOnHf6mTcZq7FYSZZch1JDQjc98+Odlow+oWih0Dbt4CV/e -# 19ZcE+1n1zzWkskUEd0f5jPIUis33p+vkY8szduAtCcIcPFUhI8Hb5alPUAPMjGz -# wKb7NIKbnf8j8cP18As5IveckF0oh1cw63RY/vPK62LDYdpi7WnG2ObvngfWVKtw -# iwTI4jHj2cO9q37HDe/PPl216gSpUZh0ap24mKmMDfcKp1N4mEdsxz4oseOrPYeF -# sHHWJFJ6Aivvqn70KTeJpp5r+DxSqbeSy0mxIUOq/lAaUxgNSQVUX26t8r+fciko -# fKv23WHrtRV3t7rVTsB9YzrRaiikmz68K5HWdt9MqULxPQPo+ppZ0LRqkOae466+ -# UKRY0JxWtdrMc5vHlHZfnqjawj/RsM2S6Q6fa9T9CnY1Nz7DYBG3yZJyCPFsrgU0 -# 5s9ljqfsSptpFdUh9R4ce+L71SWDLM2x/1MFLLHAMbXsEp8KloEGtaDULnxtfS2t -# YhfuKGqRXoEfDPAMnIdTvQPh3GHQ4SjkkBARHL0MY75alhGTKHWjC2aLVOo8obKI -# Bk8hfnFDUf/EyVw4uTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0JENC00Qjgw -# LTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVACGlCa3ketyeuey7bJNpWkMuiCcQoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tYMCIY -# DzIwMjExMjA5MDM1MTUyWhgPMjAyMTEyMTAwMzUxNTJaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi1gCAQAwCgIBAAICHvwCAf8wBwIBAAICETcwCgIFAOVc3NgC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQCbF/Q1IJzqUwQBkXn+GjUxZzVN -# O+9p1fpL7W8dEy9/m1L7dl968KiYqfO5rekvXeSUDTFYrkS/r0w8p2ZZ7d0TMtJt -# TrKmc85aRmxtSvCNAS2stE2sS2Y5np5+/02w3DDn3Nni6vvF8nsuiIlbiyHrGQrC -# 9eis1rpLSNvXisSYoDGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABibS/hjCEHEuPAAEAAAGJMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIN1F -# wmeehZy4wMNXqLnULVbk4oVsB3cWo9ryHOQxmYoPMIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgZndHMdxQV1VsbpWHOTHqWEycvcRJm7cY69l/UmT8j0UwgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYm0v4YwhBxL -# jwABAAABiTAiBCCErc3WAJDL+6+RTcx4qvTV2Dv0bP6a0jmZjnUp3u9sbzANBgkq -# hkiG9w0BAQsFAASCAgAWjRg7KzoR7Kd4cPnoMh490c1gOoabocbdzphBISFn24S4 -# Nomokt8QSkLypqSgMe0FQyCku8urnNIhX6CA1FObkCe+DFM9FFaOHNY3Lqv4oVGW -# O2nCjMXPxj8FMZM7UyZB11zPMhPHaleWP0UQPuqEf/d6V8vbh23OyZ9RfYUKft+m -# zKsR+gnqKtrmAuqLSrwoo/6JvgchTRqV+ODeDc1l3JfbhQW+6hFryB3RSAau+Msg -# n/QwOqIYCYJl/t7kV/Ze7WF97Kc294zbuRT4LTMccfms19oeACHoZpU2H7JWSEZn -# MTMnaEVlM+9ylAgC4wxiEsXlJCI5K167HTpkfR3/9/4hJo+5Pmacd0HQjpP6zDqw -# a8sveaOAmaI0eRC6ByG00sBwPmbRTRvDA4Dc2b3bKqINgkZpM7/NFmclkho4jvF0 -# XJ4jk/Ul2rvaQtTrWY0ZCITR79XpLpRZMukTFTybSZrE+bERy3eK/KNee4Wbt6wz -# 86sci4DvgqPc1nBsX0Y5iWhiPA2I9rXH36iH7ZI7D/I4+0qEWLxfsLNTUthwb8Zg -# 1ukHkIyEk14gOar+Exf4MRZ8slf1518X2zoCj6ZeYfXB8pRz/+N7w8rEtbKCjX+U -# dyI16Oy8vNwWWZRdoG6e2rMmvDDSTz34db1DymXU+a92+q/qcwFAkl1dPVTn5Q== -# SIG # End signature block diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml deleted file mode 100644 index 8907c23..0000000 --- a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml +++ /dev/null @@ -1,451 +0,0 @@ - - - - - - - System.Xml.XmlElement#http://schemas.dmtf.org/wbem/wsman/identity/1/wsmanidentity.xsd#IdentifyResponse - - System.Xml.XmlElement#http://schemas.dmtf.org/wbem/wsman/identity/1/wsmanidentity.xsd#IdentifyResponse - - - - - - - wsmid - - - ProtocolVersion - - - ProductVendor - - - ProductVersion - - - - - - - - Microsoft.WSMan.Management.WSManConfigElement - - Microsoft.WSMan.Management.WSManConfigElement - - - PSParentPath - - - - - - - 15 - - - - 30 - - - - - - - TypeNameOfElement - - - Name - - - - - - - - Microsoft.WSMan.Management.WSManConfigContainerElement - - Microsoft.WSMan.Management.WSManConfigContainerElement - - - PSParentPath - - - - - - - 15 - - - - 35 - - - - - - - - - - TypeNameOfElement - - - Keys - - - Name - - - - - - - - Microsoft.WSMan.Management.WSManConfigLeafElement - - Microsoft.WSMan.Management.WSManConfigLeafElement - - - PSParentPath - - - - - - - 15 - - - - 30 - - - - 15 - - - - - - - - - - TypeNameOfElement - - - Name - - - SourceOfValue - - - Value - - - - - - - - Microsoft.WSMan.Management.WSManConfigLeafElement#InitParams - - Microsoft.WSMan.Management.WSManConfigLeafElement#InitParams - - - PSParentPath - - - - - - - 30 - - - - 20 - - - - - - - Name - - - Value - - - - - - - - Microsoft.WSMan.Management.WSManConfigContainerElement#ComputerLevel - - Microsoft.WSMan.Management.WSManConfigContainerElement#ComputerLevel - - - PSParentPath - - - - - - - 45 - - - - 20 - - - - - - - Name - - - TypeNameOfElement - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psd1 b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psd1 deleted file mode 100644 index 626dc3a..0000000 --- a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psd1 +++ /dev/null @@ -1,207 +0,0 @@ -@{ - GUID="c61d6278-02a3-4618-ae37-a524d40a7f44 " - Author="PowerShell" - CompanyName="Microsoft Corporation" - Copyright="Copyright (c) Microsoft Corporation." - ModuleVersion="7.0.0.0" - CompatiblePSEditions = @("Core") - PowerShellVersion="3.0" - ModuleToProcess="PSDiagnostics.psm1" - FunctionsToExport="Disable-PSTrace","Disable-PSWSManCombinedTrace","Disable-WSManTrace","Enable-PSTrace","Enable-PSWSManCombinedTrace","Enable-WSManTrace","Get-LogProperties","Set-LogProperties","Start-Trace","Stop-Trace" - CmdletsToExport = @() - AliasesToExport = @() - HelpInfoUri="https://aka.ms/powershell72-help" -} - -# SIG # Begin signature block -# MIIjkQYJKoZIhvcNAQcCoIIjgjCCI34CAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCD/dfsIexbywzf4 -# vgDANLKxbLCeK+0wW4ZnFQP22V0sXqCCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIVZjCCFWICAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgoT0Qfn6u -# IFQn6DGWcQzw34/4HzFrnEYbuu3YQlqVoaQwQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQCt/xkRVxP7BXqiUQi+IuzI0bokgJJBF15CLUb5UcOl -# ojrCl4Rx34i0hAAoWt5uOvUG37LQEGnKm5DEgRwG5d+R8SHjAZxk83VzPAg9c7S/ -# GLe8AdcLJ4L5rjGb5YReU+eIPGNvrcZu8JYN2dlBO1nY6axLwonRTpQj43J7wrWd -# InSCbV8CnUfK4/lgftJ5P7SCNLe7Enjv8dQOahg3B4BMReQxHm/SZWgSGb8t++wI -# ZWCw6sRh+XjE63P3VzhAp8Z8KOR3TSCE4Bt5tfy8xDbmePlVrK3GKoVVq4RkVn96 -# 4TRCHvs3RZTQm57yJ2NplI10zIqZz2geZRns5nVGDHcYoYIS8DCCEuwGCisGAQQB -# gjcDAwExghLcMIIS2AYJKoZIhvcNAQcCoIISyTCCEsUCAQMxDzANBglghkgBZQME -# AgEFADCCAVQGCyqGSIb3DQEJEAEEoIIBQwSCAT8wggE7AgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIG5NKJe+omftR+S4BYKgAMTO7Tl6rem9xPJkoE7D -# yZYZAgZhk97zjjgYEjIwMjExMjA4MjEwNDE0Ljg2WjAEgAIB9KCB1KSB0TCBzjEL -# MAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1v -# bmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEpMCcGA1UECxMgTWlj -# cm9zb2Z0IE9wZXJhdGlvbnMgUHVlcnRvIFJpY28xJjAkBgNVBAsTHVRoYWxlcyBU -# U1MgRVNOOjMyQkQtRTNENS0zQjFEMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1T -# dGFtcCBTZXJ2aWNloIIORDCCBPUwggPdoAMCAQICEzMAAAFi0P4C8wHlzUkAAAAA -# AWIwDQYJKoZIhvcNAQELBQAwfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hp -# bmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jw -# b3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAw -# HhcNMjEwMTE0MTkwMjIyWhcNMjIwNDExMTkwMjIyWjCBzjELMAkGA1UEBhMCVVMx -# EzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoT -# FU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEpMCcGA1UECxMgTWljcm9zb2Z0IE9wZXJh -# dGlvbnMgUHVlcnRvIFJpY28xJjAkBgNVBAsTHVRoYWxlcyBUU1MgRVNOOjMyQkQt -# RTNENS0zQjFEMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNl -# MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA74ah1Pa5wvcyvYNCy/YQ -# s1tK8rIGlh1Qq1QFaJmYVXLXykb+m5yCStzmL227wJjsalZX8JA2YcbaZV5Icwm9 -# vAJz8AC/sk/dsUK3pmDvkhtVI04YDV6otuZCILpQB9Ipcs3d0e1Dl2KKFvdibOk0 -# /0rRxU9l+/Yxeb5lVTRERLxzI+Rd6Xv5QQYT6Sp2IE0N1vzIFd3yyO773T5XifNg -# L5lZbtIUnYUVmUBKlVoemO/54aiFeVBpIG+YzhDTF7cuHNAzxWIbP1wt4VIqAV9J -# juqLMvvBSD56pi8NTKM9fxrERAeaTS2HbfBYfmnRZ27Czjeo0ijQ5DSZGi0ErvWf -# KQIDAQABo4IBGzCCARcwHQYDVR0OBBYEFMvEShFgSkO3OnzgHlaVk3aQ/iprMB8G -# A1UdIwQYMBaAFNVjOlyKMZDzQ3t8RhvFM2hahW1VMFYGA1UdHwRPME0wS6BJoEeG -# RWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Rp -# bVN0YVBDQV8yMDEwLTA3LTAxLmNybDBaBggrBgEFBQcBAQROMEwwSgYIKwYBBQUH -# MAKGPmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljVGltU3Rh -# UENBXzIwMTAtMDctMDEuY3J0MAwGA1UdEwEB/wQCMAAwEwYDVR0lBAwwCgYIKwYB -# BQUHAwgwDQYJKoZIhvcNAQELBQADggEBAC1BrcOhdhtb9xcAJtxVIUZ7iALwZewX -# FIdPcmDAVT810k5xuRwVNW9Onq+WZO8ebqwiOSdEEHReLU0FOo/DbS7q79PsKdz/ -# PSBPqZ/1ysjRVH0L5HUK2N7NgpkR1lnt+41BaOzJ+00OFDL5GqeqvK3RWh7MtqWF -# 6KKcfNkP/hjiFlg9/S7xNK/Vl8q10HB5YbdBTQun8j1Jsih6YMb3tFQsxw++ra5+ -# FSnc4yJhAYvVaqTKRKepEmwzYhwDiXh2ag80/p0uDkOvs1WhgogwidpBVmNLAMxm -# FavK9+LNfRKvPIuCQw+EsxWR8vFBBJDfs14WTsXVF94CQ1YCHqYI5EEwggZxMIIE -# WaADAgECAgphCYEqAAAAAAACMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJV -# UzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UE -# ChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9v -# dCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgMjAxMDAeFw0xMDA3MDEyMTM2NTVaFw0y -# NTA3MDEyMTQ2NTVaMHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9u -# MRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRp -# b24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwMIIBIjAN -# BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqR0NvHcRijog7PwTl/X6f2mUa3RU -# ENWlCgCChfvtfGhLLF/Fw+Vhwna3PmYrW/AVUycEMR9BGxqVHc4JE458YTBZsTBE -# D/FgiIRUQwzXTbg4CLNC3ZOs1nMwVyaCo0UN0Or1R4HNvyRgMlhgRvJYR4YyhB50 -# YWeRX4FUsc+TTJLBxKZd0WETbijGGvmGgLvfYfxGwScdJGcSchohiq9LZIlQYrFd -# /XcfPfBXday9ikJNQFHRD5wGPmd/9WbAA5ZEfu/QS/1u5ZrKsajyeioKMfDaTgaR -# togINeh4HLDpmc085y9Euqf03GS9pAHBIAmTeM38vMDJRF1eFpwBBU8iTQIDAQAB -# o4IB5jCCAeIwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFNVjOlyKMZDzQ3t8 -# RhvFM2hahW1VMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB -# hjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFNX2VsuP6KJcYmjRPZSQW9fO -# mhjEMFYGA1UdHwRPME0wS6BJoEeGRWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w -# a2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNybDBaBggr -# BgEFBQcBAQROMEwwSgYIKwYBBQUHMAKGPmh0dHA6Ly93d3cubWljcm9zb2Z0LmNv -# bS9wa2kvY2VydHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYtMjMuY3J0MIGgBgNVHSAB -# Af8EgZUwgZIwgY8GCSsGAQQBgjcuAzCBgTA9BggrBgEFBQcCARYxaHR0cDovL3d3 -# dy5taWNyb3NvZnQuY29tL1BLSS9kb2NzL0NQUy9kZWZhdWx0Lmh0bTBABggrBgEF -# BQcCAjA0HjIgHQBMAGUAZwBhAGwAXwBQAG8AbABpAGMAeQBfAFMAdABhAHQAZQBt -# AGUAbgB0AC4gHTANBgkqhkiG9w0BAQsFAAOCAgEAB+aIUQ3ixuCYP4FxAz2do6Eh -# b7Prpsz1Mb7PBeKp/vpXbRkws8LFZslq3/Xn8Hi9x6ieJeP5vO1rVFcIK1GCRBL7 -# uVOMzPRgEop2zEBAQZvcXBf/XPleFzWYJFZLdO9CEMivv3/Gf/I3fVo/HPKZeUqR -# UgCvOA8X9S95gWXZqbVr5MfO9sp6AG9LMEQkIjzP7QOllo9ZKby2/QThcJ8ySif9 -# Va8v/rbljjO7Yl+a21dA6fHOmWaQjP9qYn/dxUoLkSbiOewZSnFjnXshbcOco6I8 -# +n99lmqQeKZt0uGc+R38ONiU9MalCpaGpL2eGq4EQoO4tYCbIjggtSXlZOz39L9+ -# Y1klD3ouOVd2onGqBooPiRa6YacRy5rYDkeagMXQzafQ732D8OE7cQnfXXSYIghh -# 2rBQHm+98eEA3+cxB6STOvdlR3jo+KhIq/fecn5ha293qYHLpwmsObvsxsvYgrRy -# zR30uIUBHoD7G4kqVDmyW9rIDVWZeodzOwjmmC3qjeAzLhIp9cAvVCch98isTtoo -# uLGp25ayp0Kiyc8ZQU3ghvkqmqMRZjDTu3QyS99je/WZii8bxyGvWbWu3EQ8l1Bx -# 16HSxVXjad5XwdHeMMD9zOZN+w2/XU/pnR4ZOC+8z1gFLu8NoFA12u8JJxzVs341 -# Hgi62jbb01+P3nSISRKhggLSMIICOwIBATCB/KGB1KSB0TCBzjELMAkGA1UEBhMC -# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV -# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEpMCcGA1UECxMgTWljcm9zb2Z0IE9w -# ZXJhdGlvbnMgUHVlcnRvIFJpY28xJjAkBgNVBAsTHVRoYWxlcyBUU1MgRVNOOjMy -# QkQtRTNENS0zQjFEMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2 -# aWNloiMKAQEwBwYFKw4DAhoDFQCas/oKGtvPRrHuznufk+indULyDKCBgzCBgKR+ -# MHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMT -# HU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwMA0GCSqGSIb3DQEBBQUAAgUA -# 5Vtd4DAiGA8yMDIxMTIwODIwMzc1MloYDzIwMjExMjA5MjAzNzUyWjB3MD0GCisG -# AQQBhFkKBAExLzAtMAoCBQDlW13gAgEAMAoCAQACAiXlAgH/MAcCAQACAhIPMAoC -# BQDlXK9gAgEAMDYGCisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEA -# AgMHoSChCjAIAgEAAgMBhqAwDQYJKoZIhvcNAQEFBQADgYEAM2SMFWUY36bc2OtE -# Rp28goB1/JaCRplwIWPeW6MSG1c3i2g4X2GIc4vvRrc834fuuJ+Qm07NFeRHQA61 -# lJAHbTlZBMdkDILSVP+20NGOy6B3k5K1WMfGN0Et9EQJpvfEJaB2F4d+LCCNd/MM -# dXEvG2iFxgW3C4TCWZENGlxsa5ExggMNMIIDCQIBATCBkzB8MQswCQYDVQQGEwJV -# UzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UE -# ChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGlt -# ZS1TdGFtcCBQQ0EgMjAxMAITMwAAAWLQ/gLzAeXNSQAAAAABYjANBglghkgBZQME -# AgEFAKCCAUowGgYJKoZIhvcNAQkDMQ0GCyqGSIb3DQEJEAEEMC8GCSqGSIb3DQEJ -# BDEiBCB66+Xkbn3ewO+BRQNGeKLsT3CZTxRw6oyH+Hqt0XKBjzCB+gYLKoZIhvcN -# AQkQAi8xgeowgecwgeQwgb0EIIqqGJX7PA0OulTsNEHsyLnvGLoYE1iwaOBmqrap -# UwoyMIGYMIGApH4wfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24x -# EDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlv -# bjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTACEzMAAAFi -# 0P4C8wHlzUkAAAAAAWIwIgQgPmj2PBaeW66dmUvg/M3GbG9dSU9ROIZo6V1zy7iW -# 604wDQYJKoZIhvcNAQELBQAEggEA6MvaPUzarjssGW9T9f6ohr8y3PWDaJKtB/jB -# siPN63Ektk0b2P1aJLd+FV3f3m4dq25TfYZEIliZtog2M9YOce/24reMnhBbyWwO -# tVGurL4kJQ2+z3qsASFQvZxc4O2NVFQDyyued5Y4+imuQGM3u4TOo5DSTCsvqw89 -# P5J99wB5W9hifpU65qjBROE+LNY6aMF0bIGeDbqb0m9cPe8JE2gZN+SMQQ9kzTUm -# eLAuoyvdm6wGrsx8/xgC2XFHA47DLev3lgUfx6FczxiRna/aI6Y8oqY+Z/R5Vd/L -# vZwZYPSInN7G2gVwJV9/VzLkLQ5hjDJrDMAyZ1smJnQAdnVlLg== -# SIG # End signature block diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psm1 b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psm1 deleted file mode 100644 index f4c16f0..0000000 --- a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psm1 +++ /dev/null @@ -1,663 +0,0 @@ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. - -<# - PowerShell Diagnostics Module - This module contains a set of wrapper scripts that - enable a user to use ETW tracing in Windows - PowerShell. - #> - -$script:Logman="$env:windir\system32\logman.exe" -$script:wsmanlogfile = "$env:windir\system32\wsmtraces.log" -$script:wsmprovfile = "$env:windir\system32\wsmtraceproviders.txt" -$script:wsmsession = "wsmlog" -$script:pssession = "PSTrace" -$script:psprovidername="Microsoft-Windows-PowerShell" -$script:wsmprovidername = "Microsoft-Windows-WinRM" -$script:oplog = "/Operational" -$script:analyticlog="/Analytic" -$script:debuglog="/Debug" -$script:wevtutil="$env:windir\system32\wevtutil.exe" -$script:slparam = "sl" -$script:glparam = "gl" - -function Start-Trace -{ - Param( - [Parameter(Mandatory=$true, - Position=0)] - [string] - $SessionName, - [Parameter(Position=1)] - [ValidateNotNullOrEmpty()] - [string] - $OutputFilePath, - [Parameter(Position=2)] - [ValidateNotNullOrEmpty()] - [string] - $ProviderFilePath, - [Parameter()] - [Switch] - $ETS, - [Parameter()] - [ValidateSet("bin", "bincirc", "csv", "tsv", "sql")] - $Format, - [Parameter()] - [int] - $MinBuffers=0, - [Parameter()] - [int] - $MaxBuffers=256, - [Parameter()] - [int] - $BufferSizeInKB = 0, - [Parameter()] - [int] - $MaxLogFileSizeInMB=0 - ) - - Process - { - $executestring = " start $SessionName" - - if ($ETS) - { - $executestring += " -ets" - } - - if ($null -ne $OutputFilePath) - { - $executestring += " -o ""$OutputFilePath""" - } - - if ($null -ne $ProviderFilePath) - { - $executestring += " -pf ""$ProviderFilePath""" - } - - if ($null -ne $Format) - { - $executestring += " -f $Format" - } - - if ($MinBuffers -ne 0 -or $MaxBuffers -ne 256) - { - $executestring += " -nb $MinBuffers $MaxBuffers" - } - - if ($BufferSizeInKB -ne 0) - { - $executestring += " -bs $BufferSizeInKB" - } - - if ($MaxLogFileSizeInMB -ne 0) - { - $executestring += " -max $MaxLogFileSizeInMB" - } - - & $script:Logman $executestring.Split(" ") - } -} - -function Stop-Trace -{ - param( - [Parameter(Mandatory=$true, - Position=0)] - $SessionName, - [Parameter()] - [switch] - $ETS - ) - - Process - { - if ($ETS) - { - & $script:Logman update $SessionName -ets - & $script:Logman stop $SessionName -ets - } - else - { - & $script:Logman update $SessionName - & $script:Logman stop $SessionName - } - } -} - -function Enable-WSManTrace -{ - - # winrm - "{04c6e16d-b99f-4a3a-9b3e-b8325bbc781e} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii - - # winrsmgr - "{c0a36be8-a515-4cfa-b2b6-2676366efff7} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - # WinrsExe - "{f1cab2c0-8beb-4fa2-90e1-8f17e0acdd5d} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - # WinrsCmd - "{03992646-3dfe-4477-80e3-85936ace7abb} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - # IPMIPrv - "{651d672b-e11f-41b7-add3-c2f6a4023672} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - #IpmiDrv - "{D5C6A3E9-FA9C-434e-9653-165B4FC869E4} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - # WSManProvHost - "{6e1b64d7-d3be-4651-90fb-3583af89d7f1} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - # Event Forwarding - "{6FCDF39A-EF67-483D-A661-76D715C6B008} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append - - Start-Trace -SessionName $script:wsmsession -ETS -OutputFilePath $script:wsmanlogfile -Format bincirc -MinBuffers 16 -MaxBuffers 256 -BufferSizeInKB 64 -MaxLogFileSizeInMB 256 -ProviderFilePath $script:wsmprovfile -} - -function Disable-WSManTrace -{ - Stop-Trace $script:wsmsession -ETS -} - -function Enable-PSWSManCombinedTrace -{ - param ( - [switch] $DoNotOverwriteExistingTrace - ) - - $provfile = [io.path]::GetTempFilename() - - $traceFileName = [string][Guid]::NewGuid() - if ($DoNotOverwriteExistingTrace) { - $fileName = [string][guid]::newguid() - $logfile = $PSHOME + "\\Traces\\PSTrace_$fileName.etl" - } else { - $logfile = $PSHOME + "\\Traces\\PSTrace.etl" - } - - "Microsoft-Windows-PowerShell 0 5" | Out-File $provfile -Encoding ascii - "Microsoft-Windows-WinRM 0 5" | Out-File $provfile -Encoding ascii -Append - - if (!(Test-Path $PSHOME\Traces)) - { - New-Item -ItemType Directory -Force $PSHOME\Traces | Out-Null - } - - if (Test-Path $logfile) - { - Remove-Item -Force $logfile | Out-Null - } - - Start-Trace -SessionName $script:pssession -OutputFilePath $logfile -ProviderFilePath $provfile -ETS - - Remove-Item $provfile -Force -ea 0 -} - -function Disable-PSWSManCombinedTrace -{ - Stop-Trace -SessionName $script:pssession -ETS -} - -function Set-LogProperties -{ - param( - [Parameter(Mandatory=$true, Position=0, ValueFromPipeline=$true)] - [Microsoft.PowerShell.Diagnostics.LogDetails] - $LogDetails, - [switch] $Force - ) - - Process - { - if ($LogDetails.AutoBackup -and !$LogDetails.Retention) - { - throw (New-Object System.InvalidOperationException) - } - - $enabled = $LogDetails.Enabled.ToString() - $retention = $LogDetails.Retention.ToString() - $autobackup = $LogDetails.AutoBackup.ToString() - $maxLogSize = $LogDetails.MaxLogSize.ToString() - $osVersion = [Version] (Get-CimInstance Win32_OperatingSystem).Version - - if (($LogDetails.Type -eq "Analytic") -or ($LogDetails.Type -eq "Debug")) - { - if ($LogDetails.Enabled) - { - if($osVersion -lt 6.3.7600) - { - & $script:wevtutil $script:slparam $LogDetails.Name -e:$Enabled - } - else - { - & $script:wevtutil /q:$Force $script:slparam $LogDetails.Name -e:$Enabled - } - } - else - { - if($osVersion -lt 6.3.7600) - { - & $script:wevtutil $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ms:$MaxLogSize - } - else - { - & $script:wevtutil /q:$Force $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ms:$MaxLogSize - } - } - } - else - { - if($osVersion -lt 6.3.7600) - { - & $script:wevtutil $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ab:$AutoBackup -ms:$MaxLogSize - } - else - { - & $script:wevtutil /q:$Force $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ab:$AutoBackup -ms:$MaxLogSize - } - } - } -} - -function ConvertTo-Bool([string]$value) -{ - if ($value -ieq "true") - { - return $true - } - else - { - return $false - } -} - -function Get-LogProperties -{ - param( - [Parameter(Mandatory=$true, ValueFromPipeline=$true, Position=0)] $Name - ) - - Process - { - $details = & $script:wevtutil $script:glparam $Name - $indexes = @(1,2,8,9,10) - $value = @() - foreach($index in $indexes) - { - $value += @(($details[$index].SubString($details[$index].IndexOf(":")+1)).Trim()) - } - - $enabled = ConvertTo-Bool $value[0] - $retention = ConvertTo-Bool $value[2] - $autobackup = ConvertTo-Bool $value[3] - - New-Object Microsoft.PowerShell.Diagnostics.LogDetails $Name, $enabled, $value[1], $retention, $autobackup, $value[4] - } -} - -function Enable-PSTrace -{ - param( - [switch] $Force, - [switch] $AnalyticOnly - ) - - $Properties = Get-LogProperties ($script:psprovidername + $script:analyticlog) - - if (!$Properties.Enabled) { - $Properties.Enabled = $true - if ($Force) { - Set-LogProperties $Properties -Force - } else { - Set-LogProperties $Properties - } - } - - if (!$AnalyticOnly) { - $Properties = Get-LogProperties ($script:psprovidername + $script:debuglog) - if (!$Properties.Enabled) { - $Properties.Enabled = $true - if ($Force) { - Set-LogProperties $Properties -Force - } else { - Set-LogProperties $Properties - } - } - } -} - -function Disable-PSTrace -{ - param( - [switch] $AnalyticOnly - ) - $Properties = Get-LogProperties ($script:psprovidername + $script:analyticlog) - if ($Properties.Enabled) { - $Properties.Enabled = $false - Set-LogProperties $Properties - } - - if (!$AnalyticOnly) { - $Properties = Get-LogProperties ($script:psprovidername + $script:debuglog) - if ($Properties.Enabled) { - $Properties.Enabled = $false - Set-LogProperties $Properties - } - } -} -Add-Type @" -using System; - -namespace Microsoft.PowerShell.Diagnostics -{ - public class LogDetails - { - public string Name - { - get - { - return name; - } - } - private string name; - - public bool Enabled - { - get - { - return enabled; - } - set - { - enabled = value; - } - } - private bool enabled; - - public string Type - { - get - { - return type; - } - } - private string type; - - public bool Retention - { - get - { - return retention; - } - set - { - retention = value; - } - } - private bool retention; - - public bool AutoBackup - { - get - { - return autoBackup; - } - set - { - autoBackup = value; - } - } - private bool autoBackup; - - public int MaxLogSize - { - get - { - return maxLogSize; - } - set - { - maxLogSize = value; - } - } - private int maxLogSize; - - public LogDetails(string name, bool enabled, string type, bool retention, bool autoBackup, int maxLogSize) - { - this.name = name; - this.enabled = enabled; - this.type = type; - this.retention = retention; - this.autoBackup = autoBackup; - this.maxLogSize = maxLogSize; - } - } -} -"@ - -if (Get-Command logman.exe -Type Application -ErrorAction SilentlyContinue) -{ - Export-ModuleMember Disable-PSTrace, Disable-PSWSManCombinedTrace, Disable-WSManTrace, Enable-PSTrace, Enable-PSWSManCombinedTrace, Enable-WSManTrace, Get-LogProperties, Set-LogProperties, Start-Trace, Stop-Trace -} -else -{ - # Currently we only support these cmdlets as logman.exe is not available on systems like Nano and IoT - Export-ModuleMember Disable-PSTrace, Enable-PSTrace, Get-LogProperties, Set-LogProperties -} - -# SIG # Begin signature block -# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor -# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG -# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCBzuFp8c8UN6ilP -# /hSmUPDtAUbo8uWTs6wUbaR/ZpM1B6CCDYEwggX/MIID56ADAgECAhMzAAACUosz -# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p -# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw -# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u -# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I -# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O -# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA -# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o -# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 -# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE -# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw -# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 -# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu -# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu -# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w -# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx -# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 -# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp -# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 -# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u -# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 -# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti -# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z -# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf -# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK -# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW -# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F -# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS -# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 -# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla -# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS -# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT -# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB -# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG -# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S -# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz -# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 -# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u -# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 -# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl -# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP -# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB -# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF -# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM -# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ -# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud -# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO -# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 -# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p -# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y -# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB -# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw -# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA -# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY -# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj -# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd -# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ -# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf -# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ -# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j -# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B -# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 -# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 -# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I -# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z -# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN -# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor -# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgSB3jjVY/ -# WMZ8WHFGDewy2JQLkkMsgxe7OQ9hGxl1POAwQgYKKwYBBAGCNwIBDDE0MDKgFIAS -# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN -# BgkqhkiG9w0BAQEFAASCAQDECdQe+dGfTQ9+1MUoap76UXkZqRUtWJtHANEX9QRF -# zu/zYxq/dvy7faWSumOPbC+fRwu+83u+3CYadkq+B7I6NDeWqTacnJnPk+uV78yi -# UnGjJx9i8cu6fUBS7HhFg1+VS5IZsor64K33Etj9NPBvVxW/AdbcA1Vm1/HCcnfC -# ZVVP8SUsEQsnksf1sgEix5zjYP5yoRrc7zZ31CsfFUseccW0GbjWVellm+JVYQR8 -# PyRw/UvU9wBEGmoG05yKQHMtIQzbgamTF+mFpvvLdNamUk2kTBtPw8esiUQSQSKT -# 893Bw7LCuWiqo8pwi1U45lsh2/5GrxKGyLwQY3vXep01oYIXGTCCFxUGCisGAQQB -# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME -# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB -# MDEwDQYJYIZIAWUDBAIBBQAEIEeWczI88EUPcg8HePXnLkMZtTRhTovyeZypUyUE -# AkF4AgZhlV5AOFwYEzIwMjExMjA4MjEwNDE0LjA2NVowBIACAfSggdikgdUwgdIx -# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt -# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p -# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh -# bGVzIFRTUyBFU046M0JENC00QjgwLTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBU -# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYm0v4YwhBxL -# jwABAAABiTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK -# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 -# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg -# MjAxMDAeFw0yMTEwMjgxOTI3NDFaFw0yMzAxMjYxOTI3NDFaMIHSMQswCQYDVQQG -# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG -# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg -# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg -# RVNOOjNCRDQtNEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt -# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvQZXxZFm -# a6plmuOyvNpV8xONOwcYolZG/BjyZWGSk5JOGaLyrKId5VxVHWHlsmJE4Svnzsdp -# sKmVx8otONveIUFvSceEZp8VXmu5m1fu8L7c+3lwXcibjccqtEvtQslokQVx0r+L -# 54abrNDarwFG73IaRidIS1i9c+unJ8oYyhDRLrCysFAVxyQhPNZkWK7Z8/VGukaK -# LAWHXCh/+R53h42gFL+9/mAALxzCXXuofi8f/XKCm7xNwVc1hONCCz6oq94AufzV -# NkkIW4brUQgYpCcJm9U0XNmQvtropYDn9UtY8YQ0NKenXPtdgLHdQ8Nnv3igErKL -# rWI0a5n5jjdKfwk+8mvakqdZmlOseeOS1XspQNJAK1uZllAITcnQZOcO5ofjOQ33 -# ujWckAXdz+/x3o7l4AU/TSOMzGZMwhUdtVwC3dSbItpSVFgnjM2COEJ9zgCadvOi -# rGDLN471jZI2jClkjsJTdgPk343TQA4JFvds/unZq0uLr+niZ3X44OBx2x+gVlln -# 2c4UbZXNueA4yS1TJGbbJFIILAmTUA9Auj5eISGTbNiyWx79HnCOTar39QEKozm4 -# LnTmDXy0/KI/H/nYZGKuTHfckP28wQS06rD+fDS5xLwcRMCW92DkHXmtbhGyRilB -# OL5LxZelQfxt54wl4WUC0AdAEolPekODwO8CAwEAAaOCATYwggEyMB0GA1UdDgQW -# BBSXbx+zR1p4IIAeguA6rHKkrfl7UDAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl -# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j -# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx -# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 -# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh -# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG -# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQCOtLdpWUI4KwfLLrfaKrLB92Dq -# bAspGWM41TaO4Jl+sHxPo522uu3GKQCjmkRWreHtlfyy9kOk7LWax3k3ke8Gtfet -# fbh7qH0LeV2XOWg39BOnHf6mTcZq7FYSZZch1JDQjc98+Odlow+oWih0Dbt4CV/e -# 19ZcE+1n1zzWkskUEd0f5jPIUis33p+vkY8szduAtCcIcPFUhI8Hb5alPUAPMjGz -# wKb7NIKbnf8j8cP18As5IveckF0oh1cw63RY/vPK62LDYdpi7WnG2ObvngfWVKtw -# iwTI4jHj2cO9q37HDe/PPl216gSpUZh0ap24mKmMDfcKp1N4mEdsxz4oseOrPYeF -# sHHWJFJ6Aivvqn70KTeJpp5r+DxSqbeSy0mxIUOq/lAaUxgNSQVUX26t8r+fciko -# fKv23WHrtRV3t7rVTsB9YzrRaiikmz68K5HWdt9MqULxPQPo+ppZ0LRqkOae466+ -# UKRY0JxWtdrMc5vHlHZfnqjawj/RsM2S6Q6fa9T9CnY1Nz7DYBG3yZJyCPFsrgU0 -# 5s9ljqfsSptpFdUh9R4ce+L71SWDLM2x/1MFLLHAMbXsEp8KloEGtaDULnxtfS2t -# YhfuKGqRXoEfDPAMnIdTvQPh3GHQ4SjkkBARHL0MY75alhGTKHWjC2aLVOo8obKI -# Bk8hfnFDUf/EyVw4uTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw -# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n -# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y -# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv -# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw -# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg -# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO -# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 -# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 -# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL -# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 -# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj -# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE -# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 -# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 -# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB -# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE -# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG -# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 -# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV -# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV -# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo -# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m -# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j -# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv -# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN -# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 -# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 -# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX -# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew -# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 -# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd -# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr -# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh -# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n -# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ -# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw -# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI -# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv -# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh -# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0JENC00Qjgw -# LTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB -# ATAHBgUrDgMCGgMVACGlCa3ketyeuey7bJNpWkMuiCcQoIGDMIGApH4wfDELMAkG -# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx -# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z -# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tYMCIY -# DzIwMjExMjA5MDM1MTUyWhgPMjAyMTEyMTAwMzUxNTJaMHcwPQYKKwYBBAGEWQoE -# ATEvMC0wCgIFAOVbi1gCAQAwCgIBAAICHvwCAf8wBwIBAAICETcwCgIFAOVc3NgC -# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK -# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQCbF/Q1IJzqUwQBkXn+GjUxZzVN -# O+9p1fpL7W8dEy9/m1L7dl968KiYqfO5rekvXeSUDTFYrkS/r0w8p2ZZ7d0TMtJt -# TrKmc85aRmxtSvCNAS2stE2sS2Y5np5+/02w3DDn3Nni6vvF8nsuiIlbiyHrGQrC -# 9eis1rpLSNvXisSYoDGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD -# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy -# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w -# IFBDQSAyMDEwAhMzAAABibS/hjCEHEuPAAEAAAGJMA0GCWCGSAFlAwQCAQUAoIIB -# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIE9C -# YLePpB7z2n25zIz6S9czmnMvqhq9zWDUWGRetdy3MIH6BgsqhkiG9w0BCRACLzGB -# 6jCB5zCB5DCBvQQgZndHMdxQV1VsbpWHOTHqWEycvcRJm7cY69l/UmT8j0UwgZgw -# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE -# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD -# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYm0v4YwhBxL -# jwABAAABiTAiBCCErc3WAJDL+6+RTcx4qvTV2Dv0bP6a0jmZjnUp3u9sbzANBgkq -# hkiG9w0BAQsFAASCAgCLuF4LX6ghAt1uercf24wmzMJ22FHRyklnWLILmQXDOSwZ -# bLzptb/gXN2KtDnQU3xF02SLNfmPvFCYkU7l9pYTmDQ18Pm6GtnwLMke8xbMlWsl -# 2gZCMMI3Q40kidzeZ3yYggxf5a+YP0JI3rcgZuRDnEeJ69oUqVvD/sWPTuWqKV7V -# 2jb5gnLURKrzDKPYf1trvb7M2oRkxXToLOEtbsHI2O46WJCbGrYlERk6Sp8+nmPD -# oQ7Lz8Vq5xXn3L8z3QqDI0UCdxxd32JBQbzMZ21xI+JgljiGXv3TSrtz+0M88mLM -# m+Kf7LHqDN3v6xfGI+AWD5KPfxzLekMmtTIlkeA93MolkgeFfkx5BpqbWLrbd63S -# RzhF88sZt47hwzoDfn4DMzFOrtbJqbdVWcVtIgY07AmWUSvpNtXgljty4kzg1rHV -# v2m6ezcnQa0D9a8WQJSd+gRfD6BEmDBOyGL7w49Tcgp2vZiWWdnHrWeRXMp+N4Fs -# 4IbQ51teHXISCvqZoVaz8/jEvWPftKkwcXuM89+S7hN4NMq0zpON1lizLV/FPP7p -# bpAQuaBgSY2f0Hfyko8JAH/KJFpmuzjTTcUAwvru2dsCdakB4kd6k6JHpu+XjWez -# M4lfX7MZegJiXfCQ8QBIKwg80WLwjJjjHrvTap+yPG9goxm6Nzh+UftgAcz+Qw== -# SIG # End signature block diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.Odbc.dll b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.Odbc.dll deleted file mode 100644 index cc9c1da..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.Odbc.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.OleDb.dll b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.OleDb.dll deleted file mode 100644 index 95d3e71..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.OleDb.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll deleted file mode 100644 index 235a22f..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll deleted file mode 100644 index 58eacf8..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll deleted file mode 100644 index 7f910de..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.dll b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.dll deleted file mode 100644 index 650007c..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll deleted file mode 100644 index 7c9e87b..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.IO.Ports.dll b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.IO.Ports.dll deleted file mode 100644 index b678ac4..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.IO.Ports.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.Automation.dll b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.Automation.dll deleted file mode 100644 index 0c2333e..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.Automation.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.dll b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.dll deleted file mode 100644 index 3e409fa..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll deleted file mode 100644 index 2b6fda4..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll deleted file mode 100644 index bdca76d..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll deleted file mode 100644 index 332dbfa..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll deleted file mode 100644 index 8a6feee..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Speech.dll b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Speech.dll deleted file mode 100644 index b551f9c..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Speech.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Threading.AccessControl.dll b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Threading.AccessControl.dll deleted file mode 100644 index 8109eae..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Threading.AccessControl.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll deleted file mode 100644 index 69f0d1b..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll b/linguard/web/bin/Debug/net6.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll deleted file mode 100644 index d92be8f..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/web/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index c70b1d3..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/web/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 6d14e76..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/web/bin/Debug/net6.0/runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll deleted file mode 100644 index 2e5c7ea..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win10-x64/native/mi.dll b/linguard/web/bin/Debug/net6.0/runtimes/win10-x64/native/mi.dll deleted file mode 100644 index f169cbe..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win10-x64/native/mi.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win10-x64/native/miutils.dll b/linguard/web/bin/Debug/net6.0/runtimes/win10-x64/native/miutils.dll deleted file mode 100644 index f9c9d3f..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win10-x64/native/miutils.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/web/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index e1819d5..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/web/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 13d9f3b..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/web/bin/Debug/net6.0/runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll deleted file mode 100644 index 434e1f4..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win10-x86/native/mi.dll b/linguard/web/bin/Debug/net6.0/runtimes/win10-x86/native/mi.dll deleted file mode 100644 index cfa3846..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win10-x86/native/mi.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win10-x86/native/miutils.dll b/linguard/web/bin/Debug/net6.0/runtimes/win10-x86/native/miutils.dll deleted file mode 100644 index 6a6fdd1..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win10-x86/native/miutils.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/web/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index c70b1d3..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/web/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 6d14e76..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/web/bin/Debug/net6.0/runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll deleted file mode 100644 index 90fc1b2..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win7-x64/native/mi.dll b/linguard/web/bin/Debug/net6.0/runtimes/win7-x64/native/mi.dll deleted file mode 100644 index 75de9d2..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win7-x64/native/mi.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win7-x64/native/miutils.dll b/linguard/web/bin/Debug/net6.0/runtimes/win7-x64/native/miutils.dll deleted file mode 100644 index d6d3465..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win7-x64/native/miutils.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/web/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index e1819d5..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/web/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 13d9f3b..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/web/bin/Debug/net6.0/runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll deleted file mode 100644 index 7a2fe92..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win7-x86/native/mi.dll b/linguard/web/bin/Debug/net6.0/runtimes/win7-x86/native/mi.dll deleted file mode 100644 index f0f556f..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win7-x86/native/mi.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win7-x86/native/miutils.dll b/linguard/web/bin/Debug/net6.0/runtimes/win7-x86/native/miutils.dll deleted file mode 100644 index 19dbafc..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win7-x86/native/miutils.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/web/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index c70b1d3..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/web/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 6d14e76..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win8-x64/native/mi.dll b/linguard/web/bin/Debug/net6.0/runtimes/win8-x64/native/mi.dll deleted file mode 100644 index 34043ba..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win8-x64/native/mi.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win8-x64/native/miutils.dll b/linguard/web/bin/Debug/net6.0/runtimes/win8-x64/native/miutils.dll deleted file mode 100644 index 0579e97..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win8-x64/native/miutils.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/web/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index e1819d5..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/web/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 13d9f3b..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win8-x86/native/mi.dll b/linguard/web/bin/Debug/net6.0/runtimes/win8-x86/native/mi.dll deleted file mode 100644 index f303e1e..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win8-x86/native/mi.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win8-x86/native/miutils.dll b/linguard/web/bin/Debug/net6.0/runtimes/win8-x86/native/miutils.dll deleted file mode 100644 index d305891..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win8-x86/native/miutils.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/web/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index c70b1d3..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/web/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 6d14e76..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/web/bin/Debug/net6.0/runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll deleted file mode 100644 index 8af4889..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win81-x64/native/mi.dll b/linguard/web/bin/Debug/net6.0/runtimes/win81-x64/native/mi.dll deleted file mode 100644 index 46dedce..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win81-x64/native/mi.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win81-x64/native/miutils.dll b/linguard/web/bin/Debug/net6.0/runtimes/win81-x64/native/miutils.dll deleted file mode 100644 index 3c8ebbd..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win81-x64/native/miutils.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/web/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll deleted file mode 100644 index e1819d5..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/web/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll deleted file mode 100644 index 13d9f3b..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/web/bin/Debug/net6.0/runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll deleted file mode 100644 index 9dcbfd1..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win81-x86/native/mi.dll b/linguard/web/bin/Debug/net6.0/runtimes/win81-x86/native/mi.dll deleted file mode 100644 index 087163a..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win81-x86/native/mi.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/runtimes/win81-x86/native/miutils.dll b/linguard/web/bin/Debug/net6.0/runtimes/win81-x86/native/miutils.dll deleted file mode 100644 index 21ad782..0000000 Binary files a/linguard/web/bin/Debug/net6.0/runtimes/win81-x86/native/miutils.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/web/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 56f6a16..0000000 Binary files a/linguard/web/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.resources.dll b/linguard/web/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 81ce1fc..0000000 Binary files a/linguard/web/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/tr/System.Private.ServiceModel.resources.dll b/linguard/web/bin/Debug/net6.0/tr/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 4a0bd6f..0000000 Binary files a/linguard/web/bin/Debug/net6.0/tr/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/tr/System.Web.Services.Description.resources.dll b/linguard/web/bin/Debug/net6.0/tr/System.Web.Services.Description.resources.dll deleted file mode 100644 index 7917190..0000000 Binary files a/linguard/web/bin/Debug/net6.0/tr/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/web/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index ffe2682..0000000 Binary files a/linguard/web/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/linguard/web/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index d17ccb3..0000000 Binary files a/linguard/web/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/zh-Hans/System.Private.ServiceModel.resources.dll b/linguard/web/bin/Debug/net6.0/zh-Hans/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 8e8fe2e..0000000 Binary files a/linguard/web/bin/Debug/net6.0/zh-Hans/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/zh-Hans/System.Web.Services.Description.resources.dll b/linguard/web/bin/Debug/net6.0/zh-Hans/System.Web.Services.Description.resources.dll deleted file mode 100644 index 903dca8..0000000 Binary files a/linguard/web/bin/Debug/net6.0/zh-Hans/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/web/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll deleted file mode 100644 index 2efe878..0000000 Binary files a/linguard/web/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/linguard/web/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll deleted file mode 100644 index 62c7b50..0000000 Binary files a/linguard/web/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/zh-Hant/System.Private.ServiceModel.resources.dll b/linguard/web/bin/Debug/net6.0/zh-Hant/System.Private.ServiceModel.resources.dll deleted file mode 100644 index 2001bc8..0000000 Binary files a/linguard/web/bin/Debug/net6.0/zh-Hant/System.Private.ServiceModel.resources.dll and /dev/null differ diff --git a/linguard/web/bin/Debug/net6.0/zh-Hant/System.Web.Services.Description.resources.dll b/linguard/web/bin/Debug/net6.0/zh-Hant/System.Web.Services.Description.resources.dll deleted file mode 100644 index 6bf5a85..0000000 Binary files a/linguard/web/bin/Debug/net6.0/zh-Hant/System.Web.Services.Description.resources.dll and /dev/null differ diff --git a/linguard/web/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/linguard/web/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs deleted file mode 100644 index 36203c7..0000000 --- a/linguard/web/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/linguard/web/obj/Debug/net6.0/Linguard.Web.MvcApplicationPartsAssemblyInfo.cache b/linguard/web/obj/Debug/net6.0/Linguard.Web.MvcApplicationPartsAssemblyInfo.cache deleted file mode 100644 index e69de29..0000000 diff --git a/linguard/web/obj/Debug/net6.0/Linguard.Web.dll b/linguard/web/obj/Debug/net6.0/Linguard.Web.dll deleted file mode 100644 index d9d2020..0000000 Binary files a/linguard/web/obj/Debug/net6.0/Linguard.Web.dll and /dev/null differ diff --git a/linguard/web/obj/Debug/net6.0/Linguard.Web.pdb b/linguard/web/obj/Debug/net6.0/Linguard.Web.pdb deleted file mode 100644 index 1cfd366..0000000 Binary files a/linguard/web/obj/Debug/net6.0/Linguard.Web.pdb and /dev/null differ diff --git a/linguard/web/obj/Debug/net6.0/Web.AssemblyInfo.cs b/linguard/web/obj/Debug/net6.0/Web.AssemblyInfo.cs deleted file mode 100644 index 9ae92c7..0000000 --- a/linguard/web/obj/Debug/net6.0/Web.AssemblyInfo.cs +++ /dev/null @@ -1,22 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("José Antonio Mazón San Bartolomé")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("2.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("2.0.0-dev")] -[assembly: System.Reflection.AssemblyProductAttribute("Linguard")] -[assembly: System.Reflection.AssemblyTitleAttribute("Linguard.Web")] -[assembly: System.Reflection.AssemblyVersionAttribute("2.0.0.0")] - -// Generado por la clase WriteCodeFragment de MSBuild. - diff --git a/linguard/web/obj/Debug/net6.0/Web.AssemblyInfoInputs.cache b/linguard/web/obj/Debug/net6.0/Web.AssemblyInfoInputs.cache deleted file mode 100644 index 968ada5..0000000 --- a/linguard/web/obj/Debug/net6.0/Web.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -08c2c04f4b3c7f5853d174f34fb2197693109ef3 diff --git a/linguard/web/obj/Debug/net6.0/Web.GeneratedMSBuildEditorConfig.editorconfig b/linguard/web/obj/Debug/net6.0/Web.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 5cb226b..0000000 --- a/linguard/web/obj/Debug/net6.0/Web.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,104 +0,0 @@ -is_global = true -build_property.TargetFramework = net6.0 -build_property.TargetPlatformMinVersion = -build_property.UsingMicrosoftNETSdkWeb = true -build_property.ProjectTypeGuids = -build_property.InvariantGlobalization = -build_property.PlatformNeutralAssembly = -build_property._SupportedPlatformList = Linux,macOS,Windows -build_property.RootNamespace = Linguard.Web -build_property.RootNamespace = Linguard.Web -build_property.ProjectDir = C:\Users\theyu\repos\linguard\Linguard\Web\ -build_property.RazorLangVersion = 6.0 -build_property.SupportLocalizedComponentNames = -build_property.GenerateRazorMetadataSourceChecksumAttributes = -build_property.MSBuildProjectDirectory = C:\Users\theyu\repos\linguard\Linguard\Web -build_property._RazorSourceGeneratorDebug = - -[C:/Users/theyu/repos/linguard/Linguard/Web/App.razor] -build_metadata.AdditionalFiles.TargetPath = QXBwLnJhem9y -build_metadata.AdditionalFiles.CssScope = - -[C:/Users/theyu/repos/linguard/Linguard/Web/Pages/About.razor] -build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQWJvdXQucmF6b3I= -build_metadata.AdditionalFiles.CssScope = - -[C:/Users/theyu/repos/linguard/Linguard/Web/Pages/AddInterface.razor] -build_metadata.AdditionalFiles.TargetPath = UGFnZXNcQWRkSW50ZXJmYWNlLnJhem9y -build_metadata.AdditionalFiles.CssScope = - -[C:/Users/theyu/repos/linguard/Linguard/Web/Pages/Dashboard.razor] -build_metadata.AdditionalFiles.TargetPath = UGFnZXNcRGFzaGJvYXJkLnJhem9y -build_metadata.AdditionalFiles.CssScope = - -[C:/Users/theyu/repos/linguard/Linguard/Web/Pages/EditClient.razor] -build_metadata.AdditionalFiles.TargetPath = UGFnZXNcRWRpdENsaWVudC5yYXpvcg== -build_metadata.AdditionalFiles.CssScope = - -[C:/Users/theyu/repos/linguard/Linguard/Web/Pages/EditInterface.razor] -build_metadata.AdditionalFiles.TargetPath = UGFnZXNcRWRpdEludGVyZmFjZS5yYXpvcg== -build_metadata.AdditionalFiles.CssScope = - -[C:/Users/theyu/repos/linguard/Linguard/Web/Pages/Network.razor] -build_metadata.AdditionalFiles.TargetPath = UGFnZXNcTmV0d29yay5yYXpvcg== -build_metadata.AdditionalFiles.CssScope = - -[C:/Users/theyu/repos/linguard/Linguard/Web/Pages/Settings.razor] -build_metadata.AdditionalFiles.TargetPath = UGFnZXNcU2V0dGluZ3MucmF6b3I= -build_metadata.AdditionalFiles.CssScope = - -[C:/Users/theyu/repos/linguard/Linguard/Web/Pages/Wireguard.razor] -build_metadata.AdditionalFiles.TargetPath = UGFnZXNcV2lyZWd1YXJkLnJhem9y -build_metadata.AdditionalFiles.CssScope = - -[C:/Users/theyu/repos/linguard/Linguard/Web/Shared/EditInterfaceConfigurationForm.razor] -build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXEVkaXRJbnRlcmZhY2VDb25maWd1cmF0aW9uRm9ybS5yYXpvcg== -build_metadata.AdditionalFiles.CssScope = - -[C:/Users/theyu/repos/linguard/Linguard/Web/Shared/Footer.razor] -build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXEZvb3Rlci5yYXpvcg== -build_metadata.AdditionalFiles.CssScope = - -[C:/Users/theyu/repos/linguard/Linguard/Web/Shared/LoggingSettings.razor] -build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXExvZ2dpbmdTZXR0aW5ncy5yYXpvcg== -build_metadata.AdditionalFiles.CssScope = - -[C:/Users/theyu/repos/linguard/Linguard/Web/Shared/MainLayout.razor] -build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXE1haW5MYXlvdXQucmF6b3I= -build_metadata.AdditionalFiles.CssScope = - -[C:/Users/theyu/repos/linguard/Linguard/Web/Shared/ProfileMenu.razor] -build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXFByb2ZpbGVNZW51LnJhem9y -build_metadata.AdditionalFiles.CssScope = - -[C:/Users/theyu/repos/linguard/Linguard/Web/Shared/Sidebar.razor] -build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXFNpZGViYXIucmF6b3I= -build_metadata.AdditionalFiles.CssScope = - -[C:/Users/theyu/repos/linguard/Linguard/Web/Shared/SimpleAlert.razor] -build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXFNpbXBsZUFsZXJ0LnJhem9y -build_metadata.AdditionalFiles.CssScope = - -[C:/Users/theyu/repos/linguard/Linguard/Web/Shared/WebSettings.razor] -build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXFdlYlNldHRpbmdzLnJhem9y -build_metadata.AdditionalFiles.CssScope = - -[C:/Users/theyu/repos/linguard/Linguard/Web/Shared/WireguardSettings.razor] -build_metadata.AdditionalFiles.TargetPath = U2hhcmVkXFdpcmVndWFyZFNldHRpbmdzLnJhem9y -build_metadata.AdditionalFiles.CssScope = - -[C:/Users/theyu/repos/linguard/Linguard/Web/_Imports.razor] -build_metadata.AdditionalFiles.TargetPath = X0ltcG9ydHMucmF6b3I= -build_metadata.AdditionalFiles.CssScope = - -[C:/Users/theyu/repos/linguard/Linguard/Web/Pages/Error.cshtml] -build_metadata.AdditionalFiles.TargetPath = UGFnZXNcRXJyb3IuY3NodG1s -build_metadata.AdditionalFiles.CssScope = - -[C:/Users/theyu/repos/linguard/Linguard/Web/Pages/_Host.cshtml] -build_metadata.AdditionalFiles.TargetPath = UGFnZXNcX0hvc3QuY3NodG1s -build_metadata.AdditionalFiles.CssScope = - -[C:/Users/theyu/repos/linguard/Linguard/Web/Pages/_Layout.cshtml] -build_metadata.AdditionalFiles.TargetPath = UGFnZXNcX0xheW91dC5jc2h0bWw= -build_metadata.AdditionalFiles.CssScope = diff --git a/linguard/web/obj/Debug/net6.0/Web.GlobalUsings.g.cs b/linguard/web/obj/Debug/net6.0/Web.GlobalUsings.g.cs deleted file mode 100644 index 025530a..0000000 --- a/linguard/web/obj/Debug/net6.0/Web.GlobalUsings.g.cs +++ /dev/null @@ -1,17 +0,0 @@ -// -global using global::Microsoft.AspNetCore.Builder; -global using global::Microsoft.AspNetCore.Hosting; -global using global::Microsoft.AspNetCore.Http; -global using global::Microsoft.AspNetCore.Routing; -global using global::Microsoft.Extensions.Configuration; -global using global::Microsoft.Extensions.DependencyInjection; -global using global::Microsoft.Extensions.Hosting; -global using global::Microsoft.Extensions.Logging; -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.Net.Http.Json; -global using global::System.Threading; -global using global::System.Threading.Tasks; diff --git a/linguard/web/obj/Debug/net6.0/Web.RazorAssemblyInfo.cache b/linguard/web/obj/Debug/net6.0/Web.RazorAssemblyInfo.cache deleted file mode 100644 index f24b41d..0000000 --- a/linguard/web/obj/Debug/net6.0/Web.RazorAssemblyInfo.cache +++ /dev/null @@ -1 +0,0 @@ -5860763757f4f08c7ebdea1b3a94a18109f17861 diff --git a/linguard/web/obj/Debug/net6.0/Web.RazorAssemblyInfo.cs b/linguard/web/obj/Debug/net6.0/Web.RazorAssemblyInfo.cs deleted file mode 100644 index 4d78419..0000000 --- a/linguard/web/obj/Debug/net6.0/Web.RazorAssemblyInfo.cs +++ /dev/null @@ -1,17 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ProvideApplicationPartFactoryAttribute("Microsoft.AspNetCore.Mvc.ApplicationParts.ConsolidatedAssemblyApplicationPartFact" + - "ory, Microsoft.AspNetCore.Mvc.Razor")] - -// Generado por la clase WriteCodeFragment de MSBuild. - diff --git a/linguard/web/obj/Debug/net6.0/Web.assets.cache b/linguard/web/obj/Debug/net6.0/Web.assets.cache deleted file mode 100644 index bea741e..0000000 Binary files a/linguard/web/obj/Debug/net6.0/Web.assets.cache and /dev/null differ diff --git a/linguard/web/obj/Debug/net6.0/Web.csproj.AssemblyReference.cache b/linguard/web/obj/Debug/net6.0/Web.csproj.AssemblyReference.cache deleted file mode 100644 index 664285c..0000000 Binary files a/linguard/web/obj/Debug/net6.0/Web.csproj.AssemblyReference.cache and /dev/null differ diff --git a/linguard/web/obj/Debug/net6.0/Web.csproj.CopyComplete b/linguard/web/obj/Debug/net6.0/Web.csproj.CopyComplete deleted file mode 100644 index e69de29..0000000 diff --git a/linguard/web/obj/Debug/net6.0/Web.csproj.CoreCompileInputs.cache b/linguard/web/obj/Debug/net6.0/Web.csproj.CoreCompileInputs.cache deleted file mode 100644 index c4c00be..0000000 --- a/linguard/web/obj/Debug/net6.0/Web.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -7e1468361ed3de525e45f3ac4d410d1bdc9342e6 diff --git a/linguard/web/obj/Debug/net6.0/Web.csproj.FileListAbsolute.txt b/linguard/web/obj/Debug/net6.0/Web.csproj.FileListAbsolute.txt deleted file mode 100644 index eecc478..0000000 --- a/linguard/web/obj/Debug/net6.0/Web.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,864 +0,0 @@ -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\appsettings.Development.json -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\appsettings.json -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\Radzen.Blazor.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.Linq.Dynamic.Core.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\obj\Debug\net6.0\Web.csproj.AssemblyReference.cache -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\obj\Debug\net6.0\Web.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\obj\Debug\net6.0\Web.AssemblyInfoInputs.cache -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\obj\Debug\net6.0\Web.AssemblyInfo.cs -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\obj\Debug\net6.0\Web.csproj.CoreCompileInputs.cache -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\obj\Debug\net6.0\Web.RazorAssemblyInfo.cache -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\obj\Debug\net6.0\Web.RazorAssemblyInfo.cs -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\obj\Debug\net6.0\staticwebassets.build.json -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\obj\Debug\net6.0\staticwebassets.development.json -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\obj\Debug\net6.0\Web.csproj.CopyComplete -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\obj\Debug\net6.0\Web.genruntimeconfig.cache -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\Microsoft.CSharp.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\Microsoft.VisualBasic.Core.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\Microsoft.VisualBasic.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\Microsoft.Win32.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\Microsoft.Win32.Registry.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.AppContext.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Buffers.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Collections.Concurrent.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Collections.Immutable.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Collections.NonGeneric.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Collections.Specialized.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Collections.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.ComponentModel.Annotations.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.ComponentModel.DataAnnotations.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.ComponentModel.EventBasedAsync.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.ComponentModel.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.ComponentModel.TypeConverter.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.ComponentModel.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Configuration.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Console.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Core.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Data.Common.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Data.DataSetExtensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Data.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Diagnostics.Contracts.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Diagnostics.Debug.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Diagnostics.DiagnosticSource.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Diagnostics.FileVersionInfo.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Diagnostics.Process.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Diagnostics.StackTrace.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Diagnostics.TextWriterTraceListener.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Diagnostics.Tools.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Diagnostics.TraceSource.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Diagnostics.Tracing.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Drawing.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Drawing.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Dynamic.Runtime.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Formats.Asn1.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Globalization.Calendars.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Globalization.Extensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Globalization.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.IO.Compression.Brotli.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.IO.Compression.FileSystem.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.IO.Compression.ZipFile.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.IO.Compression.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.IO.FileSystem.AccessControl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.IO.FileSystem.DriveInfo.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.IO.FileSystem.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.IO.FileSystem.Watcher.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.IO.FileSystem.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.IO.IsolatedStorage.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.IO.MemoryMappedFiles.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.IO.Pipes.AccessControl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.IO.Pipes.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.IO.UnmanagedMemoryStream.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.IO.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Linq.Expressions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Linq.Parallel.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Linq.Queryable.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Linq.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Memory.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Net.Http.Json.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Net.Http.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Net.HttpListener.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Net.Mail.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Net.NameResolution.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Net.NetworkInformation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Net.Ping.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Net.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Net.Requests.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Net.Security.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Net.ServicePoint.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Net.Sockets.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Net.WebClient.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Net.WebHeaderCollection.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Net.WebProxy.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Net.WebSockets.Client.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Net.WebSockets.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Net.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Numerics.Vectors.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Numerics.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.ObjectModel.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Reflection.DispatchProxy.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Reflection.Emit.ILGeneration.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Reflection.Emit.Lightweight.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Reflection.Emit.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Reflection.Extensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Reflection.Metadata.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Reflection.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Reflection.TypeExtensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Reflection.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Resources.Reader.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Resources.ResourceManager.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Resources.Writer.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Runtime.CompilerServices.Unsafe.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Runtime.CompilerServices.VisualC.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Runtime.Extensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Runtime.Handles.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Runtime.InteropServices.RuntimeInformation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Runtime.InteropServices.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Runtime.Intrinsics.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Runtime.Loader.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Runtime.Numerics.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Runtime.Serialization.Formatters.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Runtime.Serialization.Json.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Runtime.Serialization.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Runtime.Serialization.Xml.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Runtime.Serialization.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Runtime.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Security.AccessControl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Security.Claims.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Security.Cryptography.Algorithms.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Security.Cryptography.Cng.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Security.Cryptography.Csp.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Security.Cryptography.Encoding.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Security.Cryptography.OpenSsl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Security.Cryptography.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Security.Cryptography.X509Certificates.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Security.Principal.Windows.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Security.Principal.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Security.SecureString.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Security.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.ServiceModel.Web.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.ServiceProcess.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Text.Encoding.CodePages.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Text.Encoding.Extensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Text.Encoding.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Text.Encodings.Web.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Text.Json.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Text.RegularExpressions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Threading.Channels.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Threading.Overlapped.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Threading.Tasks.Dataflow.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Threading.Tasks.Extensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Threading.Tasks.Parallel.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Threading.Tasks.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Threading.Thread.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Threading.ThreadPool.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Threading.Timer.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Threading.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Transactions.Local.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Transactions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.ValueTuple.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Web.HttpUtility.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Web.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Windows.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Xml.Linq.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Xml.ReaderWriter.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Xml.Serialization.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Xml.XDocument.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Xml.XPath.XDocument.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Xml.XPath.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Xml.XmlDocument.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Xml.XmlSerializer.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.Xml.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\System.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\WindowsBase.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\mscorlib.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\netstandard.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\CimCmdlets\CimCmdlets.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Diagnostics.format.ps1xml -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Event.format.ps1xml -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\GetEvent.types.ps1xml -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Microsoft.PowerShell.Diagnostics.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\Microsoft.WSMan.Management.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\WSMan.format.ps1xml -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psd1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psm1 -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\Bogus.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\FluentValidation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.Net.IPNetwork.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\Markdig.Signed.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\Microsoft.ApplicationInsights.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\Microsoft.Bcl.AsyncInterfaces.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\Microsoft.CodeAnalysis.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\Microsoft.CodeAnalysis.CSharp.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\Microsoft.PowerShell.MarkdownRender.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\Microsoft.Win32.Registry.AccessControl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\Microsoft.Win32.SystemEvents.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\Namotion.Reflection.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\Newtonsoft.Json.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\NJsonSchema.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\NLog.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.CodeDom.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.ComponentModel.Composition.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.ComponentModel.Composition.Registration.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.Configuration.ConfigurationManager.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.Data.OleDb.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.Data.SqlClient.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.Diagnostics.PerformanceCounter.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.DirectoryServices.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.DirectoryServices.AccountManagement.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.DirectoryServices.Protocols.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.Drawing.Common.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.IO.Packaging.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.IO.Ports.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.Management.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.Net.Http.WinHttpHandler.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.Private.ServiceModel.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.Reflection.Context.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.Runtime.Caching.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.Security.Cryptography.ProtectedData.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.Security.Permissions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.ServiceModel.Duplex.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.ServiceModel.Http.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.ServiceModel.NetTcp.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.ServiceModel.Primitives.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.ServiceModel.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.ServiceModel.Security.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.ServiceModel.Syndication.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.ServiceProcess.ServiceController.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.Speech.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.Threading.AccessControl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.Web.Services.Description.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\System.Windows.Extensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\YamlDotNet.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\cs\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\de\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\es\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\fr\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\it\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ja\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ko\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\pl\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\pt-BR\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ru\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\tr\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\cs\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\de\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\es\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\fr\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\it\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ja\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ko\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\pl\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\pt-BR\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ru\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\tr\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\zh-Hans\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\zh-Hant\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\cs\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\de\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\es\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\fr\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\it\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ja\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ko\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\pl\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\pt-BR\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ru\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\tr\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\zh-Hans\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\zh-Hant\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Management.Infrastructure.CimCmdlets.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\unix\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win-arm\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win-arm\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win-arm\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win-arm64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win-arm64\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win-arm64\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win10-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win10-x64\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win10-x64\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win10-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win10-x86\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win10-x86\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win7-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win7-x64\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win7-x64\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win7-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win7-x86\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win7-x86\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win8-x64\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win8-x64\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win8-x86\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win8-x86\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win81-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win81-x64\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win81-x64\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win81-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win81-x86\native\mi.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win81-x86\native\miutils.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Diagnostics.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.CoreCLR.Eventing.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\linux-arm\native\libpsl-native.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\linux-arm64\native\libpsl-native.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\linux-musl-x64\native\libpsl-native.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\linux-x64\native\libmi.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\linux-x64\native\libpsl-native.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\linux-x64\native\libpsrpclient.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\osx\native\libmi.dylib -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\osx\native\libpsl-native.dylib -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\osx\native\libpsrpclient.dylib -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win-arm\native\PowerShell.Core.Instrumentation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win-arm\native\pwrshplugin.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win-arm64\native\PowerShell.Core.Instrumentation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win-arm64\native\pwrshplugin.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win-x64\native\PowerShell.Core.Instrumentation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win-x64\native\pwrshplugin.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win-x86\native\PowerShell.Core.Instrumentation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win-x86\native\pwrshplugin.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.SDK.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.SDK.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Security.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Security.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Win32.Registry.AccessControl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.WSMan.Management.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.WSMan.Runtime.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\linux-arm\native\libSystem.IO.Ports.Native.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\linux-arm64\native\libSystem.IO.Ports.Native.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\linux-x64\native\libSystem.IO.Ports.Native.so -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\osx-arm64\native\libSystem.IO.Ports.Native.dylib -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\osx-x64\native\libSystem.IO.Ports.Native.dylib -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win-arm64\native\sni.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win-x64\native\sni.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win-x86\native\sni.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\freebsd\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\illumos\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\ios\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\linux\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\osx\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\solaris\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\tvos\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Data.OleDb.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.PerformanceCounter.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.AccountManagement.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\linux\lib\net6.0\System.DirectoryServices.Protocols.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\osx\lib\net6.0\System.DirectoryServices.Protocols.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.Protocols.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.IO.Ports.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.IO.Ports.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Management.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.Management.Automation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Management.Automation.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Net.Http.WinHttpHandler.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Runtime.Caching.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.ServiceProcess.ServiceController.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Speech.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Threading.AccessControl.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\Linguard.Core.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\Linguard.Log.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\Linguard.Core.pdb -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\Linguard.Log.pdb -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\NLog.config -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\Linguard.Web.staticwebassets.runtime.json -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\Linguard.Web.exe -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\Linguard.Web.deps.json -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\Linguard.Web.runtimeconfig.json -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\Linguard.Web.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\ref\Linguard.Web.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\bin\Debug\net6.0\Linguard.Web.pdb -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\obj\Debug\net6.0\Linguard.Web.MvcApplicationPartsAssemblyInfo.cache -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\obj\Debug\net6.0\scopedcss\bundle\Linguard.Web.styles.css -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\obj\Debug\net6.0\Linguard.Web.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\obj\Debug\net6.0\ref\Linguard.Web.dll -C:\Users\theyu\repos\linguard-dotnet\Linguard\Web\obj\Debug\net6.0\Linguard.Web.pdb -C:\Users\theyu\repos\linguard\Linguard\Web\obj\Debug\net6.0\Web.csproj.AssemblyReference.cache -C:\Users\theyu\repos\linguard\Linguard\Web\obj\Debug\net6.0\Web.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\theyu\repos\linguard\Linguard\Web\obj\Debug\net6.0\Web.AssemblyInfoInputs.cache -C:\Users\theyu\repos\linguard\Linguard\Web\obj\Debug\net6.0\Web.AssemblyInfo.cs -C:\Users\theyu\repos\linguard\Linguard\Web\obj\Debug\net6.0\Web.csproj.CoreCompileInputs.cache -C:\Users\theyu\repos\linguard\Linguard\Web\obj\Debug\net6.0\Linguard.Web.MvcApplicationPartsAssemblyInfo.cache -C:\Users\theyu\repos\linguard\Linguard\Web\obj\Debug\net6.0\Web.RazorAssemblyInfo.cache -C:\Users\theyu\repos\linguard\Linguard\Web\obj\Debug\net6.0\Web.RazorAssemblyInfo.cs -C:\Users\theyu\repos\linguard\Linguard\Web\obj\Debug\net6.0\Linguard.Web.dll -C:\Users\theyu\repos\linguard\Linguard\Web\obj\Debug\net6.0\ref\Linguard.Web.dll -C:\Users\theyu\repos\linguard\Linguard\Web\obj\Debug\net6.0\Linguard.Web.pdb -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\Microsoft.CSharp.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\Microsoft.VisualBasic.Core.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\Microsoft.VisualBasic.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\Microsoft.Win32.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\Microsoft.Win32.Registry.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.AppContext.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Buffers.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Collections.Concurrent.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Collections.Immutable.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Collections.NonGeneric.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Collections.Specialized.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Collections.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.ComponentModel.Annotations.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.ComponentModel.DataAnnotations.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.ComponentModel.EventBasedAsync.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.ComponentModel.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.ComponentModel.TypeConverter.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.ComponentModel.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Configuration.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Console.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Core.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Data.Common.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Data.DataSetExtensions.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Data.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Diagnostics.Contracts.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Diagnostics.Debug.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Diagnostics.DiagnosticSource.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Diagnostics.FileVersionInfo.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Diagnostics.Process.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Diagnostics.StackTrace.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Diagnostics.TextWriterTraceListener.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Diagnostics.Tools.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Diagnostics.TraceSource.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Diagnostics.Tracing.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Drawing.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Drawing.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Dynamic.Runtime.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Formats.Asn1.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Globalization.Calendars.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Globalization.Extensions.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Globalization.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.IO.Compression.Brotli.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.IO.Compression.FileSystem.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.IO.Compression.ZipFile.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.IO.Compression.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.IO.FileSystem.AccessControl.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.IO.FileSystem.DriveInfo.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.IO.FileSystem.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.IO.FileSystem.Watcher.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.IO.FileSystem.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.IO.IsolatedStorage.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.IO.MemoryMappedFiles.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.IO.Pipes.AccessControl.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.IO.Pipes.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.IO.UnmanagedMemoryStream.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.IO.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Linq.Expressions.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Linq.Parallel.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Linq.Queryable.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Linq.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Memory.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Net.Http.Json.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Net.Http.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Net.HttpListener.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Net.Mail.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Net.NameResolution.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Net.NetworkInformation.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Net.Ping.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Net.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Net.Requests.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Net.Security.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Net.ServicePoint.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Net.Sockets.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Net.WebClient.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Net.WebHeaderCollection.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Net.WebProxy.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Net.WebSockets.Client.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Net.WebSockets.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Net.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Numerics.Vectors.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Numerics.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.ObjectModel.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Reflection.DispatchProxy.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Reflection.Emit.ILGeneration.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Reflection.Emit.Lightweight.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Reflection.Emit.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Reflection.Extensions.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Reflection.Metadata.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Reflection.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Reflection.TypeExtensions.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Reflection.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Resources.Reader.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Resources.ResourceManager.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Resources.Writer.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Runtime.CompilerServices.Unsafe.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Runtime.CompilerServices.VisualC.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Runtime.Extensions.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Runtime.Handles.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Runtime.InteropServices.RuntimeInformation.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Runtime.InteropServices.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Runtime.Intrinsics.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Runtime.Loader.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Runtime.Numerics.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Runtime.Serialization.Formatters.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Runtime.Serialization.Json.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Runtime.Serialization.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Runtime.Serialization.Xml.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Runtime.Serialization.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Runtime.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Security.AccessControl.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Security.Claims.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Security.Cryptography.Algorithms.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Security.Cryptography.Cng.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Security.Cryptography.Csp.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Security.Cryptography.Encoding.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Security.Cryptography.OpenSsl.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Security.Cryptography.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Security.Cryptography.X509Certificates.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Security.Principal.Windows.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Security.Principal.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Security.SecureString.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Security.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.ServiceModel.Web.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.ServiceProcess.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Text.Encoding.CodePages.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Text.Encoding.Extensions.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Text.Encoding.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Text.Encodings.Web.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Text.Json.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Text.RegularExpressions.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Threading.Channels.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Threading.Overlapped.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Threading.Tasks.Dataflow.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Threading.Tasks.Extensions.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Threading.Tasks.Parallel.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Threading.Tasks.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Threading.Thread.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Threading.ThreadPool.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Threading.Timer.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Threading.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Transactions.Local.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Transactions.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.ValueTuple.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Web.HttpUtility.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Web.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Windows.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Xml.Linq.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Xml.ReaderWriter.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Xml.Serialization.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Xml.XDocument.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Xml.XPath.XDocument.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Xml.XPath.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Xml.XmlDocument.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Xml.XmlSerializer.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.Xml.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\System.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\WindowsBase.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\mscorlib.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\netstandard.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\CimCmdlets\CimCmdlets.psd1 -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Diagnostics.format.ps1xml -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Event.format.ps1xml -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\GetEvent.types.ps1xml -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Microsoft.PowerShell.Diagnostics.psd1 -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\Microsoft.WSMan.Management.psd1 -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\WSMan.format.ps1xml -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psd1 -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psm1 -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\NLog.config -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\appsettings.Development.json -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\appsettings.json -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\Linguard.Web.staticwebassets.runtime.json -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\Linguard.Web.exe -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\Linguard.Web.deps.json -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\Linguard.Web.runtimeconfig.json -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\Linguard.Web.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ref\Linguard.Web.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\Linguard.Web.pdb -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\Bogus.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\FluentValidation.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.Net.IPNetwork.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\Markdig.Signed.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\Microsoft.ApplicationInsights.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\Microsoft.Bcl.AsyncInterfaces.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\Microsoft.CodeAnalysis.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\Microsoft.CodeAnalysis.CSharp.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\Microsoft.PowerShell.MarkdownRender.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\Microsoft.Win32.Registry.AccessControl.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\Microsoft.Win32.SystemEvents.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\Namotion.Reflection.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\Newtonsoft.Json.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\NJsonSchema.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\NLog.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\Radzen.Blazor.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.CodeDom.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.ComponentModel.Composition.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.ComponentModel.Composition.Registration.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.Configuration.ConfigurationManager.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.Data.OleDb.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.Data.SqlClient.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.Diagnostics.PerformanceCounter.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.DirectoryServices.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.DirectoryServices.AccountManagement.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.DirectoryServices.Protocols.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.Drawing.Common.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.IO.Packaging.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.IO.Ports.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.Linq.Dynamic.Core.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.Management.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.Net.Http.WinHttpHandler.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.Private.ServiceModel.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.Reflection.Context.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.Runtime.Caching.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.Security.Cryptography.ProtectedData.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.Security.Permissions.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.ServiceModel.Duplex.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.ServiceModel.Http.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.ServiceModel.NetTcp.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.ServiceModel.Primitives.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.ServiceModel.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.ServiceModel.Security.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.ServiceModel.Syndication.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.ServiceProcess.ServiceController.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.Speech.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.Threading.AccessControl.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.Web.Services.Description.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\System.Windows.Extensions.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\YamlDotNet.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\cs\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\de\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\es\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\fr\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\it\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ja\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ko\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\pl\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\pt-BR\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ru\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\tr\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\cs\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\de\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\es\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\fr\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\it\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ja\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ko\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\pl\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\pt-BR\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ru\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\tr\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\zh-Hans\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\zh-Hant\System.Private.ServiceModel.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\cs\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\de\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\es\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\fr\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\it\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ja\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ko\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\pl\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\pt-BR\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ru\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\tr\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\zh-Hans\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\zh-Hant\System.Web.Services.Description.resources.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Management.Infrastructure.CimCmdlets.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\unix\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win-arm\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win-arm\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win-arm\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win-arm64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win-arm64\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win-arm64\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win10-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win10-x64\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win10-x64\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win10-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win10-x86\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win10-x86\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win7-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win7-x64\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win7-x64\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win7-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win7-x86\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win7-x86\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win8-x64\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win8-x64\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win8-x86\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win8-x86\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win81-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win81-x64\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win81-x64\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win81-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win81-x86\native\mi.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win81-x86\native\miutils.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Diagnostics.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.CoreCLR.Eventing.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\linux-arm\native\libpsl-native.so -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\linux-arm64\native\libpsl-native.so -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\linux-musl-x64\native\libpsl-native.so -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\linux-x64\native\libmi.so -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\linux-x64\native\libpsl-native.so -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\linux-x64\native\libpsrpclient.so -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\osx\native\libmi.dylib -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\osx\native\libpsl-native.dylib -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\osx\native\libpsrpclient.dylib -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win-arm\native\PowerShell.Core.Instrumentation.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win-arm\native\pwrshplugin.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win-arm64\native\PowerShell.Core.Instrumentation.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win-arm64\native\pwrshplugin.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win-x64\native\PowerShell.Core.Instrumentation.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win-x64\native\pwrshplugin.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win-x86\native\PowerShell.Core.Instrumentation.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win-x86\native\pwrshplugin.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.SDK.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.SDK.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Security.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Security.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Win32.Registry.AccessControl.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.WSMan.Management.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.WSMan.Runtime.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\linux-arm\native\libSystem.IO.Ports.Native.so -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\linux-arm64\native\libSystem.IO.Ports.Native.so -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\linux-x64\native\libSystem.IO.Ports.Native.so -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\osx-arm64\native\libSystem.IO.Ports.Native.dylib -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\osx-x64\native\libSystem.IO.Ports.Native.dylib -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win-arm64\native\sni.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win-x64\native\sni.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win-x86\native\sni.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\freebsd\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\illumos\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\ios\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\linux\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\osx\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\solaris\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\tvos\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Data.Odbc.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Data.OleDb.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.PerformanceCounter.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.AccountManagement.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\linux\lib\net6.0\System.DirectoryServices.Protocols.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\osx\lib\net6.0\System.DirectoryServices.Protocols.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.Protocols.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.IO.Ports.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.IO.Ports.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Management.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.Management.Automation.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Management.Automation.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Net.Http.WinHttpHandler.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Runtime.Caching.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.ServiceProcess.ServiceController.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Speech.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Threading.AccessControl.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\Linguard.Core.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\Linguard.Log.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\Linguard.Core.pdb -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\Linguard.Log.pdb -C:\Users\theyu\repos\linguard\Linguard\Web\obj\Debug\net6.0\staticwebassets.build.json -C:\Users\theyu\repos\linguard\Linguard\Web\obj\Debug\net6.0\staticwebassets.development.json -C:\Users\theyu\repos\linguard\Linguard\Web\obj\Debug\net6.0\scopedcss\bundle\Linguard.Web.styles.css -C:\Users\theyu\repos\linguard\Linguard\Web\obj\Debug\net6.0\Web.csproj.CopyComplete -C:\Users\theyu\repos\linguard\Linguard\Web\obj\Debug\net6.0\Web.genruntimeconfig.cache -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\QRCoder.dll -C:\Users\theyu\repos\linguard\Linguard\Web\bin\Debug\net6.0\ByteSize.dll diff --git a/linguard/web/obj/Debug/net6.0/Web.genruntimeconfig.cache b/linguard/web/obj/Debug/net6.0/Web.genruntimeconfig.cache deleted file mode 100644 index f18fb9c..0000000 --- a/linguard/web/obj/Debug/net6.0/Web.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -00eb7b788b62ec2e351df56a3cef9cb61cce3786 diff --git a/linguard/web/obj/Debug/net6.0/apphost.exe b/linguard/web/obj/Debug/net6.0/apphost.exe deleted file mode 100644 index 05545c9..0000000 Binary files a/linguard/web/obj/Debug/net6.0/apphost.exe and /dev/null differ diff --git a/linguard/web/obj/Debug/net6.0/ref/Linguard.Web.dll b/linguard/web/obj/Debug/net6.0/ref/Linguard.Web.dll deleted file mode 100644 index bda7695..0000000 Binary files a/linguard/web/obj/Debug/net6.0/ref/Linguard.Web.dll and /dev/null differ diff --git a/linguard/web/obj/Debug/net6.0/scopedcss/bundle/Linguard.Web.styles.css b/linguard/web/obj/Debug/net6.0/scopedcss/bundle/Linguard.Web.styles.css deleted file mode 100644 index 858ee78..0000000 --- a/linguard/web/obj/Debug/net6.0/scopedcss/bundle/Linguard.Web.styles.css +++ /dev/null @@ -1,134 +0,0 @@ -/* _content/Linguard.Web/Shared/MainLayout.razor.rz.scp.css */ -.page[b-8ahen79ohv] { - position: relative; - display: flex; - flex-direction: column; -} - -main[b-8ahen79ohv] { - flex: 1; -} - -.sidebar[b-8ahen79ohv] { - background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%); -} - -.top-row[b-8ahen79ohv] { - background-color: #f7f7f7; - border-bottom: 1px solid #d6d5d5; - justify-content: flex-end; - height: 3.5rem; - display: flex; - align-items: center; -} - - .top-row[b-8ahen79ohv] a, .top-row .btn-link[b-8ahen79ohv] { - white-space: nowrap; - margin-left: 1.5rem; - } - - .top-row a:first-child[b-8ahen79ohv] { - overflow: hidden; - text-overflow: ellipsis; - } - -@media (max-width: 640.98px) { - .top-row:not(.auth)[b-8ahen79ohv] { - display: none; - } - - .top-row.auth[b-8ahen79ohv] { - justify-content: space-between; - } - - .top-row a[b-8ahen79ohv], .top-row .btn-link[b-8ahen79ohv] { - margin-left: 0; - } -} - -@media (min-width: 641px) { - .page[b-8ahen79ohv] { - flex-direction: row; - } - - .sidebar[b-8ahen79ohv] { - width: 250px; - height: 100vh; - position: sticky; - top: 0; - } - - .top-row[b-8ahen79ohv] { - position: sticky; - top: 0; - z-index: 1; - } - - .top-row[b-8ahen79ohv], article[b-8ahen79ohv] { - padding-left: 2rem !important; - padding-right: 1.5rem !important; - } -} -/* _content/Linguard.Web/Shared/NavMenu.razor.rz.scp.css */ -.navbar-toggler[b-06vxonwb36] { - background-color: rgba(255, 255, 255, 0.1); -} - -.top-row[b-06vxonwb36] { - height: 3.5rem; - background-color: rgba(0,0,0,0.4); -} - -.navbar-brand[b-06vxonwb36] { - font-size: 1.1rem; -} - -.oi[b-06vxonwb36] { - width: 2rem; - font-size: 1.1rem; - vertical-align: text-top; - top: -2px; -} - -.nav-item[b-06vxonwb36] { - font-size: 0.9rem; - padding-bottom: 0.5rem; -} - - .nav-item:first-of-type[b-06vxonwb36] { - padding-top: 1rem; - } - - .nav-item:last-of-type[b-06vxonwb36] { - padding-bottom: 1rem; - } - - .nav-item[b-06vxonwb36] a { - color: #d7d7d7; - border-radius: 4px; - height: 3rem; - display: flex; - align-items: center; - line-height: 3rem; - } - -.nav-item[b-06vxonwb36] a.active { - background-color: rgba(255,255,255,0.25); - color: white; -} - -.nav-item[b-06vxonwb36] a:hover { - background-color: rgba(255,255,255,0.1); - color: white; -} - -@media (min-width: 641px) { - .navbar-toggler[b-06vxonwb36] { - display: none; - } - - .collapse[b-06vxonwb36] { - /* Never collapse the sidebar for wide screens */ - display: block; - } -} diff --git a/linguard/web/obj/Debug/net6.0/staticwebassets.build.json b/linguard/web/obj/Debug/net6.0/staticwebassets.build.json deleted file mode 100644 index 174dcef..0000000 --- a/linguard/web/obj/Debug/net6.0/staticwebassets.build.json +++ /dev/null @@ -1,564 +0,0 @@ -{ - "Version": 1, - "Hash": "3dkXtkS3r/bEBA3giR0R6GPt4XMlU8524mFmRfCLt08=", - "Source": "Linguard.Web", - "BasePath": "_content/Linguard.Web", - "Mode": "Default", - "ManifestType": "Build", - "ReferencedProjectsConfiguration": [], - "DiscoveryPatterns": [ - { - "Name": "Linguard.Web\\wwwroot", - "Source": "Linguard.Web", - "ContentRoot": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Web\\wwwroot\\", - "BasePath": "_content/Linguard.Web", - "Pattern": "**" - } - ], - "Assets": [ - { - "Identity": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\css\\dark-base.css", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "css/dark-base.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\css\\dark-base.css" - }, - { - "Identity": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\css\\dark.css", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "css/dark.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\css\\dark.css" - }, - { - "Identity": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\css\\default-base.css", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "css/default-base.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\css\\default-base.css" - }, - { - "Identity": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\css\\default.css", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "css/default.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\css\\default.css" - }, - { - "Identity": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\css\\humanistic-base.css", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "css/humanistic-base.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\css\\humanistic-base.css" - }, - { - "Identity": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\css\\humanistic.css", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "css/humanistic.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\css\\humanistic.css" - }, - { - "Identity": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\css\\software-base.css", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "css/software-base.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\css\\software-base.css" - }, - { - "Identity": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\css\\software.css", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "css/software.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\css\\software.css" - }, - { - "Identity": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\css\\standard-base.css", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "css/standard-base.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\css\\standard-base.css" - }, - { - "Identity": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\css\\standard.css", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "css/standard.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\css\\standard.css" - }, - { - "Identity": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\fonts\\MaterialIcons-Regular.woff", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "fonts/MaterialIcons-Regular.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\fonts\\MaterialIcons-Regular.woff" - }, - { - "Identity": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\fonts\\roboto-v15-latin-300.woff", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "fonts/roboto-v15-latin-300.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\fonts\\roboto-v15-latin-300.woff" - }, - { - "Identity": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\fonts\\roboto-v15-latin-700.woff", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "fonts/roboto-v15-latin-700.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\fonts\\roboto-v15-latin-700.woff" - }, - { - "Identity": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\fonts\\roboto-v15-latin-regular.woff", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "fonts/roboto-v15-latin-regular.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\fonts\\roboto-v15-latin-regular.woff" - }, - { - "Identity": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\fonts\\SourceSansPro-Black.woff", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "fonts/SourceSansPro-Black.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\fonts\\SourceSansPro-Black.woff" - }, - { - "Identity": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\fonts\\SourceSansPro-BlackIt.woff", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "fonts/SourceSansPro-BlackIt.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\fonts\\SourceSansPro-BlackIt.woff" - }, - { - "Identity": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\fonts\\SourceSansPro-Bold.woff", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "fonts/SourceSansPro-Bold.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\fonts\\SourceSansPro-Bold.woff" - }, - { - "Identity": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\fonts\\SourceSansPro-BoldIt.woff", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "fonts/SourceSansPro-BoldIt.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\fonts\\SourceSansPro-BoldIt.woff" - }, - { - "Identity": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\fonts\\SourceSansPro-ExtraLight.woff", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "fonts/SourceSansPro-ExtraLight.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\fonts\\SourceSansPro-ExtraLight.woff" - }, - { - "Identity": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\fonts\\SourceSansPro-ExtraLightIt.woff", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "fonts/SourceSansPro-ExtraLightIt.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\fonts\\SourceSansPro-ExtraLightIt.woff" - }, - { - "Identity": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\fonts\\SourceSansPro-It.woff", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "fonts/SourceSansPro-It.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\fonts\\SourceSansPro-It.woff" - }, - { - "Identity": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\fonts\\SourceSansPro-Light.woff", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "fonts/SourceSansPro-Light.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\fonts\\SourceSansPro-Light.woff" - }, - { - "Identity": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\fonts\\SourceSansPro-LightIt.woff", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "fonts/SourceSansPro-LightIt.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\fonts\\SourceSansPro-LightIt.woff" - }, - { - "Identity": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\fonts\\SourceSansPro-Regular.woff", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "fonts/SourceSansPro-Regular.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\fonts\\SourceSansPro-Regular.woff" - }, - { - "Identity": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\fonts\\SourceSansPro-Semibold.woff", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "fonts/SourceSansPro-Semibold.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\fonts\\SourceSansPro-Semibold.woff" - }, - { - "Identity": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\fonts\\SourceSansPro-SemiboldIt.woff", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "fonts/SourceSansPro-SemiboldIt.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\fonts\\SourceSansPro-SemiboldIt.woff" - }, - { - "Identity": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\Radzen.Blazor.js", - "SourceId": "Radzen.Blazor", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\", - "BasePath": "_content/Radzen.Blazor", - "RelativePath": "Radzen.Blazor.js", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\Radzen.Blazor.js" - }, - { - "Identity": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Web\\wwwroot\\css\\bootstrap\\bootstrap.min.css", - "SourceId": "Linguard.Web", - "SourceType": "Discovered", - "ContentRoot": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Web\\wwwroot\\", - "BasePath": "_content/Linguard.Web", - "RelativePath": "css/bootstrap/bootstrap.min.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot\\css\\bootstrap\\bootstrap.min.css" - }, - { - "Identity": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Web\\wwwroot\\css\\bootstrap\\bootstrap.min.css.map", - "SourceId": "Linguard.Web", - "SourceType": "Discovered", - "ContentRoot": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Web\\wwwroot\\", - "BasePath": "_content/Linguard.Web", - "RelativePath": "css/bootstrap/bootstrap.min.css.map", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot\\css\\bootstrap\\bootstrap.min.css.map" - }, - { - "Identity": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Web\\wwwroot\\css\\site.css", - "SourceId": "Linguard.Web", - "SourceType": "Discovered", - "ContentRoot": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Web\\wwwroot\\", - "BasePath": "_content/Linguard.Web", - "RelativePath": "css/site.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot\\css\\site.css" - }, - { - "Identity": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Web\\wwwroot\\favicon.ico", - "SourceId": "Linguard.Web", - "SourceType": "Discovered", - "ContentRoot": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Web\\wwwroot\\", - "BasePath": "_content/Linguard.Web", - "RelativePath": "favicon.ico", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot\\favicon.ico" - }, - { - "Identity": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Web\\wwwroot\\js\\helper.js", - "SourceId": "Linguard.Web", - "SourceType": "Discovered", - "ContentRoot": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Web\\wwwroot\\", - "BasePath": "_content/Linguard.Web", - "RelativePath": "js/helper.js", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "wwwroot\\js\\helper.js" - } - ] -} \ No newline at end of file diff --git a/linguard/web/obj/Debug/net6.0/staticwebassets.development.json b/linguard/web/obj/Debug/net6.0/staticwebassets.development.json deleted file mode 100644 index b23b2ac..0000000 --- a/linguard/web/obj/Debug/net6.0/staticwebassets.development.json +++ /dev/null @@ -1 +0,0 @@ -{"ContentRoots":["C:\\Users\\theyu\\repos\\linguard\\Linguard\\Web\\wwwroot\\","C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\staticwebassets\\"],"Root":{"Children":{"css":{"Children":{"bootstrap":{"Children":{"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap/bootstrap.min.css.map"},"Patterns":null}},"Asset":null,"Patterns":null},"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"favicon.ico":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"favicon.ico"},"Patterns":null},"js":{"Children":{"helper.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/helper.js"},"Patterns":null}},"Asset":null,"Patterns":null},"_content":{"Children":{"Radzen.Blazor":{"Children":{"css":{"Children":{"dark-base.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/dark-base.css"},"Patterns":null},"dark.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/dark.css"},"Patterns":null},"default-base.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/default-base.css"},"Patterns":null},"default.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/default.css"},"Patterns":null},"humanistic-base.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/humanistic-base.css"},"Patterns":null},"humanistic.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/humanistic.css"},"Patterns":null},"software-base.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/software-base.css"},"Patterns":null},"software.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/software.css"},"Patterns":null},"standard-base.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/standard-base.css"},"Patterns":null},"standard.css":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"css/standard.css"},"Patterns":null}},"Asset":null,"Patterns":null},"fonts":{"Children":{"MaterialIcons-Regular.woff":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/MaterialIcons-Regular.woff"},"Patterns":null},"roboto-v15-latin-300.woff":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/roboto-v15-latin-300.woff"},"Patterns":null},"roboto-v15-latin-700.woff":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/roboto-v15-latin-700.woff"},"Patterns":null},"roboto-v15-latin-regular.woff":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/roboto-v15-latin-regular.woff"},"Patterns":null},"SourceSansPro-Black.woff":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/SourceSansPro-Black.woff"},"Patterns":null},"SourceSansPro-BlackIt.woff":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/SourceSansPro-BlackIt.woff"},"Patterns":null},"SourceSansPro-Bold.woff":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/SourceSansPro-Bold.woff"},"Patterns":null},"SourceSansPro-BoldIt.woff":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/SourceSansPro-BoldIt.woff"},"Patterns":null},"SourceSansPro-ExtraLight.woff":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/SourceSansPro-ExtraLight.woff"},"Patterns":null},"SourceSansPro-ExtraLightIt.woff":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/SourceSansPro-ExtraLightIt.woff"},"Patterns":null},"SourceSansPro-It.woff":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/SourceSansPro-It.woff"},"Patterns":null},"SourceSansPro-Light.woff":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/SourceSansPro-Light.woff"},"Patterns":null},"SourceSansPro-LightIt.woff":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/SourceSansPro-LightIt.woff"},"Patterns":null},"SourceSansPro-Regular.woff":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/SourceSansPro-Regular.woff"},"Patterns":null},"SourceSansPro-Semibold.woff":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/SourceSansPro-Semibold.woff"},"Patterns":null},"SourceSansPro-SemiboldIt.woff":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"fonts/SourceSansPro-SemiboldIt.woff"},"Patterns":null}},"Asset":null,"Patterns":null},"Radzen.Blazor.js":{"Children":null,"Asset":{"ContentRootIndex":1,"SubPath":"Radzen.Blazor.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/linguard/web/obj/Web.csproj.nuget.dgspec.json b/linguard/web/obj/Web.csproj.nuget.dgspec.json deleted file mode 100644 index 99426f0..0000000 --- a/linguard/web/obj/Web.csproj.nuget.dgspec.json +++ /dev/null @@ -1,221 +0,0 @@ -{ - "format": 1, - "restore": { - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Web\\Web.csproj": {} - }, - "projects": { - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj": { - "version": "2.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj", - "projectName": "Linguard.Core", - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj", - "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": { - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj": { - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "Bogus": { - "target": "Package", - "version": "[34.0.1, )" - }, - "ByteSize": { - "target": "Package", - "version": "[2.1.1, )" - }, - "FluentValidation": { - "target": "Package", - "version": "[10.3.6, )" - }, - "IPNetwork2": { - "target": "Package", - "version": "[2.5.386, )" - }, - "Microsoft.PowerShell.SDK": { - "target": "Package", - "version": "[7.2.1, )" - }, - "System.Management.Automation": { - "target": "Package", - "version": "[7.2.1, )" - }, - "YamlDotNet": { - "target": "Package", - "version": "[11.2.1, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" - } - } - }, - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj": { - "version": "2.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj", - "projectName": "Linguard.Log", - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj", - "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "NLog": { - "target": "Package", - "version": "[4.7.13, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" - } - } - }, - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Web\\Web.csproj": { - "version": "2.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Web\\Web.csproj", - "projectName": "Linguard.Web", - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Web\\Web.csproj", - "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Web\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": { - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj": { - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "QRCoder": { - "target": "Package", - "version": "[1.4.3, )" - }, - "Radzen.Blazor": { - "target": "Package", - "version": "[3.15.2, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.AspNetCore.App": { - "privateAssets": "none" - }, - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/linguard/web/obj/Web.csproj.nuget.g.props b/linguard/web/obj/Web.csproj.nuget.g.props deleted file mode 100644 index 74f14b3..0000000 --- a/linguard/web/obj/Web.csproj.nuget.g.props +++ /dev/null @@ -1,21 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\theyu\.nuget\packages\ - PackageReference - 6.0.0 - - - - - - - - - C:\Users\theyu\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.2 - - \ No newline at end of file diff --git a/linguard/web/obj/Web.csproj.nuget.g.targets b/linguard/web/obj/Web.csproj.nuget.g.targets deleted file mode 100644 index 8ab0b0e..0000000 --- a/linguard/web/obj/Web.csproj.nuget.g.targets +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/linguard/web/obj/project.assets.json b/linguard/web/obj/project.assets.json deleted file mode 100644 index bc0f5f8..0000000 --- a/linguard/web/obj/project.assets.json +++ /dev/null @@ -1,5607 +0,0 @@ -{ - "version": 3, - "targets": { - "net6.0": { - "Bogus/34.0.1": { - "type": "package", - "compile": { - "lib/net6.0/Bogus.dll": {} - }, - "runtime": { - "lib/net6.0/Bogus.dll": {} - } - }, - "ByteSize/2.1.1": { - "type": "package", - "compile": { - "lib/net5.0/ByteSize.dll": {} - }, - "runtime": { - "lib/net5.0/ByteSize.dll": {} - } - }, - "FluentValidation/10.3.6": { - "type": "package", - "compile": { - "lib/net6.0/FluentValidation.dll": {} - }, - "runtime": { - "lib/net6.0/FluentValidation.dll": {} - } - }, - "IPNetwork2/2.5.386": { - "type": "package", - "compile": { - "lib/net5.0/System.Net.IPNetwork.dll": {} - }, - "runtime": { - "lib/net5.0/System.Net.IPNetwork.dll": {} - } - }, - "LibSassBuilder/2.0.1": { - "type": "package", - "build": { - "build/_._": {} - } - }, - "Markdig.Signed/0.22.0": { - "type": "package", - "compile": { - "lib/netcoreapp3.1/Markdig.Signed.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Markdig.Signed.dll": {} - } - }, - "Microsoft.ApplicationInsights/2.18.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.DiagnosticSource": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {} - } - }, - "Microsoft.AspNetCore.Authorization/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Metadata": "5.0.0", - "Microsoft.Extensions.Logging.Abstractions": "5.0.0", - "Microsoft.Extensions.Options": "5.0.0" - }, - "compile": { - "lib/net5.0/Microsoft.AspNetCore.Authorization.dll": {} - }, - "runtime": { - "lib/net5.0/Microsoft.AspNetCore.Authorization.dll": {} - } - }, - "Microsoft.AspNetCore.Components/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Authorization": "5.0.0", - "Microsoft.AspNetCore.Components.Analyzers": "5.0.0" - }, - "compile": { - "lib/net5.0/Microsoft.AspNetCore.Components.dll": {} - }, - "runtime": { - "lib/net5.0/Microsoft.AspNetCore.Components.dll": {} - } - }, - "Microsoft.AspNetCore.Components.Analyzers/5.0.0": { - "type": "package", - "build": { - "buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets": {} - } - }, - "Microsoft.AspNetCore.Components.Forms/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Components": "5.0.0" - }, - "compile": { - "lib/net5.0/Microsoft.AspNetCore.Components.Forms.dll": {} - }, - "runtime": { - "lib/net5.0/Microsoft.AspNetCore.Components.Forms.dll": {} - } - }, - "Microsoft.AspNetCore.Components.Web/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.AspNetCore.Components": "5.0.0", - "Microsoft.AspNetCore.Components.Forms": "5.0.0", - "Microsoft.Extensions.DependencyInjection": "5.0.0", - "Microsoft.JSInterop": "5.0.0", - "System.IO.Pipelines": "5.0.0" - }, - "compile": { - "lib/net5.0/Microsoft.AspNetCore.Components.Web.dll": {} - }, - "runtime": { - "lib/net5.0/Microsoft.AspNetCore.Components.Web.dll": {} - } - }, - "Microsoft.AspNetCore.Metadata/5.0.0": { - "type": "package", - "compile": { - "lib/net5.0/Microsoft.AspNetCore.Metadata.dll": {} - }, - "runtime": { - "lib/net5.0/Microsoft.AspNetCore.Metadata.dll": {} - } - }, - "Microsoft.Bcl.AsyncInterfaces/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} - } - }, - "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": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {} - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CodeAnalysis.CSharp/4.0.1": { - "type": "package", - "dependencies": { - "Microsoft.CodeAnalysis.Common": "[4.0.1]" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {} - }, - "resource": { - "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.CSharp/4.7.0": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "Microsoft.Extensions.DependencyInjection/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0" - }, - "compile": { - "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {} - }, - "runtime": { - "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.ObjectPool/5.0.10": { - "type": "package", - "compile": { - "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": {} - }, - "runtime": { - "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": {} - } - }, - "Microsoft.Extensions.Options/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "compile": { - "lib/net5.0/Microsoft.Extensions.Options.dll": {} - }, - "runtime": { - "lib/net5.0/Microsoft.Extensions.Options.dll": {} - } - }, - "Microsoft.Extensions.Primitives/5.0.0": { - "type": "package", - "compile": { - "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {} - }, - "runtime": { - "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {} - } - }, - "Microsoft.JSInterop/5.0.0": { - "type": "package", - "compile": { - "lib/net5.0/Microsoft.JSInterop.dll": {} - }, - "runtime": { - "lib/net5.0/Microsoft.JSInterop.dll": {} - } - }, - "Microsoft.Management.Infrastructure/2.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Management.Infrastructure.Runtime.Unix": "2.0.0", - "Microsoft.Management.Infrastructure.Runtime.Win": "2.0.0" - }, - "compile": { - "ref/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {}, - "ref/netstandard1.6/Microsoft.Management.Infrastructure.dll": {} - }, - "runtime": { - "lib/netstandard1.6/_._": {} - } - }, - "Microsoft.Management.Infrastructure.CimCmdlets/7.2.1": { - "type": "package", - "dependencies": { - "System.Management.Automation": "7.2.1" - }, - "compile": { - "ref/net6.0/System.Management.Automation.dll": {} - }, - "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.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": {} - }, - "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": {} - }, - "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": {} - }, - "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": {} - }, - "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": {} - }, - "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": {}, - "ref/net6.0/Microsoft.PowerShell.ConsoleHost.dll": {}, - "ref/net6.0/System.Management.Automation.dll": {} - }, - "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": {} - }, - "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/_._": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {} - }, - "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": {} - }, - "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": {} - }, - "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": {} - }, - "runtime": { - "lib/netstandard2.0/Namotion.Reflection.dll": {} - } - }, - "Newtonsoft.Json/13.0.1": { - "type": "package", - "compile": { - "lib/netstandard2.0/Newtonsoft.Json.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": {} - } - }, - "NJsonSchema/10.5.2": { - "type": "package", - "dependencies": { - "Namotion.Reflection": "2.0.3", - "Newtonsoft.Json": "9.0.1" - }, - "compile": { - "lib/netstandard2.0/NJsonSchema.dll": {} - }, - "runtime": { - "lib/netstandard2.0/NJsonSchema.dll": {} - } - }, - "NLog/4.7.13": { - "type": "package", - "compile": { - "lib/netstandard2.0/NLog.dll": {} - }, - "runtime": { - "lib/netstandard2.0/NLog.dll": {} - } - }, - "QRCoder/1.4.3": { - "type": "package", - "compile": { - "lib/net6.0/QRCoder.dll": {} - }, - "runtime": { - "lib/net6.0/QRCoder.dll": {} - } - }, - "Radzen.Blazor/3.15.2": { - "type": "package", - "dependencies": { - "LibSassBuilder": "2.0.1", - "Microsoft.AspNetCore.Components": "5.0.0", - "Microsoft.AspNetCore.Components.Web": "5.0.0", - "Microsoft.CSharp": "4.7.0", - "System.Linq.Dynamic.Core": "1.2.12" - }, - "compile": { - "lib/net5.0/Radzen.Blazor.dll": {} - }, - "runtime": { - "lib/net5.0/Radzen.Blazor.dll": {} - }, - "build": { - "buildTransitive/Radzen.Blazor.props": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Radzen.Blazor.props": {} - } - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.CodeDom.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Collections.Immutable/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Collections.Immutable.dll": {} - } - }, - "System.ComponentModel.Composition/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.ComponentModel.Composition.dll": {} - }, - "runtime": { - "lib/net6.0/System.ComponentModel.Composition.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.ComponentModel.Composition.Registration.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Configuration.ConfigurationManager.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Data.Odbc.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Data.OleDb.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/netcoreapp2.1/System.Data.SqlClient.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Diagnostics.DiagnosticSource/5.0.0": { - "type": "package", - "compile": { - "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {} - }, - "runtime": { - "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {} - } - }, - "System.Diagnostics.EventLog/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Diagnostics.EventLog.dll": {} - }, - "runtime": { - "lib/net6.0/System.Diagnostics.EventLog.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.DirectoryServices.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.DirectoryServices.AccountManagement.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.DirectoryServices.Protocols.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Drawing.Common.dll": {} - }, - "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.Formats.Asn1/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Formats.Asn1.dll": {} - }, - "runtime": { - "lib/net6.0/System.Formats.Asn1.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.IO.Packaging/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.IO.Packaging.dll": {} - }, - "runtime": { - "lib/net6.0/System.IO.Packaging.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.IO.Pipelines/5.0.0": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/System.IO.Pipelines.dll": {} - }, - "runtime": { - "lib/netcoreapp3.0/System.IO.Pipelines.dll": {} - } - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.IO.Ports.dll": {} - }, - "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.Dynamic.Core/1.2.12": { - "type": "package", - "compile": { - "lib/net5.0/System.Linq.Dynamic.Core.dll": {} - }, - "runtime": { - "lib/net5.0/System.Linq.Dynamic.Core.dll": {} - } - }, - "System.Management/6.0.0": { - "type": "package", - "dependencies": { - "System.CodeDom": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Management.dll": {} - }, - "runtime": { - "lib/net6.0/System.Management.dll": {} - }, - "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": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Net.Http.WinHttpHandler.dll": {} - }, - "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.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": {} - }, - "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.Context/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Reflection.Context.dll": {} - }, - "runtime": { - "lib/net6.0/System.Reflection.Context.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Reflection.DispatchProxy/4.7.1": { - "type": "package", - "compile": { - "ref/netstandard2.0/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/netcoreapp2.0/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Metadata/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Reflection.Metadata.dll": {} - } - }, - "System.Runtime.Caching/6.0.0": { - "type": "package", - "dependencies": { - "System.Configuration.ConfigurationManager": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Runtime.Caching.dll": {} - }, - "runtime": { - "lib/net6.0/System.Runtime.Caching.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Security.AccessControl/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.Security.AccessControl.dll": {} - }, - "runtime": { - "lib/net6.0/System.Security.AccessControl.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Security.Cryptography.Pkcs.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Security.Cryptography.Xml.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Security.Permissions.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Security.Principal.Windows/5.0.0": { - "type": "package", - "compile": { - "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.ServiceModel.Duplex/4.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": {} - } - }, - "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": {} - } - }, - "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": {} - } - }, - "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": {}, - "lib/net6.0/System.ServiceModel.dll": {} - } - }, - "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": {} - } - }, - "System.ServiceModel.Syndication/6.0.0": { - "type": "package", - "compile": { - "lib/net6.0/System.ServiceModel.Syndication.dll": {} - }, - "runtime": { - "lib/net6.0/System.ServiceModel.Syndication.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.ServiceProcess.ServiceController.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Speech.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Speech.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Text.Encoding.CodePages.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Text.Encodings.Web.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - }, - "runtimeTargets": { - "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": { - "assetType": "runtime", - "rid": "browser" - } - } - }, - "System.Threading.AccessControl/6.0.0": { - "type": "package", - "dependencies": { - "System.Security.AccessControl": "6.0.0" - }, - "compile": { - "lib/net6.0/System.Threading.AccessControl.dll": {} - }, - "runtime": { - "lib/net6.0/System.Threading.AccessControl.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Threading.AccessControl.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "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": {} - }, - "runtime": { - "lib/netstandard2.0/System.Web.Services.Description.dll": {} - }, - "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": {} - }, - "runtime": { - "lib/net6.0/System.Windows.Extensions.dll": {} - }, - "runtimeTargets": { - "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "YamlDotNet/11.2.1": { - "type": "package", - "compile": { - "lib/netstandard2.1/YamlDotNet.dll": {} - }, - "runtime": { - "lib/netstandard2.1/YamlDotNet.dll": {} - } - }, - "Linguard.Core/2.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v6.0", - "dependencies": { - "Bogus": "34.0.1", - "ByteSize": "2.1.1", - "FluentValidation": "10.3.6", - "IPNetwork2": "2.5.386", - "Linguard.Log": "2.0.0", - "Microsoft.PowerShell.SDK": "7.2.1", - "System.Management.Automation": "7.2.1", - "YamlDotNet": "11.2.1" - }, - "compile": { - "bin/placeholder/Linguard.Core.dll": {} - }, - "runtime": { - "bin/placeholder/Linguard.Core.dll": {} - } - }, - "Linguard.Log/2.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v6.0", - "dependencies": { - "NLog": "4.7.13" - }, - "compile": { - "bin/placeholder/Linguard.Log.dll": {} - }, - "runtime": { - "bin/placeholder/Linguard.Log.dll": {} - } - } - } - }, - "libraries": { - "Bogus/34.0.1": { - "sha512": "49iq7QrD0wb7V4/FcK8p3dWdJxNUbojaqK9L6KRvdikIuRjt38EsNp7QXICcYdbYw01K8BHUdxlnTNn/YX3qDA==", - "type": "package", - "path": "bogus/34.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "bogus.34.0.1.nupkg.sha512", - "bogus.nuspec", - "lib/net40/Bogus.dll", - "lib/net40/Bogus.xml", - "lib/net6.0/Bogus.dll", - "lib/net6.0/Bogus.xml", - "lib/netstandard1.3/Bogus.dll", - "lib/netstandard1.3/Bogus.xml", - "lib/netstandard2.0/Bogus.dll", - "lib/netstandard2.0/Bogus.xml" - ] - }, - "ByteSize/2.1.1": { - "sha512": "D+Y3NpbHrW21vZwwegeWf/8iAg2Mr0s7n1su8Ysho+O9dctJ5/EkWUi19QVxc6+nZl080gGTXBP/Nz0twSI3dA==", - "type": "package", - "path": "bytesize/2.1.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "bytesize.2.1.1.nupkg.sha512", - "bytesize.nuspec", - "lib/net45/ByteSize.dll", - "lib/net45/ByteSize.xml", - "lib/net5.0/ByteSize.dll", - "lib/net5.0/ByteSize.xml", - "lib/netstandard1.0/ByteSize.dll", - "lib/netstandard1.0/ByteSize.xml", - "lib/netstandard2.0/ByteSize.dll", - "lib/netstandard2.0/ByteSize.xml", - "lib/netstandard2.1/ByteSize.dll", - "lib/netstandard2.1/ByteSize.xml" - ] - }, - "FluentValidation/10.3.6": { - "sha512": "iMd370ZDx6ydm8t7bIFdRbSKX0e42lpvCtifUSbTSXOk5iKjmgl7HU0PXBhIWQAyIRi3gCwfMI9luj8H6K+byw==", - "type": "package", - "path": "fluentvalidation/10.3.6", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "fluent-validation-icon.png", - "fluentvalidation.10.3.6.nupkg.sha512", - "fluentvalidation.nuspec", - "lib/net5.0/FluentValidation.dll", - "lib/net5.0/FluentValidation.xml", - "lib/net6.0/FluentValidation.dll", - "lib/net6.0/FluentValidation.xml", - "lib/netstandard2.0/FluentValidation.dll", - "lib/netstandard2.0/FluentValidation.xml", - "lib/netstandard2.1/FluentValidation.dll", - "lib/netstandard2.1/FluentValidation.xml" - ] - }, - "IPNetwork2/2.5.386": { - "sha512": "6ihnNm82vyJsUYYfR2BRTziY/mQ5UGLsQZuhdSYPeTlbQLhBW/4BC9hBz3h5bFDn8PkVw9dP0cpv9brIBmk4Fw==", - "type": "package", - "path": "ipnetwork2/2.5.386", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE", - "ipnetwork2.2.5.386.nupkg.sha512", - "ipnetwork2.nuspec", - "lib/net40/System.Net.IPNetwork.dll", - "lib/net40/System.Net.IPNetwork.xml", - "lib/net45/System.Net.IPNetwork.dll", - "lib/net45/System.Net.IPNetwork.xml", - "lib/net46/System.Net.IPNetwork.dll", - "lib/net46/System.Net.IPNetwork.xml", - "lib/net47/System.Net.IPNetwork.dll", - "lib/net47/System.Net.IPNetwork.xml", - "lib/net48/System.Net.IPNetwork.dll", - "lib/net48/System.Net.IPNetwork.xml", - "lib/net5.0/System.Net.IPNetwork.dll", - "lib/net5.0/System.Net.IPNetwork.xml", - "lib/netcoreapp3.1/System.Net.IPNetwork.dll", - "lib/netcoreapp3.1/System.Net.IPNetwork.xml", - "lib/netstandard1.6/System.Net.IPNetwork.dll", - "lib/netstandard1.6/System.Net.IPNetwork.xml", - "lib/netstandard2.0/System.Net.IPNetwork.dll", - "lib/netstandard2.0/System.Net.IPNetwork.xml", - "lib/netstandard2.1/System.Net.IPNetwork.dll", - "lib/netstandard2.1/System.Net.IPNetwork.xml" - ] - }, - "LibSassBuilder/2.0.1": { - "sha512": "f+7TWQtCirW94VdzKL9SaAfeSF96TeEqdtDztmTGbndrcUlZZlL6uJLZKQCXQgj1BB3OqX0584OCvqFHrkAusA==", - "type": "package", - "path": "libsassbuilder/2.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LibSassBuilder.csproj", - "build/DesignTime/LibSassBuilder.DesignTime.targets", - "build/DesignTime/Rules/ProjectItemsSchema.xaml", - "build/DesignTime/Rules/SassFileType.xaml", - "build/LibSassBuilder.props", - "build/LibSassBuilder.targets", - "libsassbuilder.2.0.1.nupkg.sha512", - "libsassbuilder.nuspec", - "sass.png", - "tool/AdvancedStringBuilder.dll", - "tool/CommandLine.dll", - "tool/LibSassBuilder.deps.json", - "tool/LibSassBuilder.dll", - "tool/LibSassBuilder.exe", - "tool/LibSassBuilder.pdb", - "tool/LibSassBuilder.runtimeconfig.json", - "tool/LibSassHost.dll", - "tool/runtimes/linux-x64/native/libsass.so", - "tool/runtimes/osx-x64/native/libsass.dylib", - "tool/runtimes/win-x64/native/libsass.dll", - "tool/x64/libsass.dll" - ] - }, - "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.AspNetCore.Authorization/5.0.0": { - "sha512": "kNiUekkQZIgd0k8WJZVLpdaJSTgpwHT+gn9slPtON4FC8vGGsFWQo3Bd5wo363EJuxlOgszUNQBbpLAaFh1kFg==", - "type": "package", - "path": "microsoft.aspnetcore.authorization/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.AspNetCore.Authorization.dll", - "lib/net461/Microsoft.AspNetCore.Authorization.xml", - "lib/net5.0/Microsoft.AspNetCore.Authorization.dll", - "lib/net5.0/Microsoft.AspNetCore.Authorization.xml", - "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", - "microsoft.aspnetcore.authorization.5.0.0.nupkg.sha512", - "microsoft.aspnetcore.authorization.nuspec" - ] - }, - "Microsoft.AspNetCore.Components/5.0.0": { - "sha512": "kfJF9EqJGzVgfEN15vWI+8g+ZhtlMAk9YO6G8lXKO9s1AxWv+Ct4OLOMO46PXyjPWWJ7X9gded9EFVFyxsdyjg==", - "type": "package", - "path": "microsoft.aspnetcore.components/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.txt", - "lib/net5.0/Microsoft.AspNetCore.Components.dll", - "lib/net5.0/Microsoft.AspNetCore.Components.xml", - "microsoft.aspnetcore.components.5.0.0.nupkg.sha512", - "microsoft.aspnetcore.components.nuspec" - ] - }, - "Microsoft.AspNetCore.Components.Analyzers/5.0.0": { - "sha512": "G5SP+2FO90d84XB90A1NBKJaDjhkhcv3kDumd7zughGt1tNQn92sCpBoRs51LT1M1Cp4w4cD/WHS8WB8t5ol9A==", - "type": "package", - "path": "microsoft.aspnetcore.components.analyzers/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.txt", - "analyzers/dotnet/cs/Microsoft.AspNetCore.Components.Analyzers.dll", - "build/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets", - "buildTransitive/netstandard2.0/Microsoft.AspNetCore.Components.Analyzers.targets", - "microsoft.aspnetcore.components.analyzers.5.0.0.nupkg.sha512", - "microsoft.aspnetcore.components.analyzers.nuspec" - ] - }, - "Microsoft.AspNetCore.Components.Forms/5.0.0": { - "sha512": "6Xdql+Sbx7XM1XjNXx6iyEmlAujTM2GFgeOdzlHip3h6g/M3D/al+K945JuFQ5HlBUQv3SL0c6Okencad6nVmA==", - "type": "package", - "path": "microsoft.aspnetcore.components.forms/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.txt", - "lib/net5.0/Microsoft.AspNetCore.Components.Forms.dll", - "lib/net5.0/Microsoft.AspNetCore.Components.Forms.xml", - "microsoft.aspnetcore.components.forms.5.0.0.nupkg.sha512", - "microsoft.aspnetcore.components.forms.nuspec" - ] - }, - "Microsoft.AspNetCore.Components.Web/5.0.0": { - "sha512": "TYnULwOuF43ITRlL02CmVoXLb1t1NSNbmUXuIrS4IMJd+HjK+sIisTRoJOr4L13LDWmOr1OM8teA04tOFf4I6w==", - "type": "package", - "path": "microsoft.aspnetcore.components.web/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.txt", - "lib/net5.0/Microsoft.AspNetCore.Components.Web.dll", - "lib/net5.0/Microsoft.AspNetCore.Components.Web.xml", - "microsoft.aspnetcore.components.web.5.0.0.nupkg.sha512", - "microsoft.aspnetcore.components.web.nuspec" - ] - }, - "Microsoft.AspNetCore.Metadata/5.0.0": { - "sha512": "Gr7YSfoYYnyiQ3+se9RjiZhj2h7I9uDn0ps1kPfxGqLbC8fzpfAzb3EPbHz0sBHtw8aBE0zyckZixmAMqHJnpA==", - "type": "package", - "path": "microsoft.aspnetcore.metadata/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.AspNetCore.Metadata.dll", - "lib/net461/Microsoft.AspNetCore.Metadata.xml", - "lib/net5.0/Microsoft.AspNetCore.Metadata.dll", - "lib/net5.0/Microsoft.AspNetCore.Metadata.xml", - "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll", - "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.xml", - "microsoft.aspnetcore.metadata.5.0.0.nupkg.sha512", - "microsoft.aspnetcore.metadata.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.7.0": { - "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", - "type": "package", - "path": "microsoft.csharp/4.7.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/Microsoft.CSharp.dll", - "lib/netcoreapp2.0/_._", - "lib/netstandard1.3/Microsoft.CSharp.dll", - "lib/netstandard2.0/Microsoft.CSharp.dll", - "lib/netstandard2.0/Microsoft.CSharp.xml", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/uap10.0.16299/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "microsoft.csharp.4.7.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/netcoreapp2.0/_._", - "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/netstandard2.0/Microsoft.CSharp.dll", - "ref/netstandard2.0/Microsoft.CSharp.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/uap10.0.16299/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection/5.0.0": { - "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.DependencyInjection.dll", - "lib/net461/Microsoft.Extensions.DependencyInjection.xml", - "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", - "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512", - "microsoft.extensions.dependencyinjection.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { - "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", - "microsoft.extensions.dependencyinjection.abstractions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Logging.Abstractions/5.0.0": { - "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==", - "type": "package", - "path": "microsoft.extensions.logging.abstractions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", - "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", - "microsoft.extensions.logging.abstractions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.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.Extensions.Options/5.0.0": { - "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==", - "type": "package", - "path": "microsoft.extensions.options/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Options.dll", - "lib/net461/Microsoft.Extensions.Options.xml", - "lib/net5.0/Microsoft.Extensions.Options.dll", - "lib/net5.0/Microsoft.Extensions.Options.xml", - "lib/netstandard2.0/Microsoft.Extensions.Options.dll", - "lib/netstandard2.0/Microsoft.Extensions.Options.xml", - "microsoft.extensions.options.5.0.0.nupkg.sha512", - "microsoft.extensions.options.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Primitives/5.0.0": { - "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==", - "type": "package", - "path": "microsoft.extensions.primitives/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Primitives.dll", - "lib/net461/Microsoft.Extensions.Primitives.xml", - "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll", - "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", - "microsoft.extensions.primitives.5.0.0.nupkg.sha512", - "microsoft.extensions.primitives.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.JSInterop/5.0.0": { - "sha512": "qhLTZMoOsAbDWwE7M+VbjxH3EuP654tclaOhi6Sf7Xh6bj6TXDO0GiNQeNPdebMClKMGELJezOwbFp1BFB+9Ug==", - "type": "package", - "path": "microsoft.jsinterop/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "THIRD-PARTY-NOTICES.TXT", - "lib/net5.0/Microsoft.JSInterop.dll", - "lib/net5.0/Microsoft.JSInterop.xml", - "microsoft.jsinterop.5.0.0.nupkg.sha512", - "microsoft.jsinterop.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.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.1": { - "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", - "type": "package", - "path": "newtonsoft.json/13.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.md", - "lib/net20/Newtonsoft.Json.dll", - "lib/net20/Newtonsoft.Json.xml", - "lib/net35/Newtonsoft.Json.dll", - "lib/net35/Newtonsoft.Json.xml", - "lib/net40/Newtonsoft.Json.dll", - "lib/net40/Newtonsoft.Json.xml", - "lib/net45/Newtonsoft.Json.dll", - "lib/net45/Newtonsoft.Json.xml", - "lib/netstandard1.0/Newtonsoft.Json.dll", - "lib/netstandard1.0/Newtonsoft.Json.xml", - "lib/netstandard1.3/Newtonsoft.Json.dll", - "lib/netstandard1.3/Newtonsoft.Json.xml", - "lib/netstandard2.0/Newtonsoft.Json.dll", - "lib/netstandard2.0/Newtonsoft.Json.xml", - "newtonsoft.json.13.0.1.nupkg.sha512", - "newtonsoft.json.nuspec", - "packageIcon.png" - ] - }, - "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" - ] - }, - "NLog/4.7.13": { - "sha512": "AvoGpCuq36B+0wY313XA6gC+YeMvk24rqF8P+HS9fInBGOjCzPjpXp2ln9ATZjPOJtXgHfc8zNmTjyswFGLxvg==", - "type": "package", - "path": "nlog/4.7.13", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/monoandroid44/NLog.dll", - "lib/monoandroid44/NLog.xml", - "lib/net35/NLog.dll", - "lib/net35/NLog.xml", - "lib/net40-client/NLog.dll", - "lib/net40-client/NLog.xml", - "lib/net45/NLog.dll", - "lib/net45/NLog.xml", - "lib/netstandard1.3/NLog.dll", - "lib/netstandard1.3/NLog.xml", - "lib/netstandard1.5/NLog.dll", - "lib/netstandard1.5/NLog.xml", - "lib/netstandard2.0/NLog.dll", - "lib/netstandard2.0/NLog.xml", - "lib/sl4/NLog.dll", - "lib/sl4/NLog.xml", - "lib/sl5/NLog.dll", - "lib/sl5/NLog.xml", - "lib/wp8/NLog.dll", - "lib/wp8/NLog.xml", - "lib/xamarinios10/NLog.dll", - "lib/xamarinios10/NLog.xml", - "nlog.4.7.13.nupkg.sha512", - "nlog.nuspec" - ] - }, - "QRCoder/1.4.3": { - "sha512": "fWuFqjm8GTlEb2GqBl3Hi8HZZeZQwBSHxvRPtPjyNbT82H0ff0JwavKRBmMaXCno1Av6McPC8aJzri0Mj2w9Jw==", - "type": "package", - "path": "qrcoder/1.4.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net35/QRCoder.dll", - "lib/net40/QRCoder.dll", - "lib/net5.0-windows7.0/QRCoder.dll", - "lib/net5.0/QRCoder.dll", - "lib/net6.0-windows7.0/QRCoder.dll", - "lib/net6.0/QRCoder.dll", - "lib/netstandard1.3/QRCoder.dll", - "lib/netstandard2.0/QRCoder.dll", - "nuget-icon.png", - "nuget-readme.md", - "qrcoder.1.4.3.nupkg.sha512", - "qrcoder.nuspec" - ] - }, - "Radzen.Blazor/3.15.2": { - "sha512": "KlNfXNy3miobmXUZJeLkeRIDpI6N3FaszVFiVrjdplVYUvA+1kmMhBPP+fEZel4CbGVEDsSp0EZFnBfiUxN0gw==", - "type": "package", - "path": "radzen.blazor/3.15.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.txt", - "build/Microsoft.AspNetCore.StaticWebAssets.props", - "build/Radzen.Blazor.props", - "buildMultiTargeting/Radzen.Blazor.props", - "buildTransitive/Radzen.Blazor.props", - "icon.png", - "lib/net5.0/Radzen.Blazor.dll", - "lib/net5.0/Radzen.Blazor.xml", - "lib/netstandard2.1/Radzen.Blazor.dll", - "lib/netstandard2.1/Radzen.Blazor.xml", - "radzen.blazor.3.15.2.nupkg.sha512", - "radzen.blazor.nuspec", - "staticwebassets/Radzen.Blazor.js", - "staticwebassets/css/dark-base.css", - "staticwebassets/css/dark.css", - "staticwebassets/css/default-base.css", - "staticwebassets/css/default.css", - "staticwebassets/css/humanistic-base.css", - "staticwebassets/css/humanistic.css", - "staticwebassets/css/software-base.css", - "staticwebassets/css/software.css", - "staticwebassets/css/standard-base.css", - "staticwebassets/css/standard.css", - "staticwebassets/fonts/MaterialIcons-Regular.woff", - "staticwebassets/fonts/SourceSansPro-Black.woff", - "staticwebassets/fonts/SourceSansPro-BlackIt.woff", - "staticwebassets/fonts/SourceSansPro-Bold.woff", - "staticwebassets/fonts/SourceSansPro-BoldIt.woff", - "staticwebassets/fonts/SourceSansPro-ExtraLight.woff", - "staticwebassets/fonts/SourceSansPro-ExtraLightIt.woff", - "staticwebassets/fonts/SourceSansPro-It.woff", - "staticwebassets/fonts/SourceSansPro-Light.woff", - "staticwebassets/fonts/SourceSansPro-LightIt.woff", - "staticwebassets/fonts/SourceSansPro-Regular.woff", - "staticwebassets/fonts/SourceSansPro-Semibold.woff", - "staticwebassets/fonts/SourceSansPro-SemiboldIt.woff", - "staticwebassets/fonts/roboto-v15-latin-300.woff", - "staticwebassets/fonts/roboto-v15-latin-700.woff", - "staticwebassets/fonts/roboto-v15-latin-regular.woff" - ] - }, - "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" - ] - }, - "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.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.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.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.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.Pipelines/5.0.0": { - "sha512": "irMYm3vhVgRsYvHTU5b2gsT2CwT/SMM6LZFzuJjpIvT5Z4CshxNsaoBC1X/LltwuR3Opp8d6jOS/60WwOb7Q2Q==", - "type": "package", - "path": "system.io.pipelines/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.IO.Pipelines.dll", - "lib/net461/System.IO.Pipelines.xml", - "lib/netcoreapp3.0/System.IO.Pipelines.dll", - "lib/netcoreapp3.0/System.IO.Pipelines.xml", - "lib/netstandard1.3/System.IO.Pipelines.dll", - "lib/netstandard1.3/System.IO.Pipelines.xml", - "lib/netstandard2.0/System.IO.Pipelines.dll", - "lib/netstandard2.0/System.IO.Pipelines.xml", - "ref/netcoreapp2.0/System.IO.Pipelines.dll", - "ref/netcoreapp2.0/System.IO.Pipelines.xml", - "system.io.pipelines.5.0.0.nupkg.sha512", - "system.io.pipelines.nuspec", - "useSharedDesignerContext.txt", - "version.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.Dynamic.Core/1.2.12": { - "sha512": "wJDLhidcJnLAJeZ4z10YVAxMm4rTW0zlYmUjriJTo4eGLHD5NKZOm6qFabkn5TinbfZ6LM9LeYFPyiQMpRly3Q==", - "type": "package", - "path": "system.linq.dynamic.core/1.2.12", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net35/System.Linq.Dynamic.Core.dll", - "lib/net35/System.Linq.Dynamic.Core.pdb", - "lib/net35/System.Linq.Dynamic.Core.xml", - "lib/net40/System.Linq.Dynamic.Core.dll", - "lib/net40/System.Linq.Dynamic.Core.pdb", - "lib/net40/System.Linq.Dynamic.Core.xml", - "lib/net45/System.Linq.Dynamic.Core.dll", - "lib/net45/System.Linq.Dynamic.Core.pdb", - "lib/net45/System.Linq.Dynamic.Core.xml", - "lib/net46/System.Linq.Dynamic.Core.dll", - "lib/net46/System.Linq.Dynamic.Core.pdb", - "lib/net46/System.Linq.Dynamic.Core.xml", - "lib/net5.0/System.Linq.Dynamic.Core.dll", - "lib/net5.0/System.Linq.Dynamic.Core.pdb", - "lib/net5.0/System.Linq.Dynamic.Core.xml", - "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll", - "lib/netcoreapp2.1/System.Linq.Dynamic.Core.pdb", - "lib/netcoreapp2.1/System.Linq.Dynamic.Core.xml", - "lib/netstandard1.3/System.Linq.Dynamic.Core.dll", - "lib/netstandard1.3/System.Linq.Dynamic.Core.pdb", - "lib/netstandard1.3/System.Linq.Dynamic.Core.xml", - "lib/netstandard2.0/System.Linq.Dynamic.Core.dll", - "lib/netstandard2.0/System.Linq.Dynamic.Core.pdb", - "lib/netstandard2.0/System.Linq.Dynamic.Core.xml", - "lib/netstandard2.1/System.Linq.Dynamic.Core.dll", - "lib/netstandard2.1/System.Linq.Dynamic.Core.pdb", - "lib/netstandard2.1/System.Linq.Dynamic.Core.xml", - "lib/uap10.0.10240/System.Linq.Dynamic.Core.dll", - "lib/uap10.0.10240/System.Linq.Dynamic.Core.pdb", - "lib/uap10.0.10240/System.Linq.Dynamic.Core.pri", - "lib/uap10.0.10240/System.Linq.Dynamic.Core.xml", - "system.linq.dynamic.core.1.2.12.nupkg.sha512", - "system.linq.dynamic.core.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.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.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.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.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.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.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.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.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" - ] - }, - "YamlDotNet/11.2.1": { - "sha512": "tBt8K+korVfrjH9wyDEhiLKxbs8qoLCLIFwvYgkSUuMC9//w3z0cFQ8LQAI/5MCKq+BMil0cfRTRvPeE7eXhQw==", - "type": "package", - "path": "yamldotnet/11.2.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.txt", - "images/yamldotnet.png", - "lib/net20/YamlDotNet.dll", - "lib/net20/YamlDotNet.xml", - "lib/net35-client/YamlDotNet.dll", - "lib/net35-client/YamlDotNet.xml", - "lib/net35/YamlDotNet.dll", - "lib/net35/YamlDotNet.xml", - "lib/net45/YamlDotNet.dll", - "lib/net45/YamlDotNet.xml", - "lib/netstandard1.3/YamlDotNet.dll", - "lib/netstandard1.3/YamlDotNet.xml", - "lib/netstandard2.1/YamlDotNet.dll", - "lib/netstandard2.1/YamlDotNet.xml", - "yamldotnet.11.2.1.nupkg.sha512", - "yamldotnet.nuspec" - ] - }, - "Linguard.Core/2.0.0": { - "type": "project", - "path": "../Core/Core.csproj", - "msbuildProject": "../Core/Core.csproj" - }, - "Linguard.Log/2.0.0": { - "type": "project", - "path": "../Log/Log.csproj", - "msbuildProject": "../Log/Log.csproj" - } - }, - "projectFileDependencyGroups": { - "net6.0": [ - "Linguard.Core >= 2.0.0", - "QRCoder >= 1.4.3", - "Radzen.Blazor >= 3.15.2" - ] - }, - "packageFolders": { - "C:\\Users\\theyu\\.nuget\\packages\\": {} - }, - "project": { - "version": "2.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Web\\Web.csproj", - "projectName": "Linguard.Web", - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Web\\Web.csproj", - "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", - "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Web\\obj\\", - "projectStyle": "PackageReference", - "configFilePaths": [ - "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" - ], - "originalTargetFrameworks": [ - "net6.0" - ], - "sources": { - "https://api.nuget.org/v3/index.json": {} - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "projectReferences": { - "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj": { - "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "net6.0": { - "targetAlias": "net6.0", - "dependencies": { - "QRCoder": { - "target": "Package", - "version": "[1.4.3, )" - }, - "Radzen.Blazor": { - "target": "Package", - "version": "[3.15.2, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.AspNetCore.App": { - "privateAssets": "none" - }, - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/linguard/web/obj/project.nuget.cache b/linguard/web/obj/project.nuget.cache deleted file mode 100644 index 3395522..0000000 --- a/linguard/web/obj/project.nuget.cache +++ /dev/null @@ -1,122 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "DGFG5S+hiK3gAkHyim/8qHasVhz122rrwQS0L6dfLql3JlgGMTj66pEzsYyHGzAvNT7MiV+cWRZD5kARmv8LDQ==", - "success": true, - "projectFilePath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Web\\Web.csproj", - "expectedPackageFiles": [ - "C:\\Users\\theyu\\.nuget\\packages\\bogus\\34.0.1\\bogus.34.0.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\bytesize\\2.1.1\\bytesize.2.1.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\fluentvalidation\\10.3.6\\fluentvalidation.10.3.6.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\ipnetwork2\\2.5.386\\ipnetwork2.2.5.386.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\libsassbuilder\\2.0.1\\libsassbuilder.2.0.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\markdig.signed\\0.22.0\\markdig.signed.0.22.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.applicationinsights\\2.18.0\\microsoft.applicationinsights.2.18.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.aspnetcore.authorization\\5.0.0\\microsoft.aspnetcore.authorization.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.aspnetcore.components\\5.0.0\\microsoft.aspnetcore.components.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.aspnetcore.components.analyzers\\5.0.0\\microsoft.aspnetcore.components.analyzers.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.aspnetcore.components.forms\\5.0.0\\microsoft.aspnetcore.components.forms.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.aspnetcore.components.web\\5.0.0\\microsoft.aspnetcore.components.web.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.aspnetcore.metadata\\5.0.0\\microsoft.aspnetcore.metadata.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\5.0.0\\microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.2\\microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.codeanalysis.common\\4.0.1\\microsoft.codeanalysis.common.4.0.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.0.1\\microsoft.codeanalysis.csharp.4.0.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.0\\microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\5.0.0\\microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.objectpool\\5.0.10\\microsoft.extensions.objectpool.5.0.10.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.options\\5.0.0\\microsoft.extensions.options.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.primitives\\5.0.0\\microsoft.extensions.primitives.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.jsinterop\\5.0.0\\microsoft.jsinterop.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.management.infrastructure\\2.0.0\\microsoft.management.infrastructure.2.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.management.infrastructure.cimcmdlets\\7.2.1\\microsoft.management.infrastructure.cimcmdlets.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.management.infrastructure.runtime.unix\\2.0.0\\microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.management.infrastructure.runtime.win\\2.0.0\\microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.netcore.windows.apisets\\1.0.1\\microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.commands.diagnostics\\7.2.1\\microsoft.powershell.commands.diagnostics.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.commands.management\\7.2.1\\microsoft.powershell.commands.management.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.commands.utility\\7.2.1\\microsoft.powershell.commands.utility.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.consolehost\\7.2.1\\microsoft.powershell.consolehost.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.coreclr.eventing\\7.2.1\\microsoft.powershell.coreclr.eventing.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.markdownrender\\7.2.0\\microsoft.powershell.markdownrender.7.2.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.native\\7.2.0\\microsoft.powershell.native.7.2.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.sdk\\7.2.1\\microsoft.powershell.sdk.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.security\\7.2.1\\microsoft.powershell.security.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.win32.registry.accesscontrol\\6.0.0\\microsoft.win32.registry.accesscontrol.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.windows.compatibility\\6.0.0\\microsoft.windows.compatibility.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.wsman.management\\7.2.1\\microsoft.wsman.management.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\microsoft.wsman.runtime\\7.2.1\\microsoft.wsman.runtime.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\namotion.reflection\\2.0.3\\namotion.reflection.2.0.3.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\njsonschema\\10.5.2\\njsonschema.10.5.2.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\nlog\\4.7.13\\nlog.4.7.13.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\qrcoder\\1.4.3\\qrcoder.1.4.3.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\radzen.blazor\\3.15.2\\radzen.blazor.3.15.2.nupkg.sha512", - "C:\\Users\\theyu\\.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\\theyu\\.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\\theyu\\.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\\theyu\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.7.0\\runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\runtime.native.system.io.ports\\6.0.0\\runtime.native.system.io.ports.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.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\\theyu\\.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\\theyu\\.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\\theyu\\.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\\theyu\\.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\\theyu\\.nuget\\packages\\system.codedom\\6.0.0\\system.codedom.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.componentmodel.composition\\6.0.0\\system.componentmodel.composition.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.componentmodel.composition.registration\\6.0.0\\system.componentmodel.composition.registration.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.0\\system.configuration.configurationmanager.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.data.odbc\\6.0.0\\system.data.odbc.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.data.oledb\\6.0.0\\system.data.oledb.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.data.sqlclient\\4.8.3\\system.data.sqlclient.4.8.3.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.diagnosticsource\\5.0.0\\system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.eventlog\\6.0.0\\system.diagnostics.eventlog.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.performancecounter\\6.0.0\\system.diagnostics.performancecounter.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.directoryservices\\6.0.0\\system.directoryservices.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.directoryservices.accountmanagement\\6.0.0\\system.directoryservices.accountmanagement.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.directoryservices.protocols\\6.0.0\\system.directoryservices.protocols.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.formats.asn1\\6.0.0\\system.formats.asn1.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.io.packaging\\6.0.0\\system.io.packaging.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.io.pipelines\\5.0.0\\system.io.pipelines.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.io.ports\\6.0.0\\system.io.ports.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.linq.dynamic.core\\1.2.12\\system.linq.dynamic.core.1.2.12.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.management\\6.0.0\\system.management.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.management.automation\\7.2.1\\system.management.automation.7.2.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.net.http.winhttphandler\\6.0.0\\system.net.http.winhttphandler.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.private.servicemodel\\4.9.0\\system.private.servicemodel.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.context\\6.0.0\\system.reflection.context.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.dispatchproxy\\4.7.1\\system.reflection.dispatchproxy.4.7.1.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.metadata\\5.0.0\\system.reflection.metadata.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.caching\\6.0.0\\system.runtime.caching.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.pkcs\\6.0.0\\system.security.cryptography.pkcs.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.protecteddata\\6.0.0\\system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.xml\\6.0.0\\system.security.cryptography.xml.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.duplex\\4.9.0\\system.servicemodel.duplex.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.http\\4.9.0\\system.servicemodel.http.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.nettcp\\4.9.0\\system.servicemodel.nettcp.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.primitives\\4.9.0\\system.servicemodel.primitives.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.security\\4.9.0\\system.servicemodel.security.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.syndication\\6.0.0\\system.servicemodel.syndication.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.serviceprocess.servicecontroller\\6.0.0\\system.serviceprocess.servicecontroller.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.speech\\6.0.0\\system.speech.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.text.encoding.codepages\\6.0.0\\system.text.encoding.codepages.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.text.encodings.web\\6.0.0\\system.text.encodings.web.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.threading.accesscontrol\\6.0.0\\system.threading.accesscontrol.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.web.services.description\\4.9.0\\system.web.services.description.4.9.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512", - "C:\\Users\\theyu\\.nuget\\packages\\yamldotnet\\11.2.1\\yamldotnet.11.2.1.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/linguard/web/obj/project.packagespec.json b/linguard/web/obj/project.packagespec.json deleted file mode 100644 index 5d0586c..0000000 --- a/linguard/web/obj/project.packagespec.json +++ /dev/null @@ -1 +0,0 @@ -"restore":{"projectUniqueName":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Web\\Web.csproj","projectName":"Linguard.Web","projectPath":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Web\\Web.csproj","outputPath":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Web\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net6.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net6.0":{"targetAlias":"net6.0","projectReferences":{"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj":{"projectPath":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net6.0":{"targetAlias":"net6.0","dependencies":{"QRCoder":{"target":"Package","version":"[1.4.3, )"},"Radzen.Blazor":{"target":"Package","version":"[3.15.2, )"}},"imports":["net461","net462","net47","net471","net472","net48"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/linguard/web/obj/rider.project.restore.info b/linguard/web/obj/rider.project.restore.info deleted file mode 100644 index 8152089..0000000 --- a/linguard/web/obj/rider.project.restore.info +++ /dev/null @@ -1 +0,0 @@ -16455551443228292 \ No newline at end of file diff --git a/linguard/web/obj/staticwebassets.pack.sentinel b/linguard/web/obj/staticwebassets.pack.sentinel deleted file mode 100644 index 86e4abd..0000000 --- a/linguard/web/obj/staticwebassets.pack.sentinel +++ /dev/null @@ -1,319 +0,0 @@ -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 -2.0 diff --git a/scripts/install.sh b/scripts/install.sh old mode 100755 new mode 100644 diff --git a/scripts/log.sh b/scripts/log.sh old mode 100755 new mode 100644 diff --git a/systemd/linguard.service b/systemd/linguard.service index b1b0be9..0fbe1b6 100644 --- a/systemd/linguard.service +++ b/systemd/linguard.service @@ -7,7 +7,9 @@ Type=simple Restart=always User=linguard WorkingDirectory=/var/www/linguard/web +ExecStartPre=export LinguardWorkdir=/var/www/linguard/web ExecStart=/var/www/linguard/web/Linguard.Web +ExecStop=unset export LinguardWorkdir [Install] WantedBy=multi-user.target \ No newline at end of file