project.assets.json 148 KB

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