123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043 |
- {
- "version": 3,
- "targets": {
- "net7.0": {
- "Google.Protobuf/3.21.9": {
- "type": "package",
- "compile": {
- "lib/net5.0/Google.Protobuf.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net5.0/Google.Protobuf.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "K4os.Compression.LZ4/1.3.5": {
- "type": "package",
- "compile": {
- "lib/net6.0/K4os.Compression.LZ4.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/K4os.Compression.LZ4.dll": {
- "related": ".xml"
- }
- }
- },
- "K4os.Compression.LZ4.Streams/1.3.5": {
- "type": "package",
- "dependencies": {
- "K4os.Compression.LZ4": "1.3.5",
- "K4os.Hash.xxHash": "1.0.8",
- "System.IO.Pipelines": "6.0.3"
- },
- "compile": {
- "lib/net6.0/K4os.Compression.LZ4.Streams.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/K4os.Compression.LZ4.Streams.dll": {
- "related": ".xml"
- }
- }
- },
- "K4os.Hash.xxHash/1.0.8": {
- "type": "package",
- "compile": {
- "lib/net6.0/K4os.Hash.xxHash.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/K4os.Hash.xxHash.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.NETCore.Platforms/3.1.0": {
- "type": "package",
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "type": "package",
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "Microsoft.Win32.SystemEvents/4.7.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.0"
- },
- "compile": {
- "ref/netstandard2.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "MongoDB.Bson/2.0.0": {
- "type": "package",
- "compile": {
- "lib/net45/MongoDB.Bson.dll": {
- "related": ".XML"
- }
- },
- "runtime": {
- "lib/net45/MongoDB.Bson.dll": {
- "related": ".XML"
- }
- }
- },
- "MySql.Data/8.1.0": {
- "type": "package",
- "dependencies": {
- "Google.Protobuf": "3.21.9",
- "K4os.Compression.LZ4.Streams": "1.3.5",
- "Portable.BouncyCastle": "1.9.0",
- "System.Buffers": "4.5.1",
- "System.Configuration.ConfigurationManager": "4.4.1",
- "System.Diagnostics.DiagnosticSource": "7.0.2",
- "System.Runtime.CompilerServices.Unsafe": "6.0.0",
- "System.Runtime.Loader": "4.3.0",
- "System.Security.Permissions": "4.7.0",
- "System.Text.Encoding.CodePages": "4.4.0",
- "System.Text.Json": "7.0.1",
- "System.Threading.Tasks.Extensions": "4.5.4",
- "ZstdSharp.Port": "0.7.1"
- },
- "compile": {
- "lib/net7.0/MySql.Data.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/MySql.Data.dll": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/win-x64/native/comerr64.dll": {
- "assetType": "native",
- "rid": "win-x64"
- },
- "runtimes/win-x64/native/gssapi64.dll": {
- "assetType": "native",
- "rid": "win-x64"
- },
- "runtimes/win-x64/native/k5sprt64.dll": {
- "assetType": "native",
- "rid": "win-x64"
- },
- "runtimes/win-x64/native/krb5_64.dll": {
- "assetType": "native",
- "rid": "win-x64"
- },
- "runtimes/win-x64/native/krbcc64.dll": {
- "assetType": "native",
- "rid": "win-x64"
- }
- }
- },
- "Newtonsoft.Json/13.0.3": {
- "type": "package",
- "compile": {
- "lib/net6.0/Newtonsoft.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Newtonsoft.Json.dll": {
- "related": ".xml"
- }
- }
- },
- "NLog/5.1.3": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/NLog.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/NLog.dll": {
- "related": ".xml"
- }
- }
- },
- "Portable.BouncyCastle/1.9.0": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Buffers/4.5.1": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.0/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.0/_._": {}
- }
- },
- "System.Configuration.ConfigurationManager/4.4.1": {
- "type": "package",
- "dependencies": {
- "System.Security.Cryptography.ProtectedData": "4.4.0"
- },
- "compile": {
- "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
- }
- },
- "System.Diagnostics.DiagnosticSource/7.0.2": {
- "type": "package",
- "compile": {
- "lib/net7.0/System.Diagnostics.DiagnosticSource.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/System.Diagnostics.DiagnosticSource.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "System.Drawing.Common/4.7.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.0",
- "Microsoft.Win32.SystemEvents": "4.7.0"
- },
- "compile": {
- "ref/netcoreapp3.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/System.Drawing.Common.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.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.Pipelines/6.0.3": {
- "type": "package",
- "compile": {
- "lib/net6.0/System.IO.Pipelines.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.IO.Pipelines.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Reflection/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/System.Reflection.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Reflection.Primitives/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/System.Reflection.Primitives.dll": {
- "related": ".xml"
- }
- }
- },
- "System.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.CompilerServices.Unsafe/6.0.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Runtime.Loader/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/System.Runtime.Loader.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.5/System.Runtime.Loader.dll": {}
- }
- },
- "System.Security.AccessControl/4.7.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "3.1.0",
- "System.Security.Principal.Windows": "4.7.0"
- },
- "compile": {
- "ref/netstandard2.0/System.Security.AccessControl.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/System.Security.AccessControl.dll": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.ProtectedData/4.4.0": {
- "type": "package",
- "compile": {
- "ref/netstandard2.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
- },
- "runtimeTargets": {
- "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Permissions/4.7.0": {
- "type": "package",
- "dependencies": {
- "System.Security.AccessControl": "4.7.0",
- "System.Windows.Extensions": "4.7.0"
- },
- "compile": {
- "ref/netcoreapp3.0/System.Security.Permissions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.0/System.Security.Permissions.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Security.Principal.Windows/4.7.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.Text.Encoding/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Text.Encoding.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Text.Encoding.CodePages/4.4.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.0.0"
- },
- "compile": {
- "ref/netstandard2.0/System.Text.Encoding.CodePages.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
- },
- "runtimeTargets": {
- "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Text.Encodings.Web/7.0.0": {
- "type": "package",
- "compile": {
- "lib/net7.0/System.Text.Encodings.Web.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/System.Text.Encodings.Web.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- },
- "runtimeTargets": {
- "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll": {
- "assetType": "runtime",
- "rid": "browser"
- }
- }
- },
- "System.Text.Json/7.0.1": {
- "type": "package",
- "dependencies": {
- "System.Text.Encodings.Web": "7.0.0"
- },
- "compile": {
- "lib/net7.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/System.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/System.Text.Json.targets": {}
- }
- },
- "System.Threading.Tasks/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Threading.Tasks.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Threading.Tasks.Extensions/4.5.4": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.1/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.1/_._": {}
- }
- },
- "System.Windows.Extensions/4.7.0": {
- "type": "package",
- "dependencies": {
- "System.Drawing.Common": "4.7.0"
- },
- "compile": {
- "ref/netcoreapp3.0/System.Windows.Extensions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "UniTask/2.5.0": {
- "type": "package",
- "dependencies": {
- "System.Threading.Tasks.Extensions": "4.5.4"
- },
- "compile": {
- "lib/net7.0/UniTask.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net7.0/UniTask.dll": {
- "related": ".xml"
- }
- }
- },
- "ZstdSharp.Port/0.7.1": {
- "type": "package",
- "compile": {
- "lib/net7.0/ZstdSharp.dll": {}
- },
- "runtime": {
- "lib/net7.0/ZstdSharp.dll": {}
- }
- },
- "ThirdParty/1.0.0": {
- "type": "project",
- "framework": ".NETCoreApp,Version=v7.0",
- "dependencies": {
- "MySql.Data": "8.1.0",
- "UniTask": "2.4.1"
- },
- "compile": {
- "bin/placeholder/ThirdParty.dll": {}
- },
- "runtime": {
- "bin/placeholder/ThirdParty.dll": {}
- }
- }
- }
- },
- "libraries": {
- "Google.Protobuf/3.21.9": {
- "sha512": "OTpFujTgkmqMLbg3KT7F/iuKi1rg6s5FCS2M9XcVLDn40zL8wgXm37CY/F6MeOEXKjdcnXGCN/h7oyMkVydVsg==",
- "type": "package",
- "path": "google.protobuf/3.21.9",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "google.protobuf.3.21.9.nupkg.sha512",
- "google.protobuf.nuspec",
- "lib/net45/Google.Protobuf.dll",
- "lib/net45/Google.Protobuf.pdb",
- "lib/net45/Google.Protobuf.xml",
- "lib/net5.0/Google.Protobuf.dll",
- "lib/net5.0/Google.Protobuf.pdb",
- "lib/net5.0/Google.Protobuf.xml",
- "lib/netstandard1.1/Google.Protobuf.dll",
- "lib/netstandard1.1/Google.Protobuf.pdb",
- "lib/netstandard1.1/Google.Protobuf.xml",
- "lib/netstandard2.0/Google.Protobuf.dll",
- "lib/netstandard2.0/Google.Protobuf.pdb",
- "lib/netstandard2.0/Google.Protobuf.xml"
- ]
- },
- "K4os.Compression.LZ4/1.3.5": {
- "sha512": "TS4mqlT0X1OlnvOGNfl02QdVUhuqgWuCnn7UxupIa7C9Pb6qlQ5yZA2sPhRh0OSmVULaQU64KV4wJuu//UyVQQ==",
- "type": "package",
- "path": "k4os.compression.lz4/1.3.5",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "k4os.compression.lz4.1.3.5.nupkg.sha512",
- "k4os.compression.lz4.nuspec",
- "lib/net462/K4os.Compression.LZ4.dll",
- "lib/net462/K4os.Compression.LZ4.xml",
- "lib/net5.0/K4os.Compression.LZ4.dll",
- "lib/net5.0/K4os.Compression.LZ4.xml",
- "lib/net6.0/K4os.Compression.LZ4.dll",
- "lib/net6.0/K4os.Compression.LZ4.xml",
- "lib/netstandard2.0/K4os.Compression.LZ4.dll",
- "lib/netstandard2.0/K4os.Compression.LZ4.xml",
- "lib/netstandard2.1/K4os.Compression.LZ4.dll",
- "lib/netstandard2.1/K4os.Compression.LZ4.xml"
- ]
- },
- "K4os.Compression.LZ4.Streams/1.3.5": {
- "sha512": "M0NufZI8ym3mm6F6HMSPz1jw7TJGdY74fjAtbIXATmnAva/8xLz50eQZJI9tf9mMeHUaFDg76N1BmEh8GR5zeA==",
- "type": "package",
- "path": "k4os.compression.lz4.streams/1.3.5",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "k4os.compression.lz4.streams.1.3.5.nupkg.sha512",
- "k4os.compression.lz4.streams.nuspec",
- "lib/net462/K4os.Compression.LZ4.Streams.dll",
- "lib/net462/K4os.Compression.LZ4.Streams.xml",
- "lib/net5.0/K4os.Compression.LZ4.Streams.dll",
- "lib/net5.0/K4os.Compression.LZ4.Streams.xml",
- "lib/net6.0/K4os.Compression.LZ4.Streams.dll",
- "lib/net6.0/K4os.Compression.LZ4.Streams.xml",
- "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
- "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml",
- "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll",
- "lib/netstandard2.1/K4os.Compression.LZ4.Streams.xml"
- ]
- },
- "K4os.Hash.xxHash/1.0.8": {
- "sha512": "Wp2F7BamQ2Q/7Hk834nV9vRQapgcr8kgv9Jvfm8J3D0IhDqZMMl+a2yxUq5ltJitvXvQfB8W6K4F4fCbw/P6YQ==",
- "type": "package",
- "path": "k4os.hash.xxhash/1.0.8",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "k4os.hash.xxhash.1.0.8.nupkg.sha512",
- "k4os.hash.xxhash.nuspec",
- "lib/net462/K4os.Hash.xxHash.dll",
- "lib/net462/K4os.Hash.xxHash.xml",
- "lib/net5.0/K4os.Hash.xxHash.dll",
- "lib/net5.0/K4os.Hash.xxHash.xml",
- "lib/net6.0/K4os.Hash.xxHash.dll",
- "lib/net6.0/K4os.Hash.xxHash.xml",
- "lib/netstandard2.0/K4os.Hash.xxHash.dll",
- "lib/netstandard2.0/K4os.Hash.xxHash.xml",
- "lib/netstandard2.1/K4os.Hash.xxHash.dll",
- "lib/netstandard2.1/K4os.Hash.xxHash.xml"
- ]
- },
- "Microsoft.NETCore.Platforms/3.1.0": {
- "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
- "type": "package",
- "path": "microsoft.netcore.platforms/3.1.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/netstandard1.0/_._",
- "microsoft.netcore.platforms.3.1.0.nupkg.sha512",
- "microsoft.netcore.platforms.nuspec",
- "runtime.json",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
- "type": "package",
- "path": "microsoft.netcore.targets/1.1.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "microsoft.netcore.targets.1.1.0.nupkg.sha512",
- "microsoft.netcore.targets.nuspec",
- "runtime.json"
- ]
- },
- "Microsoft.Win32.SystemEvents/4.7.0": {
- "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
- "type": "package",
- "path": "microsoft.win32.systemevents/4.7.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/Microsoft.Win32.SystemEvents.dll",
- "lib/net461/Microsoft.Win32.SystemEvents.xml",
- "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
- "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
- "microsoft.win32.systemevents.4.7.0.nupkg.sha512",
- "microsoft.win32.systemevents.nuspec",
- "ref/net461/Microsoft.Win32.SystemEvents.dll",
- "ref/net461/Microsoft.Win32.SystemEvents.xml",
- "ref/net472/Microsoft.Win32.SystemEvents.dll",
- "ref/net472/Microsoft.Win32.SystemEvents.xml",
- "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
- "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
- "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
- "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
- "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
- "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "MongoDB.Bson/2.0.0": {
- "sha512": "oij2O4yegOKc6zZByxhbuILQIqT0xbUv9DHAt7HdQTzvlOJ7WgKwsMsoQR6VO4qd8PntGvcC9o/sNAj3KdndKA==",
- "type": "package",
- "path": "mongodb.bson/2.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "License.rtf",
- "lib/net45/MongoDB.Bson.XML",
- "lib/net45/MongoDB.Bson.dll",
- "mongodb.bson.2.0.0.nupkg.sha512",
- "mongodb.bson.nuspec"
- ]
- },
- "MySql.Data/8.1.0": {
- "sha512": "7kEJLyty7HcqJD0lnfs+2fdMrvCl0RY5oykvZThbmg6QVLT55dwygI69Eqxl0M6IThP9woyjpsezT6m7gKRrLA==",
- "type": "package",
- "path": "mysql.data/8.1.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net462/MySql.Data.dll",
- "lib/net462/MySql.Data.xml",
- "lib/net48/MySql.Data.dll",
- "lib/net48/MySql.Data.xml",
- "lib/net6.0/MySql.Data.dll",
- "lib/net6.0/MySql.Data.xml",
- "lib/net7.0/MySql.Data.dll",
- "lib/net7.0/MySql.Data.xml",
- "lib/netstandard2.0/MySql.Data.dll",
- "lib/netstandard2.0/MySql.Data.xml",
- "lib/netstandard2.1/MySql.Data.dll",
- "lib/netstandard2.1/MySql.Data.xml",
- "logo-mysql-170x115.png",
- "mysql.data.8.1.0.nupkg.sha512",
- "mysql.data.nuspec",
- "runtimes/win-x64/native/comerr64.dll",
- "runtimes/win-x64/native/gssapi64.dll",
- "runtimes/win-x64/native/k5sprt64.dll",
- "runtimes/win-x64/native/krb5_64.dll",
- "runtimes/win-x64/native/krbcc64.dll"
- ]
- },
- "Newtonsoft.Json/13.0.3": {
- "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
- "type": "package",
- "path": "newtonsoft.json/13.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "README.md",
- "lib/net20/Newtonsoft.Json.dll",
- "lib/net20/Newtonsoft.Json.xml",
- "lib/net35/Newtonsoft.Json.dll",
- "lib/net35/Newtonsoft.Json.xml",
- "lib/net40/Newtonsoft.Json.dll",
- "lib/net40/Newtonsoft.Json.xml",
- "lib/net45/Newtonsoft.Json.dll",
- "lib/net45/Newtonsoft.Json.xml",
- "lib/net6.0/Newtonsoft.Json.dll",
- "lib/net6.0/Newtonsoft.Json.xml",
- "lib/netstandard1.0/Newtonsoft.Json.dll",
- "lib/netstandard1.0/Newtonsoft.Json.xml",
- "lib/netstandard1.3/Newtonsoft.Json.dll",
- "lib/netstandard1.3/Newtonsoft.Json.xml",
- "lib/netstandard2.0/Newtonsoft.Json.dll",
- "lib/netstandard2.0/Newtonsoft.Json.xml",
- "newtonsoft.json.13.0.3.nupkg.sha512",
- "newtonsoft.json.nuspec",
- "packageIcon.png"
- ]
- },
- "NLog/5.1.3": {
- "sha512": "rB8hwjBf1EZCfG5iPfsv3gPksLoJLr1cOrt7PBbJu6VpJgwYJchDzTUT1dhNDdPv0QakXJQJOhE59ErupcznQQ==",
- "type": "package",
- "path": "nlog/5.1.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "N.png",
- "lib/net35/NLog.dll",
- "lib/net35/NLog.xml",
- "lib/net45/NLog.dll",
- "lib/net45/NLog.xml",
- "lib/net46/NLog.dll",
- "lib/net46/NLog.xml",
- "lib/netstandard1.3/NLog.dll",
- "lib/netstandard1.3/NLog.xml",
- "lib/netstandard1.5/NLog.dll",
- "lib/netstandard1.5/NLog.xml",
- "lib/netstandard2.0/NLog.dll",
- "lib/netstandard2.0/NLog.xml",
- "nlog.5.1.3.nupkg.sha512",
- "nlog.nuspec"
- ]
- },
- "Portable.BouncyCastle/1.9.0": {
- "sha512": "eZZBCABzVOek+id9Xy04HhmgykF0wZg9wpByzrWN7q8qEI0Qen9b7tfd7w8VA3dOeesumMG7C5ZPy0jk7PSRHw==",
- "type": "package",
- "path": "portable.bouncycastle/1.9.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net40/BouncyCastle.Crypto.dll",
- "lib/net40/BouncyCastle.Crypto.xml",
- "lib/netstandard2.0/BouncyCastle.Crypto.dll",
- "lib/netstandard2.0/BouncyCastle.Crypto.xml",
- "portable.bouncycastle.1.9.0.nupkg.sha512",
- "portable.bouncycastle.nuspec"
- ]
- },
- "System.Buffers/4.5.1": {
- "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
- "type": "package",
- "path": "system.buffers/4.5.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/System.Buffers.dll",
- "lib/net461/System.Buffers.xml",
- "lib/netcoreapp2.0/_._",
- "lib/netstandard1.1/System.Buffers.dll",
- "lib/netstandard1.1/System.Buffers.xml",
- "lib/netstandard2.0/System.Buffers.dll",
- "lib/netstandard2.0/System.Buffers.xml",
- "lib/uap10.0.16299/_._",
- "ref/net45/System.Buffers.dll",
- "ref/net45/System.Buffers.xml",
- "ref/netcoreapp2.0/_._",
- "ref/netstandard1.1/System.Buffers.dll",
- "ref/netstandard1.1/System.Buffers.xml",
- "ref/netstandard2.0/System.Buffers.dll",
- "ref/netstandard2.0/System.Buffers.xml",
- "ref/uap10.0.16299/_._",
- "system.buffers.4.5.1.nupkg.sha512",
- "system.buffers.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Configuration.ConfigurationManager/4.4.1": {
- "sha512": "jz3TWKMAeuDEyrPCK5Jyt4bzQcmzUIMcY9Ud6PkElFxTfnsihV+9N/UCqvxe1z5gc7jMYAnj7V1COMS9QKIuHQ==",
- "type": "package",
- "path": "system.configuration.configurationmanager/4.4.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/System.Configuration.ConfigurationManager.dll",
- "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
- "ref/net461/System.Configuration.ConfigurationManager.dll",
- "ref/net461/System.Configuration.ConfigurationManager.xml",
- "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
- "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
- "system.configuration.configurationmanager.4.4.1.nupkg.sha512",
- "system.configuration.configurationmanager.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Diagnostics.DiagnosticSource/7.0.2": {
- "sha512": "hYr3I9N9811e0Bjf2WNwAGGyTuAFbbTgX1RPLt/3Wbm68x3IGcX5Cl75CMmgT6WlNwLQ2tCCWfqYPpypjaf2xA==",
- "type": "package",
- "path": "system.diagnostics.diagnosticsource/7.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
- "lib/net462/System.Diagnostics.DiagnosticSource.dll",
- "lib/net462/System.Diagnostics.DiagnosticSource.xml",
- "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
- "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
- "lib/net7.0/System.Diagnostics.DiagnosticSource.dll",
- "lib/net7.0/System.Diagnostics.DiagnosticSource.xml",
- "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
- "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
- "system.diagnostics.diagnosticsource.7.0.2.nupkg.sha512",
- "system.diagnostics.diagnosticsource.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Drawing.Common/4.7.0": {
- "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
- "type": "package",
- "path": "system.drawing.common/4.7.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net461/System.Drawing.Common.dll",
- "lib/netstandard2.0/System.Drawing.Common.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net461/System.Drawing.Common.dll",
- "ref/netcoreapp3.0/System.Drawing.Common.dll",
- "ref/netcoreapp3.0/System.Drawing.Common.xml",
- "ref/netstandard2.0/System.Drawing.Common.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
- "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
- "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
- "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
- "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
- "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
- "system.drawing.common.4.7.0.nupkg.sha512",
- "system.drawing.common.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "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.Pipelines/6.0.3": {
- "sha512": "ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==",
- "type": "package",
- "path": "system.io.pipelines/6.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.IO.Pipelines.dll",
- "lib/net461/System.IO.Pipelines.xml",
- "lib/net6.0/System.IO.Pipelines.dll",
- "lib/net6.0/System.IO.Pipelines.xml",
- "lib/netcoreapp3.1/System.IO.Pipelines.dll",
- "lib/netcoreapp3.1/System.IO.Pipelines.xml",
- "lib/netstandard2.0/System.IO.Pipelines.dll",
- "lib/netstandard2.0/System.IO.Pipelines.xml",
- "system.io.pipelines.6.0.3.nupkg.sha512",
- "system.io.pipelines.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Reflection/4.3.0": {
- "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
- "type": "package",
- "path": "system.reflection/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.Reflection.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.Reflection.dll",
- "ref/netcore50/System.Reflection.dll",
- "ref/netcore50/System.Reflection.xml",
- "ref/netcore50/de/System.Reflection.xml",
- "ref/netcore50/es/System.Reflection.xml",
- "ref/netcore50/fr/System.Reflection.xml",
- "ref/netcore50/it/System.Reflection.xml",
- "ref/netcore50/ja/System.Reflection.xml",
- "ref/netcore50/ko/System.Reflection.xml",
- "ref/netcore50/ru/System.Reflection.xml",
- "ref/netcore50/zh-hans/System.Reflection.xml",
- "ref/netcore50/zh-hant/System.Reflection.xml",
- "ref/netstandard1.0/System.Reflection.dll",
- "ref/netstandard1.0/System.Reflection.xml",
- "ref/netstandard1.0/de/System.Reflection.xml",
- "ref/netstandard1.0/es/System.Reflection.xml",
- "ref/netstandard1.0/fr/System.Reflection.xml",
- "ref/netstandard1.0/it/System.Reflection.xml",
- "ref/netstandard1.0/ja/System.Reflection.xml",
- "ref/netstandard1.0/ko/System.Reflection.xml",
- "ref/netstandard1.0/ru/System.Reflection.xml",
- "ref/netstandard1.0/zh-hans/System.Reflection.xml",
- "ref/netstandard1.0/zh-hant/System.Reflection.xml",
- "ref/netstandard1.3/System.Reflection.dll",
- "ref/netstandard1.3/System.Reflection.xml",
- "ref/netstandard1.3/de/System.Reflection.xml",
- "ref/netstandard1.3/es/System.Reflection.xml",
- "ref/netstandard1.3/fr/System.Reflection.xml",
- "ref/netstandard1.3/it/System.Reflection.xml",
- "ref/netstandard1.3/ja/System.Reflection.xml",
- "ref/netstandard1.3/ko/System.Reflection.xml",
- "ref/netstandard1.3/ru/System.Reflection.xml",
- "ref/netstandard1.3/zh-hans/System.Reflection.xml",
- "ref/netstandard1.3/zh-hant/System.Reflection.xml",
- "ref/netstandard1.5/System.Reflection.dll",
- "ref/netstandard1.5/System.Reflection.xml",
- "ref/netstandard1.5/de/System.Reflection.xml",
- "ref/netstandard1.5/es/System.Reflection.xml",
- "ref/netstandard1.5/fr/System.Reflection.xml",
- "ref/netstandard1.5/it/System.Reflection.xml",
- "ref/netstandard1.5/ja/System.Reflection.xml",
- "ref/netstandard1.5/ko/System.Reflection.xml",
- "ref/netstandard1.5/ru/System.Reflection.xml",
- "ref/netstandard1.5/zh-hans/System.Reflection.xml",
- "ref/netstandard1.5/zh-hant/System.Reflection.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.reflection.4.3.0.nupkg.sha512",
- "system.reflection.nuspec"
- ]
- },
- "System.Reflection.Primitives/4.3.0": {
- "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
- "type": "package",
- "path": "system.reflection.primitives/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Reflection.Primitives.dll",
- "ref/netcore50/System.Reflection.Primitives.xml",
- "ref/netcore50/de/System.Reflection.Primitives.xml",
- "ref/netcore50/es/System.Reflection.Primitives.xml",
- "ref/netcore50/fr/System.Reflection.Primitives.xml",
- "ref/netcore50/it/System.Reflection.Primitives.xml",
- "ref/netcore50/ja/System.Reflection.Primitives.xml",
- "ref/netcore50/ko/System.Reflection.Primitives.xml",
- "ref/netcore50/ru/System.Reflection.Primitives.xml",
- "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
- "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/System.Reflection.Primitives.dll",
- "ref/netstandard1.0/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.reflection.primitives.4.3.0.nupkg.sha512",
- "system.reflection.primitives.nuspec"
- ]
- },
- "System.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.CompilerServices.Unsafe/6.0.0": {
- "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
- "type": "package",
- "path": "system.runtime.compilerservices.unsafe/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
- "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
- "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
- "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
- "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
- "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
- "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
- "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
- "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
- "system.runtime.compilerservices.unsafe.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Runtime.Loader/4.3.0": {
- "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
- "type": "package",
- "path": "system.runtime.loader/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net462/_._",
- "lib/netstandard1.5/System.Runtime.Loader.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/netstandard1.5/System.Runtime.Loader.dll",
- "ref/netstandard1.5/System.Runtime.Loader.xml",
- "ref/netstandard1.5/de/System.Runtime.Loader.xml",
- "ref/netstandard1.5/es/System.Runtime.Loader.xml",
- "ref/netstandard1.5/fr/System.Runtime.Loader.xml",
- "ref/netstandard1.5/it/System.Runtime.Loader.xml",
- "ref/netstandard1.5/ja/System.Runtime.Loader.xml",
- "ref/netstandard1.5/ko/System.Runtime.Loader.xml",
- "ref/netstandard1.5/ru/System.Runtime.Loader.xml",
- "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml",
- "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml",
- "system.runtime.loader.4.3.0.nupkg.sha512",
- "system.runtime.loader.nuspec"
- ]
- },
- "System.Security.AccessControl/4.7.0": {
- "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
- "type": "package",
- "path": "system.security.accesscontrol/4.7.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net46/System.Security.AccessControl.dll",
- "lib/net461/System.Security.AccessControl.dll",
- "lib/net461/System.Security.AccessControl.xml",
- "lib/netstandard1.3/System.Security.AccessControl.dll",
- "lib/netstandard2.0/System.Security.AccessControl.dll",
- "lib/netstandard2.0/System.Security.AccessControl.xml",
- "lib/uap10.0.16299/_._",
- "ref/net46/System.Security.AccessControl.dll",
- "ref/net461/System.Security.AccessControl.dll",
- "ref/net461/System.Security.AccessControl.xml",
- "ref/netstandard1.3/System.Security.AccessControl.dll",
- "ref/netstandard1.3/System.Security.AccessControl.xml",
- "ref/netstandard1.3/de/System.Security.AccessControl.xml",
- "ref/netstandard1.3/es/System.Security.AccessControl.xml",
- "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
- "ref/netstandard1.3/it/System.Security.AccessControl.xml",
- "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
- "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
- "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
- "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
- "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
- "ref/netstandard2.0/System.Security.AccessControl.dll",
- "ref/netstandard2.0/System.Security.AccessControl.xml",
- "ref/uap10.0.16299/_._",
- "runtimes/win/lib/net46/System.Security.AccessControl.dll",
- "runtimes/win/lib/net461/System.Security.AccessControl.dll",
- "runtimes/win/lib/net461/System.Security.AccessControl.xml",
- "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
- "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
- "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
- "runtimes/win/lib/uap10.0.16299/_._",
- "system.security.accesscontrol.4.7.0.nupkg.sha512",
- "system.security.accesscontrol.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Security.Cryptography.ProtectedData/4.4.0": {
- "sha512": "cJV7ScGW7EhatRsjehfvvYVBvtiSMKgN8bOVI0bQhnF5bU7vnHVIsH49Kva7i7GWaWYvmEzkYVk1TC+gZYBEog==",
- "type": "package",
- "path": "system.security.cryptography.protecteddata/4.4.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Security.Cryptography.ProtectedData.dll",
- "lib/net461/System.Security.Cryptography.ProtectedData.dll",
- "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
- "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Security.Cryptography.ProtectedData.dll",
- "ref/net461/System.Security.Cryptography.ProtectedData.dll",
- "ref/net461/System.Security.Cryptography.ProtectedData.xml",
- "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
- "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
- "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
- "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
- "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
- "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
- "system.security.cryptography.protecteddata.4.4.0.nupkg.sha512",
- "system.security.cryptography.protecteddata.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Security.Permissions/4.7.0": {
- "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
- "type": "package",
- "path": "system.security.permissions/4.7.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/System.Security.Permissions.dll",
- "lib/net461/System.Security.Permissions.xml",
- "lib/netcoreapp3.0/System.Security.Permissions.dll",
- "lib/netcoreapp3.0/System.Security.Permissions.xml",
- "lib/netstandard2.0/System.Security.Permissions.dll",
- "lib/netstandard2.0/System.Security.Permissions.xml",
- "ref/net461/System.Security.Permissions.dll",
- "ref/net461/System.Security.Permissions.xml",
- "ref/netcoreapp3.0/System.Security.Permissions.dll",
- "ref/netcoreapp3.0/System.Security.Permissions.xml",
- "ref/netstandard2.0/System.Security.Permissions.dll",
- "ref/netstandard2.0/System.Security.Permissions.xml",
- "system.security.permissions.4.7.0.nupkg.sha512",
- "system.security.permissions.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Security.Principal.Windows/4.7.0": {
- "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
- "type": "package",
- "path": "system.security.principal.windows/4.7.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "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.4.7.0.nupkg.sha512",
- "system.security.principal.windows.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Text.Encoding/4.3.0": {
- "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
- "type": "package",
- "path": "system.text.encoding/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Text.Encoding.dll",
- "ref/netcore50/System.Text.Encoding.xml",
- "ref/netcore50/de/System.Text.Encoding.xml",
- "ref/netcore50/es/System.Text.Encoding.xml",
- "ref/netcore50/fr/System.Text.Encoding.xml",
- "ref/netcore50/it/System.Text.Encoding.xml",
- "ref/netcore50/ja/System.Text.Encoding.xml",
- "ref/netcore50/ko/System.Text.Encoding.xml",
- "ref/netcore50/ru/System.Text.Encoding.xml",
- "ref/netcore50/zh-hans/System.Text.Encoding.xml",
- "ref/netcore50/zh-hant/System.Text.Encoding.xml",
- "ref/netstandard1.0/System.Text.Encoding.dll",
- "ref/netstandard1.0/System.Text.Encoding.xml",
- "ref/netstandard1.0/de/System.Text.Encoding.xml",
- "ref/netstandard1.0/es/System.Text.Encoding.xml",
- "ref/netstandard1.0/fr/System.Text.Encoding.xml",
- "ref/netstandard1.0/it/System.Text.Encoding.xml",
- "ref/netstandard1.0/ja/System.Text.Encoding.xml",
- "ref/netstandard1.0/ko/System.Text.Encoding.xml",
- "ref/netstandard1.0/ru/System.Text.Encoding.xml",
- "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
- "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
- "ref/netstandard1.3/System.Text.Encoding.dll",
- "ref/netstandard1.3/System.Text.Encoding.xml",
- "ref/netstandard1.3/de/System.Text.Encoding.xml",
- "ref/netstandard1.3/es/System.Text.Encoding.xml",
- "ref/netstandard1.3/fr/System.Text.Encoding.xml",
- "ref/netstandard1.3/it/System.Text.Encoding.xml",
- "ref/netstandard1.3/ja/System.Text.Encoding.xml",
- "ref/netstandard1.3/ko/System.Text.Encoding.xml",
- "ref/netstandard1.3/ru/System.Text.Encoding.xml",
- "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
- "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.text.encoding.4.3.0.nupkg.sha512",
- "system.text.encoding.nuspec"
- ]
- },
- "System.Text.Encoding.CodePages/4.4.0": {
- "sha512": "6JX7ZdaceBiLKLkYt8zJcp4xTJd1uYyXXEkPw6mnlUIjh1gZPIVKPtRXPmY5kLf6DwZmf5YLwR3QUrRonl7l0A==",
- "type": "package",
- "path": "system.text.encoding.codepages/4.4.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Text.Encoding.CodePages.dll",
- "lib/net461/System.Text.Encoding.CodePages.dll",
- "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
- "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/netstandard1.3/System.Text.Encoding.CodePages.dll",
- "ref/netstandard1.3/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml",
- "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml",
- "ref/netstandard2.0/System.Text.Encoding.CodePages.dll",
- "ref/netstandard2.0/System.Text.Encoding.CodePages.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
- "system.text.encoding.codepages.4.4.0.nupkg.sha512",
- "system.text.encoding.codepages.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Text.Encodings.Web/7.0.0": {
- "sha512": "OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==",
- "type": "package",
- "path": "system.text.encodings.web/7.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Text.Encodings.Web.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
- "lib/net462/System.Text.Encodings.Web.dll",
- "lib/net462/System.Text.Encodings.Web.xml",
- "lib/net6.0/System.Text.Encodings.Web.dll",
- "lib/net6.0/System.Text.Encodings.Web.xml",
- "lib/net7.0/System.Text.Encodings.Web.dll",
- "lib/net7.0/System.Text.Encodings.Web.xml",
- "lib/netstandard2.0/System.Text.Encodings.Web.dll",
- "lib/netstandard2.0/System.Text.Encodings.Web.xml",
- "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll",
- "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml",
- "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll",
- "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml",
- "system.text.encodings.web.7.0.0.nupkg.sha512",
- "system.text.encodings.web.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Text.Json/7.0.1": {
- "sha512": "OtDEmCCiNl8JAduFKZ/r0Sw6XZNHwIicUYy/mXgMDGeOsZLshH37qi3oPRzFYiryVktiMoQLByMGPtRCEMYbeQ==",
- "type": "package",
- "path": "system.text.json/7.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "README.md",
- "THIRD-PARTY-NOTICES.TXT",
- "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
- "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
- "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll",
- "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
- "buildTransitive/net461/System.Text.Json.targets",
- "buildTransitive/net462/System.Text.Json.targets",
- "buildTransitive/net6.0/System.Text.Json.targets",
- "buildTransitive/netcoreapp2.0/System.Text.Json.targets",
- "buildTransitive/netstandard2.0/System.Text.Json.targets",
- "lib/net462/System.Text.Json.dll",
- "lib/net462/System.Text.Json.xml",
- "lib/net6.0/System.Text.Json.dll",
- "lib/net6.0/System.Text.Json.xml",
- "lib/net7.0/System.Text.Json.dll",
- "lib/net7.0/System.Text.Json.xml",
- "lib/netstandard2.0/System.Text.Json.dll",
- "lib/netstandard2.0/System.Text.Json.xml",
- "system.text.json.7.0.1.nupkg.sha512",
- "system.text.json.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Threading.Tasks/4.3.0": {
- "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
- "type": "package",
- "path": "system.threading.tasks/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Threading.Tasks.dll",
- "ref/netcore50/System.Threading.Tasks.xml",
- "ref/netcore50/de/System.Threading.Tasks.xml",
- "ref/netcore50/es/System.Threading.Tasks.xml",
- "ref/netcore50/fr/System.Threading.Tasks.xml",
- "ref/netcore50/it/System.Threading.Tasks.xml",
- "ref/netcore50/ja/System.Threading.Tasks.xml",
- "ref/netcore50/ko/System.Threading.Tasks.xml",
- "ref/netcore50/ru/System.Threading.Tasks.xml",
- "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
- "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
- "ref/netstandard1.0/System.Threading.Tasks.dll",
- "ref/netstandard1.0/System.Threading.Tasks.xml",
- "ref/netstandard1.0/de/System.Threading.Tasks.xml",
- "ref/netstandard1.0/es/System.Threading.Tasks.xml",
- "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
- "ref/netstandard1.0/it/System.Threading.Tasks.xml",
- "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
- "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
- "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
- "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
- "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
- "ref/netstandard1.3/System.Threading.Tasks.dll",
- "ref/netstandard1.3/System.Threading.Tasks.xml",
- "ref/netstandard1.3/de/System.Threading.Tasks.xml",
- "ref/netstandard1.3/es/System.Threading.Tasks.xml",
- "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
- "ref/netstandard1.3/it/System.Threading.Tasks.xml",
- "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
- "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
- "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
- "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
- "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.threading.tasks.4.3.0.nupkg.sha512",
- "system.threading.tasks.nuspec"
- ]
- },
- "System.Threading.Tasks.Extensions/4.5.4": {
- "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
- "type": "package",
- "path": "system.threading.tasks.extensions/4.5.4",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net461/System.Threading.Tasks.Extensions.dll",
- "lib/net461/System.Threading.Tasks.Extensions.xml",
- "lib/netcoreapp2.1/_._",
- "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
- "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
- "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
- "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
- "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
- "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/netcoreapp2.1/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.threading.tasks.extensions.4.5.4.nupkg.sha512",
- "system.threading.tasks.extensions.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Windows.Extensions/4.7.0": {
- "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
- "type": "package",
- "path": "system.windows.extensions/4.7.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/netcoreapp3.0/System.Windows.Extensions.dll",
- "lib/netcoreapp3.0/System.Windows.Extensions.xml",
- "ref/netcoreapp3.0/System.Windows.Extensions.dll",
- "ref/netcoreapp3.0/System.Windows.Extensions.xml",
- "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
- "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
- "system.windows.extensions.4.7.0.nupkg.sha512",
- "system.windows.extensions.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "UniTask/2.5.0": {
- "sha512": "dHo6NECX3+Aa3ayQFvTVTs0C5NnhPKVpJUZaOjOPlaEUvH1aDLWX2p8gHRzpl8d/nHwLg+yl2/hVB+TDSmuxIA==",
- "type": "package",
- "path": "unitask/2.5.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "lib/net6.0/UniTask.dll",
- "lib/net6.0/UniTask.xml",
- "lib/net7.0/UniTask.dll",
- "lib/net7.0/UniTask.xml",
- "lib/netstandard2.0/UniTask.dll",
- "lib/netstandard2.0/UniTask.xml",
- "lib/netstandard2.1/UniTask.dll",
- "lib/netstandard2.1/UniTask.xml",
- "unitask.2.5.0.nupkg.sha512",
- "unitask.nuspec"
- ]
- },
- "ZstdSharp.Port/0.7.1": {
- "sha512": "Idgg+mJEyAujqDPzA3APy9dNoyw0YQcNA65GgYjktDRtJ+nvx/hv+J+m6Eax3JJMGEYGy04oc5YNP6ZvQ3Y1vQ==",
- "type": "package",
- "path": "zstdsharp.port/0.7.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net461/ZstdSharp.dll",
- "lib/net5.0/ZstdSharp.dll",
- "lib/net6.0/ZstdSharp.dll",
- "lib/net7.0/ZstdSharp.dll",
- "lib/netcoreapp3.1/ZstdSharp.dll",
- "lib/netstandard2.0/ZstdSharp.dll",
- "lib/netstandard2.1/ZstdSharp.dll",
- "zstdsharp.port.0.7.1.nupkg.sha512",
- "zstdsharp.port.nuspec"
- ]
- },
- "ThirdParty/1.0.0": {
- "type": "project",
- "path": "../ThirdParty/ThirdParty.csproj",
- "msbuildProject": "../ThirdParty/ThirdParty.csproj"
- }
- },
- "projectFileDependencyGroups": {
- "net7.0": [
- "MongoDB.Bson >= 2.0.0",
- "NLog >= 5.1.3",
- "Newtonsoft.Json >= 13.0.3",
- "ThirdParty >= 1.0.0",
- "UniTask >= 2.5.0"
- ]
- },
- "packageFolders": {
- "C:\\Users\\zan\\.nuget\\packages\\": {},
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
- },
- "project": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "D:\\Git\\simulation-server\\KYFramework\\KYFramework.csproj",
- "projectName": "KYFramework",
- "projectPath": "D:\\Git\\simulation-server\\KYFramework\\KYFramework.csproj",
- "packagesPath": "C:\\Users\\zan\\.nuget\\packages\\",
- "outputPath": "D:\\Git\\simulation-server\\KYFramework\\obj\\",
- "projectStyle": "PackageReference",
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
- "configFilePaths": [
- "C:\\Users\\zan\\AppData\\Roaming\\NuGet\\NuGet.Config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
- "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
- ],
- "originalTargetFrameworks": [
- "net7.0"
- ],
- "sources": {
- "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net7.0": {
- "targetAlias": "net7.0",
- "projectReferences": {
- "D:\\Git\\simulation-server\\ThirdParty\\ThirdParty.csproj": {
- "projectPath": "D:\\Git\\simulation-server\\ThirdParty\\ThirdParty.csproj"
- }
- }
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- }
- },
- "frameworks": {
- "net7.0": {
- "targetAlias": "net7.0",
- "dependencies": {
- "MongoDB.Bson": {
- "target": "Package",
- "version": "[2.0.0, )"
- },
- "NLog": {
- "target": "Package",
- "version": "[5.1.3, )"
- },
- "Newtonsoft.Json": {
- "target": "Package",
- "version": "[13.0.3, )"
- },
- "UniTask": {
- "target": "Package",
- "version": "[2.5.0, )"
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "frameworkReferences": {
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.202\\RuntimeIdentifierGraph.json"
- }
- }
- },
- "logs": [
- {
- "code": "NU1701",
- "level": "Warning",
- "warningLevel": 1,
- "message": "Package 'MongoDB.Bson 2.0.0' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net7.0'. This package may not be fully compatible with your project.",
- "libraryId": "MongoDB.Bson",
- "targetGraphs": [
- "net7.0"
- ]
- }
- ]
- }
|