123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869 |
- {
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v5.0",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v5.0": {
- "Kede/1.0.0": {
- "dependencies": {
- "Newtonsoft.Json": "13.0.3",
- "OpcUaHelper": "2.1.3",
- "WinSCP": "6.3.4"
- },
- "runtime": {
- "Kede.dll": {}
- }
- },
- "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Features": "2.2.0",
- "System.IO.Pipelines": "4.5.2"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Connections.Abstractions.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.0.18316"
- }
- }
- },
- "Microsoft.AspNetCore.Hosting/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
- "Microsoft.AspNetCore.Http": "2.2.0",
- "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
- "Microsoft.Extensions.Configuration": "2.2.0",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.2.0",
- "Microsoft.Extensions.Configuration.FileExtensions": "2.2.0",
- "Microsoft.Extensions.DependencyInjection": "2.2.0",
- "Microsoft.Extensions.FileProviders.Physical": "2.2.0",
- "Microsoft.Extensions.Hosting.Abstractions": "2.2.0",
- "Microsoft.Extensions.Logging": "2.2.0",
- "Microsoft.Extensions.Options": "2.2.0",
- "System.Diagnostics.DiagnosticSource": "4.5.0",
- "System.Reflection.Metadata": "1.6.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.0.18316"
- }
- }
- },
- "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0",
- "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
- "Microsoft.Extensions.Hosting.Abstractions": "2.2.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.0.18316"
- }
- }
- },
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Features": "2.2.0",
- "Microsoft.Extensions.Configuration.Abstractions": "2.2.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.0.18316"
- }
- }
- },
- "Microsoft.AspNetCore.Http/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
- "Microsoft.AspNetCore.WebUtilities": "2.2.0",
- "Microsoft.Extensions.ObjectPool": "2.2.0",
- "Microsoft.Extensions.Options": "2.2.0",
- "Microsoft.Net.Http.Headers": "2.2.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.0.18316"
- }
- }
- },
- "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Features": "2.2.0",
- "System.Text.Encodings.Web": "4.5.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.0.18316"
- }
- }
- },
- "Microsoft.AspNetCore.Http.Extensions/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
- "Microsoft.Net.Http.Headers": "2.2.0",
- "System.Buffers": "4.5.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.0.18316"
- }
- }
- },
- "Microsoft.AspNetCore.Http.Features/2.2.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "2.2.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.0.18316"
- }
- }
- },
- "Microsoft.AspNetCore.Server.Kestrel/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Hosting": "2.2.0",
- "Microsoft.AspNetCore.Server.Kestrel.Core": "2.2.0",
- "Microsoft.AspNetCore.Server.Kestrel.Https": "2.2.0",
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "2.2.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.0.18316"
- }
- }
- },
- "Microsoft.AspNetCore.Server.Kestrel.Core/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
- "Microsoft.AspNetCore.Http": "2.2.0",
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.2.0",
- "Microsoft.AspNetCore.WebUtilities": "2.2.0",
- "Microsoft.Extensions.Configuration.Binder": "2.2.0",
- "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
- "Microsoft.Extensions.Options": "2.2.0",
- "Microsoft.Net.Http.Headers": "2.2.0",
- "System.Memory": "4.5.1",
- "System.Numerics.Vectors": "4.5.0",
- "System.Runtime.CompilerServices.Unsafe": "4.5.1",
- "System.Security.Cryptography.Cng": "4.7.0",
- "System.Threading.Tasks.Extensions": "4.5.1"
- },
- "runtime": {
- "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Core.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.0.18316"
- }
- }
- },
- "Microsoft.AspNetCore.Server.Kestrel.Https/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
- "Microsoft.AspNetCore.Server.Kestrel.Core": "2.2.0"
- },
- "runtime": {
- "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Https.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.0.18316"
- }
- }
- },
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.0.18316"
- }
- }
- },
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/2.2.1": {
- "dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.2.0",
- "Microsoft.Extensions.Options": "2.2.0"
- },
- "runtime": {
- "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {
- "assemblyVersion": "2.2.1.0",
- "fileVersion": "2.2.1.18346"
- }
- }
- },
- "Microsoft.AspNetCore.WebUtilities/2.2.0": {
- "dependencies": {
- "Microsoft.Net.Http.Headers": "2.2.0",
- "System.Text.Encodings.Web": "4.5.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.0.18316"
- }
- }
- },
- "Microsoft.Extensions.Configuration/2.2.0": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "2.2.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.0.18315"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/2.2.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "2.2.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.0.18315"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Binder/2.2.0": {
- "dependencies": {
- "Microsoft.Extensions.Configuration": "2.2.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.0.18315"
- }
- }
- },
- "Microsoft.Extensions.Configuration.EnvironmentVariables/2.2.0": {
- "dependencies": {
- "Microsoft.Extensions.Configuration": "2.2.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.0.18315"
- }
- }
- },
- "Microsoft.Extensions.Configuration.FileExtensions/2.2.0": {
- "dependencies": {
- "Microsoft.Extensions.Configuration": "2.2.0",
- "Microsoft.Extensions.FileProviders.Physical": "2.2.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.0.18315"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection/2.2.0": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0"
- },
- "runtime": {
- "lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.0.18315"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.0.18315"
- }
- }
- },
- "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "2.2.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.0.18315"
- }
- }
- },
- "Microsoft.Extensions.FileProviders.Physical/2.2.0": {
- "dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
- "Microsoft.Extensions.FileSystemGlobbing": "2.2.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.0.18315"
- }
- }
- },
- "Microsoft.Extensions.FileSystemGlobbing/2.2.0": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.0.18315"
- }
- }
- },
- "Microsoft.Extensions.Hosting.Abstractions/2.2.0": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "2.2.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
- "Microsoft.Extensions.Logging.Abstractions": "2.2.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.0.18316"
- }
- }
- },
- "Microsoft.Extensions.Logging/2.2.0": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Binder": "2.2.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
- "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
- "Microsoft.Extensions.Options": "2.2.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.0.18315"
- }
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/2.2.0": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.0.18315"
- }
- }
- },
- "Microsoft.Extensions.ObjectPool/2.2.0": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.0.18315"
- }
- }
- },
- "Microsoft.Extensions.Options/2.2.0": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
- "Microsoft.Extensions.Primitives": "2.2.0",
- "System.ComponentModel.Annotations": "4.5.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.0.18315"
- }
- }
- },
- "Microsoft.Extensions.Primitives/2.2.0": {
- "dependencies": {
- "System.Memory": "4.5.1",
- "System.Runtime.CompilerServices.Unsafe": "4.5.1"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.0.18315"
- }
- }
- },
- "Microsoft.Net.Http.Headers/2.2.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "2.2.0",
- "System.Buffers": "4.5.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.0.18316"
- }
- }
- },
- "Microsoft.NETCore.Platforms/3.1.0": {},
- "Microsoft.NETCore.Targets/1.1.0": {},
- "Microsoft.Win32.SystemEvents/4.7.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.0"
- }
- },
- "Newtonsoft.Json/13.0.3": {
- "runtime": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {
- "assemblyVersion": "13.0.0.0",
- "fileVersion": "13.0.3.27908"
- }
- }
- },
- "OPCFoundation.NetStandard.Opc.Ua/1.4.365.23": {
- "dependencies": {
- "OPCFoundation.NetStandard.Opc.Ua.Bindings.Https": "1.4.365.23",
- "OPCFoundation.NetStandard.Opc.Ua.Client": "1.4.365.23",
- "OPCFoundation.NetStandard.Opc.Ua.Configuration": "1.4.365.23",
- "OPCFoundation.NetStandard.Opc.Ua.Core": "1.4.365.23",
- "OPCFoundation.NetStandard.Opc.Ua.Gds.Client.Common": "1.4.365.23",
- "OPCFoundation.NetStandard.Opc.Ua.Gds.Server.Common": "1.4.365.23",
- "OPCFoundation.NetStandard.Opc.Ua.Server": "1.4.365.23"
- }
- },
- "OPCFoundation.NetStandard.Opc.Ua.Bindings.Https/1.4.365.23": {
- "dependencies": {
- "Microsoft.AspNetCore.Server.Kestrel": "2.2.0",
- "Microsoft.AspNetCore.Server.Kestrel.Https": "2.2.0",
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "2.2.1",
- "OPCFoundation.NetStandard.Opc.Ua.Core": "1.4.365.23",
- "System.Net.Http": "4.3.4"
- },
- "runtime": {
- "lib/netstandard2.1/Opc.Ua.Bindings.Https.dll": {
- "assemblyVersion": "1.4.365.0",
- "fileVersion": "1.4.365.23"
- }
- }
- },
- "OPCFoundation.NetStandard.Opc.Ua.Client/1.4.365.23": {
- "dependencies": {
- "OPCFoundation.NetStandard.Opc.Ua.Core": "1.4.365.23"
- },
- "runtime": {
- "lib/netstandard2.1/Opc.Ua.Client.dll": {
- "assemblyVersion": "1.4.365.0",
- "fileVersion": "1.4.365.23"
- }
- }
- },
- "OPCFoundation.NetStandard.Opc.Ua.Configuration/1.4.365.23": {
- "dependencies": {
- "OPCFoundation.NetStandard.Opc.Ua.Core": "1.4.365.23"
- },
- "runtime": {
- "lib/netstandard2.1/Opc.Ua.Configuration.dll": {
- "assemblyVersion": "1.4.365.0",
- "fileVersion": "1.4.365.23"
- }
- }
- },
- "OPCFoundation.NetStandard.Opc.Ua.Core/1.4.365.23": {
- "dependencies": {
- "Newtonsoft.Json": "13.0.3",
- "OPCFoundation.NetStandard.Opc.Ua.Security.Certificates": "1.4.365.23",
- "System.Data.Common": "4.3.0",
- "System.Net.NameResolution": "4.3.0",
- "System.ServiceModel.Primitives": "4.8.0"
- },
- "runtime": {
- "lib/netstandard2.1/Opc.Ua.Core.dll": {
- "assemblyVersion": "1.4.365.0",
- "fileVersion": "1.4.365.23"
- }
- }
- },
- "OPCFoundation.NetStandard.Opc.Ua.Gds.Client.Common/1.4.365.23": {
- "dependencies": {
- "OPCFoundation.NetStandard.Opc.Ua.Client": "1.4.365.23",
- "OPCFoundation.NetStandard.Opc.Ua.Configuration": "1.4.365.23",
- "OPCFoundation.NetStandard.Opc.Ua.Core": "1.4.365.23"
- },
- "runtime": {
- "lib/netstandard2.1/Opc.Ua.Gds.Client.Common.dll": {
- "assemblyVersion": "1.4.365.0",
- "fileVersion": "1.4.365.23"
- }
- }
- },
- "OPCFoundation.NetStandard.Opc.Ua.Gds.Server.Common/1.4.365.23": {
- "dependencies": {
- "OPCFoundation.NetStandard.Opc.Ua.Core": "1.4.365.23",
- "OPCFoundation.NetStandard.Opc.Ua.Server": "1.4.365.23",
- "Portable.BouncyCastle": "1.8.9"
- },
- "runtime": {
- "lib/netstandard2.1/Opc.Ua.Gds.Server.Common.dll": {
- "assemblyVersion": "1.4.365.0",
- "fileVersion": "1.4.365.23"
- }
- }
- },
- "OPCFoundation.NetStandard.Opc.Ua.Security.Certificates/1.4.365.23": {
- "dependencies": {
- "System.Formats.Asn1": "5.0.0"
- },
- "runtime": {
- "lib/netstandard2.1/Opc.Ua.Security.Certificates.dll": {
- "assemblyVersion": "1.4.365.0",
- "fileVersion": "1.4.365.23"
- }
- }
- },
- "OPCFoundation.NetStandard.Opc.Ua.Server/1.4.365.23": {
- "dependencies": {
- "OPCFoundation.NetStandard.Opc.Ua.Core": "1.4.365.23"
- },
- "runtime": {
- "lib/netstandard2.1/Opc.Ua.Server.dll": {
- "assemblyVersion": "1.4.365.0",
- "fileVersion": "1.4.365.23"
- }
- }
- },
- "OpcUaHelper/2.1.3": {
- "dependencies": {
- "OPCFoundation.NetStandard.Opc.Ua": "1.4.365.23"
- },
- "runtime": {
- "lib/netstandard2.1/OpcUaHelper.dll": {
- "assemblyVersion": "2.1.3.0",
- "fileVersion": "2.1.3.0"
- }
- }
- },
- "Portable.BouncyCastle/1.8.9": {
- "runtime": {
- "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
- "assemblyVersion": "1.8.9.0",
- "fileVersion": "1.8.9.1"
- }
- }
- },
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
- "runtime.native.System/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
- "runtime.native.System.Net.Http/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
- "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "dependencies": {
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
- }
- },
- "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "dependencies": {
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
- }
- },
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {},
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
- "System.Buffers/4.5.0": {},
- "System.Collections/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Collections.Concurrent/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.ComponentModel.Annotations/4.5.0": {},
- "System.Data.Common/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Text.RegularExpressions": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.Diagnostics.Debug/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Diagnostics.DiagnosticSource/4.5.0": {},
- "System.Diagnostics.Tracing/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Drawing.Common/4.7.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.0",
- "Microsoft.Win32.SystemEvents": "4.7.0"
- }
- },
- "System.Formats.Asn1/5.0.0": {},
- "System.Globalization/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Globalization.Calendars/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Globalization.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.0",
- "System.Globalization": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0"
- }
- },
- "System.IO/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.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": "3.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.IO.FileSystem.Primitives/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0"
- }
- },
- "System.IO.Pipelines/4.5.2": {
- "runtime": {
- "lib/netcoreapp2.1/System.IO.Pipelines.dll": {
- "assemblyVersion": "4.0.0.1",
- "fileVersion": "4.6.26919.2"
- }
- }
- },
- "System.Linq/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0"
- }
- },
- "System.Memory/4.5.1": {},
- "System.Net.Http/4.3.4": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.0",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.DiagnosticSource": "4.5.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Globalization.Extensions": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.OpenSsl": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Security.Cryptography.X509Certificates": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "runtime.native.System": "4.3.0",
- "runtime.native.System.Net.Http": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
- }
- },
- "System.Net.NameResolution/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.0",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Principal.Windows": "4.7.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "runtime.native.System": "4.3.0"
- }
- },
- "System.Net.Primitives/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- }
- },
- "System.Numerics.Vectors/4.5.0": {},
- "System.Private.ServiceModel/4.8.0": {
- "dependencies": {
- "System.Numerics.Vectors": "4.5.0",
- "System.Reflection.DispatchProxy": "4.7.1",
- "System.Security.Cryptography.Xml": "4.7.0",
- "System.Security.Principal.Windows": "4.7.0"
- },
- "runtime": {
- "lib/netstandard2.0/System.Private.ServiceModel.dll": {
- "assemblyVersion": "4.8.0.0",
- "fileVersion": "4.800.20.51907"
- }
- }
- },
- "System.Reflection/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.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.Metadata/1.6.0": {},
- "System.Reflection.Primitives/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Resources.ResourceManager/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.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": "3.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
- "System.Runtime.CompilerServices.Unsafe/4.5.1": {},
- "System.Runtime.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime.Handles/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime.InteropServices/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- }
- },
- "System.Runtime.Numerics/4.3.0": {
- "dependencies": {
- "System.Globalization": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0"
- }
- },
- "System.Security.AccessControl/4.7.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.0",
- "System.Security.Principal.Windows": "4.7.0"
- }
- },
- "System.Security.Cryptography.Algorithms/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.0",
- "System.Collections": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
- }
- },
- "System.Security.Cryptography.Cng/4.7.0": {},
- "System.Security.Cryptography.Csp/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.0",
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0"
- }
- },
- "System.Security.Cryptography.Encoding/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.0",
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
- }
- },
- "System.Security.Cryptography.OpenSsl/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
- }
- },
- "System.Security.Cryptography.Pkcs/4.7.0": {
- "dependencies": {
- "System.Security.Cryptography.Cng": "4.7.0"
- }
- },
- "System.Security.Cryptography.Primitives/4.3.0": {
- "dependencies": {
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.Security.Cryptography.X509Certificates/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.0",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Globalization.Calendars": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Cng": "4.7.0",
- "System.Security.Cryptography.Csp": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.OpenSsl": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "runtime.native.System": "4.3.0",
- "runtime.native.System.Net.Http": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
- }
- },
- "System.Security.Cryptography.Xml/4.7.0": {
- "dependencies": {
- "System.Security.Cryptography.Pkcs": "4.7.0",
- "System.Security.Permissions": "4.7.0"
- }
- },
- "System.Security.Permissions/4.7.0": {
- "dependencies": {
- "System.Security.AccessControl": "4.7.0",
- "System.Windows.Extensions": "4.7.0"
- }
- },
- "System.Security.Principal.Windows/4.7.0": {},
- "System.ServiceModel.Primitives/4.8.0": {
- "dependencies": {
- "System.Private.ServiceModel": "4.8.0"
- },
- "runtime": {
- "lib/netcoreapp2.1/System.ServiceModel.Primitives.dll": {
- "assemblyVersion": "4.8.0.0",
- "fileVersion": "4.800.20.51907"
- },
- "lib/netcoreapp2.1/System.ServiceModel.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.800.20.51907"
- }
- }
- },
- "System.Text.Encoding/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Text.Encodings.Web/4.5.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": "3.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Threading.Tasks.Extensions/4.5.1": {},
- "System.Windows.Extensions/4.7.0": {
- "dependencies": {
- "System.Drawing.Common": "4.7.0"
- }
- },
- "WinSCP/6.3.4": {
- "runtime": {
- "lib/netstandard2.0/WinSCPnet.dll": {
- "assemblyVersion": "1.15.0.14955",
- "fileVersion": "1.15.0.14955"
- }
- }
- }
- }
- },
- "libraries": {
- "Kede/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Aqr/16Cu5XmGv7mLKJvXRxhhd05UJ7cTTSaUV4MZ3ynAzfgWjsAdpIU8FWuxwAjmVdmI8oOWuVDrbs+sRkhKnA==",
- "path": "microsoft.aspnetcore.connections.abstractions/2.2.0",
- "hashPath": "microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Hosting/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7t4RbUGugpHtQmzAkc9fpDdYJg6t/jcB2VVnjensVYbZFnLDU8pNrG0hrekk1DQG7P2UzpSqKLzDsFF0/lkkbw==",
- "path": "microsoft.aspnetcore.hosting/2.2.0",
- "hashPath": "microsoft.aspnetcore.hosting.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==",
- "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0",
- "hashPath": "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==",
- "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0",
- "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Http/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-YogBSMotWPAS/X5967pZ+yyWPQkThxhmzAwyCHCSSldzYBkW5W5d6oPfBaPqQOnSHYTpSOSOkpZoAce0vwb6+A==",
- "path": "microsoft.aspnetcore.http/2.2.0",
- "hashPath": "microsoft.aspnetcore.http.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
- "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
- "hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Http.Extensions/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==",
- "path": "microsoft.aspnetcore.http.extensions/2.2.0",
- "hashPath": "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Http.Features/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==",
- "path": "microsoft.aspnetcore.http.features/2.2.0",
- "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Server.Kestrel/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-D0vGB8Tp0UNMiAhT+pwAVeqDDx2OFrfpu/plwm0WhA+1DZvTLc99eDwGISL6LAY8x7a12lhl9w7/m+VdoyDu8Q==",
- "path": "microsoft.aspnetcore.server.kestrel/2.2.0",
- "hashPath": "microsoft.aspnetcore.server.kestrel.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Server.Kestrel.Core/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-F6/Vesd3ODq/ISbHfcvfRf7IzRtTvrNX8VA36Knm5e7bteJhoRA2GKQUVQ+neoO1njLvaQKnjcA3rdCZ6AF6cg==",
- "path": "microsoft.aspnetcore.server.kestrel.core/2.2.0",
- "hashPath": "microsoft.aspnetcore.server.kestrel.core.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Server.Kestrel.Https/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nEH5mU6idUYS3/+9BKw2stMOM25ZdGwIH4P4kyj6PVkMPgQUTkBQ7l/ScPkepdhejcOlPa+g3+M4dYsSYPUJ8g==",
- "path": "microsoft.aspnetcore.server.kestrel.https/2.2.0",
- "hashPath": "microsoft.aspnetcore.server.kestrel.https.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-j1ai2CG8BGp4mYf2TWSFjjy1pRgW9XbqhdR4EOVvrlFVbcpEPfXNIPEdjkcgK+txWCupGzkFnFF8oZsASMtmyw==",
- "path": "microsoft.aspnetcore.server.kestrel.transport.abstractions/2.2.0",
- "hashPath": "microsoft.aspnetcore.server.kestrel.transport.abstractions.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/2.2.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-tzRdyQ0qrMJ5YS0qsXfmhVd/kr25IzLpayoIAvU1yi27wqsqxXVPADDEv0S9PaS7xn6bpMFit8kZw92IICDSWg==",
- "path": "microsoft.aspnetcore.server.kestrel.transport.sockets/2.2.1",
- "hashPath": "microsoft.aspnetcore.server.kestrel.transport.sockets.2.2.1.nupkg.sha512"
- },
- "Microsoft.AspNetCore.WebUtilities/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==",
- "path": "microsoft.aspnetcore.webutilities/2.2.0",
- "hashPath": "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nOP8R1mVb/6mZtm2qgAJXn/LFm/2kMjHDAg/QJLFG6CuWYJtaD3p1BwQhufBVvRzL9ceJ/xF0SQ0qsI2GkDQAA==",
- "path": "microsoft.extensions.configuration/2.2.0",
- "hashPath": "microsoft.extensions.configuration.2.2.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Abstractions/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-65MrmXCziWaQFrI0UHkQbesrX5wTwf9XPjY5yFm/VkgJKFJ5gqvXRoXjIZcf2wLi5ZlwGz/oMYfyURVCWbM5iw==",
- "path": "microsoft.extensions.configuration.abstractions/2.2.0",
- "hashPath": "microsoft.extensions.configuration.abstractions.2.2.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Binder/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-vJ9xvOZCnUAIHcGC3SU35r3HKmHTVIeHzo6u/qzlHAqD8m6xv92MLin4oJntTvkpKxVX3vI1GFFkIQtU3AdlsQ==",
- "path": "microsoft.extensions.configuration.binder/2.2.0",
- "hashPath": "microsoft.extensions.configuration.binder.2.2.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.EnvironmentVariables/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-gIqt9PkKO01hZ0zmHnWrZ1E45MDreZTVoyDbL1kMWKtDgxxWTJpYtESTEcgpvR1uB1iex1zKGYzJpOMgmuP5TQ==",
- "path": "microsoft.extensions.configuration.environmentvariables/2.2.0",
- "hashPath": "microsoft.extensions.configuration.environmentvariables.2.2.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.FileExtensions/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-H1qCpWBC8Ed4tguTR/qYkbb3F6DI5Su3t8xyFo3/5MzAd8PwPpHzgX8X04KbBxKmk173Pb64x7xMHarczVFQUA==",
- "path": "microsoft.extensions.configuration.fileextensions/2.2.0",
- "hashPath": "microsoft.extensions.configuration.fileextensions.2.2.0.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-MZtBIwfDFork5vfjpJdG5g8wuJFt7d/y3LOSVVtDK/76wlbtz6cjltfKHqLx2TKVqTj5/c41t77m1+h20zqtPA==",
- "path": "microsoft.extensions.dependencyinjection/2.2.0",
- "hashPath": "microsoft.extensions.dependencyinjection.2.2.0.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-f9hstgjVmr6rmrfGSpfsVOl2irKAgr1QjrSi3FgnS7kulxband50f2brRLwySAQTADPZeTdow0mpSMcoAdadCw==",
- "path": "microsoft.extensions.dependencyinjection.abstractions/2.2.0",
- "hashPath": "microsoft.extensions.dependencyinjection.abstractions.2.2.0.nupkg.sha512"
- },
- "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-EcnaSsPTqx2MGnHrmWOD0ugbuuqVT8iICqSqPzi45V5/MA1LjUNb0kwgcxBGqizV1R+WeBK7/Gw25Jzkyk9bIw==",
- "path": "microsoft.extensions.fileproviders.abstractions/2.2.0",
- "hashPath": "microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512"
- },
- "Microsoft.Extensions.FileProviders.Physical/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-tbDHZnBJkjYd9NjlRZ9ondDiv1Te3KYCTW2RWpR1B0e1Z8+EnFRo7qNnHkkSCixLdlPZzhjlX24d/PixQ7w2dA==",
- "path": "microsoft.extensions.fileproviders.physical/2.2.0",
- "hashPath": "microsoft.extensions.fileproviders.physical.2.2.0.nupkg.sha512"
- },
- "Microsoft.Extensions.FileSystemGlobbing/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZSsHZp3PyW6vk37tDEdypjgGlNtpJ0EixBMOfUod2Thx7GtwfFSAQXUQx8a8BN8vfWKGGMbp7jPWdoHx/At4wQ==",
- "path": "microsoft.extensions.filesystemglobbing/2.2.0",
- "hashPath": "microsoft.extensions.filesystemglobbing.2.2.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Hosting.Abstractions/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+k4AEn68HOJat5gj1TWa6X28WlirNQO9sPIIeQbia+91n03esEtMSSoekSTpMjUzjqtJWQN3McVx0GvSPFHF/Q==",
- "path": "microsoft.extensions.hosting.abstractions/2.2.0",
- "hashPath": "microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Nxqhadc9FCmFHzU+fz3oc8sFlE6IadViYg8dfUdGzJZ2JUxnCsRghBhhOWdM4B2zSZqEc+0BjliBh/oNdRZuig==",
- "path": "microsoft.extensions.logging/2.2.0",
- "hashPath": "microsoft.extensions.logging.2.2.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Abstractions/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==",
- "path": "microsoft.extensions.logging.abstractions/2.2.0",
- "hashPath": "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512"
- },
- "Microsoft.Extensions.ObjectPool/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==",
- "path": "microsoft.extensions.objectpool/2.2.0",
- "hashPath": "microsoft.extensions.objectpool.2.2.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Options/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UpZLNLBpIZ0GTebShui7xXYh6DmBHjWM8NxGxZbdQh/bPZ5e6YswqI+bru6BnEL5eWiOdodsXtEz3FROcgi/qg==",
- "path": "microsoft.extensions.options/2.2.0",
- "hashPath": "microsoft.extensions.options.2.2.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Primitives/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-azyQtqbm4fSaDzZHD/J+V6oWMFaf2tWP4WEGIYePLCMw3+b2RQdj9ybgbQyjCshcitQKQ4lEDOZjmSlTTrHxUg==",
- "path": "microsoft.extensions.primitives/2.2.0",
- "hashPath": "microsoft.extensions.primitives.2.2.0.nupkg.sha512"
- },
- "Microsoft.Net.Http.Headers/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==",
- "path": "microsoft.net.http.headers/2.2.0",
- "hashPath": "microsoft.net.http.headers.2.2.0.nupkg.sha512"
- },
- "Microsoft.NETCore.Platforms/3.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
- "path": "microsoft.netcore.platforms/3.1.0",
- "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512"
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
- "path": "microsoft.netcore.targets/1.1.0",
- "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
- },
- "Microsoft.Win32.SystemEvents/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
- "path": "microsoft.win32.systemevents/4.7.0",
- "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512"
- },
- "Newtonsoft.Json/13.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
- "path": "newtonsoft.json/13.0.3",
- "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
- },
- "OPCFoundation.NetStandard.Opc.Ua/1.4.365.23": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-u2S/kqNIHgNYEXPGiWBBK2uDCYFomD4/dK9c9foJfA/BdsQxb9TTdTOmY7XooX0oqCCVXuIx4a9O27l+cgloyA==",
- "path": "opcfoundation.netstandard.opc.ua/1.4.365.23",
- "hashPath": "opcfoundation.netstandard.opc.ua.1.4.365.23.nupkg.sha512"
- },
- "OPCFoundation.NetStandard.Opc.Ua.Bindings.Https/1.4.365.23": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-eCco3efhkljI6Jd9qUfZM4qR+JnbvKPZftO9pK52hCv4yaY6rKxw5EXOtYFB9b/i1BzPH9QLG2KaM/jlhfyCbA==",
- "path": "opcfoundation.netstandard.opc.ua.bindings.https/1.4.365.23",
- "hashPath": "opcfoundation.netstandard.opc.ua.bindings.https.1.4.365.23.nupkg.sha512"
- },
- "OPCFoundation.NetStandard.Opc.Ua.Client/1.4.365.23": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-tTN54ams2MoSMz9bPLU7OX5ntNkmAPk73yW4RNcreNo6YWI5XkbJ0GFwvqETkls0EiH9ApbP328qLdQ8t3iEwA==",
- "path": "opcfoundation.netstandard.opc.ua.client/1.4.365.23",
- "hashPath": "opcfoundation.netstandard.opc.ua.client.1.4.365.23.nupkg.sha512"
- },
- "OPCFoundation.NetStandard.Opc.Ua.Configuration/1.4.365.23": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-oEBnnCe1SVytFnXdGEx7P5aoeBj2Z1OwunV0CgpjNGawNL3InA2LZ06BUSC/DW/S0zC4khgLSSOmLe9e/xtUyQ==",
- "path": "opcfoundation.netstandard.opc.ua.configuration/1.4.365.23",
- "hashPath": "opcfoundation.netstandard.opc.ua.configuration.1.4.365.23.nupkg.sha512"
- },
- "OPCFoundation.NetStandard.Opc.Ua.Core/1.4.365.23": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-XYYxQfW7trMTO/BWzoanC7nF4sczbUJ58736Ju4g6kLttDf8utIGlYBLA56GE8H54tFOadJya4Y8RYUZHaSiWw==",
- "path": "opcfoundation.netstandard.opc.ua.core/1.4.365.23",
- "hashPath": "opcfoundation.netstandard.opc.ua.core.1.4.365.23.nupkg.sha512"
- },
- "OPCFoundation.NetStandard.Opc.Ua.Gds.Client.Common/1.4.365.23": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-YtIk+FuS2TmbSvLecf8X1jli7xEjmY3SsDo/TxkQ3I3PYDmpL23oiTf3XzEZ48SgjHRjUMUVYcDrqgxEFeF+dg==",
- "path": "opcfoundation.netstandard.opc.ua.gds.client.common/1.4.365.23",
- "hashPath": "opcfoundation.netstandard.opc.ua.gds.client.common.1.4.365.23.nupkg.sha512"
- },
- "OPCFoundation.NetStandard.Opc.Ua.Gds.Server.Common/1.4.365.23": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-zqk3xgl6PAXuduVHWfCvMpKiejc1zi0NYyVkXAX/cVfDh/8TLiomH81aI+HJZLVmcbzE/IT5CZrcFbdsXVrwzQ==",
- "path": "opcfoundation.netstandard.opc.ua.gds.server.common/1.4.365.23",
- "hashPath": "opcfoundation.netstandard.opc.ua.gds.server.common.1.4.365.23.nupkg.sha512"
- },
- "OPCFoundation.NetStandard.Opc.Ua.Security.Certificates/1.4.365.23": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-0Ojm89Lmm7as2XRB6dIQrLPdio7duhsz5gjc/Q/8qttifotEl6CtwX+jnzdqWqi81QLQAxSImiiHLDX5iMw9MQ==",
- "path": "opcfoundation.netstandard.opc.ua.security.certificates/1.4.365.23",
- "hashPath": "opcfoundation.netstandard.opc.ua.security.certificates.1.4.365.23.nupkg.sha512"
- },
- "OPCFoundation.NetStandard.Opc.Ua.Server/1.4.365.23": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-N7yYLi98apfXqEuQe66Y91RZ2IyGABHVgkHULy/DMPGruKUSS4HmcTX59XBLhXefJfpbx5c6R7slXqxcxrMtlQ==",
- "path": "opcfoundation.netstandard.opc.ua.server/1.4.365.23",
- "hashPath": "opcfoundation.netstandard.opc.ua.server.1.4.365.23.nupkg.sha512"
- },
- "OpcUaHelper/2.1.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-77ZLMMXRW+cjjoD6OeVQHPXEIwtUjYEcp2OlP6ND3VC6O2SmsQ2Al8wzqYe2fBZJqvT/wxicP6q/DRwvF8VKrw==",
- "path": "opcuahelper/2.1.3",
- "hashPath": "opcuahelper.2.1.3.nupkg.sha512"
- },
- "Portable.BouncyCastle/1.8.9": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-wlJo8aFoeyl+W93iFXTK5ShzDYk5WBqoUPjTNEM0Xv9kn1H+4hmuCjF0/n8HLm9Nnp1aY6KNndWqQTNk+NGgRQ==",
- "path": "portable.bouncycastle/1.8.9",
- "hashPath": "portable.bouncycastle.1.8.9.nupkg.sha512"
- },
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==",
- "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
- },
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==",
- "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
- },
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==",
- "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
- },
- "runtime.native.System/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
- "path": "runtime.native.system/4.3.0",
- "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
- },
- "runtime.native.System.Net.Http/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
- "path": "runtime.native.system.net.http/4.3.0",
- "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
- },
- "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
- "path": "runtime.native.system.security.cryptography.apple/4.3.0",
- "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
- },
- "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==",
- "path": "runtime.native.system.security.cryptography.openssl/4.3.2",
- "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
- },
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==",
- "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
- },
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==",
- "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
- "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
- "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==",
- "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
- },
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==",
- "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
- },
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==",
- "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
- },
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==",
- "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
- },
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==",
- "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
- },
- "System.Buffers/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==",
- "path": "system.buffers/4.5.0",
- "hashPath": "system.buffers.4.5.0.nupkg.sha512"
- },
- "System.Collections/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
- "path": "system.collections/4.3.0",
- "hashPath": "system.collections.4.3.0.nupkg.sha512"
- },
- "System.Collections.Concurrent/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
- "path": "system.collections.concurrent/4.3.0",
- "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
- },
- "System.ComponentModel.Annotations/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg==",
- "path": "system.componentmodel.annotations/4.5.0",
- "hashPath": "system.componentmodel.annotations.4.5.0.nupkg.sha512"
- },
- "System.Data.Common/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
- "path": "system.data.common/4.3.0",
- "hashPath": "system.data.common.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.Diagnostics.DiagnosticSource/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-eIHRELiYDQvsMToML81QFkXEEYXUSUT2F28t1SGrevWqP+epFdw80SyAXIKTXOHrIEXReFOEnEr7XlGiC2GgOg==",
- "path": "system.diagnostics.diagnosticsource/4.5.0",
- "hashPath": "system.diagnostics.diagnosticsource.4.5.0.nupkg.sha512"
- },
- "System.Diagnostics.Tracing/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
- "path": "system.diagnostics.tracing/4.3.0",
- "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
- },
- "System.Drawing.Common/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
- "path": "system.drawing.common/4.7.0",
- "hashPath": "system.drawing.common.4.7.0.nupkg.sha512"
- },
- "System.Formats.Asn1/5.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==",
- "path": "system.formats.asn1/5.0.0",
- "hashPath": "system.formats.asn1.5.0.0.nupkg.sha512"
- },
- "System.Globalization/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
- "path": "system.globalization/4.3.0",
- "hashPath": "system.globalization.4.3.0.nupkg.sha512"
- },
- "System.Globalization.Calendars/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
- "path": "system.globalization.calendars/4.3.0",
- "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
- },
- "System.Globalization.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
- "path": "system.globalization.extensions/4.3.0",
- "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
- },
- "System.IO/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
- "path": "system.io/4.3.0",
- "hashPath": "system.io.4.3.0.nupkg.sha512"
- },
- "System.IO.FileSystem/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
- "path": "system.io.filesystem/4.3.0",
- "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
- },
- "System.IO.FileSystem.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
- "path": "system.io.filesystem.primitives/4.3.0",
- "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
- },
- "System.IO.Pipelines/4.5.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-NOC/SO4gSX6t0tB25xxDPqPEzkksuzW7NVFBTQGAkjXXUPQl7ZtyE83T7tUCP2huFBbPombfCKvq1Ox1aG8D9w==",
- "path": "system.io.pipelines/4.5.2",
- "hashPath": "system.io.pipelines.4.5.2.nupkg.sha512"
- },
- "System.Linq/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
- "path": "system.linq/4.3.0",
- "hashPath": "system.linq.4.3.0.nupkg.sha512"
- },
- "System.Memory/4.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-sDJYJpGtTgx+23Ayu5euxG5mAXWdkDb4+b0rD0Cab0M1oQS9H0HXGPriKcqpXuiJDTV7fTp/d+fMDJmnr6sNvA==",
- "path": "system.memory/4.5.1",
- "hashPath": "system.memory.4.5.1.nupkg.sha512"
- },
- "System.Net.Http/4.3.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==",
- "path": "system.net.http/4.3.4",
- "hashPath": "system.net.http.4.3.4.nupkg.sha512"
- },
- "System.Net.NameResolution/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
- "path": "system.net.nameresolution/4.3.0",
- "hashPath": "system.net.nameresolution.4.3.0.nupkg.sha512"
- },
- "System.Net.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
- "path": "system.net.primitives/4.3.0",
- "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
- },
- "System.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.8.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-V21eCo3u2GOzq/BOSD3hxlJQCOp71RHXI0TxzbFp8k5Gtnu/X2bBYETpiRFUsUojJz5MwUNjtW8BdwdUnwP05g==",
- "path": "system.private.servicemodel/4.8.0",
- "hashPath": "system.private.servicemodel.4.8.0.nupkg.sha512"
- },
- "System.Reflection/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
- "path": "system.reflection/4.3.0",
- "hashPath": "system.reflection.4.3.0.nupkg.sha512"
- },
- "System.Reflection.DispatchProxy/4.7.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-C1sMLwIG6ILQ2bmOT4gh62V6oJlyF4BlHcVMrOoor49p0Ji2tA8QAoqyMcIhAdH6OHKJ8m7BU+r4LK2CUEOKqw==",
- "path": "system.reflection.dispatchproxy/4.7.1",
- "hashPath": "system.reflection.dispatchproxy.4.7.1.nupkg.sha512"
- },
- "System.Reflection.Metadata/1.6.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==",
- "path": "system.reflection.metadata/1.6.0",
- "hashPath": "system.reflection.metadata.1.6.0.nupkg.sha512"
- },
- "System.Reflection.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
- "path": "system.reflection.primitives/4.3.0",
- "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
- },
- "System.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.CompilerServices.Unsafe/4.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Zh8t8oqolRaFa9vmOZfdQm/qKejdqz0J9kr7o2Fu0vPeoH3BL1EOXipKWwkWtLT1JPzjByrF19fGuFlNbmPpiw==",
- "path": "system.runtime.compilerservices.unsafe/4.5.1",
- "hashPath": "system.runtime.compilerservices.unsafe.4.5.1.nupkg.sha512"
- },
- "System.Runtime.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
- "path": "system.runtime.extensions/4.3.0",
- "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Handles/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
- "path": "system.runtime.handles/4.3.0",
- "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
- },
- "System.Runtime.InteropServices/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
- "path": "system.runtime.interopservices/4.3.0",
- "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Numerics/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
- "path": "system.runtime.numerics/4.3.0",
- "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
- },
- "System.Security.AccessControl/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
- "path": "system.security.accesscontrol/4.7.0",
- "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Algorithms/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
- "path": "system.security.cryptography.algorithms/4.3.0",
- "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Cng/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4WQjFuypWtxb/bl/YwEE7LYGn4fgpsikFfBU6xwEm4YBYiRAhXAEJ62lILBu2JJSFbClIAntFTGfDZafn8yZTg==",
- "path": "system.security.cryptography.cng/4.7.0",
- "hashPath": "system.security.cryptography.cng.4.7.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Csp/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
- "path": "system.security.cryptography.csp/4.3.0",
- "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Encoding/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
- "path": "system.security.cryptography.encoding/4.3.0",
- "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
- "path": "system.security.cryptography.openssl/4.3.0",
- "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Pkcs/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-0Srzh6YlhjuMxaqMyeCCdZs22cucaUAG6SKDd3gNHBJmre0VZ71ekzWu9rvLD4YXPetyNdPvV6Qst+8C++9v3Q==",
- "path": "system.security.cryptography.pkcs/4.7.0",
- "hashPath": "system.security.cryptography.pkcs.4.7.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
- "path": "system.security.cryptography.primitives/4.3.0",
- "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.X509Certificates/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
- "path": "system.security.cryptography.x509certificates/4.3.0",
- "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Xml/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-B6pAyxMvXGbZemb+ER877KSr6OKis+qAdxhhKKK36I6sgj2js8mbcEVviZEHYV8XRTWjbKsAq8Z/zoaegA30dA==",
- "path": "system.security.cryptography.xml/4.7.0",
- "hashPath": "system.security.cryptography.xml.4.7.0.nupkg.sha512"
- },
- "System.Security.Permissions/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
- "path": "system.security.permissions/4.7.0",
- "hashPath": "system.security.permissions.4.7.0.nupkg.sha512"
- },
- "System.Security.Principal.Windows/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
- "path": "system.security.principal.windows/4.7.0",
- "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512"
- },
- "System.ServiceModel.Primitives/4.8.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-akJiBb0EcWTXQ/dgp1a27O7UynZbqQ84M17OY/ssxfb32x5wtQ5zRw6ExsQaPOUQgia4Wl2jy4FWZddQRLLnaA==",
- "path": "system.servicemodel.primitives/4.8.0",
- "hashPath": "system.servicemodel.primitives.4.8.0.nupkg.sha512"
- },
- "System.Text.Encoding/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
- "path": "system.text.encoding/4.3.0",
- "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
- },
- "System.Text.Encodings.Web/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
- "path": "system.text.encodings.web/4.5.0",
- "hashPath": "system.text.encodings.web.4.5.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.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-WSKUTtLhPR8gllzIWO2x6l4lmAIfbyMAiTlyXAis4QBDonXK4b4S6F8zGARX4/P8wH3DH+sLdhamCiHn+fTU1A==",
- "path": "system.threading.tasks.extensions/4.5.1",
- "hashPath": "system.threading.tasks.extensions.4.5.1.nupkg.sha512"
- },
- "System.Windows.Extensions/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
- "path": "system.windows.extensions/4.7.0",
- "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512"
- },
- "WinSCP/6.3.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-QruTYLecwjwjzz+txdszwfWTT42Yue7XC091DVgN1GkFyNEqtqUBlygX2FYctw0q3ICvFhXFCIBIpXLO1mMLEg==",
- "path": "winscp/6.3.4",
- "hashPath": "winscp.6.3.4.nupkg.sha512"
- }
- }
- }
|