commit e5ebdacc9cd634cb0d071579a8bc2730a27fcc0e Author: purifetchi <0xlunaric@gmail.com> Date: Sat Mar 8 10:25:16 2025 +0100 soap diff --git a/IS_Lab5_SOAPCS/.idea/.idea.IS_Lab5_SOAPCS/.idea/.gitignore b/IS_Lab5_SOAPCS/.idea/.idea.IS_Lab5_SOAPCS/.idea/.gitignore new file mode 100644 index 0000000..668c051 --- /dev/null +++ b/IS_Lab5_SOAPCS/.idea/.idea.IS_Lab5_SOAPCS/.idea/.gitignore @@ -0,0 +1,13 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Rider ignored files +/modules.xml +/contentModel.xml +/.idea.IS_Lab5_SOAPCS.iml +/projectSettingsUpdater.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/IS_Lab5_SOAPCS/.idea/.idea.IS_Lab5_SOAPCS/.idea/indexLayout.xml b/IS_Lab5_SOAPCS/.idea/.idea.IS_Lab5_SOAPCS/.idea/indexLayout.xml new file mode 100644 index 0000000..7b08163 --- /dev/null +++ b/IS_Lab5_SOAPCS/.idea/.idea.IS_Lab5_SOAPCS/.idea/indexLayout.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/IS_Lab5_SOAPCS/.idea/.idea.IS_Lab5_SOAPCS/.idea/vcs.xml b/IS_Lab5_SOAPCS/.idea/.idea.IS_Lab5_SOAPCS/.idea/vcs.xml new file mode 100644 index 0000000..6c0b863 --- /dev/null +++ b/IS_Lab5_SOAPCS/.idea/.idea.IS_Lab5_SOAPCS/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/IS_Lab5_SOAPCS/Connected Services/MyFirstWSService/ConnectedService.json b/IS_Lab5_SOAPCS/Connected Services/MyFirstWSService/ConnectedService.json new file mode 100644 index 0000000..558ea42 --- /dev/null +++ b/IS_Lab5_SOAPCS/Connected Services/MyFirstWSService/ConnectedService.json @@ -0,0 +1,37 @@ +{ + "providerId": "Microsoft.Tools.ServiceModel.Svcutil", + "version": "2.1.0", + "ExtendedData": { + "inputs": [ + "http://localhost:7779/ws/first?wsdl" + ], + "namespaceMappings": [ + "*, IS_Lab5_SOAPCS.MyFirstWSService" + ], + "outputFile": "MyFirstWSService.cs", + "references": [ + "Microsoft.Bcl.AsyncInterfaces, {Microsoft.Bcl.AsyncInterfaces, 5.0.0}", + "Microsoft.Extensions.ObjectPool, {Microsoft.Extensions.ObjectPool, 5.0.10}", + "Microsoft.IdentityModel.Logging, {Microsoft.IdentityModel.Logging, 6.8.0}", + "Microsoft.IdentityModel.Protocols.WsTrust, {Microsoft.IdentityModel.Protocols.WsTrust, 6.8.0}", + "Microsoft.IdentityModel.Tokens, {Microsoft.IdentityModel.Tokens, 6.8.0}", + "Microsoft.IdentityModel.Tokens.Saml, {Microsoft.IdentityModel.Tokens.Saml, 6.8.0}", + "Microsoft.IdentityModel.Xml, {Microsoft.IdentityModel.Xml, 6.8.0}", + "System.Formats.Asn1, {System.Formats.Asn1, 6.0.0}", + "System.IO, {System.IO, 4.3.0}", + "System.Reflection.DispatchProxy, {System.Reflection.DispatchProxy, 4.7.1}", + "System.Runtime, {System.Runtime, 4.3.0}", + "System.Security.AccessControl, {System.Security.AccessControl, 6.0.0}", + "System.Security.Cryptography.Cng, {System.Security.Cryptography.Cng, 4.5.0}", + "System.Security.Cryptography.Pkcs, {System.Security.Cryptography.Pkcs, 6.0.1}", + "System.Security.Cryptography.Xml, {System.Security.Cryptography.Xml, 6.0.1}", + "System.Security.Principal.Windows, {System.Security.Principal.Windows, 5.0.0}", + "System.Text.Encoding, {System.Text.Encoding, 4.3.0}", + "System.Threading.Tasks, {System.Threading.Tasks, 4.3.0}", + "System.Xml.ReaderWriter, {System.Xml.ReaderWriter, 4.3.0}", + "System.Xml.XmlDocument, {System.Xml.XmlDocument, 4.3.0}" + ], + "targetFramework": "net8.0", + "typeReuseMode": "All" + } +} \ No newline at end of file diff --git a/IS_Lab5_SOAPCS/Connected Services/MyFirstWSService/MyFirstWSService.cs b/IS_Lab5_SOAPCS/Connected Services/MyFirstWSService/MyFirstWSService.cs new file mode 100644 index 0000000..53d8159 --- /dev/null +++ b/IS_Lab5_SOAPCS/Connected Services/MyFirstWSService/MyFirstWSService.cs @@ -0,0 +1,134 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace IS_Lab5_SOAPCS.MyFirstWSService +{ + + + [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "2.1.0")] + [System.ServiceModel.ServiceContractAttribute(Namespace="http://soapsoapsoap.com/", ConfigurationName="IS_Lab5_SOAPCS.MyFirstWSService.MyFirstSOAPInterface")] + public interface MyFirstSOAPInterface + { + + [System.ServiceModel.OperationContractAttribute(Action="http://soapsoapsoap.com/MyFirstSOAPInterface/getHelloWorldAsStringRequest", ReplyAction="http://soapsoapsoap.com/MyFirstSOAPInterface/getHelloWorldAsStringResponse")] + [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)] + [return: System.ServiceModel.MessageParameterAttribute(Name="return")] + System.Threading.Tasks.Task getHelloWorldAsStringAsync(string arg0); + + [System.ServiceModel.OperationContractAttribute(Action="http://soapsoapsoap.com/MyFirstSOAPInterface/getDaysBetweenDatesRequest", ReplyAction="http://soapsoapsoap.com/MyFirstSOAPInterface/getDaysBetweenDatesResponse")] + [System.ServiceModel.DataContractFormatAttribute(Style=System.ServiceModel.OperationFormatStyle.Rpc)] + [return: System.ServiceModel.MessageParameterAttribute(Name="return")] + System.Threading.Tasks.Task getDaysBetweenDatesAsync(string arg0, string arg1); + } + + [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "2.1.0")] + public interface MyFirstSOAPInterfaceChannel : IS_Lab5_SOAPCS.MyFirstWSService.MyFirstSOAPInterface, System.ServiceModel.IClientChannel + { + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.Tools.ServiceModel.Svcutil", "2.1.0")] + public partial class MyFirstSOAPInterfaceClient : System.ServiceModel.ClientBase, IS_Lab5_SOAPCS.MyFirstWSService.MyFirstSOAPInterface + { + + /// + /// Implement this partial method to configure the service endpoint. + /// + /// The endpoint to configure + /// The client credentials + static partial void ConfigureEndpoint(System.ServiceModel.Description.ServiceEndpoint serviceEndpoint, System.ServiceModel.Description.ClientCredentials clientCredentials); + + public MyFirstSOAPInterfaceClient() : + base(MyFirstSOAPInterfaceClient.GetDefaultBinding(), MyFirstSOAPInterfaceClient.GetDefaultEndpointAddress()) + { + this.Endpoint.Name = EndpointConfiguration.MyFirstWSPort.ToString(); + ConfigureEndpoint(this.Endpoint, this.ClientCredentials); + } + + public MyFirstSOAPInterfaceClient(EndpointConfiguration endpointConfiguration) : + base(MyFirstSOAPInterfaceClient.GetBindingForEndpoint(endpointConfiguration), MyFirstSOAPInterfaceClient.GetEndpointAddress(endpointConfiguration)) + { + this.Endpoint.Name = endpointConfiguration.ToString(); + ConfigureEndpoint(this.Endpoint, this.ClientCredentials); + } + + public MyFirstSOAPInterfaceClient(EndpointConfiguration endpointConfiguration, string remoteAddress) : + base(MyFirstSOAPInterfaceClient.GetBindingForEndpoint(endpointConfiguration), new System.ServiceModel.EndpointAddress(remoteAddress)) + { + this.Endpoint.Name = endpointConfiguration.ToString(); + ConfigureEndpoint(this.Endpoint, this.ClientCredentials); + } + + public MyFirstSOAPInterfaceClient(EndpointConfiguration endpointConfiguration, System.ServiceModel.EndpointAddress remoteAddress) : + base(MyFirstSOAPInterfaceClient.GetBindingForEndpoint(endpointConfiguration), remoteAddress) + { + this.Endpoint.Name = endpointConfiguration.ToString(); + ConfigureEndpoint(this.Endpoint, this.ClientCredentials); + } + + public MyFirstSOAPInterfaceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : + base(binding, remoteAddress) + { + } + + public System.Threading.Tasks.Task getHelloWorldAsStringAsync(string arg0) + { + return base.Channel.getHelloWorldAsStringAsync(arg0); + } + + public System.Threading.Tasks.Task getDaysBetweenDatesAsync(string arg0, string arg1) + { + return base.Channel.getDaysBetweenDatesAsync(arg0, arg1); + } + + public virtual System.Threading.Tasks.Task OpenAsync() + { + return System.Threading.Tasks.Task.Factory.FromAsync(((System.ServiceModel.ICommunicationObject)(this)).BeginOpen(null, null), new System.Action(((System.ServiceModel.ICommunicationObject)(this)).EndOpen)); + } + + private static System.ServiceModel.Channels.Binding GetBindingForEndpoint(EndpointConfiguration endpointConfiguration) + { + if ((endpointConfiguration == EndpointConfiguration.MyFirstWSPort)) + { + System.ServiceModel.BasicHttpBinding result = new System.ServiceModel.BasicHttpBinding(); + result.MaxBufferSize = int.MaxValue; + result.ReaderQuotas = System.Xml.XmlDictionaryReaderQuotas.Max; + result.MaxReceivedMessageSize = int.MaxValue; + result.AllowCookies = true; + return result; + } + throw new System.InvalidOperationException(string.Format("Could not find endpoint with name \'{0}\'.", endpointConfiguration)); + } + + private static System.ServiceModel.EndpointAddress GetEndpointAddress(EndpointConfiguration endpointConfiguration) + { + if ((endpointConfiguration == EndpointConfiguration.MyFirstWSPort)) + { + return new System.ServiceModel.EndpointAddress("http://localhost:7779/ws/first"); + } + throw new System.InvalidOperationException(string.Format("Could not find endpoint with name \'{0}\'.", endpointConfiguration)); + } + + private static System.ServiceModel.Channels.Binding GetDefaultBinding() + { + return MyFirstSOAPInterfaceClient.GetBindingForEndpoint(EndpointConfiguration.MyFirstWSPort); + } + + private static System.ServiceModel.EndpointAddress GetDefaultEndpointAddress() + { + return MyFirstSOAPInterfaceClient.GetEndpointAddress(EndpointConfiguration.MyFirstWSPort); + } + + public enum EndpointConfiguration + { + + MyFirstWSPort, + } + } +} diff --git a/IS_Lab5_SOAPCS/IS_Lab5_SOAPCS.csproj b/IS_Lab5_SOAPCS/IS_Lab5_SOAPCS.csproj new file mode 100644 index 0000000..f1603ba --- /dev/null +++ b/IS_Lab5_SOAPCS/IS_Lab5_SOAPCS.csproj @@ -0,0 +1,16 @@ + + + + Exe + net8.0 + enable + enable + + + + + + + + + \ No newline at end of file diff --git a/IS_Lab5_SOAPCS/IS_Lab5_SOAPCS.sln b/IS_Lab5_SOAPCS/IS_Lab5_SOAPCS.sln new file mode 100644 index 0000000..7357c8f --- /dev/null +++ b/IS_Lab5_SOAPCS/IS_Lab5_SOAPCS.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IS_Lab5_SOAPCS", "IS_Lab5_SOAPCS.csproj", "{F0B2DB2D-799E-47FE-81B6-04B9EA37E075}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F0B2DB2D-799E-47FE-81B6-04B9EA37E075}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F0B2DB2D-799E-47FE-81B6-04B9EA37E075}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F0B2DB2D-799E-47FE-81B6-04B9EA37E075}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F0B2DB2D-799E-47FE-81B6-04B9EA37E075}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/IS_Lab5_SOAPCS/Program.cs b/IS_Lab5_SOAPCS/Program.cs new file mode 100644 index 0000000..b51a159 --- /dev/null +++ b/IS_Lab5_SOAPCS/Program.cs @@ -0,0 +1,12 @@ +// See https://aka.ms/new-console-template for more information + +using IS_Lab5_SOAPCS.MyFirstWSService; + +Console.WriteLine("My First SOAP Client!"); + +var client = new MyFirstSOAPInterfaceClient(); +var text = await client.getHelloWorldAsStringAsync("Karol"); +var days = await client.getDaysBetweenDatesAsync("01 03 2025", "08 03 2025"); + +Console.WriteLine(text); +Console.WriteLine($"Ilosc dni: {days}"); \ No newline at end of file diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/IS_Lab5_SOAPCS.deps.json b/IS_Lab5_SOAPCS/bin/Debug/net8.0/IS_Lab5_SOAPCS.deps.json new file mode 100644 index 0000000..5038129 --- /dev/null +++ b/IS_Lab5_SOAPCS/bin/Debug/net8.0/IS_Lab5_SOAPCS.deps.json @@ -0,0 +1,815 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "IS_Lab5_SOAPCS/1.0.0": { + "dependencies": { + "System.ServiceModel.Duplex": "4.10.3", + "System.ServiceModel.Federation": "4.10.3", + "System.ServiceModel.Http": "4.10.3", + "System.ServiceModel.NetTcp": "4.10.3", + "System.ServiceModel.Security": "4.10.3" + }, + "runtime": { + "IS_Lab5_SOAPCS.dll": {} + } + }, + "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.CSharp/4.5.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.IdentityModel.Logging/6.8.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Protocols.WsTrust/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens.Saml": "6.8.0", + "Microsoft.IdentityModel.Xml": "6.8.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.WsTrust.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11018" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.8.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Tokens.Saml/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.8.0", + "Microsoft.IdentityModel.Xml": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.Saml.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.IdentityModel.Xml/6.8.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Xml.dll": { + "assemblyVersion": "6.8.0.0", + "fileVersion": "6.8.0.11012" + } + } + }, + "Microsoft.NETCore.Platforms/1.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "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.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.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.Numerics.Vectors/4.5.0": {}, + "System.Private.ServiceModel/4.10.3": { + "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.1", + "System.Security.Principal.Windows": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Private.ServiceModel.dll": { + "assemblyVersion": "4.10.3.0", + "fileVersion": "4.1000.323.51101" + } + }, + "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.DispatchProxy/4.7.1": {}, + "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.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.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.Cng/4.5.0": {}, + "System.Security.Cryptography.Pkcs/6.0.1": { + "dependencies": { + "System.Formats.Asn1": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21309" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.522.21309" + } + } + }, + "System.Security.Cryptography.Xml/6.0.1": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.1" + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Xml.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.822.36306" + } + } + }, + "System.Security.Principal.Windows/5.0.0": {}, + "System.ServiceModel.Duplex/4.10.3": { + "dependencies": { + "System.Private.ServiceModel": "4.10.3", + "System.ServiceModel.Primitives": "4.10.3" + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Duplex.dll": { + "assemblyVersion": "4.10.3.0", + "fileVersion": "4.1000.323.51101" + } + } + }, + "System.ServiceModel.Federation/4.10.3": { + "dependencies": { + "Microsoft.IdentityModel.Protocols.WsTrust": "6.8.0", + "System.ServiceModel.Http": "4.10.3", + "System.ServiceModel.Primitives": "4.10.3", + "System.ServiceModel.Security": "4.10.3" + }, + "runtime": { + "lib/netstandard2.0/System.ServiceModel.Federation.dll": { + "assemblyVersion": "4.10.3.0", + "fileVersion": "4.1000.323.51101" + } + }, + "resources": { + "lib/netstandard2.0/cs/System.ServiceModel.Federation.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/System.ServiceModel.Federation.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/System.ServiceModel.Federation.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/System.ServiceModel.Federation.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/System.ServiceModel.Federation.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/System.ServiceModel.Federation.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/System.ServiceModel.Federation.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/System.ServiceModel.Federation.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/System.ServiceModel.Federation.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/System.ServiceModel.Federation.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/System.ServiceModel.Federation.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/System.ServiceModel.Federation.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/System.ServiceModel.Federation.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.ServiceModel.Http/4.10.3": { + "dependencies": { + "System.Private.ServiceModel": "4.10.3", + "System.ServiceModel.Primitives": "4.10.3" + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Http.dll": { + "assemblyVersion": "4.10.3.0", + "fileVersion": "4.1000.323.51101" + } + } + }, + "System.ServiceModel.NetTcp/4.10.3": { + "dependencies": { + "System.Private.ServiceModel": "4.10.3", + "System.ServiceModel.Primitives": "4.10.3" + }, + "runtime": { + "lib/net6.0/System.ServiceModel.NetTcp.dll": { + "assemblyVersion": "4.10.3.0", + "fileVersion": "4.1000.323.51101" + } + } + }, + "System.ServiceModel.Primitives/4.10.3": { + "dependencies": { + "System.Private.ServiceModel": "4.10.3" + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Primitives.dll": { + "assemblyVersion": "4.10.3.0", + "fileVersion": "4.1000.323.51101" + }, + "lib/net6.0/System.ServiceModel.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.1000.323.51101" + } + } + }, + "System.ServiceModel.Security/4.10.3": { + "dependencies": { + "System.Private.ServiceModel": "4.10.3", + "System.ServiceModel.Primitives": "4.10.3" + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Security.dll": { + "assemblyVersion": "4.10.3.0", + "fileVersion": "4.1000.323.51101" + } + } + }, + "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.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.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.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.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "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.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" + } + } + } + }, + "libraries": { + "IS_Lab5_SOAPCS/1.0.0": { + "type": "project", + "serviceable": false, + "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.CSharp/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==", + "path": "microsoft.csharp/4.5.0", + "hashPath": "microsoft.csharp.4.5.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.IdentityModel.Logging/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", + "path": "microsoft.identitymodel.logging/6.8.0", + "hashPath": "microsoft.identitymodel.logging.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.WsTrust/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KiRRp/pAtbJtyK7wPIiUW1FMna1T0IEizDWFL9R0C60jk6t66U95fo0SPl3ztOkmnS4v7uF1zWjfAEgZ/i+Zhg==", + "path": "microsoft.identitymodel.protocols.wstrust/6.8.0", + "hashPath": "microsoft.identitymodel.protocols.wstrust.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", + "path": "microsoft.identitymodel.tokens/6.8.0", + "hashPath": "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens.Saml/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zRbtJ7Kvr2RMcXi4g4ta3og/wX0GZpLGfb/h7aohwNAaUtCooRpx7Gl8Cv7tn4FDAp6MZwBQL/w0jMeyVTkjPQ==", + "path": "microsoft.identitymodel.tokens.saml/6.8.0", + "hashPath": "microsoft.identitymodel.tokens.saml.6.8.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Xml/6.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-p2DOCNVVOQpxfx9c3FW0kJve2jAAZB/zecWsi9S5fpznbJ/VcH0zxKdz6wIXjDQgwf2xg/u/k58uHiS/o+0qiA==", + "path": "microsoft.identitymodel.xml/6.8.0", + "hashPath": "microsoft.identitymodel.xml.6.8.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" + }, + "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.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.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.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.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.10.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BcUV7OERlLqGxDXZuIyIMMmk1PbqBblLRbAoigmzIUx/M8A+8epvyPyXRpbgoucKH7QmfYdQIev04Phx2Co08A==", + "path": "system.private.servicemodel/4.10.3", + "hashPath": "system.private.servicemodel.4.10.3.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.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.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.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.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.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, + "System.Security.Cryptography.Pkcs/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ynmbW2GjIGg9K1wXmVIRs4IlyDolf0JXNpzFQ8JCVgwM+myUC2JeUggl2PwQig2PNVMegKmN1aAx7WPQ8tI3vA==", + "path": "system.security.cryptography.pkcs/6.0.1", + "hashPath": "system.security.cryptography.pkcs.6.0.1.nupkg.sha512" + }, + "System.Security.Cryptography.Xml/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5e5bI28T0x73AwTsbuFP4qSRzthmU2C0Gqgg3AZ3KTxmSyA+Uhk31puA3srdaeWaacVnHhLdJywCzqOiEpbO/w==", + "path": "system.security.cryptography.xml/6.0.1", + "hashPath": "system.security.cryptography.xml.6.0.1.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.10.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IZ8ZahvTenWML7/jGUXSCm6jHlxpMbcb+Hy+h5p1WP9YVtb+Er7FHRRGizqQMINEdK6HhWpD6rzr5PdxNyusdg==", + "path": "system.servicemodel.duplex/4.10.3", + "hashPath": "system.servicemodel.duplex.4.10.3.nupkg.sha512" + }, + "System.ServiceModel.Federation/4.10.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VFQgE+XFdUXvxShtdQwNJ0AxfYr0ZVS0TlR3yRwCZxtcRPD0rnkSNfTbIiLxjH0j+O+IrtNZh9EDAQCLEiSNMA==", + "path": "system.servicemodel.federation/4.10.3", + "hashPath": "system.servicemodel.federation.4.10.3.nupkg.sha512" + }, + "System.ServiceModel.Http/4.10.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hodkn0rPTYmoZ9EIPwcleUrOi1gZBPvU0uFvzmJbyxl1lIpVM5GxTrs/pCETStjOXCiXhBDoZQYajquOEfeW/w==", + "path": "system.servicemodel.http/4.10.3", + "hashPath": "system.servicemodel.http.4.10.3.nupkg.sha512" + }, + "System.ServiceModel.NetTcp/4.10.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tP7GN7ehqSIQEz7yOJEtY8ziTpfavf2IQMPKa7r9KGQ75+uEW6/wSlWez7oKQwGYuAHbcGhpJvdG6WoVMKYgkw==", + "path": "system.servicemodel.nettcp/4.10.3", + "hashPath": "system.servicemodel.nettcp.4.10.3.nupkg.sha512" + }, + "System.ServiceModel.Primitives/4.10.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aNcdry95wIP1J+/HcLQM/f/AA73LnBQDNc2uCoZ+c1//KpVRp8nMZv5ApMwK+eDNVdCK8G0NLInF+xG3mfQL+g==", + "path": "system.servicemodel.primitives/4.10.3", + "hashPath": "system.servicemodel.primitives.4.10.3.nupkg.sha512" + }, + "System.ServiceModel.Security/4.10.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vqelKb7DvP2inb6LDJ5Igi8wpOYdtLXn5luDW5qEaqkV2sYO1pKlVYBpr6g6m5SevzbdZlVNu67dQiD/H6EdGQ==", + "path": "system.servicemodel.security/4.10.3", + "hashPath": "system.servicemodel.security.4.10.3.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.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.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.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.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", + "path": "system.threading.tasks.extensions/4.3.0", + "hashPath": "system.threading.tasks.extensions.4.3.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.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" + } + } +} \ No newline at end of file diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/IS_Lab5_SOAPCS.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/IS_Lab5_SOAPCS.dll new file mode 100644 index 0000000..b88ff0f Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/IS_Lab5_SOAPCS.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/IS_Lab5_SOAPCS.exe b/IS_Lab5_SOAPCS/bin/Debug/net8.0/IS_Lab5_SOAPCS.exe new file mode 100644 index 0000000..3830b8a Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/IS_Lab5_SOAPCS.exe differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/IS_Lab5_SOAPCS.pdb b/IS_Lab5_SOAPCS/bin/Debug/net8.0/IS_Lab5_SOAPCS.pdb new file mode 100644 index 0000000..669b6a0 Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/IS_Lab5_SOAPCS.pdb differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/IS_Lab5_SOAPCS.runtimeconfig.json b/IS_Lab5_SOAPCS/bin/Debug/net8.0/IS_Lab5_SOAPCS.runtimeconfig.json new file mode 100644 index 0000000..becfaea --- /dev/null +++ b/IS_Lab5_SOAPCS/bin/Debug/net8.0/IS_Lab5_SOAPCS.runtimeconfig.json @@ -0,0 +1,12 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + "configProperties": { + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll new file mode 100644 index 0000000..be25bdb Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/Microsoft.Extensions.ObjectPool.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/Microsoft.Extensions.ObjectPool.dll new file mode 100644 index 0000000..730dead Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/Microsoft.Extensions.ObjectPool.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll new file mode 100644 index 0000000..7ecc3be Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.WsTrust.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.WsTrust.dll new file mode 100644 index 0000000..01d28af Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.WsTrust.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.Saml.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.Saml.dll new file mode 100644 index 0000000..19d9278 Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.Saml.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll new file mode 100644 index 0000000..dd66624 Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/Microsoft.IdentityModel.Xml.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/Microsoft.IdentityModel.Xml.dll new file mode 100644 index 0000000..6246846 Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/Microsoft.IdentityModel.Xml.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/System.Private.ServiceModel.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/System.Private.ServiceModel.dll new file mode 100644 index 0000000..37795af Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/System.Private.ServiceModel.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/System.Security.Cryptography.Pkcs.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/System.Security.Cryptography.Pkcs.dll new file mode 100644 index 0000000..cf458e8 Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/System.Security.Cryptography.Pkcs.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/System.Security.Cryptography.Xml.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/System.Security.Cryptography.Xml.dll new file mode 100644 index 0000000..b43ece0 Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/System.Security.Cryptography.Xml.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/System.ServiceModel.Duplex.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/System.ServiceModel.Duplex.dll new file mode 100644 index 0000000..419a5e8 Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/System.ServiceModel.Duplex.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/System.ServiceModel.Federation.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/System.ServiceModel.Federation.dll new file mode 100644 index 0000000..d059ffc Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/System.ServiceModel.Federation.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/System.ServiceModel.Http.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/System.ServiceModel.Http.dll new file mode 100644 index 0000000..ef09be0 Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/System.ServiceModel.Http.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/System.ServiceModel.NetTcp.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/System.ServiceModel.NetTcp.dll new file mode 100644 index 0000000..bebd510 Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/System.ServiceModel.NetTcp.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/System.ServiceModel.Primitives.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/System.ServiceModel.Primitives.dll new file mode 100644 index 0000000..8138a47 Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/System.ServiceModel.Primitives.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/System.ServiceModel.Security.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/System.ServiceModel.Security.dll new file mode 100644 index 0000000..8731747 Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/System.ServiceModel.Security.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/System.ServiceModel.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/System.ServiceModel.dll new file mode 100644 index 0000000..75ca3f4 Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/System.ServiceModel.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/cs/System.Private.ServiceModel.resources.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/cs/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..0901e4f Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/cs/System.Private.ServiceModel.resources.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/cs/System.ServiceModel.Federation.resources.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/cs/System.ServiceModel.Federation.resources.dll new file mode 100644 index 0000000..375133a Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/cs/System.ServiceModel.Federation.resources.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/de/System.Private.ServiceModel.resources.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/de/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..a409f5d Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/de/System.Private.ServiceModel.resources.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/de/System.ServiceModel.Federation.resources.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/de/System.ServiceModel.Federation.resources.dll new file mode 100644 index 0000000..c6d57e6 Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/de/System.ServiceModel.Federation.resources.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/es/System.Private.ServiceModel.resources.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/es/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..b976fa6 Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/es/System.Private.ServiceModel.resources.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/es/System.ServiceModel.Federation.resources.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/es/System.ServiceModel.Federation.resources.dll new file mode 100644 index 0000000..2016228 Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/es/System.ServiceModel.Federation.resources.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/fr/System.Private.ServiceModel.resources.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/fr/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..ef4dec1 Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/fr/System.Private.ServiceModel.resources.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/fr/System.ServiceModel.Federation.resources.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/fr/System.ServiceModel.Federation.resources.dll new file mode 100644 index 0000000..4a59cc6 Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/fr/System.ServiceModel.Federation.resources.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/it/System.Private.ServiceModel.resources.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/it/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..02f8db2 Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/it/System.Private.ServiceModel.resources.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/it/System.ServiceModel.Federation.resources.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/it/System.ServiceModel.Federation.resources.dll new file mode 100644 index 0000000..53c381a Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/it/System.ServiceModel.Federation.resources.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/ja/System.Private.ServiceModel.resources.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/ja/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..e00878c Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/ja/System.Private.ServiceModel.resources.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/ja/System.ServiceModel.Federation.resources.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/ja/System.ServiceModel.Federation.resources.dll new file mode 100644 index 0000000..624484c Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/ja/System.ServiceModel.Federation.resources.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/ko/System.Private.ServiceModel.resources.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/ko/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..0c95a31 Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/ko/System.Private.ServiceModel.resources.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/ko/System.ServiceModel.Federation.resources.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/ko/System.ServiceModel.Federation.resources.dll new file mode 100644 index 0000000..3a51e30 Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/ko/System.ServiceModel.Federation.resources.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/pl/System.Private.ServiceModel.resources.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/pl/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..b0ec8ce Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/pl/System.Private.ServiceModel.resources.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/pl/System.ServiceModel.Federation.resources.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/pl/System.ServiceModel.Federation.resources.dll new file mode 100644 index 0000000..b659c81 Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/pl/System.ServiceModel.Federation.resources.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/pt-BR/System.Private.ServiceModel.resources.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/pt-BR/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..9cfbd98 Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/pt-BR/System.Private.ServiceModel.resources.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/pt-BR/System.ServiceModel.Federation.resources.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/pt-BR/System.ServiceModel.Federation.resources.dll new file mode 100644 index 0000000..4f532a9 Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/pt-BR/System.ServiceModel.Federation.resources.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/ru/System.Private.ServiceModel.resources.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/ru/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..4ff3196 Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/ru/System.Private.ServiceModel.resources.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/ru/System.ServiceModel.Federation.resources.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/ru/System.ServiceModel.Federation.resources.dll new file mode 100644 index 0000000..b676a91 Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/ru/System.ServiceModel.Federation.resources.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll new file mode 100644 index 0000000..6cbb734 Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/tr/System.Private.ServiceModel.resources.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/tr/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..1b5c43c Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/tr/System.Private.ServiceModel.resources.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/tr/System.ServiceModel.Federation.resources.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/tr/System.ServiceModel.Federation.resources.dll new file mode 100644 index 0000000..bda10d4 Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/tr/System.ServiceModel.Federation.resources.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/zh-Hans/System.Private.ServiceModel.resources.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/zh-Hans/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..8acd1f7 Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/zh-Hans/System.Private.ServiceModel.resources.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/zh-Hans/System.ServiceModel.Federation.resources.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/zh-Hans/System.ServiceModel.Federation.resources.dll new file mode 100644 index 0000000..e3c68ea Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/zh-Hans/System.ServiceModel.Federation.resources.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/zh-Hant/System.Private.ServiceModel.resources.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/zh-Hant/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..09b4ded Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/zh-Hant/System.Private.ServiceModel.resources.dll differ diff --git a/IS_Lab5_SOAPCS/bin/Debug/net8.0/zh-Hant/System.ServiceModel.Federation.resources.dll b/IS_Lab5_SOAPCS/bin/Debug/net8.0/zh-Hant/System.ServiceModel.Federation.resources.dll new file mode 100644 index 0000000..3793999 Binary files /dev/null and b/IS_Lab5_SOAPCS/bin/Debug/net8.0/zh-Hant/System.ServiceModel.Federation.resources.dll differ diff --git a/IS_Lab5_SOAPCS/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/IS_Lab5_SOAPCS/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/IS_Lab5_SOAPCS/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.AssemblyInfo.cs b/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.AssemblyInfo.cs new file mode 100644 index 0000000..94a852c --- /dev/null +++ b/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// 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("IS_Lab5_SOAPCS")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("IS_Lab5_SOAPCS")] +[assembly: System.Reflection.AssemblyTitleAttribute("IS_Lab5_SOAPCS")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Wygenerowane przez klasę WriteCodeFragment programu MSBuild. + diff --git a/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.AssemblyInfoInputs.cache b/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.AssemblyInfoInputs.cache new file mode 100644 index 0000000..3201533 --- /dev/null +++ b/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +dc6c0a0801c9410daedeed6064ee8f38697c3f402e7e9bea854f03be7587316c diff --git a/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.GeneratedMSBuildEditorConfig.editorconfig b/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..816ad78 --- /dev/null +++ b/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = IS_Lab5_SOAPCS +build_property.ProjectDir = C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.GlobalUsings.g.cs b/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.assets.cache b/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.assets.cache new file mode 100644 index 0000000..f59d787 Binary files /dev/null and b/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.assets.cache differ diff --git a/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.csproj.AssemblyReference.cache b/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.csproj.AssemblyReference.cache new file mode 100644 index 0000000..e97d32d Binary files /dev/null and b/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.csproj.AssemblyReference.cache differ diff --git a/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.csproj.CopyComplete b/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.csproj.CoreCompileInputs.cache b/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..b6e29f1 --- /dev/null +++ b/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +7c4b84659f3b40b2d61bc57995c081b984198a22a11b6e04f0873eaeb7355aab diff --git a/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.csproj.FileListAbsolute.txt b/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..262806f --- /dev/null +++ b/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.csproj.FileListAbsolute.txt @@ -0,0 +1,60 @@ +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\IS_Lab5_SOAPCS.exe +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\IS_Lab5_SOAPCS.deps.json +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\IS_Lab5_SOAPCS.runtimeconfig.json +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\IS_Lab5_SOAPCS.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\IS_Lab5_SOAPCS.pdb +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\Microsoft.Bcl.AsyncInterfaces.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\Microsoft.Extensions.ObjectPool.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\Microsoft.IdentityModel.Logging.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.WsTrust.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\Microsoft.IdentityModel.Tokens.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\Microsoft.IdentityModel.Tokens.Saml.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\Microsoft.IdentityModel.Xml.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\System.Private.ServiceModel.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\System.Security.Cryptography.Pkcs.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\System.Security.Cryptography.Xml.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\System.ServiceModel.Duplex.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\System.ServiceModel.Federation.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\System.ServiceModel.Http.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\System.ServiceModel.NetTcp.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\System.ServiceModel.Primitives.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\System.ServiceModel.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\System.ServiceModel.Security.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\cs\System.Private.ServiceModel.resources.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\de\System.Private.ServiceModel.resources.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\es\System.Private.ServiceModel.resources.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\fr\System.Private.ServiceModel.resources.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\it\System.Private.ServiceModel.resources.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\ja\System.Private.ServiceModel.resources.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\ko\System.Private.ServiceModel.resources.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\pl\System.Private.ServiceModel.resources.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\pt-BR\System.Private.ServiceModel.resources.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\ru\System.Private.ServiceModel.resources.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\tr\System.Private.ServiceModel.resources.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\zh-Hans\System.Private.ServiceModel.resources.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\zh-Hant\System.Private.ServiceModel.resources.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\cs\System.ServiceModel.Federation.resources.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\de\System.ServiceModel.Federation.resources.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\es\System.ServiceModel.Federation.resources.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\fr\System.ServiceModel.Federation.resources.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\it\System.ServiceModel.Federation.resources.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\ja\System.ServiceModel.Federation.resources.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\ko\System.ServiceModel.Federation.resources.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\pl\System.ServiceModel.Federation.resources.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\pt-BR\System.ServiceModel.Federation.resources.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\ru\System.ServiceModel.Federation.resources.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\tr\System.ServiceModel.Federation.resources.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\zh-Hans\System.ServiceModel.Federation.resources.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\zh-Hant\System.ServiceModel.Federation.resources.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Security.Cryptography.Pkcs.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\obj\Debug\net8.0\IS_Lab5_SOAPCS.csproj.AssemblyReference.cache +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\obj\Debug\net8.0\IS_Lab5_SOAPCS.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\obj\Debug\net8.0\IS_Lab5_SOAPCS.AssemblyInfoInputs.cache +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\obj\Debug\net8.0\IS_Lab5_SOAPCS.AssemblyInfo.cs +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\obj\Debug\net8.0\IS_Lab5_SOAPCS.csproj.CoreCompileInputs.cache +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\obj\Debug\net8.0\IS_Lab5_SOAPCS.csproj.CopyComplete +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\obj\Debug\net8.0\IS_Lab5_SOAPCS.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\obj\Debug\net8.0\refint\IS_Lab5_SOAPCS.dll +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\obj\Debug\net8.0\IS_Lab5_SOAPCS.pdb +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\obj\Debug\net8.0\IS_Lab5_SOAPCS.genruntimeconfig.cache +C:\Users\nano\source\repos\IS_Lab5\IS_Lab5_SOAPCS\obj\Debug\net8.0\ref\IS_Lab5_SOAPCS.dll diff --git a/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.dll b/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.dll new file mode 100644 index 0000000..b88ff0f Binary files /dev/null and b/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.dll differ diff --git a/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.genruntimeconfig.cache b/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.genruntimeconfig.cache new file mode 100644 index 0000000..6374c62 --- /dev/null +++ b/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.genruntimeconfig.cache @@ -0,0 +1 @@ +8b4a27f23390c6497b9862973ad1fd6e379ab134f54245791a16e870d62ff573 diff --git a/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.pdb b/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.pdb new file mode 100644 index 0000000..669b6a0 Binary files /dev/null and b/IS_Lab5_SOAPCS/obj/Debug/net8.0/IS_Lab5_SOAPCS.pdb differ diff --git a/IS_Lab5_SOAPCS/obj/Debug/net8.0/apphost.exe b/IS_Lab5_SOAPCS/obj/Debug/net8.0/apphost.exe new file mode 100644 index 0000000..3830b8a Binary files /dev/null and b/IS_Lab5_SOAPCS/obj/Debug/net8.0/apphost.exe differ diff --git a/IS_Lab5_SOAPCS/obj/Debug/net8.0/ref/IS_Lab5_SOAPCS.dll b/IS_Lab5_SOAPCS/obj/Debug/net8.0/ref/IS_Lab5_SOAPCS.dll new file mode 100644 index 0000000..da70e1b Binary files /dev/null and b/IS_Lab5_SOAPCS/obj/Debug/net8.0/ref/IS_Lab5_SOAPCS.dll differ diff --git a/IS_Lab5_SOAPCS/obj/Debug/net8.0/refint/IS_Lab5_SOAPCS.dll b/IS_Lab5_SOAPCS/obj/Debug/net8.0/refint/IS_Lab5_SOAPCS.dll new file mode 100644 index 0000000..da70e1b Binary files /dev/null and b/IS_Lab5_SOAPCS/obj/Debug/net8.0/refint/IS_Lab5_SOAPCS.dll differ diff --git a/IS_Lab5_SOAPCS/obj/IS_Lab5_SOAPCS.csproj.nuget.dgspec.json b/IS_Lab5_SOAPCS/obj/IS_Lab5_SOAPCS.csproj.nuget.dgspec.json new file mode 100644 index 0000000..a98e00e --- /dev/null +++ b/IS_Lab5_SOAPCS/obj/IS_Lab5_SOAPCS.csproj.nuget.dgspec.json @@ -0,0 +1,83 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\nano\\source\\repos\\IS_Lab5\\IS_Lab5_SOAPCS\\IS_Lab5_SOAPCS.csproj": {} + }, + "projects": { + "C:\\Users\\nano\\source\\repos\\IS_Lab5\\IS_Lab5_SOAPCS\\IS_Lab5_SOAPCS.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\nano\\source\\repos\\IS_Lab5\\IS_Lab5_SOAPCS\\IS_Lab5_SOAPCS.csproj", + "projectName": "IS_Lab5_SOAPCS", + "projectPath": "C:\\Users\\nano\\source\\repos\\IS_Lab5\\IS_Lab5_SOAPCS\\IS_Lab5_SOAPCS.csproj", + "packagesPath": "C:\\Users\\nano\\.nuget\\packages\\", + "outputPath": "C:\\Users\\nano\\source\\repos\\IS_Lab5\\IS_Lab5_SOAPCS\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\nano\\AppData\\Roaming\\NuGet\\NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "System.ServiceModel.Duplex": { + "target": "Package", + "version": "[4.10.*, )" + }, + "System.ServiceModel.Federation": { + "target": "Package", + "version": "[4.10.*, )" + }, + "System.ServiceModel.Http": { + "target": "Package", + "version": "[4.10.*, )" + }, + "System.ServiceModel.NetTcp": { + "target": "Package", + "version": "[4.10.*, )" + }, + "System.ServiceModel.Security": { + "target": "Package", + "version": "[4.10.*, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Users\\nano\\.dotnet\\sdk\\8.0.100/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/IS_Lab5_SOAPCS/obj/IS_Lab5_SOAPCS.csproj.nuget.g.props b/IS_Lab5_SOAPCS/obj/IS_Lab5_SOAPCS.csproj.nuget.g.props new file mode 100644 index 0000000..57233c9 --- /dev/null +++ b/IS_Lab5_SOAPCS/obj/IS_Lab5_SOAPCS.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\nano\.nuget\packages\ + PackageReference + 6.9.1 + + + + + \ No newline at end of file diff --git a/IS_Lab5_SOAPCS/obj/IS_Lab5_SOAPCS.csproj.nuget.g.targets b/IS_Lab5_SOAPCS/obj/IS_Lab5_SOAPCS.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/IS_Lab5_SOAPCS/obj/IS_Lab5_SOAPCS.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/IS_Lab5_SOAPCS/obj/project.assets.json b/IS_Lab5_SOAPCS/obj/project.assets.json new file mode 100644 index 0000000..dd761ed --- /dev/null +++ b/IS_Lab5_SOAPCS/obj/project.assets.json @@ -0,0 +1,3099 @@ +{ + "version": 3, + "targets": { + "net8.0": { + "Microsoft.Bcl.AsyncInterfaces/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + } + }, + "Microsoft.CSharp/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.Extensions.ObjectPool/5.0.10": { + "type": "package", + "compile": { + "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Logging/6.8.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols.WsTrust/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens.Saml": "6.8.0", + "Microsoft.IdentityModel.Xml": "6.8.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.WsTrust.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.WsTrust.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.8.0", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Tokens.Saml/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.8.0", + "Microsoft.IdentityModel.Xml": "6.8.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.Saml.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.Saml.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Xml/6.8.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.8.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Xml.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Xml.dll": { + "related": ".xml" + } + } + }, + "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/_._": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.Formats.Asn1/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Formats.Asn1.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Formats.Asn1.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": { + "related": ".xml" + } + } + }, + "System.IO.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/_._": { + "related": ".xml" + } + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Private.ServiceModel/4.10.3": { + "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": "6.0.1", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Private.ServiceModel.dll": { + "related": ".pdb" + } + }, + "resource": { + "lib/netstandard2.0/cs/System.Private.ServiceModel.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/System.Private.ServiceModel.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/System.Private.ServiceModel.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/System.Private.ServiceModel.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/System.Private.ServiceModel.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/System.Private.ServiceModel.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/System.Private.ServiceModel.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/System.Private.ServiceModel.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/System.Private.ServiceModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/System.Private.ServiceModel.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/System.Private.ServiceModel.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/System.Private.ServiceModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/System.Private.ServiceModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + } + }, + "System.Reflection.DispatchProxy/4.7.1": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Reflection.DispatchProxy.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.0/System.Reflection.DispatchProxy.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.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/_._": { + "related": ".xml" + } + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/_._": {} + } + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Pkcs/6.0.1": { + "type": "package", + "dependencies": { + "System.Formats.Asn1": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Xml/6.0.1": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.1" + }, + "compile": { + "lib/net6.0/System.Security.Cryptography.Xml.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Xml.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.ServiceModel.Duplex/4.10.3": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.10.3", + "System.ServiceModel.Primitives": "4.10.3" + }, + "compile": { + "ref/net6.0/System.ServiceModel.Duplex.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Duplex.dll": { + "related": ".pdb" + } + } + }, + "System.ServiceModel.Federation/4.10.3": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols.WsTrust": "6.8.0", + "System.ServiceModel.Http": "4.10.3", + "System.ServiceModel.Primitives": "4.10.3", + "System.ServiceModel.Security": "4.10.3" + }, + "compile": { + "lib/netstandard2.0/System.ServiceModel.Federation.dll": { + "related": ".pdb" + } + }, + "runtime": { + "lib/netstandard2.0/System.ServiceModel.Federation.dll": { + "related": ".pdb" + } + }, + "resource": { + "lib/netstandard2.0/cs/System.ServiceModel.Federation.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/System.ServiceModel.Federation.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/System.ServiceModel.Federation.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/System.ServiceModel.Federation.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/System.ServiceModel.Federation.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/System.ServiceModel.Federation.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/System.ServiceModel.Federation.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/System.ServiceModel.Federation.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/System.ServiceModel.Federation.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/System.ServiceModel.Federation.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/System.ServiceModel.Federation.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/System.ServiceModel.Federation.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/System.ServiceModel.Federation.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.ServiceModel.Http/4.10.3": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.10.3", + "System.ServiceModel.Primitives": "4.10.3" + }, + "compile": { + "ref/net6.0/System.ServiceModel.Http.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Http.dll": { + "related": ".pdb" + } + } + }, + "System.ServiceModel.NetTcp/4.10.3": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.10.3", + "System.ServiceModel.Primitives": "4.10.3" + }, + "compile": { + "ref/net6.0/System.ServiceModel.NetTcp.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceModel.NetTcp.dll": { + "related": ".pdb" + } + } + }, + "System.ServiceModel.Primitives/4.10.3": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.10.3" + }, + "compile": { + "ref/net6.0/System.ServiceModel.Primitives.dll": {}, + "ref/net6.0/System.ServiceModel.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Primitives.dll": { + "related": ".pdb" + }, + "lib/net6.0/System.ServiceModel.dll": { + "related": ".Primitives.pdb" + } + } + }, + "System.ServiceModel.Security/4.10.3": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.10.3", + "System.ServiceModel.Primitives": "4.10.3" + }, + "compile": { + "ref/net6.0/System.ServiceModel.Security.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Security.dll": { + "related": ".pdb" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encoding.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/_._": { + "related": ".xml" + } + } + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/_._": {} + }, + "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/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": { + "related": ".xml" + } + } + }, + "System.Threading.Tasks.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": { + "related": ".xml" + } + } + }, + "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": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.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": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + } + } + }, + "libraries": { + "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.CSharp/4.5.0": { + "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==", + "type": "package", + "path": "microsoft.csharp/4.5.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/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.5.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.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.IdentityModel.Logging/6.8.0": { + "sha512": "Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==", + "type": "package", + "path": "microsoft.identitymodel.logging/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Logging.dll", + "lib/net45/Microsoft.IdentityModel.Logging.xml", + "lib/net461/Microsoft.IdentityModel.Logging.dll", + "lib/net461/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.6.8.0.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols.WsTrust/6.8.0": { + "sha512": "KiRRp/pAtbJtyK7wPIiUW1FMna1T0IEizDWFL9R0C60jk6t66U95fo0SPl3ztOkmnS4v7uF1zWjfAEgZ/i+Zhg==", + "type": "package", + "path": "microsoft.identitymodel.protocols.wstrust/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.WsTrust.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.WsTrust.xml", + "microsoft.identitymodel.protocols.wstrust.6.8.0.nupkg.sha512", + "microsoft.identitymodel.protocols.wstrust.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/6.8.0": { + "sha512": "gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==", + "type": "package", + "path": "microsoft.identitymodel.tokens/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Tokens.dll", + "lib/net45/Microsoft.IdentityModel.Tokens.xml", + "lib/net461/Microsoft.IdentityModel.Tokens.dll", + "lib/net461/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens.Saml/6.8.0": { + "sha512": "zRbtJ7Kvr2RMcXi4g4ta3og/wX0GZpLGfb/h7aohwNAaUtCooRpx7Gl8Cv7tn4FDAp6MZwBQL/w0jMeyVTkjPQ==", + "type": "package", + "path": "microsoft.identitymodel.tokens.saml/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Tokens.Saml.dll", + "lib/net45/Microsoft.IdentityModel.Tokens.Saml.xml", + "lib/net461/Microsoft.IdentityModel.Tokens.Saml.dll", + "lib/net461/Microsoft.IdentityModel.Tokens.Saml.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.Saml.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.Saml.xml", + "microsoft.identitymodel.tokens.saml.6.8.0.nupkg.sha512", + "microsoft.identitymodel.tokens.saml.nuspec" + ] + }, + "Microsoft.IdentityModel.Xml/6.8.0": { + "sha512": "p2DOCNVVOQpxfx9c3FW0kJve2jAAZB/zecWsi9S5fpznbJ/VcH0zxKdz6wIXjDQgwf2xg/u/k58uHiS/o+0qiA==", + "type": "package", + "path": "microsoft.identitymodel.xml/6.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Xml.dll", + "lib/net45/Microsoft.IdentityModel.Xml.xml", + "lib/net461/Microsoft.IdentityModel.Xml.dll", + "lib/net461/Microsoft.IdentityModel.Xml.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Xml.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Xml.xml", + "microsoft.identitymodel.xml.6.8.0.nupkg.sha512", + "microsoft.identitymodel.xml.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" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "type": "package", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.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.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.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.10.3": { + "sha512": "BcUV7OERlLqGxDXZuIyIMMmk1PbqBblLRbAoigmzIUx/M8A+8epvyPyXRpbgoucKH7QmfYdQIev04Phx2Co08A==", + "type": "package", + "path": "system.private.servicemodel/4.10.3", + "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.10.3.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.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.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Security.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.Cng/4.5.0": { + "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "type": "package", + "path": "system.security.cryptography.cng/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net462/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.xml", + "ref/net462/System.Security.Cryptography.Cng.dll", + "ref/net462/System.Security.Cryptography.Cng.xml", + "ref/net47/System.Security.Cryptography.Cng.dll", + "ref/net47/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/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", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.4.5.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Pkcs/6.0.1": { + "sha512": "ynmbW2GjIGg9K1wXmVIRs4IlyDolf0JXNpzFQ8JCVgwM+myUC2JeUggl2PwQig2PNVMegKmN1aAx7WPQ8tI3vA==", + "type": "package", + "path": "system.security.cryptography.pkcs/6.0.1", + "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.1.nupkg.sha512", + "system.security.cryptography.pkcs.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.Xml/6.0.1": { + "sha512": "5e5bI28T0x73AwTsbuFP4qSRzthmU2C0Gqgg3AZ3KTxmSyA+Uhk31puA3srdaeWaacVnHhLdJywCzqOiEpbO/w==", + "type": "package", + "path": "system.security.cryptography.xml/6.0.1", + "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.1.nupkg.sha512", + "system.security.cryptography.xml.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.10.3": { + "sha512": "IZ8ZahvTenWML7/jGUXSCm6jHlxpMbcb+Hy+h5p1WP9YVtb+Er7FHRRGizqQMINEdK6HhWpD6rzr5PdxNyusdg==", + "type": "package", + "path": "system.servicemodel.duplex/4.10.3", + "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.10.3.nupkg.sha512", + "system.servicemodel.duplex.nuspec" + ] + }, + "System.ServiceModel.Federation/4.10.3": { + "sha512": "VFQgE+XFdUXvxShtdQwNJ0AxfYr0ZVS0TlR3yRwCZxtcRPD0rnkSNfTbIiLxjH0j+O+IrtNZh9EDAQCLEiSNMA==", + "type": "package", + "path": "system.servicemodel.federation/4.10.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard2.0/System.ServiceModel.Federation.dll", + "lib/netstandard2.0/System.ServiceModel.Federation.pdb", + "lib/netstandard2.0/cs/System.ServiceModel.Federation.resources.dll", + "lib/netstandard2.0/de/System.ServiceModel.Federation.resources.dll", + "lib/netstandard2.0/es/System.ServiceModel.Federation.resources.dll", + "lib/netstandard2.0/fr/System.ServiceModel.Federation.resources.dll", + "lib/netstandard2.0/it/System.ServiceModel.Federation.resources.dll", + "lib/netstandard2.0/ja/System.ServiceModel.Federation.resources.dll", + "lib/netstandard2.0/ko/System.ServiceModel.Federation.resources.dll", + "lib/netstandard2.0/pl/System.ServiceModel.Federation.resources.dll", + "lib/netstandard2.0/pt-BR/System.ServiceModel.Federation.resources.dll", + "lib/netstandard2.0/ru/System.ServiceModel.Federation.resources.dll", + "lib/netstandard2.0/tr/System.ServiceModel.Federation.resources.dll", + "lib/netstandard2.0/zh-Hans/System.ServiceModel.Federation.resources.dll", + "lib/netstandard2.0/zh-Hant/System.ServiceModel.Federation.resources.dll", + "system.servicemodel.federation.4.10.3.nupkg.sha512", + "system.servicemodel.federation.nuspec" + ] + }, + "System.ServiceModel.Http/4.10.3": { + "sha512": "hodkn0rPTYmoZ9EIPwcleUrOi1gZBPvU0uFvzmJbyxl1lIpVM5GxTrs/pCETStjOXCiXhBDoZQYajquOEfeW/w==", + "type": "package", + "path": "system.servicemodel.http/4.10.3", + "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.10.3.nupkg.sha512", + "system.servicemodel.http.nuspec" + ] + }, + "System.ServiceModel.NetTcp/4.10.3": { + "sha512": "tP7GN7ehqSIQEz7yOJEtY8ziTpfavf2IQMPKa7r9KGQ75+uEW6/wSlWez7oKQwGYuAHbcGhpJvdG6WoVMKYgkw==", + "type": "package", + "path": "system.servicemodel.nettcp/4.10.3", + "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.10.3.nupkg.sha512", + "system.servicemodel.nettcp.nuspec" + ] + }, + "System.ServiceModel.Primitives/4.10.3": { + "sha512": "aNcdry95wIP1J+/HcLQM/f/AA73LnBQDNc2uCoZ+c1//KpVRp8nMZv5ApMwK+eDNVdCK8G0NLInF+xG3mfQL+g==", + "type": "package", + "path": "system.servicemodel.primitives/4.10.3", + "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/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/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.10.3.nupkg.sha512", + "system.servicemodel.primitives.nuspec" + ] + }, + "System.ServiceModel.Security/4.10.3": { + "sha512": "vqelKb7DvP2inb6LDJ5Igi8wpOYdtLXn5luDW5qEaqkV2sYO1pKlVYBpr6g6m5SevzbdZlVNu67dQiD/H6EdGQ==", + "type": "package", + "path": "system.servicemodel.security/4.10.3", + "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.10.3.nupkg.sha512", + "system.servicemodel.security.nuspec" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.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.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.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.3.0": { + "sha512": "npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", + "type": "package", + "path": "system.threading.tasks.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.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", + "system.threading.tasks.extensions.4.3.0.nupkg.sha512", + "system.threading.tasks.extensions.nuspec" + ] + }, + "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.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" + ] + } + }, + "projectFileDependencyGroups": { + "net8.0": [ + "System.ServiceModel.Duplex >= 4.10.*", + "System.ServiceModel.Federation >= 4.10.*", + "System.ServiceModel.Http >= 4.10.*", + "System.ServiceModel.NetTcp >= 4.10.*", + "System.ServiceModel.Security >= 4.10.*" + ] + }, + "packageFolders": { + "C:\\Users\\nano\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\nano\\source\\repos\\IS_Lab5\\IS_Lab5_SOAPCS\\IS_Lab5_SOAPCS.csproj", + "projectName": "IS_Lab5_SOAPCS", + "projectPath": "C:\\Users\\nano\\source\\repos\\IS_Lab5\\IS_Lab5_SOAPCS\\IS_Lab5_SOAPCS.csproj", + "packagesPath": "C:\\Users\\nano\\.nuget\\packages\\", + "outputPath": "C:\\Users\\nano\\source\\repos\\IS_Lab5\\IS_Lab5_SOAPCS\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\nano\\AppData\\Roaming\\NuGet\\NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "System.ServiceModel.Duplex": { + "target": "Package", + "version": "[4.10.*, )" + }, + "System.ServiceModel.Federation": { + "target": "Package", + "version": "[4.10.*, )" + }, + "System.ServiceModel.Http": { + "target": "Package", + "version": "[4.10.*, )" + }, + "System.ServiceModel.NetTcp": { + "target": "Package", + "version": "[4.10.*, )" + }, + "System.ServiceModel.Security": { + "target": "Package", + "version": "[4.10.*, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Users\\nano\\.dotnet\\sdk\\8.0.100/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/IS_Lab5_SOAPCS/obj/project.nuget.cache b/IS_Lab5_SOAPCS/obj/project.nuget.cache new file mode 100644 index 0000000..4a6231a --- /dev/null +++ b/IS_Lab5_SOAPCS/obj/project.nuget.cache @@ -0,0 +1,55 @@ +{ + "version": 2, + "dgSpecHash": "msHPQb0LSrlx42TAMItE2lsyR4YKjKj/kHCUZEM72U0KaBRMgJ3440HDncpPn4IlTlu0N0E3Yt4ntx+8lbnnCg==", + "success": true, + "projectFilePath": "C:\\Users\\nano\\source\\repos\\IS_Lab5\\IS_Lab5_SOAPCS\\IS_Lab5_SOAPCS.csproj", + "expectedPackageFiles": [ + "C:\\Users\\nano\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\5.0.0\\microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\microsoft.extensions.objectpool\\5.0.10\\microsoft.extensions.objectpool.5.0.10.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\microsoft.identitymodel.logging\\6.8.0\\microsoft.identitymodel.logging.6.8.0.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\microsoft.identitymodel.protocols.wstrust\\6.8.0\\microsoft.identitymodel.protocols.wstrust.6.8.0.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.8.0\\microsoft.identitymodel.tokens.6.8.0.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\microsoft.identitymodel.tokens.saml\\6.8.0\\microsoft.identitymodel.tokens.saml.6.8.0.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\microsoft.identitymodel.xml\\6.8.0\\microsoft.identitymodel.xml.6.8.0.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.formats.asn1\\6.0.0\\system.formats.asn1.6.0.0.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.private.servicemodel\\4.10.3\\system.private.servicemodel.4.10.3.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.reflection.dispatchproxy\\4.7.1\\system.reflection.dispatchproxy.4.7.1.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.security.cryptography.pkcs\\6.0.1\\system.security.cryptography.pkcs.6.0.1.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.security.cryptography.xml\\6.0.1\\system.security.cryptography.xml.6.0.1.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.servicemodel.duplex\\4.10.3\\system.servicemodel.duplex.4.10.3.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.servicemodel.federation\\4.10.3\\system.servicemodel.federation.4.10.3.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.servicemodel.http\\4.10.3\\system.servicemodel.http.4.10.3.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.servicemodel.nettcp\\4.10.3\\system.servicemodel.nettcp.4.10.3.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.servicemodel.primitives\\4.10.3\\system.servicemodel.primitives.4.10.3.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.servicemodel.security\\4.10.3\\system.servicemodel.security.4.10.3.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.threading.tasks.extensions\\4.3.0\\system.threading.tasks.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", + "C:\\Users\\nano\\.nuget\\packages\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/IS_Lab5_SOAPCS/obj/project.packagespec.json b/IS_Lab5_SOAPCS/obj/project.packagespec.json new file mode 100644 index 0000000..1fda422 --- /dev/null +++ b/IS_Lab5_SOAPCS/obj/project.packagespec.json @@ -0,0 +1 @@ +"restore":{"projectUniqueName":"C:\\Users\\nano\\source\\repos\\IS_Lab5\\IS_Lab5_SOAPCS\\IS_Lab5_SOAPCS.csproj","projectName":"IS_Lab5_SOAPCS","projectPath":"C:\\Users\\nano\\source\\repos\\IS_Lab5\\IS_Lab5_SOAPCS\\IS_Lab5_SOAPCS.csproj","outputPath":"C:\\Users\\nano\\source\\repos\\IS_Lab5\\IS_Lab5_SOAPCS\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"System.ServiceModel.Duplex":{"target":"Package","version":"[4.10.*, )"},"System.ServiceModel.Federation":{"target":"Package","version":"[4.10.*, )"},"System.ServiceModel.Http":{"target":"Package","version":"[4.10.*, )"},"System.ServiceModel.NetTcp":{"target":"Package","version":"[4.10.*, )"},"System.ServiceModel.Security":{"target":"Package","version":"[4.10.*, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Users\\nano\\.dotnet\\sdk\\8.0.100/PortableRuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/IS_Lab5_SOAPCS/obj/rider.project.model.nuget.info b/IS_Lab5_SOAPCS/obj/rider.project.model.nuget.info new file mode 100644 index 0000000..90c4be8 --- /dev/null +++ b/IS_Lab5_SOAPCS/obj/rider.project.model.nuget.info @@ -0,0 +1 @@ +17414251413046980 \ No newline at end of file diff --git a/IS_Lab5_SOAPCS/obj/rider.project.restore.info b/IS_Lab5_SOAPCS/obj/rider.project.restore.info new file mode 100644 index 0000000..d51f020 --- /dev/null +++ b/IS_Lab5_SOAPCS/obj/rider.project.restore.info @@ -0,0 +1 @@ +17414251530941259 \ No newline at end of file diff --git a/MyFirstSoapServer/.gitignore b/MyFirstSoapServer/.gitignore new file mode 100644 index 0000000..f68d109 --- /dev/null +++ b/MyFirstSoapServer/.gitignore @@ -0,0 +1,29 @@ +### IntelliJ IDEA ### +out/ +!**/src/main/**/out/ +!**/src/test/**/out/ + +### Eclipse ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache +bin/ +!**/src/main/**/bin/ +!**/src/test/**/bin/ + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ + +### VS Code ### +.vscode/ + +### Mac OS ### +.DS_Store \ No newline at end of file diff --git a/MyFirstSoapServer/.idea/.gitignore b/MyFirstSoapServer/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/MyFirstSoapServer/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/MyFirstSoapServer/.idea/libraries/javax_jws_api.xml b/MyFirstSoapServer/.idea/libraries/javax_jws_api.xml new file mode 100644 index 0000000..56f09d7 --- /dev/null +++ b/MyFirstSoapServer/.idea/libraries/javax_jws_api.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/MyFirstSoapServer/.idea/libraries/javax_xml_ws_jaxws_api.xml b/MyFirstSoapServer/.idea/libraries/javax_xml_ws_jaxws_api.xml new file mode 100644 index 0000000..b473685 --- /dev/null +++ b/MyFirstSoapServer/.idea/libraries/javax_xml_ws_jaxws_api.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/MyFirstSoapServer/.idea/libraries/sun_xml_ws_jaxws_rt.xml b/MyFirstSoapServer/.idea/libraries/sun_xml_ws_jaxws_rt.xml new file mode 100644 index 0000000..a09c0fc --- /dev/null +++ b/MyFirstSoapServer/.idea/libraries/sun_xml_ws_jaxws_rt.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/MyFirstSoapServer/.idea/misc.xml b/MyFirstSoapServer/.idea/misc.xml new file mode 100644 index 0000000..c3aa11c --- /dev/null +++ b/MyFirstSoapServer/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/MyFirstSoapServer/.idea/modules.xml b/MyFirstSoapServer/.idea/modules.xml new file mode 100644 index 0000000..1712deb --- /dev/null +++ b/MyFirstSoapServer/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/MyFirstSoapServer/.idea/vcs.xml b/MyFirstSoapServer/.idea/vcs.xml new file mode 100644 index 0000000..6c0b863 --- /dev/null +++ b/MyFirstSoapServer/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/MyFirstSoapServer/MyFirstSoapServer.iml b/MyFirstSoapServer/MyFirstSoapServer.iml new file mode 100644 index 0000000..b5f82a4 --- /dev/null +++ b/MyFirstSoapServer/MyFirstSoapServer.iml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/MyFirstSoapServer/src/com/soapsoapsoap/MyFirstSOAPInterface.java b/MyFirstSoapServer/src/com/soapsoapsoap/MyFirstSOAPInterface.java new file mode 100644 index 0000000..e10527d --- /dev/null +++ b/MyFirstSoapServer/src/com/soapsoapsoap/MyFirstSOAPInterface.java @@ -0,0 +1,13 @@ +package com.soapsoapsoap; + +import javax.jws.WebMethod; +import javax.jws.WebService; +import javax.jws.soap.SOAPBinding; +import javax.jws.soap.SOAPBinding.Style; + +@WebService +@SOAPBinding(style = Style.RPC) +public interface MyFirstSOAPInterface{ + @WebMethod String getHelloWorldAsString(String name); + @WebMethod long getDaysBetweenDates(String date1,String date2); +} \ No newline at end of file diff --git a/MyFirstSoapServer/src/com/soapsoapsoap/MyFirstSOAPPublisher.java b/MyFirstSoapServer/src/com/soapsoapsoap/MyFirstSOAPPublisher.java new file mode 100644 index 0000000..bafb607 --- /dev/null +++ b/MyFirstSoapServer/src/com/soapsoapsoap/MyFirstSOAPPublisher.java @@ -0,0 +1,8 @@ +package com.soapsoapsoap; + +import javax.xml.ws.Endpoint; +public class MyFirstSOAPPublisher{ + public static void main(String[] args) { + Endpoint.publish("http://localhost:7779/ws/first", new MyFirstWS()); + } +} \ No newline at end of file diff --git a/MyFirstSoapServer/src/com/soapsoapsoap/MyFirstWS.java b/MyFirstSoapServer/src/com/soapsoapsoap/MyFirstWS.java new file mode 100644 index 0000000..b5ce966 --- /dev/null +++ b/MyFirstSoapServer/src/com/soapsoapsoap/MyFirstWS.java @@ -0,0 +1,26 @@ +package com.soapsoapsoap; + +import javax.jws.WebService; +import java.time.LocalDate; +import java.time.format.DateTimeFormatter; +import java.time.temporal.ChronoUnit; + +@WebService(endpointInterface = "com.soapsoapsoap.MyFirstSOAPInterface") +public class MyFirstWS implements MyFirstSOAPInterface{ + public String getHelloWorldAsString(String nazwa) { + String message = "Witaj " + nazwa + "!"; + return message; + } + public long getDaysBetweenDates(String date1, String date2) { + long numberOfDays = 0; + DateTimeFormatter dtf = DateTimeFormatter.ofPattern("dd MM yyyy"); + try { + LocalDate tempdate1 = LocalDate.parse(date1, dtf); + LocalDate tempdate2 = LocalDate.parse(date2, dtf); + numberOfDays = ChronoUnit.DAYS.between(tempdate1, tempdate2); + } catch (Exception e) { + e.printStackTrace(); + } + return numberOfDays; + } +} \ No newline at end of file