EducationDepartment.test.deps.json 87 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304
  1. {
  2. "runtimeTarget": {
  3. "name": ".NETCoreApp,Version=v7.0",
  4. "signature": ""
  5. },
  6. "compilationOptions": {},
  7. "targets": {
  8. ".NETCoreApp,Version=v7.0": {
  9. "EducationDepartment.test/1.0.0": {
  10. "dependencies": {
  11. "EducationDepartment": "1.0.0",
  12. "MSTest.TestAdapter": "2.2.10",
  13. "MSTest.TestFramework": "2.2.10",
  14. "Microsoft.NET.Test.Sdk": "17.7.1",
  15. "Moq": "4.20.70",
  16. "UnitTestHelpers": "1.0.1",
  17. "coverlet.collector": "3.2.0",
  18. "Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions": "14.0.0.0"
  19. },
  20. "runtime": {
  21. "EducationDepartment.test.dll": {}
  22. }
  23. },
  24. "Avalonia/11.0.6": {
  25. "dependencies": {
  26. "Avalonia.BuildServices": "0.0.29",
  27. "Avalonia.Remote.Protocol": "11.0.6",
  28. "MicroCom.Runtime": "0.11.0",
  29. "System.ComponentModel.Annotations": "4.5.0"
  30. },
  31. "runtime": {
  32. "lib/net6.0/Avalonia.Base.dll": {
  33. "assemblyVersion": "11.0.6.0",
  34. "fileVersion": "11.0.6.0"
  35. },
  36. "lib/net6.0/Avalonia.Controls.dll": {
  37. "assemblyVersion": "11.0.6.0",
  38. "fileVersion": "11.0.6.0"
  39. },
  40. "lib/net6.0/Avalonia.DesignerSupport.dll": {
  41. "assemblyVersion": "0.7.0.0",
  42. "fileVersion": "0.7.0.0"
  43. },
  44. "lib/net6.0/Avalonia.Dialogs.dll": {
  45. "assemblyVersion": "11.0.6.0",
  46. "fileVersion": "11.0.6.0"
  47. },
  48. "lib/net6.0/Avalonia.Markup.Xaml.dll": {
  49. "assemblyVersion": "11.0.6.0",
  50. "fileVersion": "11.0.6.0"
  51. },
  52. "lib/net6.0/Avalonia.Markup.dll": {
  53. "assemblyVersion": "11.0.6.0",
  54. "fileVersion": "11.0.6.0"
  55. },
  56. "lib/net6.0/Avalonia.Metal.dll": {
  57. "assemblyVersion": "11.0.6.0",
  58. "fileVersion": "11.0.6.0"
  59. },
  60. "lib/net6.0/Avalonia.MicroCom.dll": {
  61. "assemblyVersion": "11.0.6.0",
  62. "fileVersion": "11.0.6.0"
  63. },
  64. "lib/net6.0/Avalonia.OpenGL.dll": {
  65. "assemblyVersion": "11.0.6.0",
  66. "fileVersion": "11.0.6.0"
  67. },
  68. "lib/net6.0/Avalonia.dll": {
  69. "assemblyVersion": "11.0.6.0",
  70. "fileVersion": "11.0.6.0"
  71. }
  72. }
  73. },
  74. "Avalonia.Angle.Windows.Natives/2.1.0.2023020321": {
  75. "runtimeTargets": {
  76. "runtimes/win-arm64/native/av_libglesv2.dll": {
  77. "rid": "win-arm64",
  78. "assetType": "native",
  79. "fileVersion": "2.1.0.0"
  80. },
  81. "runtimes/win-x64/native/av_libglesv2.dll": {
  82. "rid": "win-x64",
  83. "assetType": "native",
  84. "fileVersion": "2.1.0.0"
  85. },
  86. "runtimes/win-x86/native/av_libglesv2.dll": {
  87. "rid": "win-x86",
  88. "assetType": "native",
  89. "fileVersion": "2.1.0.0"
  90. }
  91. }
  92. },
  93. "Avalonia.BuildServices/0.0.29": {},
  94. "Avalonia.Controls.ColorPicker/11.0.6": {
  95. "dependencies": {
  96. "Avalonia": "11.0.6",
  97. "Avalonia.Remote.Protocol": "11.0.6"
  98. },
  99. "runtime": {
  100. "lib/net6.0/Avalonia.Controls.ColorPicker.dll": {
  101. "assemblyVersion": "11.0.6.0",
  102. "fileVersion": "11.0.6.0"
  103. }
  104. }
  105. },
  106. "Avalonia.Controls.DataGrid/11.0.6": {
  107. "dependencies": {
  108. "Avalonia": "11.0.6",
  109. "Avalonia.Remote.Protocol": "11.0.6"
  110. },
  111. "runtime": {
  112. "lib/net6.0/Avalonia.Controls.DataGrid.dll": {
  113. "assemblyVersion": "11.0.6.0",
  114. "fileVersion": "11.0.6.0"
  115. }
  116. }
  117. },
  118. "Avalonia.Desktop/11.0.6": {
  119. "dependencies": {
  120. "Avalonia": "11.0.6",
  121. "Avalonia.Native": "11.0.6",
  122. "Avalonia.Skia": "11.0.6",
  123. "Avalonia.Win32": "11.0.6",
  124. "Avalonia.X11": "11.0.6"
  125. },
  126. "runtime": {
  127. "lib/net6.0/Avalonia.Desktop.dll": {
  128. "assemblyVersion": "11.0.6.0",
  129. "fileVersion": "11.0.6.0"
  130. }
  131. }
  132. },
  133. "Avalonia.Diagnostics/11.0.6": {
  134. "dependencies": {
  135. "Avalonia": "11.0.6",
  136. "Avalonia.Controls.ColorPicker": "11.0.6",
  137. "Avalonia.Controls.DataGrid": "11.0.6",
  138. "Avalonia.Themes.Simple": "11.0.6",
  139. "Microsoft.CodeAnalysis.CSharp.Scripting": "3.8.0",
  140. "Microsoft.CodeAnalysis.Common": "3.8.0"
  141. },
  142. "runtime": {
  143. "lib/net6.0/Avalonia.Diagnostics.dll": {
  144. "assemblyVersion": "11.0.6.0",
  145. "fileVersion": "11.0.6.0"
  146. }
  147. }
  148. },
  149. "Avalonia.Fonts.Inter/11.0.6": {
  150. "dependencies": {
  151. "Avalonia": "11.0.6"
  152. },
  153. "runtime": {
  154. "lib/net6.0/Avalonia.Fonts.Inter.dll": {
  155. "assemblyVersion": "11.0.6.0",
  156. "fileVersion": "11.0.6.0"
  157. }
  158. }
  159. },
  160. "Avalonia.FreeDesktop/11.0.6": {
  161. "dependencies": {
  162. "Avalonia": "11.0.6",
  163. "Tmds.DBus.Protocol": "0.15.0"
  164. },
  165. "runtime": {
  166. "lib/net6.0/Avalonia.FreeDesktop.dll": {
  167. "assemblyVersion": "11.0.6.0",
  168. "fileVersion": "11.0.6.0"
  169. }
  170. }
  171. },
  172. "Avalonia.Native/11.0.6": {
  173. "dependencies": {
  174. "Avalonia": "11.0.6"
  175. },
  176. "runtime": {
  177. "lib/net6.0/Avalonia.Native.dll": {
  178. "assemblyVersion": "11.0.6.0",
  179. "fileVersion": "11.0.6.0"
  180. }
  181. },
  182. "runtimeTargets": {
  183. "runtimes/osx/native/libAvaloniaNative.dylib": {
  184. "rid": "osx",
  185. "assetType": "native",
  186. "fileVersion": "0.0.0.0"
  187. }
  188. }
  189. },
  190. "Avalonia.ReactiveUI/11.0.6": {
  191. "dependencies": {
  192. "Avalonia": "11.0.6",
  193. "ReactiveUI": "18.3.1",
  194. "System.Reactive": "5.0.0"
  195. },
  196. "runtime": {
  197. "lib/net6.0/Avalonia.ReactiveUI.dll": {
  198. "assemblyVersion": "11.0.6.0",
  199. "fileVersion": "11.0.6.0"
  200. }
  201. }
  202. },
  203. "Avalonia.Remote.Protocol/11.0.6": {
  204. "runtime": {
  205. "lib/net6.0/Avalonia.Remote.Protocol.dll": {
  206. "assemblyVersion": "11.0.6.0",
  207. "fileVersion": "11.0.6.0"
  208. }
  209. }
  210. },
  211. "Avalonia.Skia/11.0.6": {
  212. "dependencies": {
  213. "Avalonia": "11.0.6",
  214. "HarfBuzzSharp": "7.3.0",
  215. "HarfBuzzSharp.NativeAssets.Linux": "7.3.0",
  216. "HarfBuzzSharp.NativeAssets.WebAssembly": "7.3.0",
  217. "SkiaSharp": "2.88.6",
  218. "SkiaSharp.NativeAssets.Linux": "2.88.6",
  219. "SkiaSharp.NativeAssets.WebAssembly": "2.88.6"
  220. },
  221. "runtime": {
  222. "lib/net6.0/Avalonia.Skia.dll": {
  223. "assemblyVersion": "11.0.6.0",
  224. "fileVersion": "11.0.6.0"
  225. }
  226. }
  227. },
  228. "Avalonia.Themes.Fluent/11.0.6": {
  229. "dependencies": {
  230. "Avalonia": "11.0.6"
  231. },
  232. "runtime": {
  233. "lib/net6.0/Avalonia.Themes.Fluent.dll": {
  234. "assemblyVersion": "11.0.6.0",
  235. "fileVersion": "11.0.6.0"
  236. }
  237. }
  238. },
  239. "Avalonia.Themes.Simple/11.0.6": {
  240. "dependencies": {
  241. "Avalonia": "11.0.6"
  242. },
  243. "runtime": {
  244. "lib/net6.0/Avalonia.Themes.Simple.dll": {
  245. "assemblyVersion": "11.0.6.0",
  246. "fileVersion": "11.0.6.0"
  247. }
  248. }
  249. },
  250. "Avalonia.Win32/11.0.6": {
  251. "dependencies": {
  252. "Avalonia": "11.0.6",
  253. "Avalonia.Angle.Windows.Natives": "2.1.0.2023020321",
  254. "System.Drawing.Common": "6.0.0",
  255. "System.Numerics.Vectors": "4.5.0"
  256. },
  257. "runtime": {
  258. "lib/net6.0/Avalonia.Win32.dll": {
  259. "assemblyVersion": "11.0.6.0",
  260. "fileVersion": "11.0.6.0"
  261. }
  262. }
  263. },
  264. "Avalonia.X11/11.0.6": {
  265. "dependencies": {
  266. "Avalonia": "11.0.6",
  267. "Avalonia.FreeDesktop": "11.0.6",
  268. "Avalonia.Skia": "11.0.6"
  269. },
  270. "runtime": {
  271. "lib/net6.0/Avalonia.X11.dll": {
  272. "assemblyVersion": "11.0.6.0",
  273. "fileVersion": "11.0.6.0"
  274. }
  275. }
  276. },
  277. "Castle.Core/5.1.1": {
  278. "dependencies": {
  279. "System.Diagnostics.EventLog": "6.0.0"
  280. },
  281. "runtime": {
  282. "lib/net6.0/Castle.Core.dll": {
  283. "assemblyVersion": "5.0.0.0",
  284. "fileVersion": "5.1.1.0"
  285. }
  286. }
  287. },
  288. "coverlet.collector/3.2.0": {},
  289. "CsvHelper/32.0.3": {
  290. "runtime": {
  291. "lib/net7.0/CsvHelper.dll": {
  292. "assemblyVersion": "32.0.0.0",
  293. "fileVersion": "32.0.3.22"
  294. }
  295. }
  296. },
  297. "DynamicData/7.9.5": {
  298. "dependencies": {
  299. "System.Reactive": "5.0.0"
  300. },
  301. "runtime": {
  302. "lib/net6.0/DynamicData.dll": {
  303. "assemblyVersion": "7.9.0.0",
  304. "fileVersion": "7.9.5.54039"
  305. }
  306. }
  307. },
  308. "HarfBuzzSharp/7.3.0": {
  309. "dependencies": {
  310. "HarfBuzzSharp.NativeAssets.Win32": "7.3.0",
  311. "HarfBuzzSharp.NativeAssets.macOS": "7.3.0"
  312. },
  313. "runtime": {
  314. "lib/net6.0/HarfBuzzSharp.dll": {
  315. "assemblyVersion": "1.0.0.0",
  316. "fileVersion": "7.3.0.0"
  317. }
  318. }
  319. },
  320. "HarfBuzzSharp.NativeAssets.Linux/7.3.0": {
  321. "dependencies": {
  322. "HarfBuzzSharp": "7.3.0"
  323. },
  324. "runtimeTargets": {
  325. "runtimes/linux-arm/native/libHarfBuzzSharp.so": {
  326. "rid": "linux-arm",
  327. "assetType": "native",
  328. "fileVersion": "0.0.0.0"
  329. },
  330. "runtimes/linux-arm64/native/libHarfBuzzSharp.so": {
  331. "rid": "linux-arm64",
  332. "assetType": "native",
  333. "fileVersion": "0.0.0.0"
  334. },
  335. "runtimes/linux-musl-x64/native/libHarfBuzzSharp.so": {
  336. "rid": "linux-musl-x64",
  337. "assetType": "native",
  338. "fileVersion": "0.0.0.0"
  339. },
  340. "runtimes/linux-x64/native/libHarfBuzzSharp.so": {
  341. "rid": "linux-x64",
  342. "assetType": "native",
  343. "fileVersion": "0.0.0.0"
  344. }
  345. }
  346. },
  347. "HarfBuzzSharp.NativeAssets.macOS/7.3.0": {
  348. "runtimeTargets": {
  349. "runtimes/osx/native/libHarfBuzzSharp.dylib": {
  350. "rid": "osx",
  351. "assetType": "native",
  352. "fileVersion": "0.0.0.0"
  353. }
  354. }
  355. },
  356. "HarfBuzzSharp.NativeAssets.WebAssembly/7.3.0": {},
  357. "HarfBuzzSharp.NativeAssets.Win32/7.3.0": {
  358. "runtimeTargets": {
  359. "runtimes/win-arm64/native/libHarfBuzzSharp.dll": {
  360. "rid": "win-arm64",
  361. "assetType": "native",
  362. "fileVersion": "0.0.0.0"
  363. },
  364. "runtimes/win-x64/native/libHarfBuzzSharp.dll": {
  365. "rid": "win-x64",
  366. "assetType": "native",
  367. "fileVersion": "0.0.0.0"
  368. },
  369. "runtimes/win-x86/native/libHarfBuzzSharp.dll": {
  370. "rid": "win-x86",
  371. "assetType": "native",
  372. "fileVersion": "0.0.0.0"
  373. }
  374. }
  375. },
  376. "MicroCom.Runtime/0.11.0": {
  377. "runtime": {
  378. "lib/net5.0/MicroCom.Runtime.dll": {
  379. "assemblyVersion": "0.11.0.0",
  380. "fileVersion": "0.11.0.0"
  381. }
  382. }
  383. },
  384. "Microsoft.CodeAnalysis.Analyzers/3.0.0": {},
  385. "Microsoft.CodeAnalysis.Common/3.8.0": {
  386. "dependencies": {
  387. "Microsoft.CodeAnalysis.Analyzers": "3.0.0",
  388. "System.Collections.Immutable": "5.0.0",
  389. "System.Memory": "4.5.4",
  390. "System.Reflection.Metadata": "5.0.0",
  391. "System.Runtime.CompilerServices.Unsafe": "4.7.1",
  392. "System.Text.Encoding.CodePages": "4.5.1",
  393. "System.Threading.Tasks.Extensions": "4.5.4"
  394. },
  395. "runtime": {
  396. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
  397. "assemblyVersion": "3.8.0.0",
  398. "fileVersion": "3.800.20.56202"
  399. }
  400. },
  401. "resources": {
  402. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
  403. "locale": "cs"
  404. },
  405. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
  406. "locale": "de"
  407. },
  408. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
  409. "locale": "es"
  410. },
  411. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
  412. "locale": "fr"
  413. },
  414. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
  415. "locale": "it"
  416. },
  417. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
  418. "locale": "ja"
  419. },
  420. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
  421. "locale": "ko"
  422. },
  423. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
  424. "locale": "pl"
  425. },
  426. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
  427. "locale": "pt-BR"
  428. },
  429. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
  430. "locale": "ru"
  431. },
  432. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
  433. "locale": "tr"
  434. },
  435. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
  436. "locale": "zh-Hans"
  437. },
  438. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
  439. "locale": "zh-Hant"
  440. }
  441. }
  442. },
  443. "Microsoft.CodeAnalysis.CSharp/3.8.0": {
  444. "dependencies": {
  445. "Microsoft.CodeAnalysis.Common": "3.8.0"
  446. },
  447. "runtime": {
  448. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
  449. "assemblyVersion": "3.8.0.0",
  450. "fileVersion": "3.800.20.56202"
  451. }
  452. },
  453. "resources": {
  454. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  455. "locale": "cs"
  456. },
  457. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  458. "locale": "de"
  459. },
  460. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  461. "locale": "es"
  462. },
  463. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  464. "locale": "fr"
  465. },
  466. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  467. "locale": "it"
  468. },
  469. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  470. "locale": "ja"
  471. },
  472. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  473. "locale": "ko"
  474. },
  475. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  476. "locale": "pl"
  477. },
  478. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  479. "locale": "pt-BR"
  480. },
  481. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  482. "locale": "ru"
  483. },
  484. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  485. "locale": "tr"
  486. },
  487. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  488. "locale": "zh-Hans"
  489. },
  490. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  491. "locale": "zh-Hant"
  492. }
  493. }
  494. },
  495. "Microsoft.CodeAnalysis.CSharp.Scripting/3.8.0": {
  496. "dependencies": {
  497. "Microsoft.CSharp": "4.3.0",
  498. "Microsoft.CodeAnalysis.CSharp": "3.8.0",
  499. "Microsoft.CodeAnalysis.Common": "3.8.0",
  500. "Microsoft.CodeAnalysis.Scripting.Common": "3.8.0"
  501. },
  502. "runtime": {
  503. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.dll": {
  504. "assemblyVersion": "3.8.0.0",
  505. "fileVersion": "3.800.20.56202"
  506. }
  507. },
  508. "resources": {
  509. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  510. "locale": "cs"
  511. },
  512. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  513. "locale": "de"
  514. },
  515. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  516. "locale": "es"
  517. },
  518. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  519. "locale": "fr"
  520. },
  521. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  522. "locale": "it"
  523. },
  524. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  525. "locale": "ja"
  526. },
  527. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  528. "locale": "ko"
  529. },
  530. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  531. "locale": "pl"
  532. },
  533. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  534. "locale": "pt-BR"
  535. },
  536. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  537. "locale": "ru"
  538. },
  539. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  540. "locale": "tr"
  541. },
  542. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  543. "locale": "zh-Hans"
  544. },
  545. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  546. "locale": "zh-Hant"
  547. }
  548. }
  549. },
  550. "Microsoft.CodeAnalysis.Scripting.Common/3.8.0": {
  551. "dependencies": {
  552. "Microsoft.CodeAnalysis.Common": "3.8.0"
  553. },
  554. "runtime": {
  555. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll": {
  556. "assemblyVersion": "3.8.0.0",
  557. "fileVersion": "3.800.20.56202"
  558. }
  559. },
  560. "resources": {
  561. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  562. "locale": "cs"
  563. },
  564. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  565. "locale": "de"
  566. },
  567. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  568. "locale": "es"
  569. },
  570. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  571. "locale": "fr"
  572. },
  573. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  574. "locale": "it"
  575. },
  576. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  577. "locale": "ja"
  578. },
  579. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  580. "locale": "ko"
  581. },
  582. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  583. "locale": "pl"
  584. },
  585. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  586. "locale": "pt-BR"
  587. },
  588. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  589. "locale": "ru"
  590. },
  591. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  592. "locale": "tr"
  593. },
  594. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  595. "locale": "zh-Hans"
  596. },
  597. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  598. "locale": "zh-Hant"
  599. }
  600. }
  601. },
  602. "Microsoft.CodeCoverage/17.7.1": {
  603. "runtime": {
  604. "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {
  605. "assemblyVersion": "15.0.0.0",
  606. "fileVersion": "17.700.423.36401"
  607. }
  608. }
  609. },
  610. "Microsoft.CSharp/4.3.0": {
  611. "dependencies": {
  612. "System.Collections": "4.3.0",
  613. "System.Diagnostics.Debug": "4.3.0",
  614. "System.Dynamic.Runtime": "4.3.0",
  615. "System.Globalization": "4.3.0",
  616. "System.Linq": "4.3.0",
  617. "System.Linq.Expressions": "4.3.0",
  618. "System.ObjectModel": "4.3.0",
  619. "System.Reflection": "4.3.0",
  620. "System.Reflection.Extensions": "4.3.0",
  621. "System.Reflection.Primitives": "4.3.0",
  622. "System.Reflection.TypeExtensions": "4.3.0",
  623. "System.Resources.ResourceManager": "4.3.0",
  624. "System.Runtime": "4.3.0",
  625. "System.Runtime.Extensions": "4.3.0",
  626. "System.Runtime.InteropServices": "4.3.0",
  627. "System.Threading": "4.3.0"
  628. }
  629. },
  630. "Microsoft.EntityFrameworkCore/7.0.11": {
  631. "dependencies": {
  632. "Microsoft.EntityFrameworkCore.Abstractions": "7.0.11",
  633. "Microsoft.EntityFrameworkCore.Analyzers": "7.0.11",
  634. "Microsoft.Extensions.Caching.Memory": "7.0.0",
  635. "Microsoft.Extensions.DependencyInjection": "7.0.0",
  636. "Microsoft.Extensions.Logging": "7.0.0"
  637. },
  638. "runtime": {
  639. "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {
  640. "assemblyVersion": "7.0.11.0",
  641. "fileVersion": "7.0.1123.40906"
  642. }
  643. }
  644. },
  645. "Microsoft.EntityFrameworkCore.Abstractions/7.0.11": {
  646. "runtime": {
  647. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  648. "assemblyVersion": "7.0.11.0",
  649. "fileVersion": "7.0.1123.40906"
  650. }
  651. }
  652. },
  653. "Microsoft.EntityFrameworkCore.Analyzers/7.0.11": {},
  654. "Microsoft.EntityFrameworkCore.Relational/7.0.11": {
  655. "dependencies": {
  656. "Microsoft.EntityFrameworkCore": "7.0.11",
  657. "Microsoft.Extensions.Configuration.Abstractions": "7.0.0"
  658. },
  659. "runtime": {
  660. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  661. "assemblyVersion": "7.0.11.0",
  662. "fileVersion": "7.0.1123.40906"
  663. }
  664. }
  665. },
  666. "Microsoft.Extensions.Caching.Abstractions/7.0.0": {
  667. "dependencies": {
  668. "Microsoft.Extensions.Primitives": "7.0.0"
  669. },
  670. "runtime": {
  671. "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  672. "assemblyVersion": "7.0.0.0",
  673. "fileVersion": "7.0.22.51805"
  674. }
  675. }
  676. },
  677. "Microsoft.Extensions.Caching.Memory/7.0.0": {
  678. "dependencies": {
  679. "Microsoft.Extensions.Caching.Abstractions": "7.0.0",
  680. "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
  681. "Microsoft.Extensions.Logging.Abstractions": "7.0.0",
  682. "Microsoft.Extensions.Options": "7.0.0",
  683. "Microsoft.Extensions.Primitives": "7.0.0"
  684. },
  685. "runtime": {
  686. "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll": {
  687. "assemblyVersion": "7.0.0.0",
  688. "fileVersion": "7.0.22.51805"
  689. }
  690. }
  691. },
  692. "Microsoft.Extensions.Configuration.Abstractions/7.0.0": {
  693. "dependencies": {
  694. "Microsoft.Extensions.Primitives": "7.0.0"
  695. },
  696. "runtime": {
  697. "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  698. "assemblyVersion": "7.0.0.0",
  699. "fileVersion": "7.0.22.51805"
  700. }
  701. }
  702. },
  703. "Microsoft.Extensions.DependencyInjection/7.0.0": {
  704. "dependencies": {
  705. "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0"
  706. },
  707. "runtime": {
  708. "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll": {
  709. "assemblyVersion": "7.0.0.0",
  710. "fileVersion": "7.0.22.51805"
  711. }
  712. }
  713. },
  714. "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {
  715. "runtime": {
  716. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  717. "assemblyVersion": "7.0.0.0",
  718. "fileVersion": "7.0.22.51805"
  719. }
  720. }
  721. },
  722. "Microsoft.Extensions.Logging/7.0.0": {
  723. "dependencies": {
  724. "Microsoft.Extensions.DependencyInjection": "7.0.0",
  725. "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
  726. "Microsoft.Extensions.Logging.Abstractions": "7.0.0",
  727. "Microsoft.Extensions.Options": "7.0.0"
  728. },
  729. "runtime": {
  730. "lib/net7.0/Microsoft.Extensions.Logging.dll": {
  731. "assemblyVersion": "7.0.0.0",
  732. "fileVersion": "7.0.22.51805"
  733. }
  734. }
  735. },
  736. "Microsoft.Extensions.Logging.Abstractions/7.0.0": {
  737. "runtime": {
  738. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  739. "assemblyVersion": "7.0.0.0",
  740. "fileVersion": "7.0.22.51805"
  741. }
  742. }
  743. },
  744. "Microsoft.Extensions.Options/7.0.0": {
  745. "dependencies": {
  746. "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
  747. "Microsoft.Extensions.Primitives": "7.0.0"
  748. },
  749. "runtime": {
  750. "lib/net7.0/Microsoft.Extensions.Options.dll": {
  751. "assemblyVersion": "7.0.0.0",
  752. "fileVersion": "7.0.22.51805"
  753. }
  754. }
  755. },
  756. "Microsoft.Extensions.Primitives/7.0.0": {
  757. "runtime": {
  758. "lib/net7.0/Microsoft.Extensions.Primitives.dll": {
  759. "assemblyVersion": "7.0.0.0",
  760. "fileVersion": "7.0.22.51805"
  761. }
  762. }
  763. },
  764. "Microsoft.NET.Test.Sdk/17.7.1": {
  765. "dependencies": {
  766. "Microsoft.CodeCoverage": "17.7.1",
  767. "Microsoft.TestPlatform.TestHost": "17.7.1"
  768. }
  769. },
  770. "Microsoft.NETCore.Platforms/2.1.2": {},
  771. "Microsoft.NETCore.Targets/1.1.0": {},
  772. "Microsoft.TestPlatform.ObjectModel/17.7.1": {
  773. "dependencies": {
  774. "NuGet.Frameworks": "6.5.0",
  775. "System.Reflection.Metadata": "5.0.0"
  776. },
  777. "runtime": {
  778. "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {
  779. "assemblyVersion": "15.0.0.0",
  780. "fileVersion": "17.700.123.41601"
  781. },
  782. "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {
  783. "assemblyVersion": "15.0.0.0",
  784. "fileVersion": "17.700.123.41601"
  785. },
  786. "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {
  787. "assemblyVersion": "15.0.0.0",
  788. "fileVersion": "17.700.123.41601"
  789. }
  790. },
  791. "resources": {
  792. "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  793. "locale": "cs"
  794. },
  795. "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  796. "locale": "cs"
  797. },
  798. "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  799. "locale": "de"
  800. },
  801. "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  802. "locale": "de"
  803. },
  804. "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  805. "locale": "es"
  806. },
  807. "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  808. "locale": "es"
  809. },
  810. "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  811. "locale": "fr"
  812. },
  813. "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  814. "locale": "fr"
  815. },
  816. "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  817. "locale": "it"
  818. },
  819. "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  820. "locale": "it"
  821. },
  822. "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  823. "locale": "ja"
  824. },
  825. "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  826. "locale": "ja"
  827. },
  828. "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  829. "locale": "ko"
  830. },
  831. "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  832. "locale": "ko"
  833. },
  834. "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  835. "locale": "pl"
  836. },
  837. "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  838. "locale": "pl"
  839. },
  840. "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  841. "locale": "pt-BR"
  842. },
  843. "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  844. "locale": "pt-BR"
  845. },
  846. "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  847. "locale": "ru"
  848. },
  849. "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  850. "locale": "ru"
  851. },
  852. "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  853. "locale": "tr"
  854. },
  855. "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  856. "locale": "tr"
  857. },
  858. "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  859. "locale": "zh-Hans"
  860. },
  861. "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  862. "locale": "zh-Hans"
  863. },
  864. "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  865. "locale": "zh-Hant"
  866. },
  867. "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  868. "locale": "zh-Hant"
  869. }
  870. }
  871. },
  872. "Microsoft.TestPlatform.TestHost/17.7.1": {
  873. "dependencies": {
  874. "Microsoft.TestPlatform.ObjectModel": "17.7.1",
  875. "Newtonsoft.Json": "13.0.1"
  876. },
  877. "runtime": {
  878. "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {
  879. "assemblyVersion": "15.0.0.0",
  880. "fileVersion": "17.700.123.41601"
  881. },
  882. "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {
  883. "assemblyVersion": "15.0.0.0",
  884. "fileVersion": "17.700.123.41601"
  885. },
  886. "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": {
  887. "assemblyVersion": "15.0.0.0",
  888. "fileVersion": "17.700.123.41601"
  889. },
  890. "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {
  891. "assemblyVersion": "15.0.0.0",
  892. "fileVersion": "17.700.123.41601"
  893. },
  894. "lib/netcoreapp3.1/testhost.dll": {
  895. "assemblyVersion": "15.0.0.0",
  896. "fileVersion": "17.700.123.41601"
  897. }
  898. },
  899. "resources": {
  900. "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  901. "locale": "cs"
  902. },
  903. "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  904. "locale": "cs"
  905. },
  906. "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  907. "locale": "cs"
  908. },
  909. "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  910. "locale": "de"
  911. },
  912. "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  913. "locale": "de"
  914. },
  915. "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  916. "locale": "de"
  917. },
  918. "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  919. "locale": "es"
  920. },
  921. "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  922. "locale": "es"
  923. },
  924. "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  925. "locale": "es"
  926. },
  927. "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  928. "locale": "fr"
  929. },
  930. "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  931. "locale": "fr"
  932. },
  933. "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  934. "locale": "fr"
  935. },
  936. "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  937. "locale": "it"
  938. },
  939. "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  940. "locale": "it"
  941. },
  942. "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  943. "locale": "it"
  944. },
  945. "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  946. "locale": "ja"
  947. },
  948. "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  949. "locale": "ja"
  950. },
  951. "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  952. "locale": "ja"
  953. },
  954. "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  955. "locale": "ko"
  956. },
  957. "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  958. "locale": "ko"
  959. },
  960. "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  961. "locale": "ko"
  962. },
  963. "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  964. "locale": "pl"
  965. },
  966. "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  967. "locale": "pl"
  968. },
  969. "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  970. "locale": "pl"
  971. },
  972. "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  973. "locale": "pt-BR"
  974. },
  975. "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  976. "locale": "pt-BR"
  977. },
  978. "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  979. "locale": "pt-BR"
  980. },
  981. "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  982. "locale": "ru"
  983. },
  984. "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  985. "locale": "ru"
  986. },
  987. "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  988. "locale": "ru"
  989. },
  990. "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  991. "locale": "tr"
  992. },
  993. "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  994. "locale": "tr"
  995. },
  996. "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  997. "locale": "tr"
  998. },
  999. "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  1000. "locale": "zh-Hans"
  1001. },
  1002. "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  1003. "locale": "zh-Hans"
  1004. },
  1005. "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  1006. "locale": "zh-Hans"
  1007. },
  1008. "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  1009. "locale": "zh-Hant"
  1010. },
  1011. "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  1012. "locale": "zh-Hant"
  1013. },
  1014. "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  1015. "locale": "zh-Hant"
  1016. }
  1017. }
  1018. },
  1019. "Microsoft.Win32.SystemEvents/6.0.0": {
  1020. "runtime": {
  1021. "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  1022. "assemblyVersion": "6.0.0.0",
  1023. "fileVersion": "6.0.21.52210"
  1024. }
  1025. },
  1026. "runtimeTargets": {
  1027. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  1028. "rid": "win",
  1029. "assetType": "runtime",
  1030. "assemblyVersion": "6.0.0.0",
  1031. "fileVersion": "6.0.21.52210"
  1032. }
  1033. }
  1034. },
  1035. "Moq/4.20.70": {
  1036. "dependencies": {
  1037. "Castle.Core": "5.1.1"
  1038. },
  1039. "runtime": {
  1040. "lib/net6.0/Moq.dll": {
  1041. "assemblyVersion": "4.20.70.0",
  1042. "fileVersion": "4.20.70.0"
  1043. }
  1044. }
  1045. },
  1046. "MSTest.TestAdapter/2.2.10": {
  1047. "dependencies": {
  1048. "Newtonsoft.Json": "13.0.1",
  1049. "System.Diagnostics.TextWriterTraceListener": "4.3.0"
  1050. }
  1051. },
  1052. "MSTest.TestFramework/2.2.10": {
  1053. "runtime": {
  1054. "lib/net5.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": {
  1055. "assemblyVersion": "14.0.0.0",
  1056. "fileVersion": "14.0.7126.11"
  1057. }
  1058. }
  1059. },
  1060. "Newtonsoft.Json/13.0.1": {
  1061. "runtime": {
  1062. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1063. "assemblyVersion": "13.0.0.0",
  1064. "fileVersion": "13.0.1.25517"
  1065. }
  1066. }
  1067. },
  1068. "Npgsql/7.0.6": {
  1069. "dependencies": {
  1070. "Microsoft.Extensions.Logging.Abstractions": "7.0.0"
  1071. },
  1072. "runtime": {
  1073. "lib/net7.0/Npgsql.dll": {
  1074. "assemblyVersion": "7.0.6.0",
  1075. "fileVersion": "7.0.6.0"
  1076. }
  1077. }
  1078. },
  1079. "Npgsql.EntityFrameworkCore.PostgreSQL/7.0.11": {
  1080. "dependencies": {
  1081. "Microsoft.EntityFrameworkCore": "7.0.11",
  1082. "Microsoft.EntityFrameworkCore.Abstractions": "7.0.11",
  1083. "Microsoft.EntityFrameworkCore.Relational": "7.0.11",
  1084. "Npgsql": "7.0.6"
  1085. },
  1086. "runtime": {
  1087. "lib/net7.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {
  1088. "assemblyVersion": "7.0.11.0",
  1089. "fileVersion": "7.0.11.0"
  1090. }
  1091. }
  1092. },
  1093. "NuGet.Frameworks/6.5.0": {
  1094. "runtime": {
  1095. "lib/netstandard2.0/NuGet.Frameworks.dll": {
  1096. "assemblyVersion": "6.5.0.154",
  1097. "fileVersion": "6.5.0.154"
  1098. }
  1099. }
  1100. },
  1101. "ReactiveUI/18.3.1": {
  1102. "dependencies": {
  1103. "DynamicData": "7.9.5",
  1104. "Splat": "14.4.1"
  1105. },
  1106. "runtime": {
  1107. "lib/net6.0/ReactiveUI.dll": {
  1108. "assemblyVersion": "18.3.0.0",
  1109. "fileVersion": "18.3.1.49589"
  1110. }
  1111. }
  1112. },
  1113. "runtime.native.System/4.3.0": {
  1114. "dependencies": {
  1115. "Microsoft.NETCore.Platforms": "2.1.2",
  1116. "Microsoft.NETCore.Targets": "1.1.0"
  1117. }
  1118. },
  1119. "SkiaSharp/2.88.6": {
  1120. "dependencies": {
  1121. "SkiaSharp.NativeAssets.Win32": "2.88.6",
  1122. "SkiaSharp.NativeAssets.macOS": "2.88.6"
  1123. },
  1124. "runtime": {
  1125. "lib/net6.0/SkiaSharp.dll": {
  1126. "assemblyVersion": "2.88.0.0",
  1127. "fileVersion": "2.88.6.0"
  1128. }
  1129. }
  1130. },
  1131. "SkiaSharp.NativeAssets.Linux/2.88.6": {
  1132. "dependencies": {
  1133. "SkiaSharp": "2.88.6"
  1134. },
  1135. "runtimeTargets": {
  1136. "runtimes/linux-arm/native/libSkiaSharp.so": {
  1137. "rid": "linux-arm",
  1138. "assetType": "native",
  1139. "fileVersion": "0.0.0.0"
  1140. },
  1141. "runtimes/linux-arm64/native/libSkiaSharp.so": {
  1142. "rid": "linux-arm64",
  1143. "assetType": "native",
  1144. "fileVersion": "0.0.0.0"
  1145. },
  1146. "runtimes/linux-musl-x64/native/libSkiaSharp.so": {
  1147. "rid": "linux-musl-x64",
  1148. "assetType": "native",
  1149. "fileVersion": "0.0.0.0"
  1150. },
  1151. "runtimes/linux-x64/native/libSkiaSharp.so": {
  1152. "rid": "linux-x64",
  1153. "assetType": "native",
  1154. "fileVersion": "0.0.0.0"
  1155. }
  1156. }
  1157. },
  1158. "SkiaSharp.NativeAssets.macOS/2.88.6": {
  1159. "runtimeTargets": {
  1160. "runtimes/osx/native/libSkiaSharp.dylib": {
  1161. "rid": "osx",
  1162. "assetType": "native",
  1163. "fileVersion": "0.0.0.0"
  1164. }
  1165. }
  1166. },
  1167. "SkiaSharp.NativeAssets.WebAssembly/2.88.6": {},
  1168. "SkiaSharp.NativeAssets.Win32/2.88.6": {
  1169. "runtimeTargets": {
  1170. "runtimes/win-arm64/native/libSkiaSharp.dll": {
  1171. "rid": "win-arm64",
  1172. "assetType": "native",
  1173. "fileVersion": "0.0.0.0"
  1174. },
  1175. "runtimes/win-x64/native/libSkiaSharp.dll": {
  1176. "rid": "win-x64",
  1177. "assetType": "native",
  1178. "fileVersion": "0.0.0.0"
  1179. },
  1180. "runtimes/win-x86/native/libSkiaSharp.dll": {
  1181. "rid": "win-x86",
  1182. "assetType": "native",
  1183. "fileVersion": "0.0.0.0"
  1184. }
  1185. }
  1186. },
  1187. "Splat/14.4.1": {
  1188. "runtime": {
  1189. "lib/net6.0/Splat.dll": {
  1190. "assemblyVersion": "14.4.0.0",
  1191. "fileVersion": "14.4.1.53869"
  1192. }
  1193. }
  1194. },
  1195. "System.Collections/4.3.0": {
  1196. "dependencies": {
  1197. "Microsoft.NETCore.Platforms": "2.1.2",
  1198. "Microsoft.NETCore.Targets": "1.1.0",
  1199. "System.Runtime": "4.3.0"
  1200. }
  1201. },
  1202. "System.Collections.Immutable/5.0.0": {},
  1203. "System.ComponentModel.Annotations/4.5.0": {},
  1204. "System.Diagnostics.Debug/4.3.0": {
  1205. "dependencies": {
  1206. "Microsoft.NETCore.Platforms": "2.1.2",
  1207. "Microsoft.NETCore.Targets": "1.1.0",
  1208. "System.Runtime": "4.3.0"
  1209. }
  1210. },
  1211. "System.Diagnostics.EventLog/6.0.0": {
  1212. "runtime": {
  1213. "lib/net6.0/System.Diagnostics.EventLog.dll": {
  1214. "assemblyVersion": "6.0.0.0",
  1215. "fileVersion": "6.0.21.52210"
  1216. }
  1217. },
  1218. "runtimeTargets": {
  1219. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll": {
  1220. "rid": "win",
  1221. "assetType": "runtime",
  1222. "assemblyVersion": "6.0.0.0",
  1223. "fileVersion": "0.0.0.0"
  1224. },
  1225. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll": {
  1226. "rid": "win",
  1227. "assetType": "runtime",
  1228. "assemblyVersion": "6.0.0.0",
  1229. "fileVersion": "6.0.21.52210"
  1230. }
  1231. }
  1232. },
  1233. "System.Diagnostics.TextWriterTraceListener/4.3.0": {
  1234. "dependencies": {
  1235. "System.Diagnostics.TraceSource": "4.3.0",
  1236. "System.Globalization": "4.3.0",
  1237. "System.IO": "4.3.0",
  1238. "System.Resources.ResourceManager": "4.3.0",
  1239. "System.Runtime": "4.3.0",
  1240. "System.Threading": "4.3.0"
  1241. }
  1242. },
  1243. "System.Diagnostics.TraceSource/4.3.0": {
  1244. "dependencies": {
  1245. "Microsoft.NETCore.Platforms": "2.1.2",
  1246. "System.Collections": "4.3.0",
  1247. "System.Diagnostics.Debug": "4.3.0",
  1248. "System.Globalization": "4.3.0",
  1249. "System.Resources.ResourceManager": "4.3.0",
  1250. "System.Runtime": "4.3.0",
  1251. "System.Runtime.Extensions": "4.3.0",
  1252. "System.Threading": "4.3.0",
  1253. "runtime.native.System": "4.3.0"
  1254. }
  1255. },
  1256. "System.Drawing.Common/6.0.0": {
  1257. "dependencies": {
  1258. "Microsoft.Win32.SystemEvents": "6.0.0"
  1259. },
  1260. "runtime": {
  1261. "lib/net6.0/System.Drawing.Common.dll": {
  1262. "assemblyVersion": "6.0.0.0",
  1263. "fileVersion": "6.0.21.52210"
  1264. }
  1265. },
  1266. "runtimeTargets": {
  1267. "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": {
  1268. "rid": "unix",
  1269. "assetType": "runtime",
  1270. "assemblyVersion": "6.0.0.0",
  1271. "fileVersion": "6.0.21.52210"
  1272. },
  1273. "runtimes/win/lib/net6.0/System.Drawing.Common.dll": {
  1274. "rid": "win",
  1275. "assetType": "runtime",
  1276. "assemblyVersion": "6.0.0.0",
  1277. "fileVersion": "6.0.21.52210"
  1278. }
  1279. }
  1280. },
  1281. "System.Dynamic.Runtime/4.3.0": {
  1282. "dependencies": {
  1283. "System.Collections": "4.3.0",
  1284. "System.Diagnostics.Debug": "4.3.0",
  1285. "System.Linq": "4.3.0",
  1286. "System.Linq.Expressions": "4.3.0",
  1287. "System.ObjectModel": "4.3.0",
  1288. "System.Reflection": "4.3.0",
  1289. "System.Reflection.Emit": "4.3.0",
  1290. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1291. "System.Reflection.Primitives": "4.3.0",
  1292. "System.Reflection.TypeExtensions": "4.3.0",
  1293. "System.Resources.ResourceManager": "4.3.0",
  1294. "System.Runtime": "4.3.0",
  1295. "System.Runtime.Extensions": "4.3.0",
  1296. "System.Threading": "4.3.0"
  1297. }
  1298. },
  1299. "System.Globalization/4.3.0": {
  1300. "dependencies": {
  1301. "Microsoft.NETCore.Platforms": "2.1.2",
  1302. "Microsoft.NETCore.Targets": "1.1.0",
  1303. "System.Runtime": "4.3.0"
  1304. }
  1305. },
  1306. "System.IO/4.3.0": {
  1307. "dependencies": {
  1308. "Microsoft.NETCore.Platforms": "2.1.2",
  1309. "Microsoft.NETCore.Targets": "1.1.0",
  1310. "System.Runtime": "4.3.0",
  1311. "System.Text.Encoding": "4.3.0",
  1312. "System.Threading.Tasks": "4.3.0"
  1313. }
  1314. },
  1315. "System.IO.Pipelines/6.0.0": {
  1316. "runtime": {
  1317. "lib/net6.0/System.IO.Pipelines.dll": {
  1318. "assemblyVersion": "6.0.0.0",
  1319. "fileVersion": "6.0.21.52210"
  1320. }
  1321. }
  1322. },
  1323. "System.Linq/4.3.0": {
  1324. "dependencies": {
  1325. "System.Collections": "4.3.0",
  1326. "System.Diagnostics.Debug": "4.3.0",
  1327. "System.Resources.ResourceManager": "4.3.0",
  1328. "System.Runtime": "4.3.0",
  1329. "System.Runtime.Extensions": "4.3.0"
  1330. }
  1331. },
  1332. "System.Linq.Expressions/4.3.0": {
  1333. "dependencies": {
  1334. "System.Collections": "4.3.0",
  1335. "System.Diagnostics.Debug": "4.3.0",
  1336. "System.Globalization": "4.3.0",
  1337. "System.IO": "4.3.0",
  1338. "System.Linq": "4.3.0",
  1339. "System.ObjectModel": "4.3.0",
  1340. "System.Reflection": "4.3.0",
  1341. "System.Reflection.Emit": "4.3.0",
  1342. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1343. "System.Reflection.Emit.Lightweight": "4.3.0",
  1344. "System.Reflection.Extensions": "4.3.0",
  1345. "System.Reflection.Primitives": "4.3.0",
  1346. "System.Reflection.TypeExtensions": "4.3.0",
  1347. "System.Resources.ResourceManager": "4.3.0",
  1348. "System.Runtime": "4.3.0",
  1349. "System.Runtime.Extensions": "4.3.0",
  1350. "System.Threading": "4.3.0"
  1351. }
  1352. },
  1353. "System.Memory/4.5.4": {},
  1354. "System.Numerics.Vectors/4.5.0": {},
  1355. "System.ObjectModel/4.3.0": {
  1356. "dependencies": {
  1357. "System.Collections": "4.3.0",
  1358. "System.Diagnostics.Debug": "4.3.0",
  1359. "System.Resources.ResourceManager": "4.3.0",
  1360. "System.Runtime": "4.3.0",
  1361. "System.Threading": "4.3.0"
  1362. }
  1363. },
  1364. "System.Reactive/5.0.0": {
  1365. "runtime": {
  1366. "lib/net5.0/System.Reactive.dll": {
  1367. "assemblyVersion": "5.0.0.0",
  1368. "fileVersion": "5.0.0.1"
  1369. }
  1370. }
  1371. },
  1372. "System.Reflection/4.3.0": {
  1373. "dependencies": {
  1374. "Microsoft.NETCore.Platforms": "2.1.2",
  1375. "Microsoft.NETCore.Targets": "1.1.0",
  1376. "System.IO": "4.3.0",
  1377. "System.Reflection.Primitives": "4.3.0",
  1378. "System.Runtime": "4.3.0"
  1379. }
  1380. },
  1381. "System.Reflection.Emit/4.3.0": {
  1382. "dependencies": {
  1383. "System.IO": "4.3.0",
  1384. "System.Reflection": "4.3.0",
  1385. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1386. "System.Reflection.Primitives": "4.3.0",
  1387. "System.Runtime": "4.3.0"
  1388. }
  1389. },
  1390. "System.Reflection.Emit.ILGeneration/4.3.0": {
  1391. "dependencies": {
  1392. "System.Reflection": "4.3.0",
  1393. "System.Reflection.Primitives": "4.3.0",
  1394. "System.Runtime": "4.3.0"
  1395. }
  1396. },
  1397. "System.Reflection.Emit.Lightweight/4.3.0": {
  1398. "dependencies": {
  1399. "System.Reflection": "4.3.0",
  1400. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1401. "System.Reflection.Primitives": "4.3.0",
  1402. "System.Runtime": "4.3.0"
  1403. }
  1404. },
  1405. "System.Reflection.Extensions/4.3.0": {
  1406. "dependencies": {
  1407. "Microsoft.NETCore.Platforms": "2.1.2",
  1408. "Microsoft.NETCore.Targets": "1.1.0",
  1409. "System.Reflection": "4.3.0",
  1410. "System.Runtime": "4.3.0"
  1411. }
  1412. },
  1413. "System.Reflection.Metadata/5.0.0": {},
  1414. "System.Reflection.Primitives/4.3.0": {
  1415. "dependencies": {
  1416. "Microsoft.NETCore.Platforms": "2.1.2",
  1417. "Microsoft.NETCore.Targets": "1.1.0",
  1418. "System.Runtime": "4.3.0"
  1419. }
  1420. },
  1421. "System.Reflection.TypeExtensions/4.3.0": {
  1422. "dependencies": {
  1423. "System.Reflection": "4.3.0",
  1424. "System.Runtime": "4.3.0"
  1425. }
  1426. },
  1427. "System.Resources.ResourceManager/4.3.0": {
  1428. "dependencies": {
  1429. "Microsoft.NETCore.Platforms": "2.1.2",
  1430. "Microsoft.NETCore.Targets": "1.1.0",
  1431. "System.Globalization": "4.3.0",
  1432. "System.Reflection": "4.3.0",
  1433. "System.Runtime": "4.3.0"
  1434. }
  1435. },
  1436. "System.Runtime/4.3.0": {
  1437. "dependencies": {
  1438. "Microsoft.NETCore.Platforms": "2.1.2",
  1439. "Microsoft.NETCore.Targets": "1.1.0"
  1440. }
  1441. },
  1442. "System.Runtime.CompilerServices.Unsafe/4.7.1": {},
  1443. "System.Runtime.Extensions/4.3.0": {
  1444. "dependencies": {
  1445. "Microsoft.NETCore.Platforms": "2.1.2",
  1446. "Microsoft.NETCore.Targets": "1.1.0",
  1447. "System.Runtime": "4.3.0"
  1448. }
  1449. },
  1450. "System.Runtime.Handles/4.3.0": {
  1451. "dependencies": {
  1452. "Microsoft.NETCore.Platforms": "2.1.2",
  1453. "Microsoft.NETCore.Targets": "1.1.0",
  1454. "System.Runtime": "4.3.0"
  1455. }
  1456. },
  1457. "System.Runtime.InteropServices/4.3.0": {
  1458. "dependencies": {
  1459. "Microsoft.NETCore.Platforms": "2.1.2",
  1460. "Microsoft.NETCore.Targets": "1.1.0",
  1461. "System.Reflection": "4.3.0",
  1462. "System.Reflection.Primitives": "4.3.0",
  1463. "System.Runtime": "4.3.0",
  1464. "System.Runtime.Handles": "4.3.0"
  1465. }
  1466. },
  1467. "System.Text.Encoding/4.3.0": {
  1468. "dependencies": {
  1469. "Microsoft.NETCore.Platforms": "2.1.2",
  1470. "Microsoft.NETCore.Targets": "1.1.0",
  1471. "System.Runtime": "4.3.0"
  1472. }
  1473. },
  1474. "System.Text.Encoding.CodePages/4.5.1": {
  1475. "dependencies": {
  1476. "Microsoft.NETCore.Platforms": "2.1.2",
  1477. "System.Runtime.CompilerServices.Unsafe": "4.7.1"
  1478. }
  1479. },
  1480. "System.Threading/4.3.0": {
  1481. "dependencies": {
  1482. "System.Runtime": "4.3.0",
  1483. "System.Threading.Tasks": "4.3.0"
  1484. }
  1485. },
  1486. "System.Threading.Tasks/4.3.0": {
  1487. "dependencies": {
  1488. "Microsoft.NETCore.Platforms": "2.1.2",
  1489. "Microsoft.NETCore.Targets": "1.1.0",
  1490. "System.Runtime": "4.3.0"
  1491. }
  1492. },
  1493. "System.Threading.Tasks.Extensions/4.5.4": {},
  1494. "Tmds.DBus.Protocol/0.15.0": {
  1495. "dependencies": {
  1496. "System.IO.Pipelines": "6.0.0"
  1497. },
  1498. "runtime": {
  1499. "lib/net6.0/Tmds.DBus.Protocol.dll": {
  1500. "assemblyVersion": "0.15.0.0",
  1501. "fileVersion": "0.15.0.0"
  1502. }
  1503. }
  1504. },
  1505. "UnitTestHelpers/1.0.1": {
  1506. "runtime": {
  1507. "lib/net45/UnitTestHelpers.dll": {
  1508. "assemblyVersion": "1.0.1.0",
  1509. "fileVersion": "1.0.1.0"
  1510. }
  1511. }
  1512. },
  1513. "EducationDepartment/1.0.0": {
  1514. "dependencies": {
  1515. "Avalonia": "11.0.6",
  1516. "Avalonia.Desktop": "11.0.6",
  1517. "Avalonia.Diagnostics": "11.0.6",
  1518. "Avalonia.Fonts.Inter": "11.0.6",
  1519. "Avalonia.ReactiveUI": "11.0.6",
  1520. "Avalonia.Themes.Fluent": "11.0.6",
  1521. "CsvHelper": "32.0.3",
  1522. "Npgsql.EntityFrameworkCore.PostgreSQL": "7.0.11"
  1523. },
  1524. "runtime": {
  1525. "EducationDepartment.dll": {}
  1526. }
  1527. },
  1528. "Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions/14.0.0.0": {
  1529. "runtime": {
  1530. "Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll": {
  1531. "assemblyVersion": "14.0.0.0",
  1532. "fileVersion": "14.0.7126.11"
  1533. }
  1534. }
  1535. }
  1536. }
  1537. },
  1538. "libraries": {
  1539. "EducationDepartment.test/1.0.0": {
  1540. "type": "project",
  1541. "serviceable": false,
  1542. "sha512": ""
  1543. },
  1544. "Avalonia/11.0.6": {
  1545. "type": "package",
  1546. "serviceable": true,
  1547. "sha512": "sha512-BhuWLzZOWKqv6i0dTvbx/jsSwqZDhY4093+ihRai0TIc48kgGhX3TpUGRsRFfzfnb7FHwlkgZHjNgleVX+LEJg==",
  1548. "path": "avalonia/11.0.6",
  1549. "hashPath": "avalonia.11.0.6.nupkg.sha512"
  1550. },
  1551. "Avalonia.Angle.Windows.Natives/2.1.0.2023020321": {
  1552. "type": "package",
  1553. "serviceable": true,
  1554. "sha512": "sha512-Zlkkb8ipxrxNWVPCJgMO19fpcpYPP+bpOQ+jPtCFj8v+TzVvPdnGHuyv9IMvSHhhMfEpps4m4hjaP4FORQYVAA==",
  1555. "path": "avalonia.angle.windows.natives/2.1.0.2023020321",
  1556. "hashPath": "avalonia.angle.windows.natives.2.1.0.2023020321.nupkg.sha512"
  1557. },
  1558. "Avalonia.BuildServices/0.0.29": {
  1559. "type": "package",
  1560. "serviceable": true,
  1561. "sha512": "sha512-U4eJLQdoDNHXtEba7MZUCwrBErBTxFp6sUewXBOdAhU0Kwzwaa/EKFcYm8kpcysjzKtfB4S0S9n0uxKZFz/ikw==",
  1562. "path": "avalonia.buildservices/0.0.29",
  1563. "hashPath": "avalonia.buildservices.0.0.29.nupkg.sha512"
  1564. },
  1565. "Avalonia.Controls.ColorPicker/11.0.6": {
  1566. "type": "package",
  1567. "serviceable": true,
  1568. "sha512": "sha512-26OAWrGG81QGx+V3TG9uncyzMNM45oTw1AqdStEMShEynTx/huBXc2mP4AMiF73n8a6rU8tvVySnK4RW71vvkA==",
  1569. "path": "avalonia.controls.colorpicker/11.0.6",
  1570. "hashPath": "avalonia.controls.colorpicker.11.0.6.nupkg.sha512"
  1571. },
  1572. "Avalonia.Controls.DataGrid/11.0.6": {
  1573. "type": "package",
  1574. "serviceable": true,
  1575. "sha512": "sha512-tfi5cpB2dvOk3UF6cUMtqoKF08jIGH9mLfAqpAYGwq1S4CXRL7fVaNMJCeLqQ+lSuqbakVKQZ7ysdJbJLolNgw==",
  1576. "path": "avalonia.controls.datagrid/11.0.6",
  1577. "hashPath": "avalonia.controls.datagrid.11.0.6.nupkg.sha512"
  1578. },
  1579. "Avalonia.Desktop/11.0.6": {
  1580. "type": "package",
  1581. "serviceable": true,
  1582. "sha512": "sha512-4nn7dOZPPOYl84SgEBQpY2c4p7LRu9XkFcaIU963aB4Kz+BzQ6RH8fmtZMTYaJUb65cm3KBtQTd+NbYt7xZMPA==",
  1583. "path": "avalonia.desktop/11.0.6",
  1584. "hashPath": "avalonia.desktop.11.0.6.nupkg.sha512"
  1585. },
  1586. "Avalonia.Diagnostics/11.0.6": {
  1587. "type": "package",
  1588. "serviceable": true,
  1589. "sha512": "sha512-at06sYm/Eyktt/ECQCldJrFhnAQjSsxBpdePOZQo/AUJVhO/K8EzYH2+Ym0Tc9gY6ledEHJlhDTSaNA6R+xfKA==",
  1590. "path": "avalonia.diagnostics/11.0.6",
  1591. "hashPath": "avalonia.diagnostics.11.0.6.nupkg.sha512"
  1592. },
  1593. "Avalonia.Fonts.Inter/11.0.6": {
  1594. "type": "package",
  1595. "serviceable": true,
  1596. "sha512": "sha512-RucxTP8JstJvEr7p0648auRFWRHI49jj4PM2a6GzkiNsvZ+gVL8bz/y6md4+ANZFu7GTj8rdcAf2Fqq1ERdXqw==",
  1597. "path": "avalonia.fonts.inter/11.0.6",
  1598. "hashPath": "avalonia.fonts.inter.11.0.6.nupkg.sha512"
  1599. },
  1600. "Avalonia.FreeDesktop/11.0.6": {
  1601. "type": "package",
  1602. "serviceable": true,
  1603. "sha512": "sha512-9z5D+eiC6YIboyqku5gkpVrV1nWoBmrygbKOw1xDJ+ZCf3p6slsKqhz2T1nsMrrdGt/rw7OpfRWizvT2hgYVPQ==",
  1604. "path": "avalonia.freedesktop/11.0.6",
  1605. "hashPath": "avalonia.freedesktop.11.0.6.nupkg.sha512"
  1606. },
  1607. "Avalonia.Native/11.0.6": {
  1608. "type": "package",
  1609. "serviceable": true,
  1610. "sha512": "sha512-1d2zrLDv0facy7EU2RILNHXg5iR5anEDtPdz+jtKR4mQ6sIRYFD19IFYitNYA4hFwJMVFgEhqZWMQx9BRCM+mA==",
  1611. "path": "avalonia.native/11.0.6",
  1612. "hashPath": "avalonia.native.11.0.6.nupkg.sha512"
  1613. },
  1614. "Avalonia.ReactiveUI/11.0.6": {
  1615. "type": "package",
  1616. "serviceable": true,
  1617. "sha512": "sha512-tA+6LhDWCaSXms0YJcLJy3ib5XJFtjYWlSRygooRCv+rR0Jiw8X7UA6DppEe8SgWJMc395XfiIioEcQ3NfPBeA==",
  1618. "path": "avalonia.reactiveui/11.0.6",
  1619. "hashPath": "avalonia.reactiveui.11.0.6.nupkg.sha512"
  1620. },
  1621. "Avalonia.Remote.Protocol/11.0.6": {
  1622. "type": "package",
  1623. "serviceable": true,
  1624. "sha512": "sha512-aIuCvIW+gjKg3USW6FuAMW6k2HDhTTCzWcGYCnuloOSnFe3EgeqEJr+qbO2whnMD1zLoJil3RWmTBl/b/yUqOw==",
  1625. "path": "avalonia.remote.protocol/11.0.6",
  1626. "hashPath": "avalonia.remote.protocol.11.0.6.nupkg.sha512"
  1627. },
  1628. "Avalonia.Skia/11.0.6": {
  1629. "type": "package",
  1630. "serviceable": true,
  1631. "sha512": "sha512-pl+VsGJknUliP4e6Lvj/eGArOamJys7f4BG5CCgbjSamUeg+sd+VN+UdM7GhUcagmeaiTSgzOmV+1+oKsCB9xw==",
  1632. "path": "avalonia.skia/11.0.6",
  1633. "hashPath": "avalonia.skia.11.0.6.nupkg.sha512"
  1634. },
  1635. "Avalonia.Themes.Fluent/11.0.6": {
  1636. "type": "package",
  1637. "serviceable": true,
  1638. "sha512": "sha512-9z2PFdJEVZo7x8UyfZDVqFF5fayealTl0VtNLwfX7DSE0lXpEPBTmx4q4KseKCFkiAQ0WZ/8YH1K3HjPeO8cHQ==",
  1639. "path": "avalonia.themes.fluent/11.0.6",
  1640. "hashPath": "avalonia.themes.fluent.11.0.6.nupkg.sha512"
  1641. },
  1642. "Avalonia.Themes.Simple/11.0.6": {
  1643. "type": "package",
  1644. "serviceable": true,
  1645. "sha512": "sha512-W4siLTZy8LH/TanayPH1112Ww2Mb1qX9bloQ9fVslUu3ZkvIy0cI+6/+ncHkmCEk5y2ctE2ZA7NepeLT1EoTRQ==",
  1646. "path": "avalonia.themes.simple/11.0.6",
  1647. "hashPath": "avalonia.themes.simple.11.0.6.nupkg.sha512"
  1648. },
  1649. "Avalonia.Win32/11.0.6": {
  1650. "type": "package",
  1651. "serviceable": true,
  1652. "sha512": "sha512-5JxM7K4PMvB5wsYCnT1QGjJmtiYgW4Nq5g7vk4RPB6Pr+A6TuL3arVfcGI4FOV8+3Q1F9znPImRQOUU3zhj/8g==",
  1653. "path": "avalonia.win32/11.0.6",
  1654. "hashPath": "avalonia.win32.11.0.6.nupkg.sha512"
  1655. },
  1656. "Avalonia.X11/11.0.6": {
  1657. "type": "package",
  1658. "serviceable": true,
  1659. "sha512": "sha512-SBS3R1roDLZnnykbltu8q/8RkKACSDi1pOOvKKswa0CjauehIMcK8X1XdCjQDXN+SAWbNOzQHDU5g31a4SNS+Q==",
  1660. "path": "avalonia.x11/11.0.6",
  1661. "hashPath": "avalonia.x11.11.0.6.nupkg.sha512"
  1662. },
  1663. "Castle.Core/5.1.1": {
  1664. "type": "package",
  1665. "serviceable": true,
  1666. "sha512": "sha512-rpYtIczkzGpf+EkZgDr9CClTdemhsrwA/W5hMoPjLkRFnXzH44zDLoovXeKtmxb1ykXK9aJVODSpiJml8CTw2g==",
  1667. "path": "castle.core/5.1.1",
  1668. "hashPath": "castle.core.5.1.1.nupkg.sha512"
  1669. },
  1670. "coverlet.collector/3.2.0": {
  1671. "type": "package",
  1672. "serviceable": true,
  1673. "sha512": "sha512-xjY8xBigSeWIYs4I7DgUHqSNoGqnHi7Fv7/7RZD02rvZyG3hlsjnQKiVKVWKgr9kRKgmV+dEfu8KScvysiC0Wg==",
  1674. "path": "coverlet.collector/3.2.0",
  1675. "hashPath": "coverlet.collector.3.2.0.nupkg.sha512"
  1676. },
  1677. "CsvHelper/32.0.3": {
  1678. "type": "package",
  1679. "serviceable": true,
  1680. "sha512": "sha512-JNDkd4Wc2Tim5IuyL8Ai13RhzRvaHItseEvlJ2YRkx2SMBFrIsW8a5+/o4/O1jsb6mlviihR6Hfyn+nqY6CurA==",
  1681. "path": "csvhelper/32.0.3",
  1682. "hashPath": "csvhelper.32.0.3.nupkg.sha512"
  1683. },
  1684. "DynamicData/7.9.5": {
  1685. "type": "package",
  1686. "serviceable": true,
  1687. "sha512": "sha512-xFwVha7o3qUtVYxco5p+7Urcztc/m1gmaEUxOG0i7LNe+vfCfyb0ECAsT2FLm3zOPHb0g8s9qVu5LfPKfRNVng==",
  1688. "path": "dynamicdata/7.9.5",
  1689. "hashPath": "dynamicdata.7.9.5.nupkg.sha512"
  1690. },
  1691. "HarfBuzzSharp/7.3.0": {
  1692. "type": "package",
  1693. "serviceable": true,
  1694. "sha512": "sha512-OrQLaxtZMIeS2yHSUtsKzeSdk9CPaCpyJ/JCs+wLfRGatjE8MLUS6LGj6vdbGRxqRavcXs79C9O3oWe6FJR0JQ==",
  1695. "path": "harfbuzzsharp/7.3.0",
  1696. "hashPath": "harfbuzzsharp.7.3.0.nupkg.sha512"
  1697. },
  1698. "HarfBuzzSharp.NativeAssets.Linux/7.3.0": {
  1699. "type": "package",
  1700. "serviceable": true,
  1701. "sha512": "sha512-m6F2pEBTN0zTRgQ3caJQRGQkZZizZwHHCbu+rTv+gvwteNBOpqOLD5GE4dB9TFjNNpnyHXtfuMD86JuUra9UvA==",
  1702. "path": "harfbuzzsharp.nativeassets.linux/7.3.0",
  1703. "hashPath": "harfbuzzsharp.nativeassets.linux.7.3.0.nupkg.sha512"
  1704. },
  1705. "HarfBuzzSharp.NativeAssets.macOS/7.3.0": {
  1706. "type": "package",
  1707. "serviceable": true,
  1708. "sha512": "sha512-LWcFJ39j+dN0KK8c/GJJZPPZPL9TqT2FA42/LRGqzUMmSm5LYbINOMnPvUr7RuLR6RFSmKIrgrlgObR8G5ho2A==",
  1709. "path": "harfbuzzsharp.nativeassets.macos/7.3.0",
  1710. "hashPath": "harfbuzzsharp.nativeassets.macos.7.3.0.nupkg.sha512"
  1711. },
  1712. "HarfBuzzSharp.NativeAssets.WebAssembly/7.3.0": {
  1713. "type": "package",
  1714. "serviceable": true,
  1715. "sha512": "sha512-cnl4I6P+VeujfSSD3ZrC5f0TrTGt9EKgCOoZ3LpgLI2xobBKLi5bxOaN2oY6B0xVXxQEhEaWBotg7AuECg00Iw==",
  1716. "path": "harfbuzzsharp.nativeassets.webassembly/7.3.0",
  1717. "hashPath": "harfbuzzsharp.nativeassets.webassembly.7.3.0.nupkg.sha512"
  1718. },
  1719. "HarfBuzzSharp.NativeAssets.Win32/7.3.0": {
  1720. "type": "package",
  1721. "serviceable": true,
  1722. "sha512": "sha512-ulEewLMk+dNmbmpy15ny/YusI6JNUWqchF080TV2jgfFBXPXjWm767JleDi/S7hp8eDeEN6GYIIxpvNr5fLvIw==",
  1723. "path": "harfbuzzsharp.nativeassets.win32/7.3.0",
  1724. "hashPath": "harfbuzzsharp.nativeassets.win32.7.3.0.nupkg.sha512"
  1725. },
  1726. "MicroCom.Runtime/0.11.0": {
  1727. "type": "package",
  1728. "serviceable": true,
  1729. "sha512": "sha512-MEnrZ3UIiH40hjzMDsxrTyi8dtqB5ziv3iBeeU4bXsL/7NLSal9F1lZKpK+tfBRnUoDSdtcW3KufE4yhATOMCA==",
  1730. "path": "microcom.runtime/0.11.0",
  1731. "hashPath": "microcom.runtime.0.11.0.nupkg.sha512"
  1732. },
  1733. "Microsoft.CodeAnalysis.Analyzers/3.0.0": {
  1734. "type": "package",
  1735. "serviceable": true,
  1736. "sha512": "sha512-ojG5pGAhTPmjxRGTNvuszO3H8XPZqksDwr9xLd4Ae/JBjZZdl6GuoLk7uLMf+o7yl5wO0TAqoWcEKkEWqrZE5g==",
  1737. "path": "microsoft.codeanalysis.analyzers/3.0.0",
  1738. "hashPath": "microsoft.codeanalysis.analyzers.3.0.0.nupkg.sha512"
  1739. },
  1740. "Microsoft.CodeAnalysis.Common/3.8.0": {
  1741. "type": "package",
  1742. "serviceable": true,
  1743. "sha512": "sha512-8YTZ7GpsbTdC08DITx7/kwV0k4SC6cbBAFqc13cOm5vKJZcEIAh51tNSyGSkWisMgYCr96B2wb5Zri1bsla3+g==",
  1744. "path": "microsoft.codeanalysis.common/3.8.0",
  1745. "hashPath": "microsoft.codeanalysis.common.3.8.0.nupkg.sha512"
  1746. },
  1747. "Microsoft.CodeAnalysis.CSharp/3.8.0": {
  1748. "type": "package",
  1749. "serviceable": true,
  1750. "sha512": "sha512-hKqFCUSk9TIMBDjiYMF8/ZfK9p9mzpU+slM73CaCHu4ctfkoqJGHLQhyT8wvrYsIg+ufrUWBF8hcJYmyr5rc5Q==",
  1751. "path": "microsoft.codeanalysis.csharp/3.8.0",
  1752. "hashPath": "microsoft.codeanalysis.csharp.3.8.0.nupkg.sha512"
  1753. },
  1754. "Microsoft.CodeAnalysis.CSharp.Scripting/3.8.0": {
  1755. "type": "package",
  1756. "serviceable": true,
  1757. "sha512": "sha512-+XVKzByNigzzvl7rGwpzFrkUbbekNUwdMW3EghcxmNRZd9aamNXxes3I/U0tYx1LTeHEQ5y/nzb7SiEmXBmzEA==",
  1758. "path": "microsoft.codeanalysis.csharp.scripting/3.8.0",
  1759. "hashPath": "microsoft.codeanalysis.csharp.scripting.3.8.0.nupkg.sha512"
  1760. },
  1761. "Microsoft.CodeAnalysis.Scripting.Common/3.8.0": {
  1762. "type": "package",
  1763. "serviceable": true,
  1764. "sha512": "sha512-lR8Mxg/4tnwzFyqJOD7wBoXbyDKEaMxRc0E9UWtHNGBiL1qBdYyVhXPmiOPUL44tUJeQwCOHAr554jRHGBQIcw==",
  1765. "path": "microsoft.codeanalysis.scripting.common/3.8.0",
  1766. "hashPath": "microsoft.codeanalysis.scripting.common.3.8.0.nupkg.sha512"
  1767. },
  1768. "Microsoft.CodeCoverage/17.7.1": {
  1769. "type": "package",
  1770. "serviceable": true,
  1771. "sha512": "sha512-NmGwM2ZJy4CAMdJYIp53opUjnXsMbzASX5oQzgxORicJsgz5Lp50fnRI8OmQ/kYNg6dHfr3IjuUoXbsotDX+KA==",
  1772. "path": "microsoft.codecoverage/17.7.1",
  1773. "hashPath": "microsoft.codecoverage.17.7.1.nupkg.sha512"
  1774. },
  1775. "Microsoft.CSharp/4.3.0": {
  1776. "type": "package",
  1777. "serviceable": true,
  1778. "sha512": "sha512-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
  1779. "path": "microsoft.csharp/4.3.0",
  1780. "hashPath": "microsoft.csharp.4.3.0.nupkg.sha512"
  1781. },
  1782. "Microsoft.EntityFrameworkCore/7.0.11": {
  1783. "type": "package",
  1784. "serviceable": true,
  1785. "sha512": "sha512-r7YGITjQ7v1hYtUXIavjSx+T1itKVPUFAIBN7HaKNjbR8x+gep8w9H3NEchglJOh1woZR4b2MhbSo2YFRZwZDg==",
  1786. "path": "microsoft.entityframeworkcore/7.0.11",
  1787. "hashPath": "microsoft.entityframeworkcore.7.0.11.nupkg.sha512"
  1788. },
  1789. "Microsoft.EntityFrameworkCore.Abstractions/7.0.11": {
  1790. "type": "package",
  1791. "serviceable": true,
  1792. "sha512": "sha512-IoOnhycZ0/VtLowf0HgB0cujxwksokzkS3/5108AHOcbntHUTqwxtCjG4E4FCly/45G+mxb+4PxBdFZhA49lwQ==",
  1793. "path": "microsoft.entityframeworkcore.abstractions/7.0.11",
  1794. "hashPath": "microsoft.entityframeworkcore.abstractions.7.0.11.nupkg.sha512"
  1795. },
  1796. "Microsoft.EntityFrameworkCore.Analyzers/7.0.11": {
  1797. "type": "package",
  1798. "serviceable": true,
  1799. "sha512": "sha512-Qexum5safSSfijx6P1QSq5bVJPPTM/uf7lQmpL/shkiozEC/0FzqNaVUfFpbNN8zsO1jMFYbeDMF4cxJMlTT9w==",
  1800. "path": "microsoft.entityframeworkcore.analyzers/7.0.11",
  1801. "hashPath": "microsoft.entityframeworkcore.analyzers.7.0.11.nupkg.sha512"
  1802. },
  1803. "Microsoft.EntityFrameworkCore.Relational/7.0.11": {
  1804. "type": "package",
  1805. "serviceable": true,
  1806. "sha512": "sha512-yHEEyah1XARStV1SJOsdKj8ieoMCZ0MkNuQaLfWONMWmbqwuDohfGQZk/FuzdT4aO/lJrUYiXbBSFv0ACzphEw==",
  1807. "path": "microsoft.entityframeworkcore.relational/7.0.11",
  1808. "hashPath": "microsoft.entityframeworkcore.relational.7.0.11.nupkg.sha512"
  1809. },
  1810. "Microsoft.Extensions.Caching.Abstractions/7.0.0": {
  1811. "type": "package",
  1812. "serviceable": true,
  1813. "sha512": "sha512-IeimUd0TNbhB4ded3AbgBLQv2SnsiVugDyGV1MvspQFVlA07nDC7Zul7kcwH5jWN3JiTcp/ySE83AIJo8yfKjg==",
  1814. "path": "microsoft.extensions.caching.abstractions/7.0.0",
  1815. "hashPath": "microsoft.extensions.caching.abstractions.7.0.0.nupkg.sha512"
  1816. },
  1817. "Microsoft.Extensions.Caching.Memory/7.0.0": {
  1818. "type": "package",
  1819. "serviceable": true,
  1820. "sha512": "sha512-xpidBs2KCE2gw1JrD0quHE72kvCaI3xFql5/Peb2GRtUuZX+dYPoK/NTdVMiM67Svym0M0Df9A3xyU0FbMQhHw==",
  1821. "path": "microsoft.extensions.caching.memory/7.0.0",
  1822. "hashPath": "microsoft.extensions.caching.memory.7.0.0.nupkg.sha512"
  1823. },
  1824. "Microsoft.Extensions.Configuration.Abstractions/7.0.0": {
  1825. "type": "package",
  1826. "serviceable": true,
  1827. "sha512": "sha512-f34u2eaqIjNO9YLHBz8rozVZ+TcFiFs0F3r7nUJd7FRkVSxk8u4OpoK226mi49MwexHOR2ibP9MFvRUaLilcQQ==",
  1828. "path": "microsoft.extensions.configuration.abstractions/7.0.0",
  1829. "hashPath": "microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512"
  1830. },
  1831. "Microsoft.Extensions.DependencyInjection/7.0.0": {
  1832. "type": "package",
  1833. "serviceable": true,
  1834. "sha512": "sha512-elNeOmkeX3eDVG6pYVeV82p29hr+UKDaBhrZyWvWLw/EVZSYEkZlQdkp0V39k/Xehs2Qa0mvoCvkVj3eQxNQ1Q==",
  1835. "path": "microsoft.extensions.dependencyinjection/7.0.0",
  1836. "hashPath": "microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512"
  1837. },
  1838. "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {
  1839. "type": "package",
  1840. "serviceable": true,
  1841. "sha512": "sha512-h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==",
  1842. "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0",
  1843. "hashPath": "microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512"
  1844. },
  1845. "Microsoft.Extensions.Logging/7.0.0": {
  1846. "type": "package",
  1847. "serviceable": true,
  1848. "sha512": "sha512-Nw2muoNrOG5U5qa2ZekXwudUn2BJcD41e65zwmDHb1fQegTX66UokLWZkJRpqSSHXDOWZ5V0iqhbxOEky91atA==",
  1849. "path": "microsoft.extensions.logging/7.0.0",
  1850. "hashPath": "microsoft.extensions.logging.7.0.0.nupkg.sha512"
  1851. },
  1852. "Microsoft.Extensions.Logging.Abstractions/7.0.0": {
  1853. "type": "package",
  1854. "serviceable": true,
  1855. "sha512": "sha512-kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==",
  1856. "path": "microsoft.extensions.logging.abstractions/7.0.0",
  1857. "hashPath": "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512"
  1858. },
  1859. "Microsoft.Extensions.Options/7.0.0": {
  1860. "type": "package",
  1861. "serviceable": true,
  1862. "sha512": "sha512-lP1yBnTTU42cKpMozuafbvNtQ7QcBjr/CcK3bYOGEMH55Fjt+iecXjT6chR7vbgCMqy3PG3aNQSZgo/EuY/9qQ==",
  1863. "path": "microsoft.extensions.options/7.0.0",
  1864. "hashPath": "microsoft.extensions.options.7.0.0.nupkg.sha512"
  1865. },
  1866. "Microsoft.Extensions.Primitives/7.0.0": {
  1867. "type": "package",
  1868. "serviceable": true,
  1869. "sha512": "sha512-um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==",
  1870. "path": "microsoft.extensions.primitives/7.0.0",
  1871. "hashPath": "microsoft.extensions.primitives.7.0.0.nupkg.sha512"
  1872. },
  1873. "Microsoft.NET.Test.Sdk/17.7.1": {
  1874. "type": "package",
  1875. "serviceable": true,
  1876. "sha512": "sha512-o1qyqDOR8eMuQrC1e5EMMcE+Wm3rwES5aHNWaJpi2A5qwVOru23zsdXkndT6hgl79QsJsqKp+/RNcayIzpHjvA==",
  1877. "path": "microsoft.net.test.sdk/17.7.1",
  1878. "hashPath": "microsoft.net.test.sdk.17.7.1.nupkg.sha512"
  1879. },
  1880. "Microsoft.NETCore.Platforms/2.1.2": {
  1881. "type": "package",
  1882. "serviceable": true,
  1883. "sha512": "sha512-mOJy3M0UN+LUG21dLGMxaWZEP6xYpQEpLuvuEQBaownaX4YuhH6NmNUlN9si+vNkAS6dwJ//N1O4DmLf2CikVg==",
  1884. "path": "microsoft.netcore.platforms/2.1.2",
  1885. "hashPath": "microsoft.netcore.platforms.2.1.2.nupkg.sha512"
  1886. },
  1887. "Microsoft.NETCore.Targets/1.1.0": {
  1888. "type": "package",
  1889. "serviceable": true,
  1890. "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  1891. "path": "microsoft.netcore.targets/1.1.0",
  1892. "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
  1893. },
  1894. "Microsoft.TestPlatform.ObjectModel/17.7.1": {
  1895. "type": "package",
  1896. "serviceable": true,
  1897. "sha512": "sha512-nDmV03yHIdAiG5J3ZEjMyJM2XDjmWORuKgbrGzqlAipBEjUuy5Z5S7WwSqUv9OiaUrtCn9dNYmjfMELUi08leQ==",
  1898. "path": "microsoft.testplatform.objectmodel/17.7.1",
  1899. "hashPath": "microsoft.testplatform.objectmodel.17.7.1.nupkg.sha512"
  1900. },
  1901. "Microsoft.TestPlatform.TestHost/17.7.1": {
  1902. "type": "package",
  1903. "serviceable": true,
  1904. "sha512": "sha512-WCU1NyBarz0tih+I9K5OWN1dVo3z562Iek/VAqWNWRFWw1GeUGqB61iixrBvZO77sjTtBc1cXO8H95uImfmEdw==",
  1905. "path": "microsoft.testplatform.testhost/17.7.1",
  1906. "hashPath": "microsoft.testplatform.testhost.17.7.1.nupkg.sha512"
  1907. },
  1908. "Microsoft.Win32.SystemEvents/6.0.0": {
  1909. "type": "package",
  1910. "serviceable": true,
  1911. "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==",
  1912. "path": "microsoft.win32.systemevents/6.0.0",
  1913. "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512"
  1914. },
  1915. "Moq/4.20.70": {
  1916. "type": "package",
  1917. "serviceable": true,
  1918. "sha512": "sha512-4rNnAwdpXJBuxqrOCzCyICXHSImOTRktCgCWXWykuF1qwoIsVvEnR7PjbMk/eLOxWvhmj5Kwt+kDV3RGUYcNwg==",
  1919. "path": "moq/4.20.70",
  1920. "hashPath": "moq.4.20.70.nupkg.sha512"
  1921. },
  1922. "MSTest.TestAdapter/2.2.10": {
  1923. "type": "package",
  1924. "serviceable": true,
  1925. "sha512": "sha512-KOc7XVNM0Q5GrTAx4RhxTgwdt9O5gOqSzmLpUMyl9ywa6vvUNFVQ9nCjtEE7qDQW54MZdc82e287PzZDc7yQtA==",
  1926. "path": "mstest.testadapter/2.2.10",
  1927. "hashPath": "mstest.testadapter.2.2.10.nupkg.sha512"
  1928. },
  1929. "MSTest.TestFramework/2.2.10": {
  1930. "type": "package",
  1931. "serviceable": true,
  1932. "sha512": "sha512-JZRVXKq19uRhkj8MuzsU8zJhPV2JV3ZToFPAIg+BU53L1L9mNDfm9jXerdRfbrE4HBcf2M54Ij80zPOdlha3+Q==",
  1933. "path": "mstest.testframework/2.2.10",
  1934. "hashPath": "mstest.testframework.2.2.10.nupkg.sha512"
  1935. },
  1936. "Newtonsoft.Json/13.0.1": {
  1937. "type": "package",
  1938. "serviceable": true,
  1939. "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  1940. "path": "newtonsoft.json/13.0.1",
  1941. "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512"
  1942. },
  1943. "Npgsql/7.0.6": {
  1944. "type": "package",
  1945. "serviceable": true,
  1946. "sha512": "sha512-TAqvwRnm3NJ0QvN7cvu6geJkbI0XPzGVRElVY5hF4gsgA+BnE12x6GM1TLhdeq+7ZKvvo3BD8jXKnXmr3tvdEw==",
  1947. "path": "npgsql/7.0.6",
  1948. "hashPath": "npgsql.7.0.6.nupkg.sha512"
  1949. },
  1950. "Npgsql.EntityFrameworkCore.PostgreSQL/7.0.11": {
  1951. "type": "package",
  1952. "serviceable": true,
  1953. "sha512": "sha512-cHEgEz0ldXc9wVANs8sJqC+3eilqefrkasCBgaVT0tyj8tb1p3/pwy2ngjboNkDG3M0z+xJsJ4jC5p8wySAM3w==",
  1954. "path": "npgsql.entityframeworkcore.postgresql/7.0.11",
  1955. "hashPath": "npgsql.entityframeworkcore.postgresql.7.0.11.nupkg.sha512"
  1956. },
  1957. "NuGet.Frameworks/6.5.0": {
  1958. "type": "package",
  1959. "serviceable": true,
  1960. "sha512": "sha512-QWINE2x3MbTODsWT1Gh71GaGb5icBz4chS8VYvTgsBnsi8esgN6wtHhydd7fvToWECYGq7T4cgBBDiKD/363fg==",
  1961. "path": "nuget.frameworks/6.5.0",
  1962. "hashPath": "nuget.frameworks.6.5.0.nupkg.sha512"
  1963. },
  1964. "ReactiveUI/18.3.1": {
  1965. "type": "package",
  1966. "serviceable": true,
  1967. "sha512": "sha512-0tclGtjrRPfA2gbjiM7O3DeNmo6/TpDn7CMN6jgzDrbgrnysM7oEzjGEeXbtXaOxH6kEf6RiMKWobZoSgbBXhQ==",
  1968. "path": "reactiveui/18.3.1",
  1969. "hashPath": "reactiveui.18.3.1.nupkg.sha512"
  1970. },
  1971. "runtime.native.System/4.3.0": {
  1972. "type": "package",
  1973. "serviceable": true,
  1974. "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  1975. "path": "runtime.native.system/4.3.0",
  1976. "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
  1977. },
  1978. "SkiaSharp/2.88.6": {
  1979. "type": "package",
  1980. "serviceable": true,
  1981. "sha512": "sha512-wdfeBAQrEQCbJIRgAiargzP1Uy+0grZiG4CSgBnhAgcJTsPzlifIaO73JRdwIlT3TyBoeU9jEqzwFUhl4hTYnQ==",
  1982. "path": "skiasharp/2.88.6",
  1983. "hashPath": "skiasharp.2.88.6.nupkg.sha512"
  1984. },
  1985. "SkiaSharp.NativeAssets.Linux/2.88.6": {
  1986. "type": "package",
  1987. "serviceable": true,
  1988. "sha512": "sha512-iQcOUE0tPZvBUxOdZaP3LIdAC21H8BEMhDvpCQ/mUUvbKGLd5rF7veJVSZBNu20SuCC0oZpEdGxB+mLVOK8uzw==",
  1989. "path": "skiasharp.nativeassets.linux/2.88.6",
  1990. "hashPath": "skiasharp.nativeassets.linux.2.88.6.nupkg.sha512"
  1991. },
  1992. "SkiaSharp.NativeAssets.macOS/2.88.6": {
  1993. "type": "package",
  1994. "serviceable": true,
  1995. "sha512": "sha512-Sko9LFxRXSjb3OGh5/RxrVRXxYo48tr5NKuuSy6jB85GrYt8WRqVY1iLOLwtjPiVAt4cp+pyD4i30azanS64dw==",
  1996. "path": "skiasharp.nativeassets.macos/2.88.6",
  1997. "hashPath": "skiasharp.nativeassets.macos.2.88.6.nupkg.sha512"
  1998. },
  1999. "SkiaSharp.NativeAssets.WebAssembly/2.88.6": {
  2000. "type": "package",
  2001. "serviceable": true,
  2002. "sha512": "sha512-pye92IhbHq3uqxrU/I+LdkIRAyWfiUNeJ5IIAmYWt2DQPOU44Uh1nTIcjQ2ghRIFWq62VVUJJy5saLBcQO5zyw==",
  2003. "path": "skiasharp.nativeassets.webassembly/2.88.6",
  2004. "hashPath": "skiasharp.nativeassets.webassembly.2.88.6.nupkg.sha512"
  2005. },
  2006. "SkiaSharp.NativeAssets.Win32/2.88.6": {
  2007. "type": "package",
  2008. "serviceable": true,
  2009. "sha512": "sha512-7TzFO0u/g2MpQsTty4fyCDdMcfcWI+aLswwfnYXr3gtNS6VLKdMXPMeKpJa3pJSLnUBN6wD0JjuCe8OoLBQ6cQ==",
  2010. "path": "skiasharp.nativeassets.win32/2.88.6",
  2011. "hashPath": "skiasharp.nativeassets.win32.2.88.6.nupkg.sha512"
  2012. },
  2013. "Splat/14.4.1": {
  2014. "type": "package",
  2015. "serviceable": true,
  2016. "sha512": "sha512-Z1Mncnzm9pNIaIbZ/EWH6x5ESnKsmAvu8HP4StBRw+yhz0lzE7LCbt22TNTPaFrYLYbYCbGQIc/61yuSnpLidg==",
  2017. "path": "splat/14.4.1",
  2018. "hashPath": "splat.14.4.1.nupkg.sha512"
  2019. },
  2020. "System.Collections/4.3.0": {
  2021. "type": "package",
  2022. "serviceable": true,
  2023. "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  2024. "path": "system.collections/4.3.0",
  2025. "hashPath": "system.collections.4.3.0.nupkg.sha512"
  2026. },
  2027. "System.Collections.Immutable/5.0.0": {
  2028. "type": "package",
  2029. "serviceable": true,
  2030. "sha512": "sha512-FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  2031. "path": "system.collections.immutable/5.0.0",
  2032. "hashPath": "system.collections.immutable.5.0.0.nupkg.sha512"
  2033. },
  2034. "System.ComponentModel.Annotations/4.5.0": {
  2035. "type": "package",
  2036. "serviceable": true,
  2037. "sha512": "sha512-UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg==",
  2038. "path": "system.componentmodel.annotations/4.5.0",
  2039. "hashPath": "system.componentmodel.annotations.4.5.0.nupkg.sha512"
  2040. },
  2041. "System.Diagnostics.Debug/4.3.0": {
  2042. "type": "package",
  2043. "serviceable": true,
  2044. "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  2045. "path": "system.diagnostics.debug/4.3.0",
  2046. "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
  2047. },
  2048. "System.Diagnostics.EventLog/6.0.0": {
  2049. "type": "package",
  2050. "serviceable": true,
  2051. "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==",
  2052. "path": "system.diagnostics.eventlog/6.0.0",
  2053. "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512"
  2054. },
  2055. "System.Diagnostics.TextWriterTraceListener/4.3.0": {
  2056. "type": "package",
  2057. "serviceable": true,
  2058. "sha512": "sha512-F11kHWeiwYjFWto+kr8tt9ULMH0k8MsT1XmdCGPTLYHhWgN+2g7JsIZiXDrxlFGccSNkbjfwQy4xIS38gzUiZA==",
  2059. "path": "system.diagnostics.textwritertracelistener/4.3.0",
  2060. "hashPath": "system.diagnostics.textwritertracelistener.4.3.0.nupkg.sha512"
  2061. },
  2062. "System.Diagnostics.TraceSource/4.3.0": {
  2063. "type": "package",
  2064. "serviceable": true,
  2065. "sha512": "sha512-VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==",
  2066. "path": "system.diagnostics.tracesource/4.3.0",
  2067. "hashPath": "system.diagnostics.tracesource.4.3.0.nupkg.sha512"
  2068. },
  2069. "System.Drawing.Common/6.0.0": {
  2070. "type": "package",
  2071. "serviceable": true,
  2072. "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
  2073. "path": "system.drawing.common/6.0.0",
  2074. "hashPath": "system.drawing.common.6.0.0.nupkg.sha512"
  2075. },
  2076. "System.Dynamic.Runtime/4.3.0": {
  2077. "type": "package",
  2078. "serviceable": true,
  2079. "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  2080. "path": "system.dynamic.runtime/4.3.0",
  2081. "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512"
  2082. },
  2083. "System.Globalization/4.3.0": {
  2084. "type": "package",
  2085. "serviceable": true,
  2086. "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  2087. "path": "system.globalization/4.3.0",
  2088. "hashPath": "system.globalization.4.3.0.nupkg.sha512"
  2089. },
  2090. "System.IO/4.3.0": {
  2091. "type": "package",
  2092. "serviceable": true,
  2093. "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  2094. "path": "system.io/4.3.0",
  2095. "hashPath": "system.io.4.3.0.nupkg.sha512"
  2096. },
  2097. "System.IO.Pipelines/6.0.0": {
  2098. "type": "package",
  2099. "serviceable": true,
  2100. "sha512": "sha512-mXX66shZ4xLlI3vNLaJ0lt8OIZdmXTvIqXRdQX5HLVGSkLhINLsVhyZuX2UdRFnOGkqnwmMUs40pIIQ7mna4+A==",
  2101. "path": "system.io.pipelines/6.0.0",
  2102. "hashPath": "system.io.pipelines.6.0.0.nupkg.sha512"
  2103. },
  2104. "System.Linq/4.3.0": {
  2105. "type": "package",
  2106. "serviceable": true,
  2107. "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  2108. "path": "system.linq/4.3.0",
  2109. "hashPath": "system.linq.4.3.0.nupkg.sha512"
  2110. },
  2111. "System.Linq.Expressions/4.3.0": {
  2112. "type": "package",
  2113. "serviceable": true,
  2114. "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  2115. "path": "system.linq.expressions/4.3.0",
  2116. "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
  2117. },
  2118. "System.Memory/4.5.4": {
  2119. "type": "package",
  2120. "serviceable": true,
  2121. "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
  2122. "path": "system.memory/4.5.4",
  2123. "hashPath": "system.memory.4.5.4.nupkg.sha512"
  2124. },
  2125. "System.Numerics.Vectors/4.5.0": {
  2126. "type": "package",
  2127. "serviceable": true,
  2128. "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
  2129. "path": "system.numerics.vectors/4.5.0",
  2130. "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512"
  2131. },
  2132. "System.ObjectModel/4.3.0": {
  2133. "type": "package",
  2134. "serviceable": true,
  2135. "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  2136. "path": "system.objectmodel/4.3.0",
  2137. "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
  2138. },
  2139. "System.Reactive/5.0.0": {
  2140. "type": "package",
  2141. "serviceable": true,
  2142. "sha512": "sha512-erBZjkQHWL9jpasCE/0qKAryzVBJFxGHVBAvgRN1bzM0q2s1S4oYREEEL0Vb+1kA/6BKb5FjUZMp5VXmy+gzkQ==",
  2143. "path": "system.reactive/5.0.0",
  2144. "hashPath": "system.reactive.5.0.0.nupkg.sha512"
  2145. },
  2146. "System.Reflection/4.3.0": {
  2147. "type": "package",
  2148. "serviceable": true,
  2149. "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  2150. "path": "system.reflection/4.3.0",
  2151. "hashPath": "system.reflection.4.3.0.nupkg.sha512"
  2152. },
  2153. "System.Reflection.Emit/4.3.0": {
  2154. "type": "package",
  2155. "serviceable": true,
  2156. "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  2157. "path": "system.reflection.emit/4.3.0",
  2158. "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
  2159. },
  2160. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2161. "type": "package",
  2162. "serviceable": true,
  2163. "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  2164. "path": "system.reflection.emit.ilgeneration/4.3.0",
  2165. "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
  2166. },
  2167. "System.Reflection.Emit.Lightweight/4.3.0": {
  2168. "type": "package",
  2169. "serviceable": true,
  2170. "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  2171. "path": "system.reflection.emit.lightweight/4.3.0",
  2172. "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
  2173. },
  2174. "System.Reflection.Extensions/4.3.0": {
  2175. "type": "package",
  2176. "serviceable": true,
  2177. "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  2178. "path": "system.reflection.extensions/4.3.0",
  2179. "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
  2180. },
  2181. "System.Reflection.Metadata/5.0.0": {
  2182. "type": "package",
  2183. "serviceable": true,
  2184. "sha512": "sha512-5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==",
  2185. "path": "system.reflection.metadata/5.0.0",
  2186. "hashPath": "system.reflection.metadata.5.0.0.nupkg.sha512"
  2187. },
  2188. "System.Reflection.Primitives/4.3.0": {
  2189. "type": "package",
  2190. "serviceable": true,
  2191. "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  2192. "path": "system.reflection.primitives/4.3.0",
  2193. "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
  2194. },
  2195. "System.Reflection.TypeExtensions/4.3.0": {
  2196. "type": "package",
  2197. "serviceable": true,
  2198. "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  2199. "path": "system.reflection.typeextensions/4.3.0",
  2200. "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
  2201. },
  2202. "System.Resources.ResourceManager/4.3.0": {
  2203. "type": "package",
  2204. "serviceable": true,
  2205. "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  2206. "path": "system.resources.resourcemanager/4.3.0",
  2207. "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
  2208. },
  2209. "System.Runtime/4.3.0": {
  2210. "type": "package",
  2211. "serviceable": true,
  2212. "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  2213. "path": "system.runtime/4.3.0",
  2214. "hashPath": "system.runtime.4.3.0.nupkg.sha512"
  2215. },
  2216. "System.Runtime.CompilerServices.Unsafe/4.7.1": {
  2217. "type": "package",
  2218. "serviceable": true,
  2219. "sha512": "sha512-zOHkQmzPCn5zm/BH+cxC1XbUS3P4Yoi3xzW7eRgVpDR2tPGSzyMZ17Ig1iRkfJuY0nhxkQQde8pgePNiA7z7TQ==",
  2220. "path": "system.runtime.compilerservices.unsafe/4.7.1",
  2221. "hashPath": "system.runtime.compilerservices.unsafe.4.7.1.nupkg.sha512"
  2222. },
  2223. "System.Runtime.Extensions/4.3.0": {
  2224. "type": "package",
  2225. "serviceable": true,
  2226. "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  2227. "path": "system.runtime.extensions/4.3.0",
  2228. "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
  2229. },
  2230. "System.Runtime.Handles/4.3.0": {
  2231. "type": "package",
  2232. "serviceable": true,
  2233. "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  2234. "path": "system.runtime.handles/4.3.0",
  2235. "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
  2236. },
  2237. "System.Runtime.InteropServices/4.3.0": {
  2238. "type": "package",
  2239. "serviceable": true,
  2240. "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  2241. "path": "system.runtime.interopservices/4.3.0",
  2242. "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
  2243. },
  2244. "System.Text.Encoding/4.3.0": {
  2245. "type": "package",
  2246. "serviceable": true,
  2247. "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  2248. "path": "system.text.encoding/4.3.0",
  2249. "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
  2250. },
  2251. "System.Text.Encoding.CodePages/4.5.1": {
  2252. "type": "package",
  2253. "serviceable": true,
  2254. "sha512": "sha512-4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==",
  2255. "path": "system.text.encoding.codepages/4.5.1",
  2256. "hashPath": "system.text.encoding.codepages.4.5.1.nupkg.sha512"
  2257. },
  2258. "System.Threading/4.3.0": {
  2259. "type": "package",
  2260. "serviceable": true,
  2261. "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  2262. "path": "system.threading/4.3.0",
  2263. "hashPath": "system.threading.4.3.0.nupkg.sha512"
  2264. },
  2265. "System.Threading.Tasks/4.3.0": {
  2266. "type": "package",
  2267. "serviceable": true,
  2268. "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  2269. "path": "system.threading.tasks/4.3.0",
  2270. "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
  2271. },
  2272. "System.Threading.Tasks.Extensions/4.5.4": {
  2273. "type": "package",
  2274. "serviceable": true,
  2275. "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
  2276. "path": "system.threading.tasks.extensions/4.5.4",
  2277. "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512"
  2278. },
  2279. "Tmds.DBus.Protocol/0.15.0": {
  2280. "type": "package",
  2281. "serviceable": true,
  2282. "sha512": "sha512-QVo/Y39nTYcCKBqrZuwHjXdwaky0yTQPIT3qUTEEK2MZfDtZWrJ2XyZ59zH8LBgB2fL5cWaTuP2pBTpGz/GeDQ==",
  2283. "path": "tmds.dbus.protocol/0.15.0",
  2284. "hashPath": "tmds.dbus.protocol.0.15.0.nupkg.sha512"
  2285. },
  2286. "UnitTestHelpers/1.0.1": {
  2287. "type": "package",
  2288. "serviceable": true,
  2289. "sha512": "sha512-czXykIHLLsFjVAPVukedRbIiZ2RWLhP9BoQ5vOYD9NdoOqvjntUphTEbN//PPaSK6flUzaOO+mfjBSQAAOBuEg==",
  2290. "path": "unittesthelpers/1.0.1",
  2291. "hashPath": "unittesthelpers.1.0.1.nupkg.sha512"
  2292. },
  2293. "EducationDepartment/1.0.0": {
  2294. "type": "project",
  2295. "serviceable": false,
  2296. "sha512": ""
  2297. },
  2298. "Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions/14.0.0.0": {
  2299. "type": "reference",
  2300. "serviceable": false,
  2301. "sha512": ""
  2302. }
  2303. }
  2304. }