project.assets.json 173 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net8.0": {
  5. "Azure.Core/1.35.0": {
  6. "type": "package",
  7. "dependencies": {
  8. "Microsoft.Bcl.AsyncInterfaces": "1.1.1",
  9. "System.Diagnostics.DiagnosticSource": "6.0.1",
  10. "System.Memory.Data": "1.0.2",
  11. "System.Numerics.Vectors": "4.5.0",
  12. "System.Text.Encodings.Web": "4.7.2",
  13. "System.Text.Json": "4.7.2",
  14. "System.Threading.Tasks.Extensions": "4.5.4"
  15. },
  16. "compile": {
  17. "lib/net6.0/Azure.Core.dll": {
  18. "related": ".xml"
  19. }
  20. },
  21. "runtime": {
  22. "lib/net6.0/Azure.Core.dll": {
  23. "related": ".xml"
  24. }
  25. }
  26. },
  27. "Azure.Identity/1.10.3": {
  28. "type": "package",
  29. "dependencies": {
  30. "Azure.Core": "1.35.0",
  31. "Microsoft.Identity.Client": "4.56.0",
  32. "Microsoft.Identity.Client.Extensions.Msal": "4.56.0",
  33. "System.Memory": "4.5.4",
  34. "System.Security.Cryptography.ProtectedData": "4.7.0",
  35. "System.Text.Json": "4.7.2",
  36. "System.Threading.Tasks.Extensions": "4.5.4"
  37. },
  38. "compile": {
  39. "lib/netstandard2.0/Azure.Identity.dll": {
  40. "related": ".xml"
  41. }
  42. },
  43. "runtime": {
  44. "lib/netstandard2.0/Azure.Identity.dll": {
  45. "related": ".xml"
  46. }
  47. }
  48. },
  49. "Microsoft.AspNet.WebApi.Client/4.0.20710": {
  50. "type": "package",
  51. "dependencies": {
  52. "Microsoft.Net.Http": "[2.0.20710, 2.1.0)",
  53. "Newtonsoft.Json": "4.5.6"
  54. },
  55. "compile": {
  56. "lib/net40/System.Net.Http.Formatting.dll": {
  57. "related": ".xml"
  58. }
  59. },
  60. "runtime": {
  61. "lib/net40/System.Net.Http.Formatting.dll": {
  62. "related": ".xml"
  63. }
  64. }
  65. },
  66. "Microsoft.AspNet.WebApi.Core/4.0.20710": {
  67. "type": "package",
  68. "dependencies": {
  69. "Microsoft.AspNet.WebApi.Client": "[4.0.20710, 4.1.0)"
  70. },
  71. "compile": {
  72. "lib/net40/System.Web.Http.dll": {
  73. "related": ".xml"
  74. }
  75. },
  76. "runtime": {
  77. "lib/net40/System.Web.Http.dll": {
  78. "related": ".xml"
  79. }
  80. }
  81. },
  82. "Microsoft.AspNet.WebApi.WebHost/4.0.20710": {
  83. "type": "package",
  84. "dependencies": {
  85. "Microsoft.AspNet.WebApi.Core": "[4.0.20710, 4.1.0)",
  86. "Microsoft.Web.Infrastructure": "1.0.0"
  87. },
  88. "compile": {
  89. "lib/net40/System.Web.Http.WebHost.dll": {
  90. "related": ".xml"
  91. }
  92. },
  93. "runtime": {
  94. "lib/net40/System.Web.Http.WebHost.dll": {
  95. "related": ".xml"
  96. }
  97. }
  98. },
  99. "Microsoft.AspNetCore.Cryptography.Internal/8.0.0": {
  100. "type": "package",
  101. "compile": {
  102. "lib/net8.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
  103. "related": ".xml"
  104. }
  105. },
  106. "runtime": {
  107. "lib/net8.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
  108. "related": ".xml"
  109. }
  110. }
  111. },
  112. "Microsoft.AspNetCore.Cryptography.KeyDerivation/8.0.0": {
  113. "type": "package",
  114. "dependencies": {
  115. "Microsoft.AspNetCore.Cryptography.Internal": "8.0.0"
  116. },
  117. "compile": {
  118. "lib/net8.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {
  119. "related": ".xml"
  120. }
  121. },
  122. "runtime": {
  123. "lib/net8.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {
  124. "related": ".xml"
  125. }
  126. }
  127. },
  128. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/8.0.0": {
  129. "type": "package",
  130. "dependencies": {
  131. "Microsoft.EntityFrameworkCore.Relational": "8.0.0",
  132. "Microsoft.Extensions.Identity.Stores": "8.0.0"
  133. },
  134. "compile": {
  135. "lib/net8.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {
  136. "related": ".xml"
  137. }
  138. },
  139. "runtime": {
  140. "lib/net8.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {
  141. "related": ".xml"
  142. }
  143. }
  144. },
  145. "Microsoft.AspNetCore.JsonPatch/8.0.4": {
  146. "type": "package",
  147. "dependencies": {
  148. "Microsoft.CSharp": "4.7.0",
  149. "Newtonsoft.Json": "13.0.3"
  150. },
  151. "compile": {
  152. "lib/net8.0/Microsoft.AspNetCore.JsonPatch.dll": {
  153. "related": ".xml"
  154. }
  155. },
  156. "runtime": {
  157. "lib/net8.0/Microsoft.AspNetCore.JsonPatch.dll": {
  158. "related": ".xml"
  159. }
  160. }
  161. },
  162. "Microsoft.AspNetCore.Mvc.NewtonsoftJson/8.0.4": {
  163. "type": "package",
  164. "dependencies": {
  165. "Microsoft.AspNetCore.JsonPatch": "8.0.4",
  166. "Newtonsoft.Json": "13.0.3",
  167. "Newtonsoft.Json.Bson": "1.0.2"
  168. },
  169. "compile": {
  170. "lib/net8.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {
  171. "related": ".xml"
  172. }
  173. },
  174. "runtime": {
  175. "lib/net8.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {
  176. "related": ".xml"
  177. }
  178. },
  179. "frameworkReferences": [
  180. "Microsoft.AspNetCore.App"
  181. ]
  182. },
  183. "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
  184. "type": "package",
  185. "compile": {
  186. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  187. },
  188. "runtime": {
  189. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  190. "related": ".xml"
  191. }
  192. }
  193. },
  194. "Microsoft.CSharp/4.7.0": {
  195. "type": "package",
  196. "compile": {
  197. "ref/netcoreapp2.0/_._": {}
  198. },
  199. "runtime": {
  200. "lib/netcoreapp2.0/_._": {}
  201. }
  202. },
  203. "Microsoft.Data.SqlClient/5.1.5": {
  204. "type": "package",
  205. "dependencies": {
  206. "Azure.Identity": "1.10.3",
  207. "Microsoft.Data.SqlClient.SNI.runtime": "5.1.1",
  208. "Microsoft.Identity.Client": "4.56.0",
  209. "Microsoft.IdentityModel.JsonWebTokens": "6.35.0",
  210. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.35.0",
  211. "Microsoft.SqlServer.Server": "1.0.0",
  212. "System.Configuration.ConfigurationManager": "6.0.1",
  213. "System.Diagnostics.DiagnosticSource": "6.0.1",
  214. "System.Runtime.Caching": "6.0.0",
  215. "System.Security.Cryptography.Cng": "5.0.0",
  216. "System.Security.Principal.Windows": "5.0.0",
  217. "System.Text.Encoding.CodePages": "6.0.0",
  218. "System.Text.Encodings.Web": "6.0.0"
  219. },
  220. "compile": {
  221. "ref/net6.0/Microsoft.Data.SqlClient.dll": {
  222. "related": ".pdb;.xml"
  223. }
  224. },
  225. "runtime": {
  226. "lib/net6.0/Microsoft.Data.SqlClient.dll": {
  227. "related": ".pdb;.xml"
  228. }
  229. },
  230. "runtimeTargets": {
  231. "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll": {
  232. "assetType": "runtime",
  233. "rid": "unix"
  234. },
  235. "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll": {
  236. "assetType": "runtime",
  237. "rid": "win"
  238. }
  239. }
  240. },
  241. "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": {
  242. "type": "package",
  243. "runtimeTargets": {
  244. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {
  245. "assetType": "native",
  246. "rid": "win-arm"
  247. },
  248. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
  249. "assetType": "native",
  250. "rid": "win-arm64"
  251. },
  252. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
  253. "assetType": "native",
  254. "rid": "win-x64"
  255. },
  256. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
  257. "assetType": "native",
  258. "rid": "win-x86"
  259. }
  260. }
  261. },
  262. "Microsoft.EntityFrameworkCore/8.0.4": {
  263. "type": "package",
  264. "dependencies": {
  265. "Microsoft.EntityFrameworkCore.Abstractions": "8.0.4",
  266. "Microsoft.EntityFrameworkCore.Analyzers": "8.0.4",
  267. "Microsoft.Extensions.Caching.Memory": "8.0.0",
  268. "Microsoft.Extensions.Logging": "8.0.0"
  269. },
  270. "compile": {
  271. "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
  272. "related": ".xml"
  273. }
  274. },
  275. "runtime": {
  276. "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
  277. "related": ".xml"
  278. }
  279. },
  280. "build": {
  281. "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props": {}
  282. }
  283. },
  284. "Microsoft.EntityFrameworkCore.Abstractions/8.0.4": {
  285. "type": "package",
  286. "compile": {
  287. "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  288. "related": ".xml"
  289. }
  290. },
  291. "runtime": {
  292. "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  293. "related": ".xml"
  294. }
  295. }
  296. },
  297. "Microsoft.EntityFrameworkCore.Analyzers/8.0.4": {
  298. "type": "package",
  299. "compile": {
  300. "lib/netstandard2.0/_._": {}
  301. },
  302. "runtime": {
  303. "lib/netstandard2.0/_._": {}
  304. }
  305. },
  306. "Microsoft.EntityFrameworkCore.Relational/8.0.4": {
  307. "type": "package",
  308. "dependencies": {
  309. "Microsoft.EntityFrameworkCore": "8.0.4",
  310. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
  311. },
  312. "compile": {
  313. "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  314. "related": ".xml"
  315. }
  316. },
  317. "runtime": {
  318. "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  319. "related": ".xml"
  320. }
  321. }
  322. },
  323. "Microsoft.EntityFrameworkCore.SqlServer/8.0.4": {
  324. "type": "package",
  325. "dependencies": {
  326. "Microsoft.Data.SqlClient": "5.1.5",
  327. "Microsoft.EntityFrameworkCore.Relational": "8.0.4"
  328. },
  329. "compile": {
  330. "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
  331. "related": ".xml"
  332. }
  333. },
  334. "runtime": {
  335. "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
  336. "related": ".xml"
  337. }
  338. }
  339. },
  340. "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
  341. "type": "package",
  342. "build": {
  343. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  344. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  345. },
  346. "buildMultiTargeting": {
  347. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  348. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  349. }
  350. },
  351. "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
  352. "type": "package",
  353. "dependencies": {
  354. "Microsoft.Extensions.Primitives": "8.0.0"
  355. },
  356. "compile": {
  357. "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  358. "related": ".xml"
  359. }
  360. },
  361. "runtime": {
  362. "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  363. "related": ".xml"
  364. }
  365. },
  366. "build": {
  367. "buildTransitive/net6.0/_._": {}
  368. }
  369. },
  370. "Microsoft.Extensions.Caching.Memory/8.0.0": {
  371. "type": "package",
  372. "dependencies": {
  373. "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
  374. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  375. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  376. "Microsoft.Extensions.Options": "8.0.0",
  377. "Microsoft.Extensions.Primitives": "8.0.0"
  378. },
  379. "compile": {
  380. "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
  381. "related": ".xml"
  382. }
  383. },
  384. "runtime": {
  385. "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
  386. "related": ".xml"
  387. }
  388. },
  389. "build": {
  390. "buildTransitive/net6.0/_._": {}
  391. }
  392. },
  393. "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
  394. "type": "package",
  395. "dependencies": {
  396. "Microsoft.Extensions.Primitives": "8.0.0"
  397. },
  398. "compile": {
  399. "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  400. "related": ".xml"
  401. }
  402. },
  403. "runtime": {
  404. "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  405. "related": ".xml"
  406. }
  407. },
  408. "build": {
  409. "buildTransitive/net6.0/_._": {}
  410. }
  411. },
  412. "Microsoft.Extensions.DependencyInjection/8.0.0": {
  413. "type": "package",
  414. "dependencies": {
  415. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0"
  416. },
  417. "compile": {
  418. "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
  419. "related": ".xml"
  420. }
  421. },
  422. "runtime": {
  423. "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
  424. "related": ".xml"
  425. }
  426. },
  427. "build": {
  428. "buildTransitive/net6.0/_._": {}
  429. }
  430. },
  431. "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {
  432. "type": "package",
  433. "compile": {
  434. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  435. "related": ".xml"
  436. }
  437. },
  438. "runtime": {
  439. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  440. "related": ".xml"
  441. }
  442. },
  443. "build": {
  444. "buildTransitive/net6.0/_._": {}
  445. }
  446. },
  447. "Microsoft.Extensions.Identity.Core/8.0.0": {
  448. "type": "package",
  449. "dependencies": {
  450. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "8.0.0",
  451. "Microsoft.Extensions.Logging": "8.0.0",
  452. "Microsoft.Extensions.Options": "8.0.0"
  453. },
  454. "compile": {
  455. "lib/net8.0/Microsoft.Extensions.Identity.Core.dll": {
  456. "related": ".xml"
  457. }
  458. },
  459. "runtime": {
  460. "lib/net8.0/Microsoft.Extensions.Identity.Core.dll": {
  461. "related": ".xml"
  462. }
  463. }
  464. },
  465. "Microsoft.Extensions.Identity.Stores/8.0.0": {
  466. "type": "package",
  467. "dependencies": {
  468. "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
  469. "Microsoft.Extensions.Identity.Core": "8.0.0",
  470. "Microsoft.Extensions.Logging": "8.0.0"
  471. },
  472. "compile": {
  473. "lib/net8.0/Microsoft.Extensions.Identity.Stores.dll": {
  474. "related": ".xml"
  475. }
  476. },
  477. "runtime": {
  478. "lib/net8.0/Microsoft.Extensions.Identity.Stores.dll": {
  479. "related": ".xml"
  480. }
  481. }
  482. },
  483. "Microsoft.Extensions.Logging/8.0.0": {
  484. "type": "package",
  485. "dependencies": {
  486. "Microsoft.Extensions.DependencyInjection": "8.0.0",
  487. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  488. "Microsoft.Extensions.Options": "8.0.0"
  489. },
  490. "compile": {
  491. "lib/net8.0/Microsoft.Extensions.Logging.dll": {
  492. "related": ".xml"
  493. }
  494. },
  495. "runtime": {
  496. "lib/net8.0/Microsoft.Extensions.Logging.dll": {
  497. "related": ".xml"
  498. }
  499. },
  500. "build": {
  501. "buildTransitive/net6.0/_._": {}
  502. }
  503. },
  504. "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
  505. "type": "package",
  506. "dependencies": {
  507. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0"
  508. },
  509. "compile": {
  510. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  511. "related": ".xml"
  512. }
  513. },
  514. "runtime": {
  515. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  516. "related": ".xml"
  517. }
  518. },
  519. "build": {
  520. "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
  521. }
  522. },
  523. "Microsoft.Extensions.Options/8.0.0": {
  524. "type": "package",
  525. "dependencies": {
  526. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  527. "Microsoft.Extensions.Primitives": "8.0.0"
  528. },
  529. "compile": {
  530. "lib/net8.0/Microsoft.Extensions.Options.dll": {
  531. "related": ".xml"
  532. }
  533. },
  534. "runtime": {
  535. "lib/net8.0/Microsoft.Extensions.Options.dll": {
  536. "related": ".xml"
  537. }
  538. },
  539. "build": {
  540. "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {}
  541. }
  542. },
  543. "Microsoft.Extensions.Primitives/8.0.0": {
  544. "type": "package",
  545. "compile": {
  546. "lib/net8.0/Microsoft.Extensions.Primitives.dll": {
  547. "related": ".xml"
  548. }
  549. },
  550. "runtime": {
  551. "lib/net8.0/Microsoft.Extensions.Primitives.dll": {
  552. "related": ".xml"
  553. }
  554. },
  555. "build": {
  556. "buildTransitive/net6.0/_._": {}
  557. }
  558. },
  559. "Microsoft.Identity.Client/4.60.3": {
  560. "type": "package",
  561. "dependencies": {
  562. "Microsoft.IdentityModel.Abstractions": "6.35.0",
  563. "System.Diagnostics.DiagnosticSource": "6.0.1"
  564. },
  565. "compile": {
  566. "lib/net6.0/Microsoft.Identity.Client.dll": {
  567. "related": ".xml"
  568. }
  569. },
  570. "runtime": {
  571. "lib/net6.0/Microsoft.Identity.Client.dll": {
  572. "related": ".xml"
  573. }
  574. }
  575. },
  576. "Microsoft.Identity.Client.Extensions.Msal/4.60.3": {
  577. "type": "package",
  578. "dependencies": {
  579. "Microsoft.Identity.Client": "4.60.3",
  580. "System.Security.Cryptography.ProtectedData": "4.5.0"
  581. },
  582. "compile": {
  583. "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
  584. "related": ".xml"
  585. }
  586. },
  587. "runtime": {
  588. "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
  589. "related": ".xml"
  590. }
  591. }
  592. },
  593. "Microsoft.IdentityModel.Abstractions/6.35.0": {
  594. "type": "package",
  595. "compile": {
  596. "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": {
  597. "related": ".xml"
  598. }
  599. },
  600. "runtime": {
  601. "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": {
  602. "related": ".xml"
  603. }
  604. }
  605. },
  606. "Microsoft.IdentityModel.JsonWebTokens/6.35.0": {
  607. "type": "package",
  608. "dependencies": {
  609. "Microsoft.IdentityModel.Tokens": "6.35.0",
  610. "System.Text.Encoding": "4.3.0",
  611. "System.Text.Encodings.Web": "4.7.2",
  612. "System.Text.Json": "4.7.2"
  613. },
  614. "compile": {
  615. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  616. "related": ".xml"
  617. }
  618. },
  619. "runtime": {
  620. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  621. "related": ".xml"
  622. }
  623. }
  624. },
  625. "Microsoft.IdentityModel.Logging/6.35.0": {
  626. "type": "package",
  627. "dependencies": {
  628. "Microsoft.IdentityModel.Abstractions": "6.35.0"
  629. },
  630. "compile": {
  631. "lib/net6.0/Microsoft.IdentityModel.Logging.dll": {
  632. "related": ".xml"
  633. }
  634. },
  635. "runtime": {
  636. "lib/net6.0/Microsoft.IdentityModel.Logging.dll": {
  637. "related": ".xml"
  638. }
  639. }
  640. },
  641. "Microsoft.IdentityModel.Protocols/6.35.0": {
  642. "type": "package",
  643. "dependencies": {
  644. "Microsoft.IdentityModel.Logging": "6.35.0",
  645. "Microsoft.IdentityModel.Tokens": "6.35.0"
  646. },
  647. "compile": {
  648. "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": {
  649. "related": ".xml"
  650. }
  651. },
  652. "runtime": {
  653. "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": {
  654. "related": ".xml"
  655. }
  656. }
  657. },
  658. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": {
  659. "type": "package",
  660. "dependencies": {
  661. "Microsoft.IdentityModel.Protocols": "6.35.0",
  662. "System.IdentityModel.Tokens.Jwt": "6.35.0"
  663. },
  664. "compile": {
  665. "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  666. "related": ".xml"
  667. }
  668. },
  669. "runtime": {
  670. "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  671. "related": ".xml"
  672. }
  673. }
  674. },
  675. "Microsoft.IdentityModel.Tokens/6.35.0": {
  676. "type": "package",
  677. "dependencies": {
  678. "Microsoft.CSharp": "4.5.0",
  679. "Microsoft.IdentityModel.Logging": "6.35.0",
  680. "System.Security.Cryptography.Cng": "4.5.0"
  681. },
  682. "compile": {
  683. "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": {
  684. "related": ".xml"
  685. }
  686. },
  687. "runtime": {
  688. "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": {
  689. "related": ".xml"
  690. }
  691. }
  692. },
  693. "Microsoft.InformationProtection.File/1.14.128": {
  694. "type": "package",
  695. "compile": {
  696. "lib/netstandard2.0/Microsoft.InformationProtection.dll": {
  697. "related": ".xml"
  698. }
  699. },
  700. "runtime": {
  701. "lib/netstandard2.0/Microsoft.InformationProtection.dll": {
  702. "related": ".xml"
  703. }
  704. },
  705. "build": {
  706. "build/netstandard2.0/Microsoft.InformationProtection.File.targets": {}
  707. }
  708. },
  709. "Microsoft.Net.Http/2.0.20710": {
  710. "type": "package",
  711. "compile": {
  712. "lib/net45/_._": {}
  713. },
  714. "runtime": {
  715. "lib/net45/_._": {}
  716. }
  717. },
  718. "Microsoft.NETCore.Platforms/1.1.0": {
  719. "type": "package",
  720. "compile": {
  721. "lib/netstandard1.0/_._": {}
  722. },
  723. "runtime": {
  724. "lib/netstandard1.0/_._": {}
  725. }
  726. },
  727. "Microsoft.NETCore.Targets/1.1.0": {
  728. "type": "package",
  729. "compile": {
  730. "lib/netstandard1.0/_._": {}
  731. },
  732. "runtime": {
  733. "lib/netstandard1.0/_._": {}
  734. }
  735. },
  736. "Microsoft.OpenApi/1.2.3": {
  737. "type": "package",
  738. "compile": {
  739. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  740. "related": ".pdb;.xml"
  741. }
  742. },
  743. "runtime": {
  744. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  745. "related": ".pdb;.xml"
  746. }
  747. }
  748. },
  749. "Microsoft.SqlServer.Server/1.0.0": {
  750. "type": "package",
  751. "compile": {
  752. "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": {
  753. "related": ".pdb;.xml"
  754. }
  755. },
  756. "runtime": {
  757. "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": {
  758. "related": ".pdb;.xml"
  759. }
  760. }
  761. },
  762. "Microsoft.Web.Infrastructure/1.0.0": {
  763. "type": "package",
  764. "compile": {
  765. "lib/net40/Microsoft.Web.Infrastructure.dll": {}
  766. },
  767. "runtime": {
  768. "lib/net40/Microsoft.Web.Infrastructure.dll": {}
  769. }
  770. },
  771. "Newtonsoft.Json/13.0.3": {
  772. "type": "package",
  773. "compile": {
  774. "lib/net6.0/Newtonsoft.Json.dll": {
  775. "related": ".xml"
  776. }
  777. },
  778. "runtime": {
  779. "lib/net6.0/Newtonsoft.Json.dll": {
  780. "related": ".xml"
  781. }
  782. }
  783. },
  784. "Newtonsoft.Json.Bson/1.0.2": {
  785. "type": "package",
  786. "dependencies": {
  787. "Newtonsoft.Json": "12.0.1"
  788. },
  789. "compile": {
  790. "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {
  791. "related": ".pdb;.xml"
  792. }
  793. },
  794. "runtime": {
  795. "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {
  796. "related": ".pdb;.xml"
  797. }
  798. }
  799. },
  800. "Serilog/3.1.1": {
  801. "type": "package",
  802. "compile": {
  803. "lib/net7.0/Serilog.dll": {
  804. "related": ".xml"
  805. }
  806. },
  807. "runtime": {
  808. "lib/net7.0/Serilog.dll": {
  809. "related": ".xml"
  810. }
  811. }
  812. },
  813. "Swashbuckle/5.6.0": {
  814. "type": "package",
  815. "dependencies": {
  816. "Microsoft.AspNet.WebApi.WebHost": "4.0.20710",
  817. "Swashbuckle.Core": "5.6.0",
  818. "WebActivatorEx": "2.0.0"
  819. }
  820. },
  821. "Swashbuckle.AspNetCore/6.5.0": {
  822. "type": "package",
  823. "dependencies": {
  824. "Microsoft.Extensions.ApiDescription.Server": "6.0.5",
  825. "Swashbuckle.AspNetCore.Swagger": "6.5.0",
  826. "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0",
  827. "Swashbuckle.AspNetCore.SwaggerUI": "6.5.0"
  828. },
  829. "build": {
  830. "build/Swashbuckle.AspNetCore.props": {}
  831. }
  832. },
  833. "Swashbuckle.AspNetCore.Swagger/6.5.0": {
  834. "type": "package",
  835. "dependencies": {
  836. "Microsoft.OpenApi": "1.2.3"
  837. },
  838. "compile": {
  839. "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll": {
  840. "related": ".pdb;.xml"
  841. }
  842. },
  843. "runtime": {
  844. "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll": {
  845. "related": ".pdb;.xml"
  846. }
  847. },
  848. "frameworkReferences": [
  849. "Microsoft.AspNetCore.App"
  850. ]
  851. },
  852. "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": {
  853. "type": "package",
  854. "dependencies": {
  855. "Swashbuckle.AspNetCore.Swagger": "6.5.0"
  856. },
  857. "compile": {
  858. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  859. "related": ".pdb;.xml"
  860. }
  861. },
  862. "runtime": {
  863. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  864. "related": ".pdb;.xml"
  865. }
  866. }
  867. },
  868. "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": {
  869. "type": "package",
  870. "compile": {
  871. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  872. "related": ".pdb;.xml"
  873. }
  874. },
  875. "runtime": {
  876. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  877. "related": ".pdb;.xml"
  878. }
  879. },
  880. "frameworkReferences": [
  881. "Microsoft.AspNetCore.App"
  882. ]
  883. },
  884. "Swashbuckle.Core/5.6.0": {
  885. "type": "package",
  886. "dependencies": {
  887. "Microsoft.AspNet.WebApi.Core": "4.0.20710",
  888. "Newtonsoft.Json": "7.0.1"
  889. },
  890. "compile": {
  891. "lib/net40/Swashbuckle.Core.dll": {}
  892. },
  893. "runtime": {
  894. "lib/net40/Swashbuckle.Core.dll": {}
  895. }
  896. },
  897. "System.Configuration.ConfigurationManager/8.0.0": {
  898. "type": "package",
  899. "dependencies": {
  900. "System.Diagnostics.EventLog": "8.0.0",
  901. "System.Security.Cryptography.ProtectedData": "8.0.0"
  902. },
  903. "compile": {
  904. "lib/net8.0/System.Configuration.ConfigurationManager.dll": {
  905. "related": ".xml"
  906. }
  907. },
  908. "runtime": {
  909. "lib/net8.0/System.Configuration.ConfigurationManager.dll": {
  910. "related": ".xml"
  911. }
  912. },
  913. "build": {
  914. "buildTransitive/net6.0/_._": {}
  915. }
  916. },
  917. "System.Diagnostics.DiagnosticSource/6.0.1": {
  918. "type": "package",
  919. "dependencies": {
  920. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  921. },
  922. "compile": {
  923. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
  924. "related": ".xml"
  925. }
  926. },
  927. "runtime": {
  928. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
  929. "related": ".xml"
  930. }
  931. },
  932. "build": {
  933. "buildTransitive/netcoreapp3.1/_._": {}
  934. }
  935. },
  936. "System.Diagnostics.EventLog/8.0.0": {
  937. "type": "package",
  938. "compile": {
  939. "lib/net8.0/System.Diagnostics.EventLog.dll": {
  940. "related": ".xml"
  941. }
  942. },
  943. "runtime": {
  944. "lib/net8.0/System.Diagnostics.EventLog.dll": {
  945. "related": ".xml"
  946. }
  947. },
  948. "build": {
  949. "buildTransitive/net6.0/_._": {}
  950. },
  951. "runtimeTargets": {
  952. "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": {
  953. "assetType": "runtime",
  954. "rid": "win"
  955. },
  956. "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll": {
  957. "assetType": "runtime",
  958. "rid": "win"
  959. }
  960. }
  961. },
  962. "System.Formats.Asn1/5.0.0": {
  963. "type": "package",
  964. "compile": {
  965. "lib/netstandard2.0/_._": {
  966. "related": ".xml"
  967. }
  968. },
  969. "runtime": {
  970. "lib/netstandard2.0/System.Formats.Asn1.dll": {
  971. "related": ".xml"
  972. }
  973. }
  974. },
  975. "System.IdentityModel.Tokens.Jwt/6.35.0": {
  976. "type": "package",
  977. "dependencies": {
  978. "Microsoft.IdentityModel.JsonWebTokens": "6.35.0",
  979. "Microsoft.IdentityModel.Tokens": "6.35.0"
  980. },
  981. "compile": {
  982. "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": {
  983. "related": ".xml"
  984. }
  985. },
  986. "runtime": {
  987. "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": {
  988. "related": ".xml"
  989. }
  990. }
  991. },
  992. "System.Memory/4.5.4": {
  993. "type": "package",
  994. "compile": {
  995. "ref/netcoreapp2.1/_._": {}
  996. },
  997. "runtime": {
  998. "lib/netcoreapp2.1/_._": {}
  999. }
  1000. },
  1001. "System.Memory.Data/1.0.2": {
  1002. "type": "package",
  1003. "dependencies": {
  1004. "System.Text.Encodings.Web": "4.7.2",
  1005. "System.Text.Json": "4.6.0"
  1006. },
  1007. "compile": {
  1008. "lib/netstandard2.0/System.Memory.Data.dll": {
  1009. "related": ".xml"
  1010. }
  1011. },
  1012. "runtime": {
  1013. "lib/netstandard2.0/System.Memory.Data.dll": {
  1014. "related": ".xml"
  1015. }
  1016. }
  1017. },
  1018. "System.Numerics.Vectors/4.5.0": {
  1019. "type": "package",
  1020. "compile": {
  1021. "ref/netcoreapp2.0/_._": {}
  1022. },
  1023. "runtime": {
  1024. "lib/netcoreapp2.0/_._": {}
  1025. }
  1026. },
  1027. "System.Runtime/4.3.0": {
  1028. "type": "package",
  1029. "dependencies": {
  1030. "Microsoft.NETCore.Platforms": "1.1.0",
  1031. "Microsoft.NETCore.Targets": "1.1.0"
  1032. },
  1033. "compile": {
  1034. "ref/netstandard1.5/System.Runtime.dll": {
  1035. "related": ".xml"
  1036. }
  1037. }
  1038. },
  1039. "System.Runtime.Caching/6.0.0": {
  1040. "type": "package",
  1041. "dependencies": {
  1042. "System.Configuration.ConfigurationManager": "6.0.0"
  1043. },
  1044. "compile": {
  1045. "lib/net6.0/_._": {
  1046. "related": ".xml"
  1047. }
  1048. },
  1049. "runtime": {
  1050. "lib/net6.0/System.Runtime.Caching.dll": {
  1051. "related": ".xml"
  1052. }
  1053. },
  1054. "build": {
  1055. "buildTransitive/netcoreapp3.1/_._": {}
  1056. },
  1057. "runtimeTargets": {
  1058. "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": {
  1059. "assetType": "runtime",
  1060. "rid": "win"
  1061. }
  1062. }
  1063. },
  1064. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  1065. "type": "package",
  1066. "compile": {
  1067. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  1068. "related": ".xml"
  1069. }
  1070. },
  1071. "runtime": {
  1072. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  1073. "related": ".xml"
  1074. }
  1075. },
  1076. "build": {
  1077. "buildTransitive/netcoreapp3.1/_._": {}
  1078. }
  1079. },
  1080. "System.Security.Cryptography.Cng/5.0.0": {
  1081. "type": "package",
  1082. "dependencies": {
  1083. "System.Formats.Asn1": "5.0.0"
  1084. },
  1085. "compile": {
  1086. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  1087. "related": ".xml"
  1088. }
  1089. },
  1090. "runtime": {
  1091. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  1092. "related": ".xml"
  1093. }
  1094. },
  1095. "runtimeTargets": {
  1096. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  1097. "assetType": "runtime",
  1098. "rid": "win"
  1099. }
  1100. }
  1101. },
  1102. "System.Security.Cryptography.ProtectedData/8.0.0": {
  1103. "type": "package",
  1104. "compile": {
  1105. "lib/net8.0/System.Security.Cryptography.ProtectedData.dll": {
  1106. "related": ".xml"
  1107. }
  1108. },
  1109. "runtime": {
  1110. "lib/net8.0/System.Security.Cryptography.ProtectedData.dll": {
  1111. "related": ".xml"
  1112. }
  1113. },
  1114. "build": {
  1115. "buildTransitive/net6.0/_._": {}
  1116. }
  1117. },
  1118. "System.Security.Principal.Windows/5.0.0": {
  1119. "type": "package",
  1120. "compile": {
  1121. "ref/netcoreapp3.0/_._": {
  1122. "related": ".xml"
  1123. }
  1124. },
  1125. "runtime": {
  1126. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  1127. "related": ".xml"
  1128. }
  1129. },
  1130. "runtimeTargets": {
  1131. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  1132. "assetType": "runtime",
  1133. "rid": "unix"
  1134. },
  1135. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  1136. "assetType": "runtime",
  1137. "rid": "win"
  1138. }
  1139. }
  1140. },
  1141. "System.Text.Encoding/4.3.0": {
  1142. "type": "package",
  1143. "dependencies": {
  1144. "Microsoft.NETCore.Platforms": "1.1.0",
  1145. "Microsoft.NETCore.Targets": "1.1.0",
  1146. "System.Runtime": "4.3.0"
  1147. },
  1148. "compile": {
  1149. "ref/netstandard1.3/System.Text.Encoding.dll": {
  1150. "related": ".xml"
  1151. }
  1152. }
  1153. },
  1154. "System.Text.Encoding.CodePages/6.0.0": {
  1155. "type": "package",
  1156. "dependencies": {
  1157. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1158. },
  1159. "compile": {
  1160. "lib/net6.0/_._": {
  1161. "related": ".xml"
  1162. }
  1163. },
  1164. "runtime": {
  1165. "lib/net6.0/System.Text.Encoding.CodePages.dll": {
  1166. "related": ".xml"
  1167. }
  1168. },
  1169. "build": {
  1170. "buildTransitive/netcoreapp3.1/_._": {}
  1171. },
  1172. "runtimeTargets": {
  1173. "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll": {
  1174. "assetType": "runtime",
  1175. "rid": "win"
  1176. }
  1177. }
  1178. },
  1179. "System.Text.Encodings.Web/6.0.0": {
  1180. "type": "package",
  1181. "dependencies": {
  1182. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1183. },
  1184. "compile": {
  1185. "lib/net6.0/System.Text.Encodings.Web.dll": {
  1186. "related": ".xml"
  1187. }
  1188. },
  1189. "runtime": {
  1190. "lib/net6.0/System.Text.Encodings.Web.dll": {
  1191. "related": ".xml"
  1192. }
  1193. },
  1194. "build": {
  1195. "buildTransitive/netcoreapp3.1/_._": {}
  1196. },
  1197. "runtimeTargets": {
  1198. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": {
  1199. "assetType": "runtime",
  1200. "rid": "browser"
  1201. }
  1202. }
  1203. },
  1204. "System.Text.Json/4.7.2": {
  1205. "type": "package",
  1206. "compile": {
  1207. "lib/netcoreapp3.0/System.Text.Json.dll": {
  1208. "related": ".xml"
  1209. }
  1210. },
  1211. "runtime": {
  1212. "lib/netcoreapp3.0/System.Text.Json.dll": {
  1213. "related": ".xml"
  1214. }
  1215. }
  1216. },
  1217. "System.Threading.Tasks.Extensions/4.5.4": {
  1218. "type": "package",
  1219. "compile": {
  1220. "ref/netcoreapp2.1/_._": {}
  1221. },
  1222. "runtime": {
  1223. "lib/netcoreapp2.1/_._": {}
  1224. }
  1225. },
  1226. "WebActivatorEx/2.0.0": {
  1227. "type": "package",
  1228. "dependencies": {
  1229. "Microsoft.Web.Infrastructure": "1.0.0"
  1230. },
  1231. "compile": {
  1232. "lib/net40/WebActivatorEx.dll": {}
  1233. },
  1234. "runtime": {
  1235. "lib/net40/WebActivatorEx.dll": {}
  1236. }
  1237. },
  1238. "AipGateway.AIP/1.0.0": {
  1239. "type": "project",
  1240. "framework": ".NETFramework,Version=v4.8",
  1241. "dependencies": {
  1242. "Microsoft.Identity.Client": "4.60.3",
  1243. "Microsoft.Identity.Client.Extensions.Msal": "4.60.3",
  1244. "Microsoft.InformationProtection.File": "1.14.128"
  1245. },
  1246. "compile": {
  1247. "bin/placeholder/AipGateway.AIP.dll": {}
  1248. },
  1249. "runtime": {
  1250. "bin/placeholder/AipGateway.AIP.dll": {}
  1251. }
  1252. },
  1253. "AipGateway.Common/1.0.0": {
  1254. "type": "project",
  1255. "compile": {
  1256. "bin/placeholder/AipGateway.Common.dll": {}
  1257. },
  1258. "runtime": {
  1259. "bin/placeholder/AipGateway.Common.dll": {}
  1260. }
  1261. },
  1262. "AipGateway.Data/1.0.0": {
  1263. "type": "project",
  1264. "framework": ".NETCoreApp,Version=v8.0",
  1265. "dependencies": {
  1266. "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "8.0.0",
  1267. "Microsoft.EntityFrameworkCore": "8.0.0",
  1268. "Microsoft.EntityFrameworkCore.SqlServer": "8.0.0",
  1269. "Microsoft.Extensions.Identity.Stores": "8.0.0"
  1270. },
  1271. "compile": {
  1272. "bin/placeholder/AipGateway.Data.dll": {}
  1273. },
  1274. "runtime": {
  1275. "bin/placeholder/AipGateway.Data.dll": {}
  1276. }
  1277. },
  1278. "AipGateway.DRM/1.0.0": {
  1279. "type": "project",
  1280. "compile": {
  1281. "bin/placeholder/AipGateway.DRM.dll": {}
  1282. },
  1283. "runtime": {
  1284. "bin/placeholder/AipGateway.DRM.dll": {}
  1285. }
  1286. },
  1287. "AipGateway.Log/1.0.0": {
  1288. "type": "project",
  1289. "compile": {
  1290. "bin/placeholder/AipGateway.Log.dll": {}
  1291. },
  1292. "runtime": {
  1293. "bin/placeholder/AipGateway.Log.dll": {}
  1294. }
  1295. },
  1296. "AipGateway.Test/1.0.0": {
  1297. "type": "project",
  1298. "framework": ".NETFramework,Version=v4.8",
  1299. "dependencies": {
  1300. "AipGateway.AIP": "1.0.0",
  1301. "System.Configuration.ConfigurationManager": "8.0.0"
  1302. },
  1303. "compile": {
  1304. "bin/placeholder/AipGateway.Test.dll": {}
  1305. },
  1306. "runtime": {
  1307. "bin/placeholder/AipGateway.Test.dll": {}
  1308. }
  1309. },
  1310. "AipGateway.Viewer/1.0.0": {
  1311. "type": "project",
  1312. "framework": ".NETFramework,Version=v4.8",
  1313. "dependencies": {
  1314. "AipGateway.AIP": "1.0.0",
  1315. "System.Configuration.ConfigurationManager": "8.0.0"
  1316. },
  1317. "compile": {
  1318. "bin/placeholder/AipGateway.Viewer.dll": {}
  1319. },
  1320. "runtime": {
  1321. "bin/placeholder/AipGateway.Viewer.dll": {}
  1322. }
  1323. }
  1324. }
  1325. },
  1326. "libraries": {
  1327. "Azure.Core/1.35.0": {
  1328. "sha512": "hENcx03Jyuqv05F4RBEPbxz29UrM3Nbhnr6Wl6NQpoU9BCIbL3XLentrxDCTrH54NLS11Exxi/o8MYgT/cnKFA==",
  1329. "type": "package",
  1330. "path": "azure.core/1.35.0",
  1331. "files": [
  1332. ".nupkg.metadata",
  1333. ".signature.p7s",
  1334. "CHANGELOG.md",
  1335. "README.md",
  1336. "azure.core.1.35.0.nupkg.sha512",
  1337. "azure.core.nuspec",
  1338. "azureicon.png",
  1339. "lib/net461/Azure.Core.dll",
  1340. "lib/net461/Azure.Core.xml",
  1341. "lib/net472/Azure.Core.dll",
  1342. "lib/net472/Azure.Core.xml",
  1343. "lib/net5.0/Azure.Core.dll",
  1344. "lib/net5.0/Azure.Core.xml",
  1345. "lib/net6.0/Azure.Core.dll",
  1346. "lib/net6.0/Azure.Core.xml",
  1347. "lib/netcoreapp2.1/Azure.Core.dll",
  1348. "lib/netcoreapp2.1/Azure.Core.xml",
  1349. "lib/netstandard2.0/Azure.Core.dll",
  1350. "lib/netstandard2.0/Azure.Core.xml"
  1351. ]
  1352. },
  1353. "Azure.Identity/1.10.3": {
  1354. "sha512": "l1Xm2MWOF2Mzcwuarlw8kWQXLZk3UeB55aQXVyjj23aBfDwOZ3gu5GP2kJ6KlmZeZv2TCzw7x4L3V36iNr3gww==",
  1355. "type": "package",
  1356. "path": "azure.identity/1.10.3",
  1357. "files": [
  1358. ".nupkg.metadata",
  1359. ".signature.p7s",
  1360. "CHANGELOG.md",
  1361. "README.md",
  1362. "azure.identity.1.10.3.nupkg.sha512",
  1363. "azure.identity.nuspec",
  1364. "azureicon.png",
  1365. "lib/netstandard2.0/Azure.Identity.dll",
  1366. "lib/netstandard2.0/Azure.Identity.xml"
  1367. ]
  1368. },
  1369. "Microsoft.AspNet.WebApi.Client/4.0.20710": {
  1370. "sha512": "BwFtW0cGr8tg02XalvF8MmznOpYrhquD2eXWI0oF3LLSqLMFoFkb8Pmke/7SnqkiNc+YfsaUqdXEKbjhv1Ctrw==",
  1371. "type": "package",
  1372. "path": "microsoft.aspnet.webapi.client/4.0.20710",
  1373. "files": [
  1374. ".nupkg.metadata",
  1375. ".signature.p7s",
  1376. "lib/net40/System.Net.Http.Formatting.dll",
  1377. "lib/net40/System.Net.Http.Formatting.xml",
  1378. "microsoft.aspnet.webapi.client.4.0.20710.nupkg.sha512",
  1379. "microsoft.aspnet.webapi.client.nuspec"
  1380. ]
  1381. },
  1382. "Microsoft.AspNet.WebApi.Core/4.0.20710": {
  1383. "sha512": "ufD+tH4W7+eNsb4pzX5oFTDcgI6J3lffughFTkyLHPBZ+A4Eo+VncAxt3lbt9zxxbLHXIbgJHYRLvtgR5YEZAQ==",
  1384. "type": "package",
  1385. "path": "microsoft.aspnet.webapi.core/4.0.20710",
  1386. "files": [
  1387. ".nupkg.metadata",
  1388. ".signature.p7s",
  1389. "content/web.config.transform",
  1390. "lib/net40/System.Web.Http.dll",
  1391. "lib/net40/System.Web.Http.xml",
  1392. "microsoft.aspnet.webapi.core.4.0.20710.nupkg.sha512",
  1393. "microsoft.aspnet.webapi.core.nuspec"
  1394. ]
  1395. },
  1396. "Microsoft.AspNet.WebApi.WebHost/4.0.20710": {
  1397. "sha512": "Pqje5F4BJvnN6z2eSIuyCCZNJbIPap/4bYfvvHYy/kiYPj7+cFK+tgcSKWgITwk+6K8v+Bf3Et16DXQQuK+wEg==",
  1398. "type": "package",
  1399. "path": "microsoft.aspnet.webapi.webhost/4.0.20710",
  1400. "files": [
  1401. ".nupkg.metadata",
  1402. ".signature.p7s",
  1403. "lib/net40/System.Web.Http.WebHost.dll",
  1404. "lib/net40/System.Web.Http.WebHost.xml",
  1405. "microsoft.aspnet.webapi.webhost.4.0.20710.nupkg.sha512",
  1406. "microsoft.aspnet.webapi.webhost.nuspec"
  1407. ]
  1408. },
  1409. "Microsoft.AspNetCore.Cryptography.Internal/8.0.0": {
  1410. "sha512": "buuMMCTxFcVkOkEftb2OafYxrveNGre9KJF4Oi1DkR4rxIj6oLam7Wq3g0Fp9hNVpJteKEPiupsxYnPrD/oUGA==",
  1411. "type": "package",
  1412. "path": "microsoft.aspnetcore.cryptography.internal/8.0.0",
  1413. "files": [
  1414. ".nupkg.metadata",
  1415. ".signature.p7s",
  1416. "Icon.png",
  1417. "THIRD-PARTY-NOTICES.TXT",
  1418. "lib/net462/Microsoft.AspNetCore.Cryptography.Internal.dll",
  1419. "lib/net462/Microsoft.AspNetCore.Cryptography.Internal.xml",
  1420. "lib/net8.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  1421. "lib/net8.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  1422. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  1423. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  1424. "microsoft.aspnetcore.cryptography.internal.8.0.0.nupkg.sha512",
  1425. "microsoft.aspnetcore.cryptography.internal.nuspec"
  1426. ]
  1427. },
  1428. "Microsoft.AspNetCore.Cryptography.KeyDerivation/8.0.0": {
  1429. "sha512": "65w93R5wqUUs35R9wjHHDf75GqAbxJsNByKZo5TbQOWSXcUbLWrDUWBQHv78iXIT0PL1pXNqKQz7OHiHMvo0/A==",
  1430. "type": "package",
  1431. "path": "microsoft.aspnetcore.cryptography.keyderivation/8.0.0",
  1432. "files": [
  1433. ".nupkg.metadata",
  1434. ".signature.p7s",
  1435. "Icon.png",
  1436. "THIRD-PARTY-NOTICES.TXT",
  1437. "lib/net462/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  1438. "lib/net462/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  1439. "lib/net8.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  1440. "lib/net8.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  1441. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  1442. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  1443. "microsoft.aspnetcore.cryptography.keyderivation.8.0.0.nupkg.sha512",
  1444. "microsoft.aspnetcore.cryptography.keyderivation.nuspec"
  1445. ]
  1446. },
  1447. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/8.0.0": {
  1448. "sha512": "ua2LSZY/f0BkNUUVPPm83eq4Xnt+FZYutiMimRrzSmv2K2t2Ia/PuP4CfibYNSwnKl6fbZ49Bwn2mQGWnmmvOA==",
  1449. "type": "package",
  1450. "path": "microsoft.aspnetcore.identity.entityframeworkcore/8.0.0",
  1451. "files": [
  1452. ".nupkg.metadata",
  1453. ".signature.p7s",
  1454. "Icon.png",
  1455. "THIRD-PARTY-NOTICES.TXT",
  1456. "lib/net8.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll",
  1457. "lib/net8.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml",
  1458. "microsoft.aspnetcore.identity.entityframeworkcore.8.0.0.nupkg.sha512",
  1459. "microsoft.aspnetcore.identity.entityframeworkcore.nuspec"
  1460. ]
  1461. },
  1462. "Microsoft.AspNetCore.JsonPatch/8.0.4": {
  1463. "sha512": "8iy7uza6GTuE5GadOryGfsGuA8xP1RTs16zqdXF5gM0b8iDfyNWnyDmatY5cZhXE1kJiko0S7s1T/gNFdIZ7Zg==",
  1464. "type": "package",
  1465. "path": "microsoft.aspnetcore.jsonpatch/8.0.4",
  1466. "files": [
  1467. ".nupkg.metadata",
  1468. ".signature.p7s",
  1469. "Icon.png",
  1470. "THIRD-PARTY-NOTICES.TXT",
  1471. "lib/net462/Microsoft.AspNetCore.JsonPatch.dll",
  1472. "lib/net462/Microsoft.AspNetCore.JsonPatch.xml",
  1473. "lib/net8.0/Microsoft.AspNetCore.JsonPatch.dll",
  1474. "lib/net8.0/Microsoft.AspNetCore.JsonPatch.xml",
  1475. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll",
  1476. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.xml",
  1477. "microsoft.aspnetcore.jsonpatch.8.0.4.nupkg.sha512",
  1478. "microsoft.aspnetcore.jsonpatch.nuspec"
  1479. ]
  1480. },
  1481. "Microsoft.AspNetCore.Mvc.NewtonsoftJson/8.0.4": {
  1482. "sha512": "lhJq0JjrlGZQwQoYrpVbokhb1AlgLGxI3QacSyKgCNOXTNwCi0pUnMR7NrfON20DkL90Kqqyl3wDrLbRaRgcsA==",
  1483. "type": "package",
  1484. "path": "microsoft.aspnetcore.mvc.newtonsoftjson/8.0.4",
  1485. "files": [
  1486. ".nupkg.metadata",
  1487. ".signature.p7s",
  1488. "Icon.png",
  1489. "THIRD-PARTY-NOTICES.TXT",
  1490. "lib/net8.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll",
  1491. "lib/net8.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.xml",
  1492. "microsoft.aspnetcore.mvc.newtonsoftjson.8.0.4.nupkg.sha512",
  1493. "microsoft.aspnetcore.mvc.newtonsoftjson.nuspec"
  1494. ]
  1495. },
  1496. "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
  1497. "sha512": "yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==",
  1498. "type": "package",
  1499. "path": "microsoft.bcl.asyncinterfaces/1.1.1",
  1500. "files": [
  1501. ".nupkg.metadata",
  1502. ".signature.p7s",
  1503. "Icon.png",
  1504. "LICENSE.TXT",
  1505. "THIRD-PARTY-NOTICES.TXT",
  1506. "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  1507. "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
  1508. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  1509. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  1510. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  1511. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  1512. "microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512",
  1513. "microsoft.bcl.asyncinterfaces.nuspec",
  1514. "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  1515. "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  1516. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  1517. "useSharedDesignerContext.txt",
  1518. "version.txt"
  1519. ]
  1520. },
  1521. "Microsoft.CSharp/4.7.0": {
  1522. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  1523. "type": "package",
  1524. "path": "microsoft.csharp/4.7.0",
  1525. "files": [
  1526. ".nupkg.metadata",
  1527. ".signature.p7s",
  1528. "LICENSE.TXT",
  1529. "THIRD-PARTY-NOTICES.TXT",
  1530. "lib/MonoAndroid10/_._",
  1531. "lib/MonoTouch10/_._",
  1532. "lib/net45/_._",
  1533. "lib/netcore50/Microsoft.CSharp.dll",
  1534. "lib/netcoreapp2.0/_._",
  1535. "lib/netstandard1.3/Microsoft.CSharp.dll",
  1536. "lib/netstandard2.0/Microsoft.CSharp.dll",
  1537. "lib/netstandard2.0/Microsoft.CSharp.xml",
  1538. "lib/portable-net45+win8+wp8+wpa81/_._",
  1539. "lib/uap10.0.16299/_._",
  1540. "lib/win8/_._",
  1541. "lib/wp80/_._",
  1542. "lib/wpa81/_._",
  1543. "lib/xamarinios10/_._",
  1544. "lib/xamarinmac20/_._",
  1545. "lib/xamarintvos10/_._",
  1546. "lib/xamarinwatchos10/_._",
  1547. "microsoft.csharp.4.7.0.nupkg.sha512",
  1548. "microsoft.csharp.nuspec",
  1549. "ref/MonoAndroid10/_._",
  1550. "ref/MonoTouch10/_._",
  1551. "ref/net45/_._",
  1552. "ref/netcore50/Microsoft.CSharp.dll",
  1553. "ref/netcore50/Microsoft.CSharp.xml",
  1554. "ref/netcore50/de/Microsoft.CSharp.xml",
  1555. "ref/netcore50/es/Microsoft.CSharp.xml",
  1556. "ref/netcore50/fr/Microsoft.CSharp.xml",
  1557. "ref/netcore50/it/Microsoft.CSharp.xml",
  1558. "ref/netcore50/ja/Microsoft.CSharp.xml",
  1559. "ref/netcore50/ko/Microsoft.CSharp.xml",
  1560. "ref/netcore50/ru/Microsoft.CSharp.xml",
  1561. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  1562. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  1563. "ref/netcoreapp2.0/_._",
  1564. "ref/netstandard1.0/Microsoft.CSharp.dll",
  1565. "ref/netstandard1.0/Microsoft.CSharp.xml",
  1566. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  1567. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  1568. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  1569. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  1570. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  1571. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  1572. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  1573. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  1574. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  1575. "ref/netstandard2.0/Microsoft.CSharp.dll",
  1576. "ref/netstandard2.0/Microsoft.CSharp.xml",
  1577. "ref/portable-net45+win8+wp8+wpa81/_._",
  1578. "ref/uap10.0.16299/_._",
  1579. "ref/win8/_._",
  1580. "ref/wp80/_._",
  1581. "ref/wpa81/_._",
  1582. "ref/xamarinios10/_._",
  1583. "ref/xamarinmac20/_._",
  1584. "ref/xamarintvos10/_._",
  1585. "ref/xamarinwatchos10/_._",
  1586. "useSharedDesignerContext.txt",
  1587. "version.txt"
  1588. ]
  1589. },
  1590. "Microsoft.Data.SqlClient/5.1.5": {
  1591. "sha512": "6kvhQjY5uBCdBccezFD2smfnpQjQ33cZtUZVrNvxlwoBu6uopM5INH6uSgLI7JRLtlQ3bMPwnhMq4kchsXeZ5w==",
  1592. "type": "package",
  1593. "path": "microsoft.data.sqlclient/5.1.5",
  1594. "files": [
  1595. ".nupkg.metadata",
  1596. ".signature.p7s",
  1597. "dotnet.png",
  1598. "lib/net462/Microsoft.Data.SqlClient.dll",
  1599. "lib/net462/Microsoft.Data.SqlClient.pdb",
  1600. "lib/net462/Microsoft.Data.SqlClient.xml",
  1601. "lib/net462/de/Microsoft.Data.SqlClient.resources.dll",
  1602. "lib/net462/es/Microsoft.Data.SqlClient.resources.dll",
  1603. "lib/net462/fr/Microsoft.Data.SqlClient.resources.dll",
  1604. "lib/net462/it/Microsoft.Data.SqlClient.resources.dll",
  1605. "lib/net462/ja/Microsoft.Data.SqlClient.resources.dll",
  1606. "lib/net462/ko/Microsoft.Data.SqlClient.resources.dll",
  1607. "lib/net462/pt-BR/Microsoft.Data.SqlClient.resources.dll",
  1608. "lib/net462/ru/Microsoft.Data.SqlClient.resources.dll",
  1609. "lib/net462/zh-Hans/Microsoft.Data.SqlClient.resources.dll",
  1610. "lib/net462/zh-Hant/Microsoft.Data.SqlClient.resources.dll",
  1611. "lib/net6.0/Microsoft.Data.SqlClient.dll",
  1612. "lib/net6.0/Microsoft.Data.SqlClient.pdb",
  1613. "lib/net6.0/Microsoft.Data.SqlClient.xml",
  1614. "lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  1615. "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  1616. "lib/netstandard2.0/Microsoft.Data.SqlClient.xml",
  1617. "lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  1618. "lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  1619. "lib/netstandard2.1/Microsoft.Data.SqlClient.xml",
  1620. "microsoft.data.sqlclient.5.1.5.nupkg.sha512",
  1621. "microsoft.data.sqlclient.nuspec",
  1622. "ref/net462/Microsoft.Data.SqlClient.dll",
  1623. "ref/net462/Microsoft.Data.SqlClient.pdb",
  1624. "ref/net462/Microsoft.Data.SqlClient.xml",
  1625. "ref/net6.0/Microsoft.Data.SqlClient.dll",
  1626. "ref/net6.0/Microsoft.Data.SqlClient.pdb",
  1627. "ref/net6.0/Microsoft.Data.SqlClient.xml",
  1628. "ref/netstandard2.0/Microsoft.Data.SqlClient.dll",
  1629. "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  1630. "ref/netstandard2.0/Microsoft.Data.SqlClient.xml",
  1631. "ref/netstandard2.1/Microsoft.Data.SqlClient.dll",
  1632. "ref/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  1633. "ref/netstandard2.1/Microsoft.Data.SqlClient.xml",
  1634. "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll",
  1635. "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.pdb",
  1636. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  1637. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  1638. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  1639. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  1640. "runtimes/win/lib/net462/Microsoft.Data.SqlClient.dll",
  1641. "runtimes/win/lib/net462/Microsoft.Data.SqlClient.pdb",
  1642. "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll",
  1643. "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.pdb",
  1644. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  1645. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  1646. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  1647. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb"
  1648. ]
  1649. },
  1650. "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": {
  1651. "sha512": "wNGM5ZTQCa2blc9ikXQouybGiyMd6IHPVJvAlBEPtr6JepZEOYeDxGyprYvFVeOxlCXs7avridZQ0nYkHzQWCQ==",
  1652. "type": "package",
  1653. "path": "microsoft.data.sqlclient.sni.runtime/5.1.1",
  1654. "files": [
  1655. ".nupkg.metadata",
  1656. ".signature.p7s",
  1657. "LICENSE.txt",
  1658. "dotnet.png",
  1659. "microsoft.data.sqlclient.sni.runtime.5.1.1.nupkg.sha512",
  1660. "microsoft.data.sqlclient.sni.runtime.nuspec",
  1661. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll",
  1662. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll",
  1663. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll",
  1664. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll"
  1665. ]
  1666. },
  1667. "Microsoft.EntityFrameworkCore/8.0.4": {
  1668. "sha512": "/kyu9pXuxQvhg8RO/oN5Q5Og7cDIVvZtrt1z48rX7Yido+zEGkUkp3/Bjd9u45N2uuPPF8mn2pKDlAewCvv3/Q==",
  1669. "type": "package",
  1670. "path": "microsoft.entityframeworkcore/8.0.4",
  1671. "files": [
  1672. ".nupkg.metadata",
  1673. ".signature.p7s",
  1674. "Icon.png",
  1675. "PACKAGE.md",
  1676. "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props",
  1677. "lib/net8.0/Microsoft.EntityFrameworkCore.dll",
  1678. "lib/net8.0/Microsoft.EntityFrameworkCore.xml",
  1679. "microsoft.entityframeworkcore.8.0.4.nupkg.sha512",
  1680. "microsoft.entityframeworkcore.nuspec"
  1681. ]
  1682. },
  1683. "Microsoft.EntityFrameworkCore.Abstractions/8.0.4": {
  1684. "sha512": "S50pjtPNOvRktacaO6UAhvGCPMT56wxqEq8fQfcjaSUySPGba6mKWo6ackw6DdeAR1cA6U+U0uj27warA2KtJA==",
  1685. "type": "package",
  1686. "path": "microsoft.entityframeworkcore.abstractions/8.0.4",
  1687. "files": [
  1688. ".nupkg.metadata",
  1689. ".signature.p7s",
  1690. "Icon.png",
  1691. "PACKAGE.md",
  1692. "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
  1693. "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
  1694. "microsoft.entityframeworkcore.abstractions.8.0.4.nupkg.sha512",
  1695. "microsoft.entityframeworkcore.abstractions.nuspec"
  1696. ]
  1697. },
  1698. "Microsoft.EntityFrameworkCore.Analyzers/8.0.4": {
  1699. "sha512": "P8hfMZECdbgle4Us8HGRUKAjqVwgbtr5JqtCxqEoiVORrNQAmcpu3g1NKwTAoUsO9Z0QRgExtYoAmdggR/DkMQ==",
  1700. "type": "package",
  1701. "path": "microsoft.entityframeworkcore.analyzers/8.0.4",
  1702. "files": [
  1703. ".nupkg.metadata",
  1704. ".signature.p7s",
  1705. "Icon.png",
  1706. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  1707. "docs/PACKAGE.md",
  1708. "lib/netstandard2.0/_._",
  1709. "microsoft.entityframeworkcore.analyzers.8.0.4.nupkg.sha512",
  1710. "microsoft.entityframeworkcore.analyzers.nuspec"
  1711. ]
  1712. },
  1713. "Microsoft.EntityFrameworkCore.Relational/8.0.4": {
  1714. "sha512": "aWLT6e9a8oMzXgF0YQpYYa3mDeU+yb2UQSQ+RrIgyGgSpzPfSKgpA7v2kOVDuZr2AQ6NNAlWPaBG7wZuKQI96w==",
  1715. "type": "package",
  1716. "path": "microsoft.entityframeworkcore.relational/8.0.4",
  1717. "files": [
  1718. ".nupkg.metadata",
  1719. ".signature.p7s",
  1720. "Icon.png",
  1721. "PACKAGE.md",
  1722. "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll",
  1723. "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.xml",
  1724. "microsoft.entityframeworkcore.relational.8.0.4.nupkg.sha512",
  1725. "microsoft.entityframeworkcore.relational.nuspec"
  1726. ]
  1727. },
  1728. "Microsoft.EntityFrameworkCore.SqlServer/8.0.4": {
  1729. "sha512": "/IlHNxzZGqiuVi+FPtjFZgAOfY989fTPtxw8zhmlFwv5M2WJzBSMlAP4jNVQX/k7/qu+y1YvddPxg4O5QdeRXw==",
  1730. "type": "package",
  1731. "path": "microsoft.entityframeworkcore.sqlserver/8.0.4",
  1732. "files": [
  1733. ".nupkg.metadata",
  1734. ".signature.p7s",
  1735. "Icon.png",
  1736. "PACKAGE.md",
  1737. "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll",
  1738. "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.xml",
  1739. "microsoft.entityframeworkcore.sqlserver.8.0.4.nupkg.sha512",
  1740. "microsoft.entityframeworkcore.sqlserver.nuspec"
  1741. ]
  1742. },
  1743. "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
  1744. "sha512": "Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==",
  1745. "type": "package",
  1746. "path": "microsoft.extensions.apidescription.server/6.0.5",
  1747. "hasTools": true,
  1748. "files": [
  1749. ".nupkg.metadata",
  1750. ".signature.p7s",
  1751. "Icon.png",
  1752. "build/Microsoft.Extensions.ApiDescription.Server.props",
  1753. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  1754. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  1755. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  1756. "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512",
  1757. "microsoft.extensions.apidescription.server.nuspec",
  1758. "tools/Newtonsoft.Json.dll",
  1759. "tools/dotnet-getdocument.deps.json",
  1760. "tools/dotnet-getdocument.dll",
  1761. "tools/dotnet-getdocument.runtimeconfig.json",
  1762. "tools/net461-x86/GetDocument.Insider.exe",
  1763. "tools/net461-x86/GetDocument.Insider.exe.config",
  1764. "tools/net461-x86/Microsoft.Win32.Primitives.dll",
  1765. "tools/net461-x86/System.AppContext.dll",
  1766. "tools/net461-x86/System.Buffers.dll",
  1767. "tools/net461-x86/System.Collections.Concurrent.dll",
  1768. "tools/net461-x86/System.Collections.NonGeneric.dll",
  1769. "tools/net461-x86/System.Collections.Specialized.dll",
  1770. "tools/net461-x86/System.Collections.dll",
  1771. "tools/net461-x86/System.ComponentModel.EventBasedAsync.dll",
  1772. "tools/net461-x86/System.ComponentModel.Primitives.dll",
  1773. "tools/net461-x86/System.ComponentModel.TypeConverter.dll",
  1774. "tools/net461-x86/System.ComponentModel.dll",
  1775. "tools/net461-x86/System.Console.dll",
  1776. "tools/net461-x86/System.Data.Common.dll",
  1777. "tools/net461-x86/System.Diagnostics.Contracts.dll",
  1778. "tools/net461-x86/System.Diagnostics.Debug.dll",
  1779. "tools/net461-x86/System.Diagnostics.DiagnosticSource.dll",
  1780. "tools/net461-x86/System.Diagnostics.FileVersionInfo.dll",
  1781. "tools/net461-x86/System.Diagnostics.Process.dll",
  1782. "tools/net461-x86/System.Diagnostics.StackTrace.dll",
  1783. "tools/net461-x86/System.Diagnostics.TextWriterTraceListener.dll",
  1784. "tools/net461-x86/System.Diagnostics.Tools.dll",
  1785. "tools/net461-x86/System.Diagnostics.TraceSource.dll",
  1786. "tools/net461-x86/System.Diagnostics.Tracing.dll",
  1787. "tools/net461-x86/System.Drawing.Primitives.dll",
  1788. "tools/net461-x86/System.Dynamic.Runtime.dll",
  1789. "tools/net461-x86/System.Globalization.Calendars.dll",
  1790. "tools/net461-x86/System.Globalization.Extensions.dll",
  1791. "tools/net461-x86/System.Globalization.dll",
  1792. "tools/net461-x86/System.IO.Compression.ZipFile.dll",
  1793. "tools/net461-x86/System.IO.Compression.dll",
  1794. "tools/net461-x86/System.IO.FileSystem.DriveInfo.dll",
  1795. "tools/net461-x86/System.IO.FileSystem.Primitives.dll",
  1796. "tools/net461-x86/System.IO.FileSystem.Watcher.dll",
  1797. "tools/net461-x86/System.IO.FileSystem.dll",
  1798. "tools/net461-x86/System.IO.IsolatedStorage.dll",
  1799. "tools/net461-x86/System.IO.MemoryMappedFiles.dll",
  1800. "tools/net461-x86/System.IO.Pipes.dll",
  1801. "tools/net461-x86/System.IO.UnmanagedMemoryStream.dll",
  1802. "tools/net461-x86/System.IO.dll",
  1803. "tools/net461-x86/System.Linq.Expressions.dll",
  1804. "tools/net461-x86/System.Linq.Parallel.dll",
  1805. "tools/net461-x86/System.Linq.Queryable.dll",
  1806. "tools/net461-x86/System.Linq.dll",
  1807. "tools/net461-x86/System.Memory.dll",
  1808. "tools/net461-x86/System.Net.Http.dll",
  1809. "tools/net461-x86/System.Net.NameResolution.dll",
  1810. "tools/net461-x86/System.Net.NetworkInformation.dll",
  1811. "tools/net461-x86/System.Net.Ping.dll",
  1812. "tools/net461-x86/System.Net.Primitives.dll",
  1813. "tools/net461-x86/System.Net.Requests.dll",
  1814. "tools/net461-x86/System.Net.Security.dll",
  1815. "tools/net461-x86/System.Net.Sockets.dll",
  1816. "tools/net461-x86/System.Net.WebHeaderCollection.dll",
  1817. "tools/net461-x86/System.Net.WebSockets.Client.dll",
  1818. "tools/net461-x86/System.Net.WebSockets.dll",
  1819. "tools/net461-x86/System.Numerics.Vectors.dll",
  1820. "tools/net461-x86/System.ObjectModel.dll",
  1821. "tools/net461-x86/System.Reflection.Extensions.dll",
  1822. "tools/net461-x86/System.Reflection.Primitives.dll",
  1823. "tools/net461-x86/System.Reflection.dll",
  1824. "tools/net461-x86/System.Resources.Reader.dll",
  1825. "tools/net461-x86/System.Resources.ResourceManager.dll",
  1826. "tools/net461-x86/System.Resources.Writer.dll",
  1827. "tools/net461-x86/System.Runtime.CompilerServices.Unsafe.dll",
  1828. "tools/net461-x86/System.Runtime.CompilerServices.VisualC.dll",
  1829. "tools/net461-x86/System.Runtime.Extensions.dll",
  1830. "tools/net461-x86/System.Runtime.Handles.dll",
  1831. "tools/net461-x86/System.Runtime.InteropServices.RuntimeInformation.dll",
  1832. "tools/net461-x86/System.Runtime.InteropServices.dll",
  1833. "tools/net461-x86/System.Runtime.Numerics.dll",
  1834. "tools/net461-x86/System.Runtime.Serialization.Formatters.dll",
  1835. "tools/net461-x86/System.Runtime.Serialization.Json.dll",
  1836. "tools/net461-x86/System.Runtime.Serialization.Primitives.dll",
  1837. "tools/net461-x86/System.Runtime.Serialization.Xml.dll",
  1838. "tools/net461-x86/System.Runtime.dll",
  1839. "tools/net461-x86/System.Security.Claims.dll",
  1840. "tools/net461-x86/System.Security.Cryptography.Algorithms.dll",
  1841. "tools/net461-x86/System.Security.Cryptography.Csp.dll",
  1842. "tools/net461-x86/System.Security.Cryptography.Encoding.dll",
  1843. "tools/net461-x86/System.Security.Cryptography.Primitives.dll",
  1844. "tools/net461-x86/System.Security.Cryptography.X509Certificates.dll",
  1845. "tools/net461-x86/System.Security.Principal.dll",
  1846. "tools/net461-x86/System.Security.SecureString.dll",
  1847. "tools/net461-x86/System.Text.Encoding.Extensions.dll",
  1848. "tools/net461-x86/System.Text.Encoding.dll",
  1849. "tools/net461-x86/System.Text.RegularExpressions.dll",
  1850. "tools/net461-x86/System.Threading.Overlapped.dll",
  1851. "tools/net461-x86/System.Threading.Tasks.Parallel.dll",
  1852. "tools/net461-x86/System.Threading.Tasks.dll",
  1853. "tools/net461-x86/System.Threading.Thread.dll",
  1854. "tools/net461-x86/System.Threading.ThreadPool.dll",
  1855. "tools/net461-x86/System.Threading.Timer.dll",
  1856. "tools/net461-x86/System.Threading.dll",
  1857. "tools/net461-x86/System.ValueTuple.dll",
  1858. "tools/net461-x86/System.Xml.ReaderWriter.dll",
  1859. "tools/net461-x86/System.Xml.XDocument.dll",
  1860. "tools/net461-x86/System.Xml.XPath.XDocument.dll",
  1861. "tools/net461-x86/System.Xml.XPath.dll",
  1862. "tools/net461-x86/System.Xml.XmlDocument.dll",
  1863. "tools/net461-x86/System.Xml.XmlSerializer.dll",
  1864. "tools/net461-x86/netstandard.dll",
  1865. "tools/net461/GetDocument.Insider.exe",
  1866. "tools/net461/GetDocument.Insider.exe.config",
  1867. "tools/net461/Microsoft.Win32.Primitives.dll",
  1868. "tools/net461/System.AppContext.dll",
  1869. "tools/net461/System.Buffers.dll",
  1870. "tools/net461/System.Collections.Concurrent.dll",
  1871. "tools/net461/System.Collections.NonGeneric.dll",
  1872. "tools/net461/System.Collections.Specialized.dll",
  1873. "tools/net461/System.Collections.dll",
  1874. "tools/net461/System.ComponentModel.EventBasedAsync.dll",
  1875. "tools/net461/System.ComponentModel.Primitives.dll",
  1876. "tools/net461/System.ComponentModel.TypeConverter.dll",
  1877. "tools/net461/System.ComponentModel.dll",
  1878. "tools/net461/System.Console.dll",
  1879. "tools/net461/System.Data.Common.dll",
  1880. "tools/net461/System.Diagnostics.Contracts.dll",
  1881. "tools/net461/System.Diagnostics.Debug.dll",
  1882. "tools/net461/System.Diagnostics.DiagnosticSource.dll",
  1883. "tools/net461/System.Diagnostics.FileVersionInfo.dll",
  1884. "tools/net461/System.Diagnostics.Process.dll",
  1885. "tools/net461/System.Diagnostics.StackTrace.dll",
  1886. "tools/net461/System.Diagnostics.TextWriterTraceListener.dll",
  1887. "tools/net461/System.Diagnostics.Tools.dll",
  1888. "tools/net461/System.Diagnostics.TraceSource.dll",
  1889. "tools/net461/System.Diagnostics.Tracing.dll",
  1890. "tools/net461/System.Drawing.Primitives.dll",
  1891. "tools/net461/System.Dynamic.Runtime.dll",
  1892. "tools/net461/System.Globalization.Calendars.dll",
  1893. "tools/net461/System.Globalization.Extensions.dll",
  1894. "tools/net461/System.Globalization.dll",
  1895. "tools/net461/System.IO.Compression.ZipFile.dll",
  1896. "tools/net461/System.IO.Compression.dll",
  1897. "tools/net461/System.IO.FileSystem.DriveInfo.dll",
  1898. "tools/net461/System.IO.FileSystem.Primitives.dll",
  1899. "tools/net461/System.IO.FileSystem.Watcher.dll",
  1900. "tools/net461/System.IO.FileSystem.dll",
  1901. "tools/net461/System.IO.IsolatedStorage.dll",
  1902. "tools/net461/System.IO.MemoryMappedFiles.dll",
  1903. "tools/net461/System.IO.Pipes.dll",
  1904. "tools/net461/System.IO.UnmanagedMemoryStream.dll",
  1905. "tools/net461/System.IO.dll",
  1906. "tools/net461/System.Linq.Expressions.dll",
  1907. "tools/net461/System.Linq.Parallel.dll",
  1908. "tools/net461/System.Linq.Queryable.dll",
  1909. "tools/net461/System.Linq.dll",
  1910. "tools/net461/System.Memory.dll",
  1911. "tools/net461/System.Net.Http.dll",
  1912. "tools/net461/System.Net.NameResolution.dll",
  1913. "tools/net461/System.Net.NetworkInformation.dll",
  1914. "tools/net461/System.Net.Ping.dll",
  1915. "tools/net461/System.Net.Primitives.dll",
  1916. "tools/net461/System.Net.Requests.dll",
  1917. "tools/net461/System.Net.Security.dll",
  1918. "tools/net461/System.Net.Sockets.dll",
  1919. "tools/net461/System.Net.WebHeaderCollection.dll",
  1920. "tools/net461/System.Net.WebSockets.Client.dll",
  1921. "tools/net461/System.Net.WebSockets.dll",
  1922. "tools/net461/System.Numerics.Vectors.dll",
  1923. "tools/net461/System.ObjectModel.dll",
  1924. "tools/net461/System.Reflection.Extensions.dll",
  1925. "tools/net461/System.Reflection.Primitives.dll",
  1926. "tools/net461/System.Reflection.dll",
  1927. "tools/net461/System.Resources.Reader.dll",
  1928. "tools/net461/System.Resources.ResourceManager.dll",
  1929. "tools/net461/System.Resources.Writer.dll",
  1930. "tools/net461/System.Runtime.CompilerServices.Unsafe.dll",
  1931. "tools/net461/System.Runtime.CompilerServices.VisualC.dll",
  1932. "tools/net461/System.Runtime.Extensions.dll",
  1933. "tools/net461/System.Runtime.Handles.dll",
  1934. "tools/net461/System.Runtime.InteropServices.RuntimeInformation.dll",
  1935. "tools/net461/System.Runtime.InteropServices.dll",
  1936. "tools/net461/System.Runtime.Numerics.dll",
  1937. "tools/net461/System.Runtime.Serialization.Formatters.dll",
  1938. "tools/net461/System.Runtime.Serialization.Json.dll",
  1939. "tools/net461/System.Runtime.Serialization.Primitives.dll",
  1940. "tools/net461/System.Runtime.Serialization.Xml.dll",
  1941. "tools/net461/System.Runtime.dll",
  1942. "tools/net461/System.Security.Claims.dll",
  1943. "tools/net461/System.Security.Cryptography.Algorithms.dll",
  1944. "tools/net461/System.Security.Cryptography.Csp.dll",
  1945. "tools/net461/System.Security.Cryptography.Encoding.dll",
  1946. "tools/net461/System.Security.Cryptography.Primitives.dll",
  1947. "tools/net461/System.Security.Cryptography.X509Certificates.dll",
  1948. "tools/net461/System.Security.Principal.dll",
  1949. "tools/net461/System.Security.SecureString.dll",
  1950. "tools/net461/System.Text.Encoding.Extensions.dll",
  1951. "tools/net461/System.Text.Encoding.dll",
  1952. "tools/net461/System.Text.RegularExpressions.dll",
  1953. "tools/net461/System.Threading.Overlapped.dll",
  1954. "tools/net461/System.Threading.Tasks.Parallel.dll",
  1955. "tools/net461/System.Threading.Tasks.dll",
  1956. "tools/net461/System.Threading.Thread.dll",
  1957. "tools/net461/System.Threading.ThreadPool.dll",
  1958. "tools/net461/System.Threading.Timer.dll",
  1959. "tools/net461/System.Threading.dll",
  1960. "tools/net461/System.ValueTuple.dll",
  1961. "tools/net461/System.Xml.ReaderWriter.dll",
  1962. "tools/net461/System.Xml.XDocument.dll",
  1963. "tools/net461/System.Xml.XPath.XDocument.dll",
  1964. "tools/net461/System.Xml.XPath.dll",
  1965. "tools/net461/System.Xml.XmlDocument.dll",
  1966. "tools/net461/System.Xml.XmlSerializer.dll",
  1967. "tools/net461/netstandard.dll",
  1968. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  1969. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  1970. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json",
  1971. "tools/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll"
  1972. ]
  1973. },
  1974. "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
  1975. "sha512": "3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==",
  1976. "type": "package",
  1977. "path": "microsoft.extensions.caching.abstractions/8.0.0",
  1978. "files": [
  1979. ".nupkg.metadata",
  1980. ".signature.p7s",
  1981. "Icon.png",
  1982. "LICENSE.TXT",
  1983. "PACKAGE.md",
  1984. "THIRD-PARTY-NOTICES.TXT",
  1985. "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets",
  1986. "buildTransitive/net462/_._",
  1987. "buildTransitive/net6.0/_._",
  1988. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets",
  1989. "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll",
  1990. "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml",
  1991. "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.dll",
  1992. "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.xml",
  1993. "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll",
  1994. "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.xml",
  1995. "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll",
  1996. "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml",
  1997. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  1998. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  1999. "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512",
  2000. "microsoft.extensions.caching.abstractions.nuspec",
  2001. "useSharedDesignerContext.txt"
  2002. ]
  2003. },
  2004. "Microsoft.Extensions.Caching.Memory/8.0.0": {
  2005. "sha512": "7pqivmrZDzo1ADPkRwjy+8jtRKWRCPag9qPI+p7sgu7Q4QreWhcvbiWXsbhP+yY8XSiDvZpu2/LWdBv7PnmOpQ==",
  2006. "type": "package",
  2007. "path": "microsoft.extensions.caching.memory/8.0.0",
  2008. "files": [
  2009. ".nupkg.metadata",
  2010. ".signature.p7s",
  2011. "Icon.png",
  2012. "LICENSE.TXT",
  2013. "PACKAGE.md",
  2014. "THIRD-PARTY-NOTICES.TXT",
  2015. "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets",
  2016. "buildTransitive/net462/_._",
  2017. "buildTransitive/net6.0/_._",
  2018. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets",
  2019. "lib/net462/Microsoft.Extensions.Caching.Memory.dll",
  2020. "lib/net462/Microsoft.Extensions.Caching.Memory.xml",
  2021. "lib/net6.0/Microsoft.Extensions.Caching.Memory.dll",
  2022. "lib/net6.0/Microsoft.Extensions.Caching.Memory.xml",
  2023. "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll",
  2024. "lib/net7.0/Microsoft.Extensions.Caching.Memory.xml",
  2025. "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll",
  2026. "lib/net8.0/Microsoft.Extensions.Caching.Memory.xml",
  2027. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  2028. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  2029. "microsoft.extensions.caching.memory.8.0.0.nupkg.sha512",
  2030. "microsoft.extensions.caching.memory.nuspec",
  2031. "useSharedDesignerContext.txt"
  2032. ]
  2033. },
  2034. "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
  2035. "sha512": "3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==",
  2036. "type": "package",
  2037. "path": "microsoft.extensions.configuration.abstractions/8.0.0",
  2038. "files": [
  2039. ".nupkg.metadata",
  2040. ".signature.p7s",
  2041. "Icon.png",
  2042. "LICENSE.TXT",
  2043. "PACKAGE.md",
  2044. "THIRD-PARTY-NOTICES.TXT",
  2045. "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets",
  2046. "buildTransitive/net462/_._",
  2047. "buildTransitive/net6.0/_._",
  2048. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets",
  2049. "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll",
  2050. "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml",
  2051. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  2052. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  2053. "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  2054. "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  2055. "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  2056. "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  2057. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  2058. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  2059. "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512",
  2060. "microsoft.extensions.configuration.abstractions.nuspec",
  2061. "useSharedDesignerContext.txt"
  2062. ]
  2063. },
  2064. "Microsoft.Extensions.DependencyInjection/8.0.0": {
  2065. "sha512": "V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==",
  2066. "type": "package",
  2067. "path": "microsoft.extensions.dependencyinjection/8.0.0",
  2068. "files": [
  2069. ".nupkg.metadata",
  2070. ".signature.p7s",
  2071. "Icon.png",
  2072. "LICENSE.TXT",
  2073. "PACKAGE.md",
  2074. "THIRD-PARTY-NOTICES.TXT",
  2075. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets",
  2076. "buildTransitive/net462/_._",
  2077. "buildTransitive/net6.0/_._",
  2078. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
  2079. "lib/net462/Microsoft.Extensions.DependencyInjection.dll",
  2080. "lib/net462/Microsoft.Extensions.DependencyInjection.xml",
  2081. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
  2082. "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
  2083. "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll",
  2084. "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml",
  2085. "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll",
  2086. "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml",
  2087. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  2088. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  2089. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  2090. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  2091. "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512",
  2092. "microsoft.extensions.dependencyinjection.nuspec",
  2093. "useSharedDesignerContext.txt"
  2094. ]
  2095. },
  2096. "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {
  2097. "sha512": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==",
  2098. "type": "package",
  2099. "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0",
  2100. "files": [
  2101. ".nupkg.metadata",
  2102. ".signature.p7s",
  2103. "Icon.png",
  2104. "LICENSE.TXT",
  2105. "PACKAGE.md",
  2106. "THIRD-PARTY-NOTICES.TXT",
  2107. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  2108. "buildTransitive/net462/_._",
  2109. "buildTransitive/net6.0/_._",
  2110. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  2111. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2112. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2113. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2114. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2115. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2116. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2117. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2118. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2119. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2120. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2121. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  2122. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  2123. "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512",
  2124. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  2125. "useSharedDesignerContext.txt"
  2126. ]
  2127. },
  2128. "Microsoft.Extensions.Identity.Core/8.0.0": {
  2129. "sha512": "hnXHyIQc+uc2uNMcIbr43+oNBAPEhMpW6lE8ux3MOegRz50WBna4AItlZDY7Y+Id1LLBbf73osUqeTw7CQ371w==",
  2130. "type": "package",
  2131. "path": "microsoft.extensions.identity.core/8.0.0",
  2132. "files": [
  2133. ".nupkg.metadata",
  2134. ".signature.p7s",
  2135. "Icon.png",
  2136. "THIRD-PARTY-NOTICES.TXT",
  2137. "lib/net462/Microsoft.Extensions.Identity.Core.dll",
  2138. "lib/net462/Microsoft.Extensions.Identity.Core.xml",
  2139. "lib/net8.0/Microsoft.Extensions.Identity.Core.dll",
  2140. "lib/net8.0/Microsoft.Extensions.Identity.Core.xml",
  2141. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll",
  2142. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.xml",
  2143. "microsoft.extensions.identity.core.8.0.0.nupkg.sha512",
  2144. "microsoft.extensions.identity.core.nuspec"
  2145. ]
  2146. },
  2147. "Microsoft.Extensions.Identity.Stores/8.0.0": {
  2148. "sha512": "DmDCpSpngZDBm44wVmxCeYs4HGJr/m32jMItp6pfb7KKtqWYw2vybHRg880j18k/eSFyM4v9uONsnEPgDdi9lg==",
  2149. "type": "package",
  2150. "path": "microsoft.extensions.identity.stores/8.0.0",
  2151. "files": [
  2152. ".nupkg.metadata",
  2153. ".signature.p7s",
  2154. "Icon.png",
  2155. "THIRD-PARTY-NOTICES.TXT",
  2156. "lib/net462/Microsoft.Extensions.Identity.Stores.dll",
  2157. "lib/net462/Microsoft.Extensions.Identity.Stores.xml",
  2158. "lib/net8.0/Microsoft.Extensions.Identity.Stores.dll",
  2159. "lib/net8.0/Microsoft.Extensions.Identity.Stores.xml",
  2160. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll",
  2161. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.xml",
  2162. "microsoft.extensions.identity.stores.8.0.0.nupkg.sha512",
  2163. "microsoft.extensions.identity.stores.nuspec"
  2164. ]
  2165. },
  2166. "Microsoft.Extensions.Logging/8.0.0": {
  2167. "sha512": "tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==",
  2168. "type": "package",
  2169. "path": "microsoft.extensions.logging/8.0.0",
  2170. "files": [
  2171. ".nupkg.metadata",
  2172. ".signature.p7s",
  2173. "Icon.png",
  2174. "LICENSE.TXT",
  2175. "PACKAGE.md",
  2176. "THIRD-PARTY-NOTICES.TXT",
  2177. "buildTransitive/net461/Microsoft.Extensions.Logging.targets",
  2178. "buildTransitive/net462/_._",
  2179. "buildTransitive/net6.0/_._",
  2180. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets",
  2181. "lib/net462/Microsoft.Extensions.Logging.dll",
  2182. "lib/net462/Microsoft.Extensions.Logging.xml",
  2183. "lib/net6.0/Microsoft.Extensions.Logging.dll",
  2184. "lib/net6.0/Microsoft.Extensions.Logging.xml",
  2185. "lib/net7.0/Microsoft.Extensions.Logging.dll",
  2186. "lib/net7.0/Microsoft.Extensions.Logging.xml",
  2187. "lib/net8.0/Microsoft.Extensions.Logging.dll",
  2188. "lib/net8.0/Microsoft.Extensions.Logging.xml",
  2189. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  2190. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  2191. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  2192. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  2193. "microsoft.extensions.logging.8.0.0.nupkg.sha512",
  2194. "microsoft.extensions.logging.nuspec",
  2195. "useSharedDesignerContext.txt"
  2196. ]
  2197. },
  2198. "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
  2199. "sha512": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==",
  2200. "type": "package",
  2201. "path": "microsoft.extensions.logging.abstractions/8.0.0",
  2202. "files": [
  2203. ".nupkg.metadata",
  2204. ".signature.p7s",
  2205. "Icon.png",
  2206. "LICENSE.TXT",
  2207. "PACKAGE.md",
  2208. "THIRD-PARTY-NOTICES.TXT",
  2209. "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
  2210. "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  2211. "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  2212. "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  2213. "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  2214. "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  2215. "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  2216. "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  2217. "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  2218. "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  2219. "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  2220. "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  2221. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  2222. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  2223. "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
  2224. "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  2225. "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  2226. "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  2227. "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  2228. "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  2229. "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  2230. "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  2231. "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  2232. "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  2233. "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  2234. "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  2235. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  2236. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  2237. "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
  2238. "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  2239. "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  2240. "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  2241. "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  2242. "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  2243. "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  2244. "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  2245. "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  2246. "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  2247. "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  2248. "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  2249. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  2250. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  2251. "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
  2252. "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
  2253. "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets",
  2254. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  2255. "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  2256. "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
  2257. "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
  2258. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
  2259. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
  2260. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll",
  2261. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml",
  2262. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll",
  2263. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml",
  2264. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  2265. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  2266. "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512",
  2267. "microsoft.extensions.logging.abstractions.nuspec",
  2268. "useSharedDesignerContext.txt"
  2269. ]
  2270. },
  2271. "Microsoft.Extensions.Options/8.0.0": {
  2272. "sha512": "JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==",
  2273. "type": "package",
  2274. "path": "microsoft.extensions.options/8.0.0",
  2275. "files": [
  2276. ".nupkg.metadata",
  2277. ".signature.p7s",
  2278. "Icon.png",
  2279. "LICENSE.TXT",
  2280. "PACKAGE.md",
  2281. "THIRD-PARTY-NOTICES.TXT",
  2282. "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll",
  2283. "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2284. "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2285. "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2286. "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2287. "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2288. "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2289. "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2290. "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2291. "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2292. "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2293. "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2294. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2295. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  2296. "buildTransitive/net461/Microsoft.Extensions.Options.targets",
  2297. "buildTransitive/net462/Microsoft.Extensions.Options.targets",
  2298. "buildTransitive/net6.0/Microsoft.Extensions.Options.targets",
  2299. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets",
  2300. "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets",
  2301. "lib/net462/Microsoft.Extensions.Options.dll",
  2302. "lib/net462/Microsoft.Extensions.Options.xml",
  2303. "lib/net6.0/Microsoft.Extensions.Options.dll",
  2304. "lib/net6.0/Microsoft.Extensions.Options.xml",
  2305. "lib/net7.0/Microsoft.Extensions.Options.dll",
  2306. "lib/net7.0/Microsoft.Extensions.Options.xml",
  2307. "lib/net8.0/Microsoft.Extensions.Options.dll",
  2308. "lib/net8.0/Microsoft.Extensions.Options.xml",
  2309. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  2310. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  2311. "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
  2312. "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
  2313. "microsoft.extensions.options.8.0.0.nupkg.sha512",
  2314. "microsoft.extensions.options.nuspec",
  2315. "useSharedDesignerContext.txt"
  2316. ]
  2317. },
  2318. "Microsoft.Extensions.Primitives/8.0.0": {
  2319. "sha512": "bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==",
  2320. "type": "package",
  2321. "path": "microsoft.extensions.primitives/8.0.0",
  2322. "files": [
  2323. ".nupkg.metadata",
  2324. ".signature.p7s",
  2325. "Icon.png",
  2326. "LICENSE.TXT",
  2327. "PACKAGE.md",
  2328. "THIRD-PARTY-NOTICES.TXT",
  2329. "buildTransitive/net461/Microsoft.Extensions.Primitives.targets",
  2330. "buildTransitive/net462/_._",
  2331. "buildTransitive/net6.0/_._",
  2332. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
  2333. "lib/net462/Microsoft.Extensions.Primitives.dll",
  2334. "lib/net462/Microsoft.Extensions.Primitives.xml",
  2335. "lib/net6.0/Microsoft.Extensions.Primitives.dll",
  2336. "lib/net6.0/Microsoft.Extensions.Primitives.xml",
  2337. "lib/net7.0/Microsoft.Extensions.Primitives.dll",
  2338. "lib/net7.0/Microsoft.Extensions.Primitives.xml",
  2339. "lib/net8.0/Microsoft.Extensions.Primitives.dll",
  2340. "lib/net8.0/Microsoft.Extensions.Primitives.xml",
  2341. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  2342. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  2343. "microsoft.extensions.primitives.8.0.0.nupkg.sha512",
  2344. "microsoft.extensions.primitives.nuspec",
  2345. "useSharedDesignerContext.txt"
  2346. ]
  2347. },
  2348. "Microsoft.Identity.Client/4.60.3": {
  2349. "sha512": "jve1RzmSpBhGlqMzPva6VfRbLMLZZc1Q8WRVZf8+iEruQkBgDTJPq8OeTehcY4GGYG1j6UB1xVofVE+n4BLDdw==",
  2350. "type": "package",
  2351. "path": "microsoft.identity.client/4.60.3",
  2352. "files": [
  2353. ".nupkg.metadata",
  2354. ".signature.p7s",
  2355. "README.md",
  2356. "lib/monoandroid12.0/Microsoft.Identity.Client.dll",
  2357. "lib/monoandroid12.0/Microsoft.Identity.Client.xml",
  2358. "lib/net462/Microsoft.Identity.Client.dll",
  2359. "lib/net462/Microsoft.Identity.Client.xml",
  2360. "lib/net6.0-android31.0/Microsoft.Identity.Client.dll",
  2361. "lib/net6.0-android31.0/Microsoft.Identity.Client.xml",
  2362. "lib/net6.0-ios15.4/Microsoft.Identity.Client.dll",
  2363. "lib/net6.0-ios15.4/Microsoft.Identity.Client.xml",
  2364. "lib/net6.0-windows7.0/Microsoft.Identity.Client.dll",
  2365. "lib/net6.0-windows7.0/Microsoft.Identity.Client.xml",
  2366. "lib/net6.0/Microsoft.Identity.Client.dll",
  2367. "lib/net6.0/Microsoft.Identity.Client.xml",
  2368. "lib/netstandard2.0/Microsoft.Identity.Client.dll",
  2369. "lib/netstandard2.0/Microsoft.Identity.Client.xml",
  2370. "lib/uap10.0.17763/Microsoft.Identity.Client.dll",
  2371. "lib/uap10.0.17763/Microsoft.Identity.Client.pri",
  2372. "lib/uap10.0.17763/Microsoft.Identity.Client.xml",
  2373. "lib/xamarinios10/Microsoft.Identity.Client.dll",
  2374. "lib/xamarinios10/Microsoft.Identity.Client.xml",
  2375. "microsoft.identity.client.4.60.3.nupkg.sha512",
  2376. "microsoft.identity.client.nuspec"
  2377. ]
  2378. },
  2379. "Microsoft.Identity.Client.Extensions.Msal/4.60.3": {
  2380. "sha512": "X1Cz14/RbmlLshusE5u2zfG+5ul6ttgou19BZe5Mdw1qm6fgOI9/imBB2TIsx2UD7nkgd2+MCSzhbukZf7udeg==",
  2381. "type": "package",
  2382. "path": "microsoft.identity.client.extensions.msal/4.60.3",
  2383. "files": [
  2384. ".nupkg.metadata",
  2385. ".signature.p7s",
  2386. "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll",
  2387. "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.xml",
  2388. "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll",
  2389. "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.xml",
  2390. "microsoft.identity.client.extensions.msal.4.60.3.nupkg.sha512",
  2391. "microsoft.identity.client.extensions.msal.nuspec"
  2392. ]
  2393. },
  2394. "Microsoft.IdentityModel.Abstractions/6.35.0": {
  2395. "sha512": "xuR8E4Rd96M41CnUSCiOJ2DBh+z+zQSmyrYHdYhD6K4fXBcQGVnRCFQ0efROUYpP+p0zC1BLKr0JRpVuujTZSg==",
  2396. "type": "package",
  2397. "path": "microsoft.identitymodel.abstractions/6.35.0",
  2398. "files": [
  2399. ".nupkg.metadata",
  2400. ".signature.p7s",
  2401. "lib/net45/Microsoft.IdentityModel.Abstractions.dll",
  2402. "lib/net45/Microsoft.IdentityModel.Abstractions.xml",
  2403. "lib/net461/Microsoft.IdentityModel.Abstractions.dll",
  2404. "lib/net461/Microsoft.IdentityModel.Abstractions.xml",
  2405. "lib/net462/Microsoft.IdentityModel.Abstractions.dll",
  2406. "lib/net462/Microsoft.IdentityModel.Abstractions.xml",
  2407. "lib/net472/Microsoft.IdentityModel.Abstractions.dll",
  2408. "lib/net472/Microsoft.IdentityModel.Abstractions.xml",
  2409. "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll",
  2410. "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml",
  2411. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll",
  2412. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml",
  2413. "microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512",
  2414. "microsoft.identitymodel.abstractions.nuspec"
  2415. ]
  2416. },
  2417. "Microsoft.IdentityModel.JsonWebTokens/6.35.0": {
  2418. "sha512": "9wxai3hKgZUb4/NjdRKfQd0QJvtXKDlvmGMYACbEC8DFaicMFCFhQFZq9ZET1kJLwZahf2lfY5Gtcpsx8zYzbg==",
  2419. "type": "package",
  2420. "path": "microsoft.identitymodel.jsonwebtokens/6.35.0",
  2421. "files": [
  2422. ".nupkg.metadata",
  2423. ".signature.p7s",
  2424. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  2425. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  2426. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  2427. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  2428. "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll",
  2429. "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml",
  2430. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll",
  2431. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml",
  2432. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  2433. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  2434. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  2435. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  2436. "microsoft.identitymodel.jsonwebtokens.6.35.0.nupkg.sha512",
  2437. "microsoft.identitymodel.jsonwebtokens.nuspec"
  2438. ]
  2439. },
  2440. "Microsoft.IdentityModel.Logging/6.35.0": {
  2441. "sha512": "jePrSfGAmqT81JDCNSY+fxVWoGuJKt9e6eJ+vT7+quVS55nWl//jGjUQn4eFtVKt4rt5dXaleZdHRB9J9AJZ7Q==",
  2442. "type": "package",
  2443. "path": "microsoft.identitymodel.logging/6.35.0",
  2444. "files": [
  2445. ".nupkg.metadata",
  2446. ".signature.p7s",
  2447. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  2448. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  2449. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  2450. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  2451. "lib/net462/Microsoft.IdentityModel.Logging.dll",
  2452. "lib/net462/Microsoft.IdentityModel.Logging.xml",
  2453. "lib/net472/Microsoft.IdentityModel.Logging.dll",
  2454. "lib/net472/Microsoft.IdentityModel.Logging.xml",
  2455. "lib/net6.0/Microsoft.IdentityModel.Logging.dll",
  2456. "lib/net6.0/Microsoft.IdentityModel.Logging.xml",
  2457. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  2458. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  2459. "microsoft.identitymodel.logging.6.35.0.nupkg.sha512",
  2460. "microsoft.identitymodel.logging.nuspec"
  2461. ]
  2462. },
  2463. "Microsoft.IdentityModel.Protocols/6.35.0": {
  2464. "sha512": "BPQhlDzdFvv1PzaUxNSk+VEPwezlDEVADIKmyxubw7IiELK18uJ06RQ9QKKkds30XI+gDu9n8j24XQ8w7fjWcg==",
  2465. "type": "package",
  2466. "path": "microsoft.identitymodel.protocols/6.35.0",
  2467. "files": [
  2468. ".nupkg.metadata",
  2469. ".signature.p7s",
  2470. "lib/net45/Microsoft.IdentityModel.Protocols.dll",
  2471. "lib/net45/Microsoft.IdentityModel.Protocols.xml",
  2472. "lib/net461/Microsoft.IdentityModel.Protocols.dll",
  2473. "lib/net461/Microsoft.IdentityModel.Protocols.xml",
  2474. "lib/net462/Microsoft.IdentityModel.Protocols.dll",
  2475. "lib/net462/Microsoft.IdentityModel.Protocols.xml",
  2476. "lib/net472/Microsoft.IdentityModel.Protocols.dll",
  2477. "lib/net472/Microsoft.IdentityModel.Protocols.xml",
  2478. "lib/net6.0/Microsoft.IdentityModel.Protocols.dll",
  2479. "lib/net6.0/Microsoft.IdentityModel.Protocols.xml",
  2480. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
  2481. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
  2482. "microsoft.identitymodel.protocols.6.35.0.nupkg.sha512",
  2483. "microsoft.identitymodel.protocols.nuspec"
  2484. ]
  2485. },
  2486. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.35.0": {
  2487. "sha512": "LMtVqnECCCdSmyFoCOxIE5tXQqkOLrvGrL7OxHg41DIm1bpWtaCdGyVcTAfOQpJXvzND9zUKIN/lhngPkYR8vg==",
  2488. "type": "package",
  2489. "path": "microsoft.identitymodel.protocols.openidconnect/6.35.0",
  2490. "files": [
  2491. ".nupkg.metadata",
  2492. ".signature.p7s",
  2493. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  2494. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  2495. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  2496. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  2497. "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  2498. "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  2499. "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  2500. "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  2501. "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  2502. "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  2503. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  2504. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  2505. "microsoft.identitymodel.protocols.openidconnect.6.35.0.nupkg.sha512",
  2506. "microsoft.identitymodel.protocols.openidconnect.nuspec"
  2507. ]
  2508. },
  2509. "Microsoft.IdentityModel.Tokens/6.35.0": {
  2510. "sha512": "RN7lvp7s3Boucg1NaNAbqDbxtlLj5Qeb+4uSS1TeK5FSBVM40P4DKaTKChT43sHyKfh7V0zkrMph6DdHvyA4bg==",
  2511. "type": "package",
  2512. "path": "microsoft.identitymodel.tokens/6.35.0",
  2513. "files": [
  2514. ".nupkg.metadata",
  2515. ".signature.p7s",
  2516. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  2517. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  2518. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  2519. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  2520. "lib/net462/Microsoft.IdentityModel.Tokens.dll",
  2521. "lib/net462/Microsoft.IdentityModel.Tokens.xml",
  2522. "lib/net472/Microsoft.IdentityModel.Tokens.dll",
  2523. "lib/net472/Microsoft.IdentityModel.Tokens.xml",
  2524. "lib/net6.0/Microsoft.IdentityModel.Tokens.dll",
  2525. "lib/net6.0/Microsoft.IdentityModel.Tokens.xml",
  2526. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  2527. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  2528. "microsoft.identitymodel.tokens.6.35.0.nupkg.sha512",
  2529. "microsoft.identitymodel.tokens.nuspec"
  2530. ]
  2531. },
  2532. "Microsoft.InformationProtection.File/1.14.128": {
  2533. "sha512": "ZetXGuHtHUra2nOKILuZUTyvFzLmRbWSAfReZCp1ZC7OvkUcHeA8DX+tBlpQL1YZfWj3f5tRdo1xl4f05l6e0Q==",
  2534. "type": "package",
  2535. "path": "microsoft.informationprotection.file/1.14.128",
  2536. "files": [
  2537. ".nupkg.metadata",
  2538. ".signature.p7s",
  2539. "build/native/Microsoft.InformationProtection.File.targets",
  2540. "build/native/bins/debug/amd64/libbz2-1.dll",
  2541. "build/native/bins/debug/amd64/libffi-8.dll",
  2542. "build/native/bins/debug/amd64/libgio-2.0-0.dll",
  2543. "build/native/bins/debug/amd64/libglib-2.0-0.dll",
  2544. "build/native/bins/debug/amd64/libgmodule-2.0-0.dll",
  2545. "build/native/bins/debug/amd64/libgobject-2.0-0.dll",
  2546. "build/native/bins/debug/amd64/libgsf-1-114.dll",
  2547. "build/native/bins/debug/amd64/libiconv-2.dll",
  2548. "build/native/bins/debug/amd64/libintl-8.dll",
  2549. "build/native/bins/debug/amd64/liblzma-5.dll",
  2550. "build/native/bins/debug/amd64/libpcre2-8-0.dll",
  2551. "build/native/bins/debug/amd64/libwinpthread-1.dll",
  2552. "build/native/bins/debug/amd64/libxml2-2.dll",
  2553. "build/native/bins/debug/amd64/mip_ClientTelemetry.dll",
  2554. "build/native/bins/debug/amd64/mip_core.dll",
  2555. "build/native/bins/debug/amd64/mip_file_sdk.dll",
  2556. "build/native/bins/debug/amd64/mip_protection_sdk.dll",
  2557. "build/native/bins/debug/amd64/mip_upe_sdk.dll",
  2558. "build/native/bins/debug/amd64/zlib1.dll",
  2559. "build/native/bins/debug/x86/libbz2-1.dll",
  2560. "build/native/bins/debug/x86/libffi-8.dll",
  2561. "build/native/bins/debug/x86/libgcc_s_dw2-1.dll",
  2562. "build/native/bins/debug/x86/libgio-2.0-0.dll",
  2563. "build/native/bins/debug/x86/libglib-2.0-0.dll",
  2564. "build/native/bins/debug/x86/libgmodule-2.0-0.dll",
  2565. "build/native/bins/debug/x86/libgobject-2.0-0.dll",
  2566. "build/native/bins/debug/x86/libgsf-1-114.dll",
  2567. "build/native/bins/debug/x86/libiconv-2.dll",
  2568. "build/native/bins/debug/x86/libintl-8.dll",
  2569. "build/native/bins/debug/x86/liblzma-5.dll",
  2570. "build/native/bins/debug/x86/libpcre2-8-0.dll",
  2571. "build/native/bins/debug/x86/libwinpthread-1.dll",
  2572. "build/native/bins/debug/x86/libxml2-2.dll",
  2573. "build/native/bins/debug/x86/mip_ClientTelemetry.dll",
  2574. "build/native/bins/debug/x86/mip_core.dll",
  2575. "build/native/bins/debug/x86/mip_file_sdk.dll",
  2576. "build/native/bins/debug/x86/mip_protection_sdk.dll",
  2577. "build/native/bins/debug/x86/mip_upe_sdk.dll",
  2578. "build/native/bins/debug/x86/zlib1.dll",
  2579. "build/native/bins/release/amd64/libbz2-1.dll",
  2580. "build/native/bins/release/amd64/libffi-8.dll",
  2581. "build/native/bins/release/amd64/libgio-2.0-0.dll",
  2582. "build/native/bins/release/amd64/libglib-2.0-0.dll",
  2583. "build/native/bins/release/amd64/libgmodule-2.0-0.dll",
  2584. "build/native/bins/release/amd64/libgobject-2.0-0.dll",
  2585. "build/native/bins/release/amd64/libgsf-1-114.dll",
  2586. "build/native/bins/release/amd64/libiconv-2.dll",
  2587. "build/native/bins/release/amd64/libintl-8.dll",
  2588. "build/native/bins/release/amd64/liblzma-5.dll",
  2589. "build/native/bins/release/amd64/libpcre2-8-0.dll",
  2590. "build/native/bins/release/amd64/libwinpthread-1.dll",
  2591. "build/native/bins/release/amd64/libxml2-2.dll",
  2592. "build/native/bins/release/amd64/mip_ClientTelemetry.dll",
  2593. "build/native/bins/release/amd64/mip_core.dll",
  2594. "build/native/bins/release/amd64/mip_file_sdk.dll",
  2595. "build/native/bins/release/amd64/mip_protection_sdk.dll",
  2596. "build/native/bins/release/amd64/mip_upe_sdk.dll",
  2597. "build/native/bins/release/amd64/zlib1.dll",
  2598. "build/native/bins/release/x86/libbz2-1.dll",
  2599. "build/native/bins/release/x86/libffi-8.dll",
  2600. "build/native/bins/release/x86/libgcc_s_dw2-1.dll",
  2601. "build/native/bins/release/x86/libgio-2.0-0.dll",
  2602. "build/native/bins/release/x86/libglib-2.0-0.dll",
  2603. "build/native/bins/release/x86/libgmodule-2.0-0.dll",
  2604. "build/native/bins/release/x86/libgobject-2.0-0.dll",
  2605. "build/native/bins/release/x86/libgsf-1-114.dll",
  2606. "build/native/bins/release/x86/libiconv-2.dll",
  2607. "build/native/bins/release/x86/libintl-8.dll",
  2608. "build/native/bins/release/x86/liblzma-5.dll",
  2609. "build/native/bins/release/x86/libpcre2-8-0.dll",
  2610. "build/native/bins/release/x86/libwinpthread-1.dll",
  2611. "build/native/bins/release/x86/libxml2-2.dll",
  2612. "build/native/bins/release/x86/mip_ClientTelemetry.dll",
  2613. "build/native/bins/release/x86/mip_core.dll",
  2614. "build/native/bins/release/x86/mip_file_sdk.dll",
  2615. "build/native/bins/release/x86/mip_protection_sdk.dll",
  2616. "build/native/bins/release/x86/mip_upe_sdk.dll",
  2617. "build/native/bins/release/x86/zlib1.dll",
  2618. "build/native/include/mip/audit_delegate.h",
  2619. "build/native/include/mip/audit_event.h",
  2620. "build/native/include/mip/common_types.h",
  2621. "build/native/include/mip/delegate_response.h",
  2622. "build/native/include/mip/diagnostic_configuration.h",
  2623. "build/native/include/mip/diagnostic_delegate.h",
  2624. "build/native/include/mip/diagnostic_types.h",
  2625. "build/native/include/mip/dns_redirection.h",
  2626. "build/native/include/mip/error.h",
  2627. "build/native/include/mip/event.h",
  2628. "build/native/include/mip/event_context.h",
  2629. "build/native/include/mip/event_property.h",
  2630. "build/native/include/mip/file/file_engine.h",
  2631. "build/native/include/mip/file/file_error.h",
  2632. "build/native/include/mip/file/file_execution_state.h",
  2633. "build/native/include/mip/file/file_export.h",
  2634. "build/native/include/mip/file/file_handler.h",
  2635. "build/native/include/mip/file/file_inspector.h",
  2636. "build/native/include/mip/file/file_profile.h",
  2637. "build/native/include/mip/file/file_status.h",
  2638. "build/native/include/mip/file/labeling_options.h",
  2639. "build/native/include/mip/file/msg_inspector.h",
  2640. "build/native/include/mip/file/protection_settings.h",
  2641. "build/native/include/mip/flighting_feature.h",
  2642. "build/native/include/mip/http_delegate.h",
  2643. "build/native/include/mip/http_operation.h",
  2644. "build/native/include/mip/http_request.h",
  2645. "build/native/include/mip/http_response.h",
  2646. "build/native/include/mip/json_delegate.h",
  2647. "build/native/include/mip/json_document.h",
  2648. "build/native/include/mip/json_value.h",
  2649. "build/native/include/mip/log_message_data.h",
  2650. "build/native/include/mip/logger_delegate.h",
  2651. "build/native/include/mip/mip_configuration.h",
  2652. "build/native/include/mip/mip_context.h",
  2653. "build/native/include/mip/mip_export.h",
  2654. "build/native/include/mip/mip_namespace.h",
  2655. "build/native/include/mip/protection/delegation_license.h",
  2656. "build/native/include/mip/protection/delegation_license_settings.h",
  2657. "build/native/include/mip/protection/get_template_settings.h",
  2658. "build/native/include/mip/protection/license_application_data.h",
  2659. "build/native/include/mip/protection/license_connection_info.h",
  2660. "build/native/include/mip/protection/license_descriptor.h",
  2661. "build/native/include/mip/protection/license_rights_data.h",
  2662. "build/native/include/mip/protection/parsed_publishing_license.h",
  2663. "build/native/include/mip/protection/parsed_publishing_license_builder.h",
  2664. "build/native/include/mip/protection/protection_common_settings.h",
  2665. "build/native/include/mip/protection/protection_common_types.h",
  2666. "build/native/include/mip/protection/protection_descriptor_builder.h",
  2667. "build/native/include/mip/protection/protection_engine.h",
  2668. "build/native/include/mip/protection/protection_handler.h",
  2669. "build/native/include/mip/protection/protection_profile.h",
  2670. "build/native/include/mip/protection/publishing_use_license_request.h",
  2671. "build/native/include/mip/protection/rights.h",
  2672. "build/native/include/mip/protection/roles.h",
  2673. "build/native/include/mip/protection/template_descriptor.h",
  2674. "build/native/include/mip/protection/tenant_information.h",
  2675. "build/native/include/mip/protection_descriptor.h",
  2676. "build/native/include/mip/storage_delegate.h",
  2677. "build/native/include/mip/storage_table.h",
  2678. "build/native/include/mip/stream.h",
  2679. "build/native/include/mip/stream_utils.h",
  2680. "build/native/include/mip/task_dispatcher_delegate.h",
  2681. "build/native/include/mip/telemetry_delegate.h",
  2682. "build/native/include/mip/telemetry_event.h",
  2683. "build/native/include/mip/upe/action.h",
  2684. "build/native/include/mip/upe/add_content_footer_action.h",
  2685. "build/native/include/mip/upe/add_content_header_action.h",
  2686. "build/native/include/mip/upe/add_watermark_action.h",
  2687. "build/native/include/mip/upe/apply_label_action.h",
  2688. "build/native/include/mip/upe/classification_request.h",
  2689. "build/native/include/mip/upe/classification_result.h",
  2690. "build/native/include/mip/upe/content_label.h",
  2691. "build/native/include/mip/upe/custom_action.h",
  2692. "build/native/include/mip/upe/detailed_classification_result.h",
  2693. "build/native/include/mip/upe/execution_state.h",
  2694. "build/native/include/mip/upe/justify_action.h",
  2695. "build/native/include/mip/upe/label.h",
  2696. "build/native/include/mip/upe/metadata_action.h",
  2697. "build/native/include/mip/upe/metadata_entry.h",
  2698. "build/native/include/mip/upe/metadata_version.h",
  2699. "build/native/include/mip/upe/policy_engine.h",
  2700. "build/native/include/mip/upe/policy_handler.h",
  2701. "build/native/include/mip/upe/policy_profile.h",
  2702. "build/native/include/mip/upe/protect_adhoc_action.h",
  2703. "build/native/include/mip/upe/protect_adhoc_dk_action.h",
  2704. "build/native/include/mip/upe/protect_by_encrypt_only_action.h",
  2705. "build/native/include/mip/upe/protect_by_template_action.h",
  2706. "build/native/include/mip/upe/protect_do_not_forward_action.h",
  2707. "build/native/include/mip/upe/protect_do_not_forward_dk_action.h",
  2708. "build/native/include/mip/upe/recommend_label_action.h",
  2709. "build/native/include/mip/upe/remove_content_footer_action.h",
  2710. "build/native/include/mip/upe/remove_content_header_action.h",
  2711. "build/native/include/mip/upe/remove_protection_action.h",
  2712. "build/native/include/mip/upe/remove_watermark_action.h",
  2713. "build/native/include/mip/upe/sensitivity_types_rule_package.h",
  2714. "build/native/include/mip/user_rights.h",
  2715. "build/native/include/mip/user_roles.h",
  2716. "build/native/include/mip/version.h",
  2717. "build/native/include/mip/version.inc",
  2718. "build/native/include/mip/xml_delegate.h",
  2719. "build/native/include/mip/xml_document.h",
  2720. "build/native/include/mip/xml_node.h",
  2721. "build/native/include/mip/xml_reader.h",
  2722. "build/native/include/mip_cc/application_info_cc.h",
  2723. "build/native/include/mip_cc/auth_callback_cc.h",
  2724. "build/native/include/mip_cc/common_types_cc.h",
  2725. "build/native/include/mip_cc/consent_callback_cc.h",
  2726. "build/native/include/mip_cc/dictionary_cc.h",
  2727. "build/native/include/mip_cc/error_cc.h",
  2728. "build/native/include/mip_cc/flighting_feature_cc.h",
  2729. "build/native/include/mip_cc/http_delegate_cc.h",
  2730. "build/native/include/mip_cc/identity_cc.h",
  2731. "build/native/include/mip_cc/logger_delegate_cc.h",
  2732. "build/native/include/mip_cc/mip_context_cc.h",
  2733. "build/native/include/mip_cc/mip_macros_cc.h",
  2734. "build/native/include/mip_cc/protection/delegation_license_cc.h",
  2735. "build/native/include/mip_cc/protection/protection_crypto_types_cc.h",
  2736. "build/native/include/mip_cc/protection/protection_engine_cc.h",
  2737. "build/native/include/mip_cc/protection/protection_handler_cc.h",
  2738. "build/native/include/mip_cc/protection/protection_profile_cc.h",
  2739. "build/native/include/mip_cc/protection/template_descriptor_cc.h",
  2740. "build/native/include/mip_cc/protection_descriptor_cc.h",
  2741. "build/native/include/mip_cc/result_cc.h",
  2742. "build/native/include/mip_cc/stream_cc.h",
  2743. "build/native/include/mip_cc/string_list_cc.h",
  2744. "build/native/include/mip_cc/task_dispatcher_delegate_cc.h",
  2745. "build/native/include/mip_cc/telemetry_configuration_cc.h",
  2746. "build/native/include/mip_cc/upe/action_cc.h",
  2747. "build/native/include/mip_cc/upe/action_result_cc.h",
  2748. "build/native/include/mip_cc/upe/add_content_footer_action_cc.h",
  2749. "build/native/include/mip_cc/upe/add_content_header_action_cc.h",
  2750. "build/native/include/mip_cc/upe/add_watermark_action_cc.h",
  2751. "build/native/include/mip_cc/upe/application_action_state_cc.h",
  2752. "build/native/include/mip_cc/upe/content_label_cc.h",
  2753. "build/native/include/mip_cc/upe/custom_action_cc.h",
  2754. "build/native/include/mip_cc/upe/document_state_cc.h",
  2755. "build/native/include/mip_cc/upe/justify_action_cc.h",
  2756. "build/native/include/mip_cc/upe/label_cc.h",
  2757. "build/native/include/mip_cc/upe/metadata_action_cc.h",
  2758. "build/native/include/mip_cc/upe/metadata_dictionary_cc.h",
  2759. "build/native/include/mip_cc/upe/policy_engine_cc.h",
  2760. "build/native/include/mip_cc/upe/policy_handler_cc.h",
  2761. "build/native/include/mip_cc/upe/policy_profile_cc.h",
  2762. "build/native/include/mip_cc/upe/protect_adhoc_action_cc.h",
  2763. "build/native/include/mip_cc/upe/protect_adhoc_dk_action_cc.h",
  2764. "build/native/include/mip_cc/upe/protect_by_encrypt_only_action_cc.h",
  2765. "build/native/include/mip_cc/upe/protect_by_template_action_cc.h",
  2766. "build/native/include/mip_cc/upe/protect_do_not_forward_action_cc.h",
  2767. "build/native/include/mip_cc/upe/protect_do_not_forward_dk_action_cc.h",
  2768. "build/native/include/mip_cc/upe/remove_content_footer_action_cc.h",
  2769. "build/native/include/mip_cc/upe/remove_content_header_action_cc.h",
  2770. "build/native/include/mip_cc/upe/remove_protection_action_cc.h",
  2771. "build/native/include/mip_cc/upe/remove_watermark_action_cc.h",
  2772. "build/native/include/mip_cc/upe/sensitivity_type_cc.h",
  2773. "build/native/lib/debug/amd64/mip_file_sdk.lib",
  2774. "build/native/lib/debug/amd64/mip_protection_sdk.lib",
  2775. "build/native/lib/debug/amd64/mip_upe_sdk.lib",
  2776. "build/native/lib/debug/x86/mip_file_sdk.lib",
  2777. "build/native/lib/debug/x86/mip_protection_sdk.lib",
  2778. "build/native/lib/debug/x86/mip_upe_sdk.lib",
  2779. "build/native/lib/release/amd64/mip_file_sdk.lib",
  2780. "build/native/lib/release/amd64/mip_protection_sdk.lib",
  2781. "build/native/lib/release/amd64/mip_upe_sdk.lib",
  2782. "build/native/lib/release/x86/mip_file_sdk.lib",
  2783. "build/native/lib/release/x86/mip_protection_sdk.lib",
  2784. "build/native/lib/release/x86/mip_upe_sdk.lib",
  2785. "build/net40/Microsoft.InformationProtection.File.targets",
  2786. "build/netstandard2.0/Microsoft.InformationProtection.File.targets",
  2787. "dotnet/win7-x64/native/debug/mip_dotnet.dll",
  2788. "dotnet/win7-x64/native/release/mip_dotnet.dll",
  2789. "dotnet/win7-x86/native/debug/mip_dotnet.dll",
  2790. "dotnet/win7-x86/native/release/mip_dotnet.dll",
  2791. "icon.png",
  2792. "lib/LICENSE.txt",
  2793. "lib/LicenseTerms.rtf",
  2794. "lib/ThirdPartyDependencyVersions-x64.txt",
  2795. "lib/ThirdPartyDependencyVersions-x86.txt",
  2796. "lib/ThirdPartyNotice.txt",
  2797. "lib/net40/Microsoft.InformationProtection.dll",
  2798. "lib/net40/Microsoft.InformationProtection.xml",
  2799. "lib/netstandard2.0/Microsoft.InformationProtection.dll",
  2800. "lib/netstandard2.0/Microsoft.InformationProtection.xml",
  2801. "lib/readme.md",
  2802. "lib/redist.txt",
  2803. "lib/version.txt",
  2804. "microsoft.informationprotection.file.1.14.128.nupkg.sha512",
  2805. "microsoft.informationprotection.file.nuspec"
  2806. ]
  2807. },
  2808. "Microsoft.Net.Http/2.0.20710": {
  2809. "sha512": "OsB/5QO9tYJRLYIgBOhRl4Tssh3pw7+UAO9tMGMBg63f98GfjsniVIwLWRC0vcRr/F6HLP/NvRlHyGBhtD7Bmw==",
  2810. "type": "package",
  2811. "path": "microsoft.net.http/2.0.20710",
  2812. "files": [
  2813. ".nupkg.metadata",
  2814. ".signature.p7s",
  2815. "lib/net40/System.Net.Http.WebRequest.dll",
  2816. "lib/net40/System.Net.Http.WebRequest.xml",
  2817. "lib/net40/System.Net.Http.dll",
  2818. "lib/net40/System.Net.Http.xml",
  2819. "lib/net45/_._",
  2820. "microsoft.net.http.2.0.20710.nupkg.sha512",
  2821. "microsoft.net.http.nuspec"
  2822. ]
  2823. },
  2824. "Microsoft.NETCore.Platforms/1.1.0": {
  2825. "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
  2826. "type": "package",
  2827. "path": "microsoft.netcore.platforms/1.1.0",
  2828. "files": [
  2829. ".nupkg.metadata",
  2830. ".signature.p7s",
  2831. "ThirdPartyNotices.txt",
  2832. "dotnet_library_license.txt",
  2833. "lib/netstandard1.0/_._",
  2834. "microsoft.netcore.platforms.1.1.0.nupkg.sha512",
  2835. "microsoft.netcore.platforms.nuspec",
  2836. "runtime.json"
  2837. ]
  2838. },
  2839. "Microsoft.NETCore.Targets/1.1.0": {
  2840. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  2841. "type": "package",
  2842. "path": "microsoft.netcore.targets/1.1.0",
  2843. "files": [
  2844. ".nupkg.metadata",
  2845. ".signature.p7s",
  2846. "ThirdPartyNotices.txt",
  2847. "dotnet_library_license.txt",
  2848. "lib/netstandard1.0/_._",
  2849. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  2850. "microsoft.netcore.targets.nuspec",
  2851. "runtime.json"
  2852. ]
  2853. },
  2854. "Microsoft.OpenApi/1.2.3": {
  2855. "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  2856. "type": "package",
  2857. "path": "microsoft.openapi/1.2.3",
  2858. "files": [
  2859. ".nupkg.metadata",
  2860. ".signature.p7s",
  2861. "lib/net46/Microsoft.OpenApi.dll",
  2862. "lib/net46/Microsoft.OpenApi.pdb",
  2863. "lib/net46/Microsoft.OpenApi.xml",
  2864. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  2865. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  2866. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  2867. "microsoft.openapi.1.2.3.nupkg.sha512",
  2868. "microsoft.openapi.nuspec"
  2869. ]
  2870. },
  2871. "Microsoft.SqlServer.Server/1.0.0": {
  2872. "sha512": "N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==",
  2873. "type": "package",
  2874. "path": "microsoft.sqlserver.server/1.0.0",
  2875. "files": [
  2876. ".nupkg.metadata",
  2877. ".signature.p7s",
  2878. "dotnet.png",
  2879. "lib/net46/Microsoft.SqlServer.Server.dll",
  2880. "lib/net46/Microsoft.SqlServer.Server.pdb",
  2881. "lib/net46/Microsoft.SqlServer.Server.xml",
  2882. "lib/netstandard2.0/Microsoft.SqlServer.Server.dll",
  2883. "lib/netstandard2.0/Microsoft.SqlServer.Server.pdb",
  2884. "lib/netstandard2.0/Microsoft.SqlServer.Server.xml",
  2885. "microsoft.sqlserver.server.1.0.0.nupkg.sha512",
  2886. "microsoft.sqlserver.server.nuspec"
  2887. ]
  2888. },
  2889. "Microsoft.Web.Infrastructure/1.0.0": {
  2890. "sha512": "FNmvLn5m2LTU/Rs2KWVo0SIIh9Ek+U0ojex7xeDaSHw/zgEP77A8vY5cVWgUtBGS8MJfDGNn8rpXJWEIQaPwTg==",
  2891. "type": "package",
  2892. "path": "microsoft.web.infrastructure/1.0.0",
  2893. "files": [
  2894. ".nupkg.metadata",
  2895. ".signature.p7s",
  2896. "lib/net40/Microsoft.Web.Infrastructure.dll",
  2897. "microsoft.web.infrastructure.1.0.0.nupkg.sha512",
  2898. "microsoft.web.infrastructure.nuspec"
  2899. ]
  2900. },
  2901. "Newtonsoft.Json/13.0.3": {
  2902. "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
  2903. "type": "package",
  2904. "path": "newtonsoft.json/13.0.3",
  2905. "files": [
  2906. ".nupkg.metadata",
  2907. ".signature.p7s",
  2908. "LICENSE.md",
  2909. "README.md",
  2910. "lib/net20/Newtonsoft.Json.dll",
  2911. "lib/net20/Newtonsoft.Json.xml",
  2912. "lib/net35/Newtonsoft.Json.dll",
  2913. "lib/net35/Newtonsoft.Json.xml",
  2914. "lib/net40/Newtonsoft.Json.dll",
  2915. "lib/net40/Newtonsoft.Json.xml",
  2916. "lib/net45/Newtonsoft.Json.dll",
  2917. "lib/net45/Newtonsoft.Json.xml",
  2918. "lib/net6.0/Newtonsoft.Json.dll",
  2919. "lib/net6.0/Newtonsoft.Json.xml",
  2920. "lib/netstandard1.0/Newtonsoft.Json.dll",
  2921. "lib/netstandard1.0/Newtonsoft.Json.xml",
  2922. "lib/netstandard1.3/Newtonsoft.Json.dll",
  2923. "lib/netstandard1.3/Newtonsoft.Json.xml",
  2924. "lib/netstandard2.0/Newtonsoft.Json.dll",
  2925. "lib/netstandard2.0/Newtonsoft.Json.xml",
  2926. "newtonsoft.json.13.0.3.nupkg.sha512",
  2927. "newtonsoft.json.nuspec",
  2928. "packageIcon.png"
  2929. ]
  2930. },
  2931. "Newtonsoft.Json.Bson/1.0.2": {
  2932. "sha512": "QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==",
  2933. "type": "package",
  2934. "path": "newtonsoft.json.bson/1.0.2",
  2935. "files": [
  2936. ".nupkg.metadata",
  2937. ".signature.p7s",
  2938. "LICENSE.md",
  2939. "lib/net45/Newtonsoft.Json.Bson.dll",
  2940. "lib/net45/Newtonsoft.Json.Bson.pdb",
  2941. "lib/net45/Newtonsoft.Json.Bson.xml",
  2942. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll",
  2943. "lib/netstandard1.3/Newtonsoft.Json.Bson.pdb",
  2944. "lib/netstandard1.3/Newtonsoft.Json.Bson.xml",
  2945. "lib/netstandard2.0/Newtonsoft.Json.Bson.dll",
  2946. "lib/netstandard2.0/Newtonsoft.Json.Bson.pdb",
  2947. "lib/netstandard2.0/Newtonsoft.Json.Bson.xml",
  2948. "newtonsoft.json.bson.1.0.2.nupkg.sha512",
  2949. "newtonsoft.json.bson.nuspec"
  2950. ]
  2951. },
  2952. "Serilog/3.1.1": {
  2953. "sha512": "P6G4/4Kt9bT635bhuwdXlJ2SCqqn2nhh4gqFqQueCOr9bK/e7W9ll/IoX1Ter948cV2Z/5+5v8pAfJYUISY03A==",
  2954. "type": "package",
  2955. "path": "serilog/3.1.1",
  2956. "files": [
  2957. ".nupkg.metadata",
  2958. ".signature.p7s",
  2959. "README.md",
  2960. "icon.png",
  2961. "lib/net462/Serilog.dll",
  2962. "lib/net462/Serilog.xml",
  2963. "lib/net471/Serilog.dll",
  2964. "lib/net471/Serilog.xml",
  2965. "lib/net5.0/Serilog.dll",
  2966. "lib/net5.0/Serilog.xml",
  2967. "lib/net6.0/Serilog.dll",
  2968. "lib/net6.0/Serilog.xml",
  2969. "lib/net7.0/Serilog.dll",
  2970. "lib/net7.0/Serilog.xml",
  2971. "lib/netstandard2.0/Serilog.dll",
  2972. "lib/netstandard2.0/Serilog.xml",
  2973. "lib/netstandard2.1/Serilog.dll",
  2974. "lib/netstandard2.1/Serilog.xml",
  2975. "serilog.3.1.1.nupkg.sha512",
  2976. "serilog.nuspec"
  2977. ]
  2978. },
  2979. "Swashbuckle/5.6.0": {
  2980. "sha512": "UAE91ynpgvwoUs8igq3k/D0HV+cHrGRGJR9cwIPGE08hHJenn24MR2vq1n6NYbDWEwAVm+RYUW+qIsO9p5Sn/Q==",
  2981. "type": "package",
  2982. "path": "swashbuckle/5.6.0",
  2983. "files": [
  2984. ".nupkg.metadata",
  2985. ".signature.p7s",
  2986. "Content/App_Start/SwaggerConfig.cs.pp",
  2987. "swashbuckle.5.6.0.nupkg.sha512",
  2988. "swashbuckle.nuspec"
  2989. ]
  2990. },
  2991. "Swashbuckle.AspNetCore/6.5.0": {
  2992. "sha512": "FK05XokgjgwlCI6wCT+D4/abtQkL1X1/B9Oas6uIwHFmYrIO9WUD5aLC9IzMs9GnHfUXOtXZ2S43gN1mhs5+aA==",
  2993. "type": "package",
  2994. "path": "swashbuckle.aspnetcore/6.5.0",
  2995. "files": [
  2996. ".nupkg.metadata",
  2997. ".signature.p7s",
  2998. "build/Swashbuckle.AspNetCore.props",
  2999. "swashbuckle.aspnetcore.6.5.0.nupkg.sha512",
  3000. "swashbuckle.aspnetcore.nuspec"
  3001. ]
  3002. },
  3003. "Swashbuckle.AspNetCore.Swagger/6.5.0": {
  3004. "sha512": "XWmCmqyFmoItXKFsQSwQbEAsjDKcxlNf1l+/Ki42hcb6LjKL8m5Db69OTvz5vLonMSRntYO1XLqz0OP+n3vKnA==",
  3005. "type": "package",
  3006. "path": "swashbuckle.aspnetcore.swagger/6.5.0",
  3007. "files": [
  3008. ".nupkg.metadata",
  3009. ".signature.p7s",
  3010. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll",
  3011. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb",
  3012. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml",
  3013. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll",
  3014. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb",
  3015. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml",
  3016. "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll",
  3017. "lib/net7.0/Swashbuckle.AspNetCore.Swagger.pdb",
  3018. "lib/net7.0/Swashbuckle.AspNetCore.Swagger.xml",
  3019. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  3020. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  3021. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  3022. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  3023. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  3024. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  3025. "swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512",
  3026. "swashbuckle.aspnetcore.swagger.nuspec"
  3027. ]
  3028. },
  3029. "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": {
  3030. "sha512": "Y/qW8Qdg9OEs7V013tt+94OdPxbRdbhcEbw4NiwGvf4YBcfhL/y7qp/Mjv/cENsQ2L3NqJ2AOu94weBy/h4KvA==",
  3031. "type": "package",
  3032. "path": "swashbuckle.aspnetcore.swaggergen/6.5.0",
  3033. "files": [
  3034. ".nupkg.metadata",
  3035. ".signature.p7s",
  3036. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  3037. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  3038. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  3039. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  3040. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  3041. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  3042. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  3043. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  3044. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  3045. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  3046. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  3047. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  3048. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  3049. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  3050. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  3051. "swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512",
  3052. "swashbuckle.aspnetcore.swaggergen.nuspec"
  3053. ]
  3054. },
  3055. "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": {
  3056. "sha512": "OvbvxX+wL8skxTBttcBsVxdh73Fag4xwqEU2edh4JMn7Ws/xJHnY/JB1e9RoCb6XpDxUF3hD9A0Z1lEUx40Pfw==",
  3057. "type": "package",
  3058. "path": "swashbuckle.aspnetcore.swaggerui/6.5.0",
  3059. "files": [
  3060. ".nupkg.metadata",
  3061. ".signature.p7s",
  3062. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  3063. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  3064. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  3065. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  3066. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  3067. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  3068. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  3069. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  3070. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  3071. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  3072. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  3073. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  3074. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  3075. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  3076. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  3077. "swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512",
  3078. "swashbuckle.aspnetcore.swaggerui.nuspec"
  3079. ]
  3080. },
  3081. "Swashbuckle.Core/5.6.0": {
  3082. "sha512": "GhVWgtB8hCOxQhx7zLiiRyoi6flm7fNDDGILYHWktxLMkykRUz90fhmLRZECmnbvCcepFyROiw3phS1XorhdDg==",
  3083. "type": "package",
  3084. "path": "swashbuckle.core/5.6.0",
  3085. "files": [
  3086. ".nupkg.metadata",
  3087. ".signature.p7s",
  3088. "lib/net40/Swashbuckle.Core.dll",
  3089. "swashbuckle.core.5.6.0.nupkg.sha512",
  3090. "swashbuckle.core.nuspec"
  3091. ]
  3092. },
  3093. "System.Configuration.ConfigurationManager/8.0.0": {
  3094. "sha512": "JlYi9XVvIREURRUlGMr1F6vOFLk7YSY4p1vHo4kX3tQ0AGrjqlRWHDi66ImHhy6qwXBG3BJ6Y1QlYQ+Qz6Xgww==",
  3095. "type": "package",
  3096. "path": "system.configuration.configurationmanager/8.0.0",
  3097. "files": [
  3098. ".nupkg.metadata",
  3099. ".signature.p7s",
  3100. "Icon.png",
  3101. "LICENSE.TXT",
  3102. "PACKAGE.md",
  3103. "THIRD-PARTY-NOTICES.TXT",
  3104. "buildTransitive/net461/System.Configuration.ConfigurationManager.targets",
  3105. "buildTransitive/net462/_._",
  3106. "buildTransitive/net6.0/_._",
  3107. "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets",
  3108. "lib/net462/System.Configuration.ConfigurationManager.dll",
  3109. "lib/net462/System.Configuration.ConfigurationManager.xml",
  3110. "lib/net6.0/System.Configuration.ConfigurationManager.dll",
  3111. "lib/net6.0/System.Configuration.ConfigurationManager.xml",
  3112. "lib/net7.0/System.Configuration.ConfigurationManager.dll",
  3113. "lib/net7.0/System.Configuration.ConfigurationManager.xml",
  3114. "lib/net8.0/System.Configuration.ConfigurationManager.dll",
  3115. "lib/net8.0/System.Configuration.ConfigurationManager.xml",
  3116. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  3117. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  3118. "system.configuration.configurationmanager.8.0.0.nupkg.sha512",
  3119. "system.configuration.configurationmanager.nuspec",
  3120. "useSharedDesignerContext.txt"
  3121. ]
  3122. },
  3123. "System.Diagnostics.DiagnosticSource/6.0.1": {
  3124. "sha512": "KiLYDu2k2J82Q9BJpWiuQqCkFjRBWVq4jDzKKWawVi9KWzyD0XG3cmfX0vqTQlL14Wi9EufJrbL0+KCLTbqWiQ==",
  3125. "type": "package",
  3126. "path": "system.diagnostics.diagnosticsource/6.0.1",
  3127. "files": [
  3128. ".nupkg.metadata",
  3129. ".signature.p7s",
  3130. "Icon.png",
  3131. "LICENSE.TXT",
  3132. "THIRD-PARTY-NOTICES.TXT",
  3133. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
  3134. "buildTransitive/netcoreapp3.1/_._",
  3135. "lib/net461/System.Diagnostics.DiagnosticSource.dll",
  3136. "lib/net461/System.Diagnostics.DiagnosticSource.xml",
  3137. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  3138. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  3139. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
  3140. "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
  3141. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
  3142. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
  3143. "system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512",
  3144. "system.diagnostics.diagnosticsource.nuspec",
  3145. "useSharedDesignerContext.txt"
  3146. ]
  3147. },
  3148. "System.Diagnostics.EventLog/8.0.0": {
  3149. "sha512": "fdYxcRjQqTTacKId/2IECojlDSFvp7LP5N78+0z/xH7v/Tuw5ZAxu23Y6PTCRinqyu2ePx+Gn1098NC6jM6d+A==",
  3150. "type": "package",
  3151. "path": "system.diagnostics.eventlog/8.0.0",
  3152. "files": [
  3153. ".nupkg.metadata",
  3154. ".signature.p7s",
  3155. "Icon.png",
  3156. "LICENSE.TXT",
  3157. "PACKAGE.md",
  3158. "THIRD-PARTY-NOTICES.TXT",
  3159. "buildTransitive/net461/System.Diagnostics.EventLog.targets",
  3160. "buildTransitive/net462/_._",
  3161. "buildTransitive/net6.0/_._",
  3162. "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets",
  3163. "lib/net462/System.Diagnostics.EventLog.dll",
  3164. "lib/net462/System.Diagnostics.EventLog.xml",
  3165. "lib/net6.0/System.Diagnostics.EventLog.dll",
  3166. "lib/net6.0/System.Diagnostics.EventLog.xml",
  3167. "lib/net7.0/System.Diagnostics.EventLog.dll",
  3168. "lib/net7.0/System.Diagnostics.EventLog.xml",
  3169. "lib/net8.0/System.Diagnostics.EventLog.dll",
  3170. "lib/net8.0/System.Diagnostics.EventLog.xml",
  3171. "lib/netstandard2.0/System.Diagnostics.EventLog.dll",
  3172. "lib/netstandard2.0/System.Diagnostics.EventLog.xml",
  3173. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll",
  3174. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll",
  3175. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml",
  3176. "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll",
  3177. "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll",
  3178. "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.xml",
  3179. "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll",
  3180. "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll",
  3181. "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.xml",
  3182. "system.diagnostics.eventlog.8.0.0.nupkg.sha512",
  3183. "system.diagnostics.eventlog.nuspec",
  3184. "useSharedDesignerContext.txt"
  3185. ]
  3186. },
  3187. "System.Formats.Asn1/5.0.0": {
  3188. "sha512": "MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==",
  3189. "type": "package",
  3190. "path": "system.formats.asn1/5.0.0",
  3191. "files": [
  3192. ".nupkg.metadata",
  3193. ".signature.p7s",
  3194. "Icon.png",
  3195. "LICENSE.TXT",
  3196. "THIRD-PARTY-NOTICES.TXT",
  3197. "lib/net461/System.Formats.Asn1.dll",
  3198. "lib/net461/System.Formats.Asn1.xml",
  3199. "lib/netstandard2.0/System.Formats.Asn1.dll",
  3200. "lib/netstandard2.0/System.Formats.Asn1.xml",
  3201. "system.formats.asn1.5.0.0.nupkg.sha512",
  3202. "system.formats.asn1.nuspec",
  3203. "useSharedDesignerContext.txt",
  3204. "version.txt"
  3205. ]
  3206. },
  3207. "System.IdentityModel.Tokens.Jwt/6.35.0": {
  3208. "sha512": "yxGIQd3BFK7F6S62/7RdZk3C/mfwyVxvh6ngd1VYMBmbJ1YZZA9+Ku6suylVtso0FjI0wbElpJ0d27CdsyLpBQ==",
  3209. "type": "package",
  3210. "path": "system.identitymodel.tokens.jwt/6.35.0",
  3211. "files": [
  3212. ".nupkg.metadata",
  3213. ".signature.p7s",
  3214. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  3215. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  3216. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  3217. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  3218. "lib/net462/System.IdentityModel.Tokens.Jwt.dll",
  3219. "lib/net462/System.IdentityModel.Tokens.Jwt.xml",
  3220. "lib/net472/System.IdentityModel.Tokens.Jwt.dll",
  3221. "lib/net472/System.IdentityModel.Tokens.Jwt.xml",
  3222. "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll",
  3223. "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml",
  3224. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  3225. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  3226. "system.identitymodel.tokens.jwt.6.35.0.nupkg.sha512",
  3227. "system.identitymodel.tokens.jwt.nuspec"
  3228. ]
  3229. },
  3230. "System.Memory/4.5.4": {
  3231. "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
  3232. "type": "package",
  3233. "path": "system.memory/4.5.4",
  3234. "files": [
  3235. ".nupkg.metadata",
  3236. ".signature.p7s",
  3237. "LICENSE.TXT",
  3238. "THIRD-PARTY-NOTICES.TXT",
  3239. "lib/net461/System.Memory.dll",
  3240. "lib/net461/System.Memory.xml",
  3241. "lib/netcoreapp2.1/_._",
  3242. "lib/netstandard1.1/System.Memory.dll",
  3243. "lib/netstandard1.1/System.Memory.xml",
  3244. "lib/netstandard2.0/System.Memory.dll",
  3245. "lib/netstandard2.0/System.Memory.xml",
  3246. "ref/netcoreapp2.1/_._",
  3247. "system.memory.4.5.4.nupkg.sha512",
  3248. "system.memory.nuspec",
  3249. "useSharedDesignerContext.txt",
  3250. "version.txt"
  3251. ]
  3252. },
  3253. "System.Memory.Data/1.0.2": {
  3254. "sha512": "JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==",
  3255. "type": "package",
  3256. "path": "system.memory.data/1.0.2",
  3257. "files": [
  3258. ".nupkg.metadata",
  3259. ".signature.p7s",
  3260. "CHANGELOG.md",
  3261. "DotNetPackageIcon.png",
  3262. "README.md",
  3263. "lib/net461/System.Memory.Data.dll",
  3264. "lib/net461/System.Memory.Data.xml",
  3265. "lib/netstandard2.0/System.Memory.Data.dll",
  3266. "lib/netstandard2.0/System.Memory.Data.xml",
  3267. "system.memory.data.1.0.2.nupkg.sha512",
  3268. "system.memory.data.nuspec"
  3269. ]
  3270. },
  3271. "System.Numerics.Vectors/4.5.0": {
  3272. "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
  3273. "type": "package",
  3274. "path": "system.numerics.vectors/4.5.0",
  3275. "files": [
  3276. ".nupkg.metadata",
  3277. ".signature.p7s",
  3278. "LICENSE.TXT",
  3279. "THIRD-PARTY-NOTICES.TXT",
  3280. "lib/MonoAndroid10/_._",
  3281. "lib/MonoTouch10/_._",
  3282. "lib/net46/System.Numerics.Vectors.dll",
  3283. "lib/net46/System.Numerics.Vectors.xml",
  3284. "lib/netcoreapp2.0/_._",
  3285. "lib/netstandard1.0/System.Numerics.Vectors.dll",
  3286. "lib/netstandard1.0/System.Numerics.Vectors.xml",
  3287. "lib/netstandard2.0/System.Numerics.Vectors.dll",
  3288. "lib/netstandard2.0/System.Numerics.Vectors.xml",
  3289. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll",
  3290. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml",
  3291. "lib/uap10.0.16299/_._",
  3292. "lib/xamarinios10/_._",
  3293. "lib/xamarinmac20/_._",
  3294. "lib/xamarintvos10/_._",
  3295. "lib/xamarinwatchos10/_._",
  3296. "ref/MonoAndroid10/_._",
  3297. "ref/MonoTouch10/_._",
  3298. "ref/net45/System.Numerics.Vectors.dll",
  3299. "ref/net45/System.Numerics.Vectors.xml",
  3300. "ref/net46/System.Numerics.Vectors.dll",
  3301. "ref/net46/System.Numerics.Vectors.xml",
  3302. "ref/netcoreapp2.0/_._",
  3303. "ref/netstandard1.0/System.Numerics.Vectors.dll",
  3304. "ref/netstandard1.0/System.Numerics.Vectors.xml",
  3305. "ref/netstandard2.0/System.Numerics.Vectors.dll",
  3306. "ref/netstandard2.0/System.Numerics.Vectors.xml",
  3307. "ref/uap10.0.16299/_._",
  3308. "ref/xamarinios10/_._",
  3309. "ref/xamarinmac20/_._",
  3310. "ref/xamarintvos10/_._",
  3311. "ref/xamarinwatchos10/_._",
  3312. "system.numerics.vectors.4.5.0.nupkg.sha512",
  3313. "system.numerics.vectors.nuspec",
  3314. "useSharedDesignerContext.txt",
  3315. "version.txt"
  3316. ]
  3317. },
  3318. "System.Runtime/4.3.0": {
  3319. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  3320. "type": "package",
  3321. "path": "system.runtime/4.3.0",
  3322. "files": [
  3323. ".nupkg.metadata",
  3324. ".signature.p7s",
  3325. "ThirdPartyNotices.txt",
  3326. "dotnet_library_license.txt",
  3327. "lib/MonoAndroid10/_._",
  3328. "lib/MonoTouch10/_._",
  3329. "lib/net45/_._",
  3330. "lib/net462/System.Runtime.dll",
  3331. "lib/portable-net45+win8+wp80+wpa81/_._",
  3332. "lib/win8/_._",
  3333. "lib/wp80/_._",
  3334. "lib/wpa81/_._",
  3335. "lib/xamarinios10/_._",
  3336. "lib/xamarinmac20/_._",
  3337. "lib/xamarintvos10/_._",
  3338. "lib/xamarinwatchos10/_._",
  3339. "ref/MonoAndroid10/_._",
  3340. "ref/MonoTouch10/_._",
  3341. "ref/net45/_._",
  3342. "ref/net462/System.Runtime.dll",
  3343. "ref/netcore50/System.Runtime.dll",
  3344. "ref/netcore50/System.Runtime.xml",
  3345. "ref/netcore50/de/System.Runtime.xml",
  3346. "ref/netcore50/es/System.Runtime.xml",
  3347. "ref/netcore50/fr/System.Runtime.xml",
  3348. "ref/netcore50/it/System.Runtime.xml",
  3349. "ref/netcore50/ja/System.Runtime.xml",
  3350. "ref/netcore50/ko/System.Runtime.xml",
  3351. "ref/netcore50/ru/System.Runtime.xml",
  3352. "ref/netcore50/zh-hans/System.Runtime.xml",
  3353. "ref/netcore50/zh-hant/System.Runtime.xml",
  3354. "ref/netstandard1.0/System.Runtime.dll",
  3355. "ref/netstandard1.0/System.Runtime.xml",
  3356. "ref/netstandard1.0/de/System.Runtime.xml",
  3357. "ref/netstandard1.0/es/System.Runtime.xml",
  3358. "ref/netstandard1.0/fr/System.Runtime.xml",
  3359. "ref/netstandard1.0/it/System.Runtime.xml",
  3360. "ref/netstandard1.0/ja/System.Runtime.xml",
  3361. "ref/netstandard1.0/ko/System.Runtime.xml",
  3362. "ref/netstandard1.0/ru/System.Runtime.xml",
  3363. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  3364. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  3365. "ref/netstandard1.2/System.Runtime.dll",
  3366. "ref/netstandard1.2/System.Runtime.xml",
  3367. "ref/netstandard1.2/de/System.Runtime.xml",
  3368. "ref/netstandard1.2/es/System.Runtime.xml",
  3369. "ref/netstandard1.2/fr/System.Runtime.xml",
  3370. "ref/netstandard1.2/it/System.Runtime.xml",
  3371. "ref/netstandard1.2/ja/System.Runtime.xml",
  3372. "ref/netstandard1.2/ko/System.Runtime.xml",
  3373. "ref/netstandard1.2/ru/System.Runtime.xml",
  3374. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  3375. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  3376. "ref/netstandard1.3/System.Runtime.dll",
  3377. "ref/netstandard1.3/System.Runtime.xml",
  3378. "ref/netstandard1.3/de/System.Runtime.xml",
  3379. "ref/netstandard1.3/es/System.Runtime.xml",
  3380. "ref/netstandard1.3/fr/System.Runtime.xml",
  3381. "ref/netstandard1.3/it/System.Runtime.xml",
  3382. "ref/netstandard1.3/ja/System.Runtime.xml",
  3383. "ref/netstandard1.3/ko/System.Runtime.xml",
  3384. "ref/netstandard1.3/ru/System.Runtime.xml",
  3385. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  3386. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  3387. "ref/netstandard1.5/System.Runtime.dll",
  3388. "ref/netstandard1.5/System.Runtime.xml",
  3389. "ref/netstandard1.5/de/System.Runtime.xml",
  3390. "ref/netstandard1.5/es/System.Runtime.xml",
  3391. "ref/netstandard1.5/fr/System.Runtime.xml",
  3392. "ref/netstandard1.5/it/System.Runtime.xml",
  3393. "ref/netstandard1.5/ja/System.Runtime.xml",
  3394. "ref/netstandard1.5/ko/System.Runtime.xml",
  3395. "ref/netstandard1.5/ru/System.Runtime.xml",
  3396. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  3397. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  3398. "ref/portable-net45+win8+wp80+wpa81/_._",
  3399. "ref/win8/_._",
  3400. "ref/wp80/_._",
  3401. "ref/wpa81/_._",
  3402. "ref/xamarinios10/_._",
  3403. "ref/xamarinmac20/_._",
  3404. "ref/xamarintvos10/_._",
  3405. "ref/xamarinwatchos10/_._",
  3406. "system.runtime.4.3.0.nupkg.sha512",
  3407. "system.runtime.nuspec"
  3408. ]
  3409. },
  3410. "System.Runtime.Caching/6.0.0": {
  3411. "sha512": "E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==",
  3412. "type": "package",
  3413. "path": "system.runtime.caching/6.0.0",
  3414. "files": [
  3415. ".nupkg.metadata",
  3416. ".signature.p7s",
  3417. "Icon.png",
  3418. "LICENSE.TXT",
  3419. "THIRD-PARTY-NOTICES.TXT",
  3420. "buildTransitive/netcoreapp2.0/System.Runtime.Caching.targets",
  3421. "buildTransitive/netcoreapp3.1/_._",
  3422. "lib/MonoAndroid10/_._",
  3423. "lib/MonoTouch10/_._",
  3424. "lib/net461/_._",
  3425. "lib/net6.0/System.Runtime.Caching.dll",
  3426. "lib/net6.0/System.Runtime.Caching.xml",
  3427. "lib/netcoreapp3.1/System.Runtime.Caching.dll",
  3428. "lib/netcoreapp3.1/System.Runtime.Caching.xml",
  3429. "lib/netstandard2.0/System.Runtime.Caching.dll",
  3430. "lib/netstandard2.0/System.Runtime.Caching.xml",
  3431. "lib/xamarinios10/_._",
  3432. "lib/xamarinmac20/_._",
  3433. "lib/xamarintvos10/_._",
  3434. "lib/xamarinwatchos10/_._",
  3435. "runtimes/win/lib/net461/_._",
  3436. "runtimes/win/lib/net6.0/System.Runtime.Caching.dll",
  3437. "runtimes/win/lib/net6.0/System.Runtime.Caching.xml",
  3438. "runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.dll",
  3439. "runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.xml",
  3440. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll",
  3441. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml",
  3442. "system.runtime.caching.6.0.0.nupkg.sha512",
  3443. "system.runtime.caching.nuspec",
  3444. "useSharedDesignerContext.txt"
  3445. ]
  3446. },
  3447. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  3448. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  3449. "type": "package",
  3450. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  3451. "files": [
  3452. ".nupkg.metadata",
  3453. ".signature.p7s",
  3454. "Icon.png",
  3455. "LICENSE.TXT",
  3456. "THIRD-PARTY-NOTICES.TXT",
  3457. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  3458. "buildTransitive/netcoreapp3.1/_._",
  3459. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  3460. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  3461. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  3462. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  3463. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  3464. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  3465. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  3466. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  3467. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  3468. "system.runtime.compilerservices.unsafe.nuspec",
  3469. "useSharedDesignerContext.txt"
  3470. ]
  3471. },
  3472. "System.Security.Cryptography.Cng/5.0.0": {
  3473. "sha512": "jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==",
  3474. "type": "package",
  3475. "path": "system.security.cryptography.cng/5.0.0",
  3476. "files": [
  3477. ".nupkg.metadata",
  3478. ".signature.p7s",
  3479. "Icon.png",
  3480. "LICENSE.TXT",
  3481. "THIRD-PARTY-NOTICES.TXT",
  3482. "lib/MonoAndroid10/_._",
  3483. "lib/MonoTouch10/_._",
  3484. "lib/net46/System.Security.Cryptography.Cng.dll",
  3485. "lib/net461/System.Security.Cryptography.Cng.dll",
  3486. "lib/net461/System.Security.Cryptography.Cng.xml",
  3487. "lib/net462/System.Security.Cryptography.Cng.dll",
  3488. "lib/net462/System.Security.Cryptography.Cng.xml",
  3489. "lib/net47/System.Security.Cryptography.Cng.dll",
  3490. "lib/net47/System.Security.Cryptography.Cng.xml",
  3491. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  3492. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  3493. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  3494. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  3495. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  3496. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  3497. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  3498. "lib/netstandard2.0/System.Security.Cryptography.Cng.xml",
  3499. "lib/netstandard2.1/System.Security.Cryptography.Cng.dll",
  3500. "lib/netstandard2.1/System.Security.Cryptography.Cng.xml",
  3501. "lib/uap10.0.16299/_._",
  3502. "lib/xamarinios10/_._",
  3503. "lib/xamarinmac20/_._",
  3504. "lib/xamarintvos10/_._",
  3505. "lib/xamarinwatchos10/_._",
  3506. "ref/MonoAndroid10/_._",
  3507. "ref/MonoTouch10/_._",
  3508. "ref/net46/System.Security.Cryptography.Cng.dll",
  3509. "ref/net461/System.Security.Cryptography.Cng.dll",
  3510. "ref/net461/System.Security.Cryptography.Cng.xml",
  3511. "ref/net462/System.Security.Cryptography.Cng.dll",
  3512. "ref/net462/System.Security.Cryptography.Cng.xml",
  3513. "ref/net47/System.Security.Cryptography.Cng.dll",
  3514. "ref/net47/System.Security.Cryptography.Cng.xml",
  3515. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  3516. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  3517. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  3518. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  3519. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  3520. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  3521. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  3522. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  3523. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  3524. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  3525. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  3526. "ref/netstandard2.1/System.Security.Cryptography.Cng.dll",
  3527. "ref/netstandard2.1/System.Security.Cryptography.Cng.xml",
  3528. "ref/uap10.0.16299/_._",
  3529. "ref/xamarinios10/_._",
  3530. "ref/xamarinmac20/_._",
  3531. "ref/xamarintvos10/_._",
  3532. "ref/xamarinwatchos10/_._",
  3533. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  3534. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  3535. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.xml",
  3536. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  3537. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.xml",
  3538. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  3539. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.xml",
  3540. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  3541. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  3542. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  3543. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  3544. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  3545. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  3546. "runtimes/win/lib/uap10.0.16299/_._",
  3547. "system.security.cryptography.cng.5.0.0.nupkg.sha512",
  3548. "system.security.cryptography.cng.nuspec",
  3549. "useSharedDesignerContext.txt",
  3550. "version.txt"
  3551. ]
  3552. },
  3553. "System.Security.Cryptography.ProtectedData/8.0.0": {
  3554. "sha512": "+TUFINV2q2ifyXauQXRwy4CiBhqvDEDZeVJU7qfxya4aRYOKzVBpN+4acx25VcPB9ywUN6C0n8drWl110PhZEg==",
  3555. "type": "package",
  3556. "path": "system.security.cryptography.protecteddata/8.0.0",
  3557. "files": [
  3558. ".nupkg.metadata",
  3559. ".signature.p7s",
  3560. "Icon.png",
  3561. "LICENSE.TXT",
  3562. "PACKAGE.md",
  3563. "THIRD-PARTY-NOTICES.TXT",
  3564. "buildTransitive/net461/System.Security.Cryptography.ProtectedData.targets",
  3565. "buildTransitive/net462/_._",
  3566. "buildTransitive/net6.0/_._",
  3567. "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets",
  3568. "lib/MonoAndroid10/_._",
  3569. "lib/MonoTouch10/_._",
  3570. "lib/net462/System.Security.Cryptography.ProtectedData.dll",
  3571. "lib/net462/System.Security.Cryptography.ProtectedData.xml",
  3572. "lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
  3573. "lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
  3574. "lib/net7.0/System.Security.Cryptography.ProtectedData.dll",
  3575. "lib/net7.0/System.Security.Cryptography.ProtectedData.xml",
  3576. "lib/net8.0/System.Security.Cryptography.ProtectedData.dll",
  3577. "lib/net8.0/System.Security.Cryptography.ProtectedData.xml",
  3578. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  3579. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  3580. "lib/xamarinios10/_._",
  3581. "lib/xamarinmac20/_._",
  3582. "lib/xamarintvos10/_._",
  3583. "lib/xamarinwatchos10/_._",
  3584. "system.security.cryptography.protecteddata.8.0.0.nupkg.sha512",
  3585. "system.security.cryptography.protecteddata.nuspec",
  3586. "useSharedDesignerContext.txt"
  3587. ]
  3588. },
  3589. "System.Security.Principal.Windows/5.0.0": {
  3590. "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  3591. "type": "package",
  3592. "path": "system.security.principal.windows/5.0.0",
  3593. "files": [
  3594. ".nupkg.metadata",
  3595. ".signature.p7s",
  3596. "Icon.png",
  3597. "LICENSE.TXT",
  3598. "THIRD-PARTY-NOTICES.TXT",
  3599. "lib/net46/System.Security.Principal.Windows.dll",
  3600. "lib/net461/System.Security.Principal.Windows.dll",
  3601. "lib/net461/System.Security.Principal.Windows.xml",
  3602. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  3603. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  3604. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  3605. "lib/uap10.0.16299/_._",
  3606. "ref/net46/System.Security.Principal.Windows.dll",
  3607. "ref/net461/System.Security.Principal.Windows.dll",
  3608. "ref/net461/System.Security.Principal.Windows.xml",
  3609. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  3610. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  3611. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  3612. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  3613. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  3614. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  3615. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  3616. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  3617. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  3618. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  3619. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  3620. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  3621. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  3622. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  3623. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  3624. "ref/uap10.0.16299/_._",
  3625. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  3626. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  3627. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  3628. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  3629. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  3630. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  3631. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  3632. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  3633. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  3634. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  3635. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  3636. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  3637. "runtimes/win/lib/uap10.0.16299/_._",
  3638. "system.security.principal.windows.5.0.0.nupkg.sha512",
  3639. "system.security.principal.windows.nuspec",
  3640. "useSharedDesignerContext.txt",
  3641. "version.txt"
  3642. ]
  3643. },
  3644. "System.Text.Encoding/4.3.0": {
  3645. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  3646. "type": "package",
  3647. "path": "system.text.encoding/4.3.0",
  3648. "files": [
  3649. ".nupkg.metadata",
  3650. ".signature.p7s",
  3651. "ThirdPartyNotices.txt",
  3652. "dotnet_library_license.txt",
  3653. "lib/MonoAndroid10/_._",
  3654. "lib/MonoTouch10/_._",
  3655. "lib/net45/_._",
  3656. "lib/portable-net45+win8+wp8+wpa81/_._",
  3657. "lib/win8/_._",
  3658. "lib/wp80/_._",
  3659. "lib/wpa81/_._",
  3660. "lib/xamarinios10/_._",
  3661. "lib/xamarinmac20/_._",
  3662. "lib/xamarintvos10/_._",
  3663. "lib/xamarinwatchos10/_._",
  3664. "ref/MonoAndroid10/_._",
  3665. "ref/MonoTouch10/_._",
  3666. "ref/net45/_._",
  3667. "ref/netcore50/System.Text.Encoding.dll",
  3668. "ref/netcore50/System.Text.Encoding.xml",
  3669. "ref/netcore50/de/System.Text.Encoding.xml",
  3670. "ref/netcore50/es/System.Text.Encoding.xml",
  3671. "ref/netcore50/fr/System.Text.Encoding.xml",
  3672. "ref/netcore50/it/System.Text.Encoding.xml",
  3673. "ref/netcore50/ja/System.Text.Encoding.xml",
  3674. "ref/netcore50/ko/System.Text.Encoding.xml",
  3675. "ref/netcore50/ru/System.Text.Encoding.xml",
  3676. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  3677. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  3678. "ref/netstandard1.0/System.Text.Encoding.dll",
  3679. "ref/netstandard1.0/System.Text.Encoding.xml",
  3680. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  3681. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  3682. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  3683. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  3684. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  3685. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  3686. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  3687. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  3688. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  3689. "ref/netstandard1.3/System.Text.Encoding.dll",
  3690. "ref/netstandard1.3/System.Text.Encoding.xml",
  3691. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  3692. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  3693. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  3694. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  3695. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  3696. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  3697. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  3698. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  3699. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  3700. "ref/portable-net45+win8+wp8+wpa81/_._",
  3701. "ref/win8/_._",
  3702. "ref/wp80/_._",
  3703. "ref/wpa81/_._",
  3704. "ref/xamarinios10/_._",
  3705. "ref/xamarinmac20/_._",
  3706. "ref/xamarintvos10/_._",
  3707. "ref/xamarinwatchos10/_._",
  3708. "system.text.encoding.4.3.0.nupkg.sha512",
  3709. "system.text.encoding.nuspec"
  3710. ]
  3711. },
  3712. "System.Text.Encoding.CodePages/6.0.0": {
  3713. "sha512": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
  3714. "type": "package",
  3715. "path": "system.text.encoding.codepages/6.0.0",
  3716. "files": [
  3717. ".nupkg.metadata",
  3718. ".signature.p7s",
  3719. "Icon.png",
  3720. "LICENSE.TXT",
  3721. "THIRD-PARTY-NOTICES.TXT",
  3722. "buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets",
  3723. "buildTransitive/netcoreapp3.1/_._",
  3724. "lib/MonoAndroid10/_._",
  3725. "lib/MonoTouch10/_._",
  3726. "lib/net461/System.Text.Encoding.CodePages.dll",
  3727. "lib/net461/System.Text.Encoding.CodePages.xml",
  3728. "lib/net6.0/System.Text.Encoding.CodePages.dll",
  3729. "lib/net6.0/System.Text.Encoding.CodePages.xml",
  3730. "lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll",
  3731. "lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml",
  3732. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  3733. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  3734. "lib/xamarinios10/_._",
  3735. "lib/xamarinmac20/_._",
  3736. "lib/xamarintvos10/_._",
  3737. "lib/xamarinwatchos10/_._",
  3738. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  3739. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  3740. "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll",
  3741. "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.xml",
  3742. "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll",
  3743. "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml",
  3744. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  3745. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  3746. "system.text.encoding.codepages.6.0.0.nupkg.sha512",
  3747. "system.text.encoding.codepages.nuspec",
  3748. "useSharedDesignerContext.txt"
  3749. ]
  3750. },
  3751. "System.Text.Encodings.Web/6.0.0": {
  3752. "sha512": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==",
  3753. "type": "package",
  3754. "path": "system.text.encodings.web/6.0.0",
  3755. "files": [
  3756. ".nupkg.metadata",
  3757. ".signature.p7s",
  3758. "Icon.png",
  3759. "LICENSE.TXT",
  3760. "THIRD-PARTY-NOTICES.TXT",
  3761. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
  3762. "buildTransitive/netcoreapp3.1/_._",
  3763. "lib/net461/System.Text.Encodings.Web.dll",
  3764. "lib/net461/System.Text.Encodings.Web.xml",
  3765. "lib/net6.0/System.Text.Encodings.Web.dll",
  3766. "lib/net6.0/System.Text.Encodings.Web.xml",
  3767. "lib/netcoreapp3.1/System.Text.Encodings.Web.dll",
  3768. "lib/netcoreapp3.1/System.Text.Encodings.Web.xml",
  3769. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  3770. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  3771. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll",
  3772. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml",
  3773. "system.text.encodings.web.6.0.0.nupkg.sha512",
  3774. "system.text.encodings.web.nuspec",
  3775. "useSharedDesignerContext.txt"
  3776. ]
  3777. },
  3778. "System.Text.Json/4.7.2": {
  3779. "sha512": "TcMd95wcrubm9nHvJEQs70rC0H/8omiSGGpU4FQ/ZA1URIqD4pjmFJh2Mfv1yH1eHgJDWTi2hMDXwTET+zOOyg==",
  3780. "type": "package",
  3781. "path": "system.text.json/4.7.2",
  3782. "files": [
  3783. ".nupkg.metadata",
  3784. ".signature.p7s",
  3785. "Icon.png",
  3786. "LICENSE.TXT",
  3787. "THIRD-PARTY-NOTICES.TXT",
  3788. "lib/net461/System.Text.Json.dll",
  3789. "lib/net461/System.Text.Json.xml",
  3790. "lib/netcoreapp3.0/System.Text.Json.dll",
  3791. "lib/netcoreapp3.0/System.Text.Json.xml",
  3792. "lib/netstandard2.0/System.Text.Json.dll",
  3793. "lib/netstandard2.0/System.Text.Json.xml",
  3794. "system.text.json.4.7.2.nupkg.sha512",
  3795. "system.text.json.nuspec",
  3796. "useSharedDesignerContext.txt",
  3797. "version.txt"
  3798. ]
  3799. },
  3800. "System.Threading.Tasks.Extensions/4.5.4": {
  3801. "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
  3802. "type": "package",
  3803. "path": "system.threading.tasks.extensions/4.5.4",
  3804. "files": [
  3805. ".nupkg.metadata",
  3806. ".signature.p7s",
  3807. "LICENSE.TXT",
  3808. "THIRD-PARTY-NOTICES.TXT",
  3809. "lib/MonoAndroid10/_._",
  3810. "lib/MonoTouch10/_._",
  3811. "lib/net461/System.Threading.Tasks.Extensions.dll",
  3812. "lib/net461/System.Threading.Tasks.Extensions.xml",
  3813. "lib/netcoreapp2.1/_._",
  3814. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  3815. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  3816. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  3817. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  3818. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  3819. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  3820. "lib/xamarinios10/_._",
  3821. "lib/xamarinmac20/_._",
  3822. "lib/xamarintvos10/_._",
  3823. "lib/xamarinwatchos10/_._",
  3824. "ref/MonoAndroid10/_._",
  3825. "ref/MonoTouch10/_._",
  3826. "ref/netcoreapp2.1/_._",
  3827. "ref/xamarinios10/_._",
  3828. "ref/xamarinmac20/_._",
  3829. "ref/xamarintvos10/_._",
  3830. "ref/xamarinwatchos10/_._",
  3831. "system.threading.tasks.extensions.4.5.4.nupkg.sha512",
  3832. "system.threading.tasks.extensions.nuspec",
  3833. "useSharedDesignerContext.txt",
  3834. "version.txt"
  3835. ]
  3836. },
  3837. "WebActivatorEx/2.0.0": {
  3838. "sha512": "B3ZbOEaGCqa7BLjZZw6wqprOJJMvP39h7Lr5ADkJOCPKHppAaCre34kR63/gfgpM4htzTfgm/pEw7r7qqqMgIA==",
  3839. "type": "package",
  3840. "path": "webactivatorex/2.0.0",
  3841. "files": [
  3842. ".nupkg.metadata",
  3843. ".signature.p7s",
  3844. "lib/net40/WebActivatorEx.dll",
  3845. "webactivatorex.2.0.0.nupkg.sha512",
  3846. "webactivatorex.nuspec"
  3847. ]
  3848. },
  3849. "AipGateway.AIP/1.0.0": {
  3850. "type": "project",
  3851. "path": "../AipGateway.AIP/AipGateway.AIP.csproj",
  3852. "msbuildProject": "../AipGateway.AIP/AipGateway.AIP.csproj"
  3853. },
  3854. "AipGateway.Common/1.0.0": {
  3855. "type": "project",
  3856. "path": "../AipGateway.Common/AipGateway.Common.csproj",
  3857. "msbuildProject": "../AipGateway.Common/AipGateway.Common.csproj"
  3858. },
  3859. "AipGateway.Data/1.0.0": {
  3860. "type": "project",
  3861. "path": "../AipGateway.Data/AipGateway.Data.csproj",
  3862. "msbuildProject": "../AipGateway.Data/AipGateway.Data.csproj"
  3863. },
  3864. "AipGateway.DRM/1.0.0": {
  3865. "type": "project",
  3866. "path": "../AipGateway.DRM/AipGateway.DRM.csproj",
  3867. "msbuildProject": "../AipGateway.DRM/AipGateway.DRM.csproj"
  3868. },
  3869. "AipGateway.Log/1.0.0": {
  3870. "type": "project",
  3871. "path": "../AipGateway.Log/AipGateway.Log.csproj",
  3872. "msbuildProject": "../AipGateway.Log/AipGateway.Log.csproj"
  3873. },
  3874. "AipGateway.Test/1.0.0": {
  3875. "type": "project",
  3876. "path": "../AipGateway.Test/AipGateway.Test.csproj",
  3877. "msbuildProject": "../AipGateway.Test/AipGateway.Test.csproj"
  3878. },
  3879. "AipGateway.Viewer/1.0.0": {
  3880. "type": "project",
  3881. "path": "../AipGateway.Viewer/AipGateway.Viewer.csproj",
  3882. "msbuildProject": "../AipGateway.Viewer/AipGateway.Viewer.csproj"
  3883. }
  3884. },
  3885. "projectFileDependencyGroups": {
  3886. "net8.0": [
  3887. "AipGateway.AIP >= 1.0.0",
  3888. "AipGateway.Common >= 1.0.0",
  3889. "AipGateway.DRM >= 1.0.0",
  3890. "AipGateway.Data >= 1.0.0",
  3891. "AipGateway.Log >= 1.0.0",
  3892. "AipGateway.Test >= 1.0.0",
  3893. "AipGateway.Viewer >= 1.0.0",
  3894. "Microsoft.AspNetCore.Mvc.NewtonsoftJson >= 8.0.4",
  3895. "Microsoft.EntityFrameworkCore >= 8.0.4",
  3896. "Microsoft.EntityFrameworkCore.SqlServer >= 8.0.4",
  3897. "Microsoft.Identity.Client >= 4.60.3",
  3898. "Microsoft.Identity.Client.Extensions.Msal >= 4.60.3",
  3899. "Microsoft.InformationProtection.File >= 1.14.128",
  3900. "Serilog >= 3.1.1",
  3901. "Swashbuckle >= 5.6.0",
  3902. "Swashbuckle.AspNetCore >= 6.5.0"
  3903. ]
  3904. },
  3905. "packageFolders": {
  3906. "C:\\Users\\OpenValue\\.nuget\\packages\\": {},
  3907. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  3908. },
  3909. "project": {
  3910. "version": "1.0.0",
  3911. "restore": {
  3912. "projectUniqueName": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.API.Service\\AipGateway.API.Service.csproj",
  3913. "projectName": "AipGateway.API.Service",
  3914. "projectPath": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.API.Service\\AipGateway.API.Service.csproj",
  3915. "packagesPath": "C:\\Users\\OpenValue\\.nuget\\packages\\",
  3916. "outputPath": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.API.Service\\obj\\",
  3917. "projectStyle": "PackageReference",
  3918. "fallbackFolders": [
  3919. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  3920. ],
  3921. "configFilePaths": [
  3922. "C:\\Users\\OpenValue\\AppData\\Roaming\\NuGet\\NuGet.Config",
  3923. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  3924. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  3925. ],
  3926. "originalTargetFrameworks": [
  3927. "net8.0"
  3928. ],
  3929. "sources": {
  3930. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  3931. "C:\\Program Files\\dotnet\\library-packs": {},
  3932. "https://api.nuget.org/v3/index.json": {}
  3933. },
  3934. "frameworks": {
  3935. "net8.0": {
  3936. "targetAlias": "net8.0",
  3937. "projectReferences": {
  3938. "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.AIP\\AipGateway.AIP.csproj": {
  3939. "projectPath": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.AIP\\AipGateway.AIP.csproj"
  3940. },
  3941. "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.Common\\AipGateway.Common.csproj": {
  3942. "projectPath": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.Common\\AipGateway.Common.csproj"
  3943. },
  3944. "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.Data\\AipGateway.Data.csproj": {
  3945. "projectPath": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.Data\\AipGateway.Data.csproj"
  3946. },
  3947. "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.DRM\\AipGateway.DRM.csproj": {
  3948. "projectPath": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.DRM\\AipGateway.DRM.csproj"
  3949. },
  3950. "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.Log\\AipGateway.Log.csproj": {
  3951. "projectPath": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.Log\\AipGateway.Log.csproj"
  3952. },
  3953. "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.Test\\AipGateway.Test.csproj": {
  3954. "projectPath": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.Test\\AipGateway.Test.csproj"
  3955. },
  3956. "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.Viewer\\AipGateway.Viewer.csproj": {
  3957. "projectPath": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.Viewer\\AipGateway.Viewer.csproj"
  3958. }
  3959. }
  3960. }
  3961. },
  3962. "warningProperties": {
  3963. "warnAsError": [
  3964. "NU1605"
  3965. ]
  3966. },
  3967. "restoreAuditProperties": {
  3968. "enableAudit": "true",
  3969. "auditLevel": "low",
  3970. "auditMode": "direct"
  3971. }
  3972. },
  3973. "frameworks": {
  3974. "net8.0": {
  3975. "targetAlias": "net8.0",
  3976. "dependencies": {
  3977. "Microsoft.AspNetCore.Mvc.NewtonsoftJson": {
  3978. "target": "Package",
  3979. "version": "[8.0.4, )"
  3980. },
  3981. "Microsoft.EntityFrameworkCore": {
  3982. "target": "Package",
  3983. "version": "[8.0.4, )"
  3984. },
  3985. "Microsoft.EntityFrameworkCore.SqlServer": {
  3986. "target": "Package",
  3987. "version": "[8.0.4, )"
  3988. },
  3989. "Microsoft.Identity.Client": {
  3990. "target": "Package",
  3991. "version": "[4.60.3, )"
  3992. },
  3993. "Microsoft.Identity.Client.Extensions.Msal": {
  3994. "target": "Package",
  3995. "version": "[4.60.3, )"
  3996. },
  3997. "Microsoft.InformationProtection.File": {
  3998. "target": "Package",
  3999. "version": "[1.14.128, )"
  4000. },
  4001. "Serilog": {
  4002. "target": "Package",
  4003. "version": "[3.1.1, )"
  4004. },
  4005. "Swashbuckle": {
  4006. "target": "Package",
  4007. "version": "[5.6.0, )"
  4008. },
  4009. "Swashbuckle.AspNetCore": {
  4010. "target": "Package",
  4011. "version": "[6.5.0, )"
  4012. }
  4013. },
  4014. "imports": [
  4015. "net461",
  4016. "net462",
  4017. "net47",
  4018. "net471",
  4019. "net472",
  4020. "net48",
  4021. "net481"
  4022. ],
  4023. "assetTargetFallback": true,
  4024. "warn": true,
  4025. "frameworkReferences": {
  4026. "Microsoft.AspNetCore.App": {
  4027. "privateAssets": "none"
  4028. },
  4029. "Microsoft.NETCore.App": {
  4030. "privateAssets": "all"
  4031. }
  4032. },
  4033. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.300/PortableRuntimeIdentifierGraph.json"
  4034. }
  4035. }
  4036. },
  4037. "logs": [
  4038. {
  4039. "code": "NU1902",
  4040. "level": "Warning",
  4041. "warningLevel": 1,
  4042. "message": "'Microsoft.Identity.Client' 4.60.3 패키지에 알려진 보통 심각도 취약성인 https://github.com/advisories/GHSA-m5vv-6r4h-3vj9이(가) 있습니다.",
  4043. "libraryId": "Microsoft.Identity.Client",
  4044. "targetGraphs": [
  4045. "net8.0"
  4046. ]
  4047. },
  4048. {
  4049. "code": "NU1701",
  4050. "level": "Warning",
  4051. "warningLevel": 1,
  4052. "message": "프로젝트 대상 프레임워크 'net8.0' 대신 '.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'을(를) 사용하여 패키지 'Microsoft.AspNet.WebApi.Client 4.0.20710'을(를) 복원했습니다. 이 패키지는 프로젝트와 완벽하게 호환되지 않을 수 있습니다.",
  4053. "libraryId": "Microsoft.AspNet.WebApi.Client",
  4054. "targetGraphs": [
  4055. "net8.0"
  4056. ]
  4057. },
  4058. {
  4059. "code": "NU1701",
  4060. "level": "Warning",
  4061. "warningLevel": 1,
  4062. "message": "프로젝트 대상 프레임워크 'net8.0' 대신 '.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'을(를) 사용하여 패키지 'Microsoft.AspNet.WebApi.Core 4.0.20710'을(를) 복원했습니다. 이 패키지는 프로젝트와 완벽하게 호환되지 않을 수 있습니다.",
  4063. "libraryId": "Microsoft.AspNet.WebApi.Core",
  4064. "targetGraphs": [
  4065. "net8.0"
  4066. ]
  4067. },
  4068. {
  4069. "code": "NU1701",
  4070. "level": "Warning",
  4071. "warningLevel": 1,
  4072. "message": "프로젝트 대상 프레임워크 'net8.0' 대신 '.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'을(를) 사용하여 패키지 'Microsoft.AspNet.WebApi.WebHost 4.0.20710'을(를) 복원했습니다. 이 패키지는 프로젝트와 완벽하게 호환되지 않을 수 있습니다.",
  4073. "libraryId": "Microsoft.AspNet.WebApi.WebHost",
  4074. "targetGraphs": [
  4075. "net8.0"
  4076. ]
  4077. },
  4078. {
  4079. "code": "NU1701",
  4080. "level": "Warning",
  4081. "warningLevel": 1,
  4082. "message": "프로젝트 대상 프레임워크 'net8.0' 대신 '.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'을(를) 사용하여 패키지 'Microsoft.Net.Http 2.0.20710'을(를) 복원했습니다. 이 패키지는 프로젝트와 완벽하게 호환되지 않을 수 있습니다.",
  4083. "libraryId": "Microsoft.Net.Http",
  4084. "targetGraphs": [
  4085. "net8.0"
  4086. ]
  4087. },
  4088. {
  4089. "code": "NU1701",
  4090. "level": "Warning",
  4091. "warningLevel": 1,
  4092. "message": "프로젝트 대상 프레임워크 'net8.0' 대신 '.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'을(를) 사용하여 패키지 'Microsoft.Web.Infrastructure 1.0.0'을(를) 복원했습니다. 이 패키지는 프로젝트와 완벽하게 호환되지 않을 수 있습니다.",
  4093. "libraryId": "Microsoft.Web.Infrastructure",
  4094. "targetGraphs": [
  4095. "net8.0"
  4096. ]
  4097. },
  4098. {
  4099. "code": "NU1701",
  4100. "level": "Warning",
  4101. "warningLevel": 1,
  4102. "message": "프로젝트 대상 프레임워크 'net8.0' 대신 '.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'을(를) 사용하여 패키지 'Swashbuckle.Core 5.6.0'을(를) 복원했습니다. 이 패키지는 프로젝트와 완벽하게 호환되지 않을 수 있습니다.",
  4103. "libraryId": "Swashbuckle.Core",
  4104. "targetGraphs": [
  4105. "net8.0"
  4106. ]
  4107. },
  4108. {
  4109. "code": "NU1701",
  4110. "level": "Warning",
  4111. "warningLevel": 1,
  4112. "message": "프로젝트 대상 프레임워크 'net8.0' 대신 '.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'을(를) 사용하여 패키지 'WebActivatorEx 2.0.0'을(를) 복원했습니다. 이 패키지는 프로젝트와 완벽하게 호환되지 않을 수 있습니다.",
  4113. "libraryId": "WebActivatorEx",
  4114. "targetGraphs": [
  4115. "net8.0"
  4116. ]
  4117. }
  4118. ]
  4119. }