il2cpp.deps.json 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845
  1. {
  2. "runtimeTarget": {
  3. "name": ".NETCoreApp,Version=v6.0/win-x64",
  4. "signature": ""
  5. },
  6. "compilationOptions": {},
  7. "targets": {
  8. ".NETCoreApp,Version=v6.0": {},
  9. ".NETCoreApp,Version=v6.0/win-x64": {
  10. "il2cpp/1.0.0": {
  11. "dependencies": {
  12. "Unity.Api.Attributes": "1.0.0",
  13. "Unity.IL2CPP": "1.0.0",
  14. "Unity.IL2CPP.Api": "1.0.0",
  15. "Unity.IL2CPP.Bee.BuildLogic.Android": "1.0.0",
  16. "Unity.IL2CPP.Bee.BuildLogic.AppleTV": "1.0.0",
  17. "Unity.IL2CPP.Bee.BuildLogic.EmbeddedLinux": "1.0.0",
  18. "Unity.IL2CPP.Bee.BuildLogic.Linux": "1.0.0",
  19. "Unity.IL2CPP.Bee.BuildLogic.MacOSX": "1.0.0",
  20. "Unity.IL2CPP.Bee.BuildLogic.OpenHarmony": "1.0.0",
  21. "Unity.IL2CPP.Bee.BuildLogic.UniversalWindows": "1.0.0",
  22. "Unity.IL2CPP.Bee.BuildLogic.WebGL": "1.0.0",
  23. "Unity.IL2CPP.Bee.BuildLogic.WindowsDesktop": "1.0.0",
  24. "Unity.IL2CPP.Bee.BuildLogic.iOS": "1.0.0",
  25. "Unity.IL2CPP.Building": "1.0.0",
  26. "Unity.IL2CPP.Common": "1.0.0",
  27. "Unity.IL2CPP.Common35": "1.0.0",
  28. "Unity.IL2CPP.Shell": "1.0.0",
  29. "Unity.Options": "1.0.0",
  30. "Unity.TinyProfiler": "1.0.0",
  31. "Bee.BeeDriver": "1.0.0.0",
  32. "Bee.TinyProfiler2": "0.0.0.0",
  33. "Mono.Cecil": "0.10.0.0",
  34. "Mono.Cecil.Pdb": "0.10.0.0",
  35. "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "6.0.1"
  36. },
  37. "runtime": {
  38. "il2cpp.dll": {}
  39. }
  40. },
  41. "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/6.0.1": {
  42. "runtime": {
  43. "Microsoft.CSharp.dll": {
  44. "assemblyVersion": "6.0.0.0",
  45. "fileVersion": "6.0.121.56705"
  46. },
  47. "Microsoft.VisualBasic.Core.dll": {
  48. "assemblyVersion": "11.0.0.0",
  49. "fileVersion": "6.0.121.56705"
  50. },
  51. "Microsoft.VisualBasic.dll": {
  52. "assemblyVersion": "10.0.0.0",
  53. "fileVersion": "6.0.121.56705"
  54. },
  55. "Microsoft.Win32.Primitives.dll": {
  56. "assemblyVersion": "6.0.0.0",
  57. "fileVersion": "6.0.121.56705"
  58. },
  59. "Microsoft.Win32.Registry.dll": {
  60. "assemblyVersion": "6.0.0.0",
  61. "fileVersion": "6.0.121.56705"
  62. },
  63. "System.AppContext.dll": {
  64. "assemblyVersion": "6.0.0.0",
  65. "fileVersion": "6.0.121.56705"
  66. },
  67. "System.Buffers.dll": {
  68. "assemblyVersion": "6.0.0.0",
  69. "fileVersion": "6.0.121.56705"
  70. },
  71. "System.Collections.Concurrent.dll": {
  72. "assemblyVersion": "6.0.0.0",
  73. "fileVersion": "6.0.121.56705"
  74. },
  75. "System.Collections.Immutable.dll": {
  76. "assemblyVersion": "6.0.0.0",
  77. "fileVersion": "6.0.121.56705"
  78. },
  79. "System.Collections.NonGeneric.dll": {
  80. "assemblyVersion": "6.0.0.0",
  81. "fileVersion": "6.0.121.56705"
  82. },
  83. "System.Collections.Specialized.dll": {
  84. "assemblyVersion": "6.0.0.0",
  85. "fileVersion": "6.0.121.56705"
  86. },
  87. "System.Collections.dll": {
  88. "assemblyVersion": "6.0.0.0",
  89. "fileVersion": "6.0.121.56705"
  90. },
  91. "System.ComponentModel.Annotations.dll": {
  92. "assemblyVersion": "6.0.0.0",
  93. "fileVersion": "6.0.121.56705"
  94. },
  95. "System.ComponentModel.DataAnnotations.dll": {
  96. "assemblyVersion": "4.0.0.0",
  97. "fileVersion": "6.0.121.56705"
  98. },
  99. "System.ComponentModel.EventBasedAsync.dll": {
  100. "assemblyVersion": "6.0.0.0",
  101. "fileVersion": "6.0.121.56705"
  102. },
  103. "System.ComponentModel.Primitives.dll": {
  104. "assemblyVersion": "6.0.0.0",
  105. "fileVersion": "6.0.121.56705"
  106. },
  107. "System.ComponentModel.TypeConverter.dll": {
  108. "assemblyVersion": "6.0.0.0",
  109. "fileVersion": "6.0.121.56705"
  110. },
  111. "System.ComponentModel.dll": {
  112. "assemblyVersion": "6.0.0.0",
  113. "fileVersion": "6.0.121.56705"
  114. },
  115. "System.Configuration.dll": {
  116. "assemblyVersion": "4.0.0.0",
  117. "fileVersion": "6.0.121.56705"
  118. },
  119. "System.Console.dll": {
  120. "assemblyVersion": "6.0.0.0",
  121. "fileVersion": "6.0.121.56705"
  122. },
  123. "System.Core.dll": {
  124. "assemblyVersion": "4.0.0.0",
  125. "fileVersion": "6.0.121.56705"
  126. },
  127. "System.Data.Common.dll": {
  128. "assemblyVersion": "6.0.0.0",
  129. "fileVersion": "6.0.121.56705"
  130. },
  131. "System.Data.DataSetExtensions.dll": {
  132. "assemblyVersion": "4.0.0.0",
  133. "fileVersion": "6.0.121.56705"
  134. },
  135. "System.Data.dll": {
  136. "assemblyVersion": "4.0.0.0",
  137. "fileVersion": "6.0.121.56705"
  138. },
  139. "System.Diagnostics.Contracts.dll": {
  140. "assemblyVersion": "6.0.0.0",
  141. "fileVersion": "6.0.121.56705"
  142. },
  143. "System.Diagnostics.Debug.dll": {
  144. "assemblyVersion": "6.0.0.0",
  145. "fileVersion": "6.0.121.56705"
  146. },
  147. "System.Diagnostics.DiagnosticSource.dll": {
  148. "assemblyVersion": "6.0.0.0",
  149. "fileVersion": "6.0.121.56705"
  150. },
  151. "System.Diagnostics.FileVersionInfo.dll": {
  152. "assemblyVersion": "6.0.0.0",
  153. "fileVersion": "6.0.121.56705"
  154. },
  155. "System.Diagnostics.Process.dll": {
  156. "assemblyVersion": "6.0.0.0",
  157. "fileVersion": "6.0.121.56705"
  158. },
  159. "System.Diagnostics.StackTrace.dll": {
  160. "assemblyVersion": "6.0.0.0",
  161. "fileVersion": "6.0.121.56705"
  162. },
  163. "System.Diagnostics.TextWriterTraceListener.dll": {
  164. "assemblyVersion": "6.0.0.0",
  165. "fileVersion": "6.0.121.56705"
  166. },
  167. "System.Diagnostics.Tools.dll": {
  168. "assemblyVersion": "6.0.0.0",
  169. "fileVersion": "6.0.121.56705"
  170. },
  171. "System.Diagnostics.TraceSource.dll": {
  172. "assemblyVersion": "6.0.0.0",
  173. "fileVersion": "6.0.121.56705"
  174. },
  175. "System.Diagnostics.Tracing.dll": {
  176. "assemblyVersion": "6.0.0.0",
  177. "fileVersion": "6.0.121.56705"
  178. },
  179. "System.Drawing.Primitives.dll": {
  180. "assemblyVersion": "6.0.0.0",
  181. "fileVersion": "6.0.121.56705"
  182. },
  183. "System.Drawing.dll": {
  184. "assemblyVersion": "4.0.0.0",
  185. "fileVersion": "6.0.121.56705"
  186. },
  187. "System.Dynamic.Runtime.dll": {
  188. "assemblyVersion": "6.0.0.0",
  189. "fileVersion": "6.0.121.56705"
  190. },
  191. "System.Formats.Asn1.dll": {
  192. "assemblyVersion": "6.0.0.0",
  193. "fileVersion": "6.0.121.56705"
  194. },
  195. "System.Globalization.Calendars.dll": {
  196. "assemblyVersion": "6.0.0.0",
  197. "fileVersion": "6.0.121.56705"
  198. },
  199. "System.Globalization.Extensions.dll": {
  200. "assemblyVersion": "6.0.0.0",
  201. "fileVersion": "6.0.121.56705"
  202. },
  203. "System.Globalization.dll": {
  204. "assemblyVersion": "6.0.0.0",
  205. "fileVersion": "6.0.121.56705"
  206. },
  207. "System.IO.Compression.Brotli.dll": {
  208. "assemblyVersion": "6.0.0.0",
  209. "fileVersion": "6.0.121.56705"
  210. },
  211. "System.IO.Compression.FileSystem.dll": {
  212. "assemblyVersion": "4.0.0.0",
  213. "fileVersion": "6.0.121.56705"
  214. },
  215. "System.IO.Compression.ZipFile.dll": {
  216. "assemblyVersion": "6.0.0.0",
  217. "fileVersion": "6.0.121.56705"
  218. },
  219. "System.IO.Compression.dll": {
  220. "assemblyVersion": "6.0.0.0",
  221. "fileVersion": "6.0.121.56705"
  222. },
  223. "System.IO.FileSystem.AccessControl.dll": {
  224. "assemblyVersion": "6.0.0.0",
  225. "fileVersion": "6.0.121.56705"
  226. },
  227. "System.IO.FileSystem.DriveInfo.dll": {
  228. "assemblyVersion": "6.0.0.0",
  229. "fileVersion": "6.0.121.56705"
  230. },
  231. "System.IO.FileSystem.Primitives.dll": {
  232. "assemblyVersion": "6.0.0.0",
  233. "fileVersion": "6.0.121.56705"
  234. },
  235. "System.IO.FileSystem.Watcher.dll": {
  236. "assemblyVersion": "6.0.0.0",
  237. "fileVersion": "6.0.121.56705"
  238. },
  239. "System.IO.FileSystem.dll": {
  240. "assemblyVersion": "6.0.0.0",
  241. "fileVersion": "6.0.121.56705"
  242. },
  243. "System.IO.IsolatedStorage.dll": {
  244. "assemblyVersion": "6.0.0.0",
  245. "fileVersion": "6.0.121.56705"
  246. },
  247. "System.IO.MemoryMappedFiles.dll": {
  248. "assemblyVersion": "6.0.0.0",
  249. "fileVersion": "6.0.121.56705"
  250. },
  251. "System.IO.Pipes.AccessControl.dll": {
  252. "assemblyVersion": "6.0.0.0",
  253. "fileVersion": "6.0.121.56705"
  254. },
  255. "System.IO.Pipes.dll": {
  256. "assemblyVersion": "6.0.0.0",
  257. "fileVersion": "6.0.121.56705"
  258. },
  259. "System.IO.UnmanagedMemoryStream.dll": {
  260. "assemblyVersion": "6.0.0.0",
  261. "fileVersion": "6.0.121.56705"
  262. },
  263. "System.IO.dll": {
  264. "assemblyVersion": "6.0.0.0",
  265. "fileVersion": "6.0.121.56705"
  266. },
  267. "System.Linq.Expressions.dll": {
  268. "assemblyVersion": "6.0.0.0",
  269. "fileVersion": "6.0.121.56705"
  270. },
  271. "System.Linq.Parallel.dll": {
  272. "assemblyVersion": "6.0.0.0",
  273. "fileVersion": "6.0.121.56705"
  274. },
  275. "System.Linq.Queryable.dll": {
  276. "assemblyVersion": "6.0.0.0",
  277. "fileVersion": "6.0.121.56705"
  278. },
  279. "System.Linq.dll": {
  280. "assemblyVersion": "6.0.0.0",
  281. "fileVersion": "6.0.121.56705"
  282. },
  283. "System.Memory.dll": {
  284. "assemblyVersion": "6.0.0.0",
  285. "fileVersion": "6.0.121.56705"
  286. },
  287. "System.Net.Http.Json.dll": {
  288. "assemblyVersion": "6.0.0.0",
  289. "fileVersion": "6.0.121.56705"
  290. },
  291. "System.Net.Http.dll": {
  292. "assemblyVersion": "6.0.0.0",
  293. "fileVersion": "6.0.121.56705"
  294. },
  295. "System.Net.HttpListener.dll": {
  296. "assemblyVersion": "6.0.0.0",
  297. "fileVersion": "6.0.121.56705"
  298. },
  299. "System.Net.Mail.dll": {
  300. "assemblyVersion": "6.0.0.0",
  301. "fileVersion": "6.0.121.56705"
  302. },
  303. "System.Net.NameResolution.dll": {
  304. "assemblyVersion": "6.0.0.0",
  305. "fileVersion": "6.0.121.56705"
  306. },
  307. "System.Net.NetworkInformation.dll": {
  308. "assemblyVersion": "6.0.0.0",
  309. "fileVersion": "6.0.121.56705"
  310. },
  311. "System.Net.Ping.dll": {
  312. "assemblyVersion": "6.0.0.0",
  313. "fileVersion": "6.0.121.56705"
  314. },
  315. "System.Net.Primitives.dll": {
  316. "assemblyVersion": "6.0.0.0",
  317. "fileVersion": "6.0.121.56705"
  318. },
  319. "System.Net.Quic.dll": {
  320. "assemblyVersion": "6.0.0.0",
  321. "fileVersion": "6.0.121.56705"
  322. },
  323. "System.Net.Requests.dll": {
  324. "assemblyVersion": "6.0.0.0",
  325. "fileVersion": "6.0.121.56705"
  326. },
  327. "System.Net.Security.dll": {
  328. "assemblyVersion": "6.0.0.0",
  329. "fileVersion": "6.0.121.56705"
  330. },
  331. "System.Net.ServicePoint.dll": {
  332. "assemblyVersion": "6.0.0.0",
  333. "fileVersion": "6.0.121.56705"
  334. },
  335. "System.Net.Sockets.dll": {
  336. "assemblyVersion": "6.0.0.0",
  337. "fileVersion": "6.0.121.56705"
  338. },
  339. "System.Net.WebClient.dll": {
  340. "assemblyVersion": "6.0.0.0",
  341. "fileVersion": "6.0.121.56705"
  342. },
  343. "System.Net.WebHeaderCollection.dll": {
  344. "assemblyVersion": "6.0.0.0",
  345. "fileVersion": "6.0.121.56705"
  346. },
  347. "System.Net.WebProxy.dll": {
  348. "assemblyVersion": "6.0.0.0",
  349. "fileVersion": "6.0.121.56705"
  350. },
  351. "System.Net.WebSockets.Client.dll": {
  352. "assemblyVersion": "6.0.0.0",
  353. "fileVersion": "6.0.121.56705"
  354. },
  355. "System.Net.WebSockets.dll": {
  356. "assemblyVersion": "6.0.0.0",
  357. "fileVersion": "6.0.121.56705"
  358. },
  359. "System.Net.dll": {
  360. "assemblyVersion": "4.0.0.0",
  361. "fileVersion": "6.0.121.56705"
  362. },
  363. "System.Numerics.Vectors.dll": {
  364. "assemblyVersion": "6.0.0.0",
  365. "fileVersion": "6.0.121.56705"
  366. },
  367. "System.Numerics.dll": {
  368. "assemblyVersion": "4.0.0.0",
  369. "fileVersion": "6.0.121.56705"
  370. },
  371. "System.ObjectModel.dll": {
  372. "assemblyVersion": "6.0.0.0",
  373. "fileVersion": "6.0.121.56705"
  374. },
  375. "System.Private.CoreLib.dll": {
  376. "assemblyVersion": "6.0.0.0",
  377. "fileVersion": "6.0.121.56705"
  378. },
  379. "System.Private.DataContractSerialization.dll": {
  380. "assemblyVersion": "6.0.0.0",
  381. "fileVersion": "6.0.121.56705"
  382. },
  383. "System.Private.Uri.dll": {
  384. "assemblyVersion": "6.0.0.0",
  385. "fileVersion": "6.0.121.56705"
  386. },
  387. "System.Private.Xml.Linq.dll": {
  388. "assemblyVersion": "6.0.0.0",
  389. "fileVersion": "6.0.121.56705"
  390. },
  391. "System.Private.Xml.dll": {
  392. "assemblyVersion": "6.0.0.0",
  393. "fileVersion": "6.0.121.56705"
  394. },
  395. "System.Reflection.DispatchProxy.dll": {
  396. "assemblyVersion": "6.0.0.0",
  397. "fileVersion": "6.0.121.56705"
  398. },
  399. "System.Reflection.Emit.ILGeneration.dll": {
  400. "assemblyVersion": "6.0.0.0",
  401. "fileVersion": "6.0.121.56705"
  402. },
  403. "System.Reflection.Emit.Lightweight.dll": {
  404. "assemblyVersion": "6.0.0.0",
  405. "fileVersion": "6.0.121.56705"
  406. },
  407. "System.Reflection.Emit.dll": {
  408. "assemblyVersion": "6.0.0.0",
  409. "fileVersion": "6.0.121.56705"
  410. },
  411. "System.Reflection.Extensions.dll": {
  412. "assemblyVersion": "6.0.0.0",
  413. "fileVersion": "6.0.121.56705"
  414. },
  415. "System.Reflection.Metadata.dll": {
  416. "assemblyVersion": "6.0.0.0",
  417. "fileVersion": "6.0.121.56705"
  418. },
  419. "System.Reflection.Primitives.dll": {
  420. "assemblyVersion": "6.0.0.0",
  421. "fileVersion": "6.0.121.56705"
  422. },
  423. "System.Reflection.TypeExtensions.dll": {
  424. "assemblyVersion": "6.0.0.0",
  425. "fileVersion": "6.0.121.56705"
  426. },
  427. "System.Reflection.dll": {
  428. "assemblyVersion": "6.0.0.0",
  429. "fileVersion": "6.0.121.56705"
  430. },
  431. "System.Resources.Reader.dll": {
  432. "assemblyVersion": "6.0.0.0",
  433. "fileVersion": "6.0.121.56705"
  434. },
  435. "System.Resources.ResourceManager.dll": {
  436. "assemblyVersion": "6.0.0.0",
  437. "fileVersion": "6.0.121.56705"
  438. },
  439. "System.Resources.Writer.dll": {
  440. "assemblyVersion": "6.0.0.0",
  441. "fileVersion": "6.0.121.56705"
  442. },
  443. "System.Runtime.CompilerServices.Unsafe.dll": {
  444. "assemblyVersion": "6.0.0.0",
  445. "fileVersion": "6.0.121.56705"
  446. },
  447. "System.Runtime.CompilerServices.VisualC.dll": {
  448. "assemblyVersion": "6.0.0.0",
  449. "fileVersion": "6.0.121.56705"
  450. },
  451. "System.Runtime.Extensions.dll": {
  452. "assemblyVersion": "6.0.0.0",
  453. "fileVersion": "6.0.121.56705"
  454. },
  455. "System.Runtime.Handles.dll": {
  456. "assemblyVersion": "6.0.0.0",
  457. "fileVersion": "6.0.121.56705"
  458. },
  459. "System.Runtime.InteropServices.RuntimeInformation.dll": {
  460. "assemblyVersion": "6.0.0.0",
  461. "fileVersion": "6.0.121.56705"
  462. },
  463. "System.Runtime.InteropServices.dll": {
  464. "assemblyVersion": "6.0.0.0",
  465. "fileVersion": "6.0.121.56705"
  466. },
  467. "System.Runtime.Intrinsics.dll": {
  468. "assemblyVersion": "6.0.0.0",
  469. "fileVersion": "6.0.121.56705"
  470. },
  471. "System.Runtime.Loader.dll": {
  472. "assemblyVersion": "6.0.0.0",
  473. "fileVersion": "6.0.121.56705"
  474. },
  475. "System.Runtime.Numerics.dll": {
  476. "assemblyVersion": "6.0.0.0",
  477. "fileVersion": "6.0.121.56705"
  478. },
  479. "System.Runtime.Serialization.Formatters.dll": {
  480. "assemblyVersion": "6.0.0.0",
  481. "fileVersion": "6.0.121.56705"
  482. },
  483. "System.Runtime.Serialization.Json.dll": {
  484. "assemblyVersion": "6.0.0.0",
  485. "fileVersion": "6.0.121.56705"
  486. },
  487. "System.Runtime.Serialization.Primitives.dll": {
  488. "assemblyVersion": "6.0.0.0",
  489. "fileVersion": "6.0.121.56705"
  490. },
  491. "System.Runtime.Serialization.Xml.dll": {
  492. "assemblyVersion": "6.0.0.0",
  493. "fileVersion": "6.0.121.56705"
  494. },
  495. "System.Runtime.Serialization.dll": {
  496. "assemblyVersion": "4.0.0.0",
  497. "fileVersion": "6.0.121.56705"
  498. },
  499. "System.Runtime.dll": {
  500. "assemblyVersion": "6.0.0.0",
  501. "fileVersion": "6.0.121.56705"
  502. },
  503. "System.Security.AccessControl.dll": {
  504. "assemblyVersion": "6.0.0.0",
  505. "fileVersion": "6.0.121.56705"
  506. },
  507. "System.Security.Claims.dll": {
  508. "assemblyVersion": "6.0.0.0",
  509. "fileVersion": "6.0.121.56705"
  510. },
  511. "System.Security.Cryptography.Algorithms.dll": {
  512. "assemblyVersion": "6.0.0.0",
  513. "fileVersion": "6.0.121.56705"
  514. },
  515. "System.Security.Cryptography.Cng.dll": {
  516. "assemblyVersion": "6.0.0.0",
  517. "fileVersion": "6.0.121.56705"
  518. },
  519. "System.Security.Cryptography.Csp.dll": {
  520. "assemblyVersion": "6.0.0.0",
  521. "fileVersion": "6.0.121.56705"
  522. },
  523. "System.Security.Cryptography.Encoding.dll": {
  524. "assemblyVersion": "6.0.0.0",
  525. "fileVersion": "6.0.121.56705"
  526. },
  527. "System.Security.Cryptography.OpenSsl.dll": {
  528. "assemblyVersion": "6.0.0.0",
  529. "fileVersion": "6.0.121.56705"
  530. },
  531. "System.Security.Cryptography.Primitives.dll": {
  532. "assemblyVersion": "6.0.0.0",
  533. "fileVersion": "6.0.121.56705"
  534. },
  535. "System.Security.Cryptography.X509Certificates.dll": {
  536. "assemblyVersion": "6.0.0.0",
  537. "fileVersion": "6.0.121.56705"
  538. },
  539. "System.Security.Principal.Windows.dll": {
  540. "assemblyVersion": "6.0.0.0",
  541. "fileVersion": "6.0.121.56705"
  542. },
  543. "System.Security.Principal.dll": {
  544. "assemblyVersion": "6.0.0.0",
  545. "fileVersion": "6.0.121.56705"
  546. },
  547. "System.Security.SecureString.dll": {
  548. "assemblyVersion": "6.0.0.0",
  549. "fileVersion": "6.0.121.56705"
  550. },
  551. "System.Security.dll": {
  552. "assemblyVersion": "4.0.0.0",
  553. "fileVersion": "6.0.121.56705"
  554. },
  555. "System.ServiceModel.Web.dll": {
  556. "assemblyVersion": "4.0.0.0",
  557. "fileVersion": "6.0.121.56705"
  558. },
  559. "System.ServiceProcess.dll": {
  560. "assemblyVersion": "4.0.0.0",
  561. "fileVersion": "6.0.121.56705"
  562. },
  563. "System.Text.Encoding.CodePages.dll": {
  564. "assemblyVersion": "6.0.0.0",
  565. "fileVersion": "6.0.121.56705"
  566. },
  567. "System.Text.Encoding.Extensions.dll": {
  568. "assemblyVersion": "6.0.0.0",
  569. "fileVersion": "6.0.121.56705"
  570. },
  571. "System.Text.Encoding.dll": {
  572. "assemblyVersion": "6.0.0.0",
  573. "fileVersion": "6.0.121.56705"
  574. },
  575. "System.Text.Encodings.Web.dll": {
  576. "assemblyVersion": "6.0.0.0",
  577. "fileVersion": "6.0.121.56705"
  578. },
  579. "System.Text.Json.dll": {
  580. "assemblyVersion": "6.0.0.0",
  581. "fileVersion": "6.0.121.56705"
  582. },
  583. "System.Text.RegularExpressions.dll": {
  584. "assemblyVersion": "6.0.0.0",
  585. "fileVersion": "6.0.121.56705"
  586. },
  587. "System.Threading.Channels.dll": {
  588. "assemblyVersion": "6.0.0.0",
  589. "fileVersion": "6.0.121.56705"
  590. },
  591. "System.Threading.Overlapped.dll": {
  592. "assemblyVersion": "6.0.0.0",
  593. "fileVersion": "6.0.121.56705"
  594. },
  595. "System.Threading.Tasks.Dataflow.dll": {
  596. "assemblyVersion": "6.0.0.0",
  597. "fileVersion": "6.0.121.56705"
  598. },
  599. "System.Threading.Tasks.Extensions.dll": {
  600. "assemblyVersion": "6.0.0.0",
  601. "fileVersion": "6.0.121.56705"
  602. },
  603. "System.Threading.Tasks.Parallel.dll": {
  604. "assemblyVersion": "6.0.0.0",
  605. "fileVersion": "6.0.121.56705"
  606. },
  607. "System.Threading.Tasks.dll": {
  608. "assemblyVersion": "6.0.0.0",
  609. "fileVersion": "6.0.121.56705"
  610. },
  611. "System.Threading.Thread.dll": {
  612. "assemblyVersion": "6.0.0.0",
  613. "fileVersion": "6.0.121.56705"
  614. },
  615. "System.Threading.ThreadPool.dll": {
  616. "assemblyVersion": "6.0.0.0",
  617. "fileVersion": "6.0.121.56705"
  618. },
  619. "System.Threading.Timer.dll": {
  620. "assemblyVersion": "6.0.0.0",
  621. "fileVersion": "6.0.121.56705"
  622. },
  623. "System.Threading.dll": {
  624. "assemblyVersion": "6.0.0.0",
  625. "fileVersion": "6.0.121.56705"
  626. },
  627. "System.Transactions.Local.dll": {
  628. "assemblyVersion": "6.0.0.0",
  629. "fileVersion": "6.0.121.56705"
  630. },
  631. "System.Transactions.dll": {
  632. "assemblyVersion": "4.0.0.0",
  633. "fileVersion": "6.0.121.56705"
  634. },
  635. "System.ValueTuple.dll": {
  636. "assemblyVersion": "6.0.0.0",
  637. "fileVersion": "6.0.121.56705"
  638. },
  639. "System.Web.HttpUtility.dll": {
  640. "assemblyVersion": "6.0.0.0",
  641. "fileVersion": "6.0.121.56705"
  642. },
  643. "System.Web.dll": {
  644. "assemblyVersion": "4.0.0.0",
  645. "fileVersion": "6.0.121.56705"
  646. },
  647. "System.Windows.dll": {
  648. "assemblyVersion": "4.0.0.0",
  649. "fileVersion": "6.0.121.56705"
  650. },
  651. "System.Xml.Linq.dll": {
  652. "assemblyVersion": "4.0.0.0",
  653. "fileVersion": "6.0.121.56705"
  654. },
  655. "System.Xml.ReaderWriter.dll": {
  656. "assemblyVersion": "6.0.0.0",
  657. "fileVersion": "6.0.121.56705"
  658. },
  659. "System.Xml.Serialization.dll": {
  660. "assemblyVersion": "4.0.0.0",
  661. "fileVersion": "6.0.121.56705"
  662. },
  663. "System.Xml.XDocument.dll": {
  664. "assemblyVersion": "6.0.0.0",
  665. "fileVersion": "6.0.121.56705"
  666. },
  667. "System.Xml.XPath.XDocument.dll": {
  668. "assemblyVersion": "6.0.0.0",
  669. "fileVersion": "6.0.121.56705"
  670. },
  671. "System.Xml.XPath.dll": {
  672. "assemblyVersion": "6.0.0.0",
  673. "fileVersion": "6.0.121.56705"
  674. },
  675. "System.Xml.XmlDocument.dll": {
  676. "assemblyVersion": "6.0.0.0",
  677. "fileVersion": "6.0.121.56705"
  678. },
  679. "System.Xml.XmlSerializer.dll": {
  680. "assemblyVersion": "6.0.0.0",
  681. "fileVersion": "6.0.121.56705"
  682. },
  683. "System.Xml.dll": {
  684. "assemblyVersion": "4.0.0.0",
  685. "fileVersion": "6.0.121.56705"
  686. },
  687. "System.dll": {
  688. "assemblyVersion": "4.0.0.0",
  689. "fileVersion": "6.0.121.56705"
  690. },
  691. "WindowsBase.dll": {
  692. "assemblyVersion": "4.0.0.0",
  693. "fileVersion": "6.0.121.56705"
  694. },
  695. "mscorlib.dll": {
  696. "assemblyVersion": "4.0.0.0",
  697. "fileVersion": "6.0.121.56705"
  698. },
  699. "netstandard.dll": {
  700. "assemblyVersion": "2.1.0.0",
  701. "fileVersion": "6.0.121.56705"
  702. }
  703. },
  704. "native": {
  705. "Microsoft.DiaSymReader.Native.amd64.dll": {
  706. "fileVersion": "0.0.0.0"
  707. },
  708. "System.IO.Compression.Native.dll": {
  709. "fileVersion": "0.0.0.0"
  710. },
  711. "api-ms-win-core-console-l1-1-0.dll": {
  712. "fileVersion": "0.0.0.0"
  713. },
  714. "api-ms-win-core-console-l1-2-0.dll": {
  715. "fileVersion": "0.0.0.0"
  716. },
  717. "api-ms-win-core-datetime-l1-1-0.dll": {
  718. "fileVersion": "0.0.0.0"
  719. },
  720. "api-ms-win-core-debug-l1-1-0.dll": {
  721. "fileVersion": "0.0.0.0"
  722. },
  723. "api-ms-win-core-errorhandling-l1-1-0.dll": {
  724. "fileVersion": "0.0.0.0"
  725. },
  726. "api-ms-win-core-file-l1-1-0.dll": {
  727. "fileVersion": "0.0.0.0"
  728. },
  729. "api-ms-win-core-file-l1-2-0.dll": {
  730. "fileVersion": "0.0.0.0"
  731. },
  732. "api-ms-win-core-file-l2-1-0.dll": {
  733. "fileVersion": "0.0.0.0"
  734. },
  735. "api-ms-win-core-handle-l1-1-0.dll": {
  736. "fileVersion": "0.0.0.0"
  737. },
  738. "api-ms-win-core-heap-l1-1-0.dll": {
  739. "fileVersion": "0.0.0.0"
  740. },
  741. "api-ms-win-core-interlocked-l1-1-0.dll": {
  742. "fileVersion": "0.0.0.0"
  743. },
  744. "api-ms-win-core-libraryloader-l1-1-0.dll": {
  745. "fileVersion": "0.0.0.0"
  746. },
  747. "api-ms-win-core-localization-l1-2-0.dll": {
  748. "fileVersion": "0.0.0.0"
  749. },
  750. "api-ms-win-core-memory-l1-1-0.dll": {
  751. "fileVersion": "0.0.0.0"
  752. },
  753. "api-ms-win-core-namedpipe-l1-1-0.dll": {
  754. "fileVersion": "0.0.0.0"
  755. },
  756. "api-ms-win-core-processenvironment-l1-1-0.dll": {
  757. "fileVersion": "0.0.0.0"
  758. },
  759. "api-ms-win-core-processthreads-l1-1-0.dll": {
  760. "fileVersion": "0.0.0.0"
  761. },
  762. "api-ms-win-core-processthreads-l1-1-1.dll": {
  763. "fileVersion": "0.0.0.0"
  764. },
  765. "api-ms-win-core-profile-l1-1-0.dll": {
  766. "fileVersion": "0.0.0.0"
  767. },
  768. "api-ms-win-core-rtlsupport-l1-1-0.dll": {
  769. "fileVersion": "0.0.0.0"
  770. },
  771. "api-ms-win-core-string-l1-1-0.dll": {
  772. "fileVersion": "0.0.0.0"
  773. },
  774. "api-ms-win-core-synch-l1-1-0.dll": {
  775. "fileVersion": "0.0.0.0"
  776. },
  777. "api-ms-win-core-synch-l1-2-0.dll": {
  778. "fileVersion": "0.0.0.0"
  779. },
  780. "api-ms-win-core-sysinfo-l1-1-0.dll": {
  781. "fileVersion": "0.0.0.0"
  782. },
  783. "api-ms-win-core-timezone-l1-1-0.dll": {
  784. "fileVersion": "0.0.0.0"
  785. },
  786. "api-ms-win-core-util-l1-1-0.dll": {
  787. "fileVersion": "0.0.0.0"
  788. },
  789. "api-ms-win-crt-conio-l1-1-0.dll": {
  790. "fileVersion": "0.0.0.0"
  791. },
  792. "api-ms-win-crt-convert-l1-1-0.dll": {
  793. "fileVersion": "0.0.0.0"
  794. },
  795. "api-ms-win-crt-environment-l1-1-0.dll": {
  796. "fileVersion": "0.0.0.0"
  797. },
  798. "api-ms-win-crt-filesystem-l1-1-0.dll": {
  799. "fileVersion": "0.0.0.0"
  800. },
  801. "api-ms-win-crt-heap-l1-1-0.dll": {
  802. "fileVersion": "0.0.0.0"
  803. },
  804. "api-ms-win-crt-locale-l1-1-0.dll": {
  805. "fileVersion": "0.0.0.0"
  806. },
  807. "api-ms-win-crt-math-l1-1-0.dll": {
  808. "fileVersion": "0.0.0.0"
  809. },
  810. "api-ms-win-crt-multibyte-l1-1-0.dll": {
  811. "fileVersion": "0.0.0.0"
  812. },
  813. "api-ms-win-crt-private-l1-1-0.dll": {
  814. "fileVersion": "0.0.0.0"
  815. },
  816. "api-ms-win-crt-process-l1-1-0.dll": {
  817. "fileVersion": "0.0.0.0"
  818. },
  819. "api-ms-win-crt-runtime-l1-1-0.dll": {
  820. "fileVersion": "0.0.0.0"
  821. },
  822. "api-ms-win-crt-stdio-l1-1-0.dll": {
  823. "fileVersion": "0.0.0.0"
  824. },
  825. "api-ms-win-crt-string-l1-1-0.dll": {
  826. "fileVersion": "0.0.0.0"
  827. },
  828. "api-ms-win-crt-time-l1-1-0.dll": {
  829. "fileVersion": "0.0.0.0"
  830. },
  831. "api-ms-win-crt-utility-l1-1-0.dll": {
  832. "fileVersion": "0.0.0.0"
  833. },
  834. "clretwrc.dll": {
  835. "fileVersion": "0.0.0.0"
  836. },
  837. "clrjit.dll": {
  838. "fileVersion": "0.0.0.0"
  839. },
  840. "coreclr.dll": {
  841. "fileVersion": "0.0.0.0"
  842. },
  843. "createdump.exe": {
  844. "fileVersion": "0.0.0.0"
  845. },
  846. "dbgshim.dll": {
  847. "fileVersion": "0.0.0.0"
  848. },
  849. "hostfxr.dll": {
  850. "fileVersion": "0.0.0.0"
  851. },
  852. "hostpolicy.dll": {
  853. "fileVersion": "0.0.0.0"
  854. },
  855. "mscordaccore.dll": {
  856. "fileVersion": "0.0.0.0"
  857. },
  858. "mscordaccore_amd64_amd64_6.0.121.56705.dll": {
  859. "fileVersion": "0.0.0.0"
  860. },
  861. "mscordbi.dll": {
  862. "fileVersion": "0.0.0.0"
  863. },
  864. "mscorrc.dll": {
  865. "fileVersion": "0.0.0.0"
  866. },
  867. "msquic.dll": {
  868. "fileVersion": "0.0.0.0"
  869. },
  870. "ucrtbase.dll": {
  871. "fileVersion": "0.0.0.0"
  872. }
  873. }
  874. },
  875. "JetBrains.Profiler.Api/1.1.7": {
  876. "runtime": {
  877. "lib/netstandard2.0/JetBrains.Profiler.Api.dll": {
  878. "assemblyVersion": "1.1.7.0",
  879. "fileVersion": "1.1.7.0"
  880. }
  881. }
  882. },
  883. "Microsoft.Win32.Registry/6.0.0-preview.5.21301.5": {
  884. "dependencies": {
  885. "System.Security.AccessControl": "6.0.0-preview.5.21301.5",
  886. "System.Security.Principal.Windows": "6.0.0-preview.5.21301.5"
  887. }
  888. },
  889. "Newtonsoft.Json/13.0.1": {
  890. "runtime": {
  891. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  892. "assemblyVersion": "13.0.0.0",
  893. "fileVersion": "13.0.1.25517"
  894. }
  895. }
  896. },
  897. "System.Security.AccessControl/6.0.0-preview.5.21301.5": {
  898. "dependencies": {
  899. "System.Security.Principal.Windows": "6.0.0-preview.5.21301.5"
  900. }
  901. },
  902. "System.Security.Principal.Windows/6.0.0-preview.5.21301.5": {},
  903. "Analytics.Api.Output/1.0.0": {
  904. "runtime": {
  905. "Analytics.Api.Output.dll": {}
  906. }
  907. },
  908. "Unity.Api.Attributes/1.0.0": {
  909. "runtime": {
  910. "Unity.Api.Attributes.dll": {}
  911. }
  912. },
  913. "Unity.Cecil.Awesome/1.0.0": {
  914. "runtime": {
  915. "Unity.Cecil.Awesome.dll": {}
  916. }
  917. },
  918. "Unity.Cecil.Visitor/1.0.0": {
  919. "runtime": {
  920. "Unity.Cecil.Visitor.dll": {}
  921. }
  922. },
  923. "Unity.IL2CPP/1.0.0": {
  924. "dependencies": {
  925. "JetBrains.Profiler.Api": "1.1.7",
  926. "Unity.Cecil.Awesome": "1.0.0",
  927. "Unity.Cecil.Visitor": "1.0.0",
  928. "Unity.IL2CPP.Api": "1.0.0",
  929. "Unity.IL2CPP.Api.Output": "1.0.0",
  930. "Unity.IL2CPP.Common": "1.0.0",
  931. "Unity.IL2CPP.Common35": "1.0.0",
  932. "Unity.IL2CPP.CompilerServices": "1.0.0",
  933. "Unity.IL2CPP.DataModel": "1.0.0",
  934. "Unity.IL2CPP.Shell": "1.0.0",
  935. "Unity.Options": "1.0.0",
  936. "Unity.TinyProfiler": "1.0.0"
  937. },
  938. "runtime": {
  939. "Unity.IL2CPP.dll": {}
  940. }
  941. },
  942. "Unity.IL2CPP.Api/1.0.0": {
  943. "dependencies": {
  944. "Unity.Api.Attributes": "1.0.0"
  945. },
  946. "runtime": {
  947. "Unity.IL2CPP.Api.dll": {}
  948. }
  949. },
  950. "Unity.IL2CPP.Api.Output/1.0.0": {
  951. "dependencies": {
  952. "Analytics.Api.Output": "1.0.0",
  953. "Unity.IL2CPP.Api": "1.0.0"
  954. },
  955. "runtime": {
  956. "Unity.IL2CPP.Api.Output.dll": {}
  957. }
  958. },
  959. "Unity.IL2CPP.Bee.BuildLogic/1.0.0": {
  960. "dependencies": {
  961. "Unity.Api.Attributes": "1.0.0",
  962. "Unity.IL2CPP.Api": "1.0.0",
  963. "Unity.Linker.Api": "1.0.0"
  964. },
  965. "runtime": {
  966. "Unity.IL2CPP.Bee.BuildLogic.dll": {}
  967. }
  968. },
  969. "Unity.IL2CPP.Bee.BuildLogic.Android/1.0.0": {
  970. "dependencies": {
  971. "Unity.IL2CPP.Bee.BuildLogic": "1.0.0"
  972. },
  973. "runtime": {
  974. "Unity.IL2CPP.Bee.BuildLogic.Android.dll": {}
  975. }
  976. },
  977. "Unity.IL2CPP.Bee.BuildLogic.AppleTV/1.0.0": {
  978. "dependencies": {
  979. "Unity.IL2CPP.Bee.BuildLogic": "1.0.0",
  980. "Unity.IL2CPP.Bee.BuildLogic.iOS": "1.0.0"
  981. },
  982. "runtime": {
  983. "Unity.IL2CPP.Bee.BuildLogic.AppleTV.dll": {}
  984. }
  985. },
  986. "Unity.IL2CPP.Bee.BuildLogic.EmbeddedLinux/1.0.0": {
  987. "dependencies": {
  988. "Unity.IL2CPP.Bee.BuildLogic": "1.0.0"
  989. },
  990. "runtime": {
  991. "Unity.IL2CPP.Bee.BuildLogic.EmbeddedLinux.dll": {}
  992. }
  993. },
  994. "Unity.IL2CPP.Bee.BuildLogic.iOS/1.0.0": {
  995. "dependencies": {
  996. "Unity.IL2CPP.Bee.BuildLogic": "1.0.0"
  997. },
  998. "runtime": {
  999. "Unity.IL2CPP.Bee.BuildLogic.iOS.dll": {}
  1000. }
  1001. },
  1002. "Unity.IL2CPP.Bee.BuildLogic.Linux/1.0.0": {
  1003. "dependencies": {
  1004. "Unity.IL2CPP.Bee.BuildLogic": "1.0.0"
  1005. },
  1006. "runtime": {
  1007. "Unity.IL2CPP.Bee.BuildLogic.Linux.dll": {}
  1008. }
  1009. },
  1010. "Unity.IL2CPP.Bee.BuildLogic.MacOSX/1.0.0": {
  1011. "dependencies": {
  1012. "Unity.IL2CPP.Bee.BuildLogic": "1.0.0"
  1013. },
  1014. "runtime": {
  1015. "Unity.IL2CPP.Bee.BuildLogic.MacOSX.dll": {}
  1016. }
  1017. },
  1018. "Unity.IL2CPP.Bee.BuildLogic.OpenHarmony/1.0.0": {
  1019. "dependencies": {
  1020. "Unity.IL2CPP.Api": "1.0.0",
  1021. "Unity.IL2CPP.Bee.BuildLogic": "1.0.0"
  1022. },
  1023. "runtime": {
  1024. "Unity.IL2CPP.Bee.BuildLogic.OpenHarmony.dll": {}
  1025. }
  1026. },
  1027. "Unity.IL2CPP.Bee.BuildLogic.UniversalWindows/1.0.0": {
  1028. "dependencies": {
  1029. "Unity.IL2CPP.Bee.BuildLogic": "1.0.0"
  1030. },
  1031. "runtime": {
  1032. "Unity.IL2CPP.Bee.BuildLogic.UniversalWindows.dll": {}
  1033. }
  1034. },
  1035. "Unity.IL2CPP.Bee.BuildLogic.WebGL/1.0.0": {
  1036. "dependencies": {
  1037. "Unity.IL2CPP.Bee.BuildLogic": "1.0.0"
  1038. },
  1039. "runtime": {
  1040. "Unity.IL2CPP.Bee.BuildLogic.WebGL.dll": {}
  1041. }
  1042. },
  1043. "Unity.IL2CPP.Bee.BuildLogic.WindowsDesktop/1.0.0": {
  1044. "dependencies": {
  1045. "Unity.IL2CPP.Bee.BuildLogic": "1.0.0"
  1046. },
  1047. "runtime": {
  1048. "Unity.IL2CPP.Bee.BuildLogic.WindowsDesktop.dll": {}
  1049. }
  1050. },
  1051. "Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram/1.0.0": {
  1052. "dependencies": {
  1053. "Unity.IL2CPP.Api": "1.0.0",
  1054. "Unity.IL2CPP.Bee.BuildLogic": "1.0.0",
  1055. "Unity.IL2CPP.Bee.BuildLogic.UniversalWindows": "1.0.0",
  1056. "Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.Data": "1.0.0"
  1057. },
  1058. "runtime": {
  1059. "Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.dll": {}
  1060. }
  1061. },
  1062. "Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.Data/1.0.0": {
  1063. "dependencies": {
  1064. "Unity.IL2CPP.Api": "1.0.0"
  1065. },
  1066. "runtime": {
  1067. "Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.Data.dll": {}
  1068. }
  1069. },
  1070. "Unity.IL2CPP.Building/1.0.0": {
  1071. "dependencies": {
  1072. "Microsoft.Win32.Registry": "6.0.0-preview.5.21301.5",
  1073. "Newtonsoft.Json": "13.0.1",
  1074. "Unity.IL2CPP": "1.0.0",
  1075. "Unity.IL2CPP.Api": "1.0.0",
  1076. "Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram": "1.0.0",
  1077. "Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.Data": "1.0.0",
  1078. "Unity.IL2CPP.Common": "1.0.0",
  1079. "Unity.IL2CPP.Common35": "1.0.0",
  1080. "Unity.IL2CPP.Shell": "1.0.0",
  1081. "Unity.Options": "1.0.0",
  1082. "Unity.TinyProfiler": "1.0.0"
  1083. },
  1084. "runtime": {
  1085. "Unity.IL2CPP.Building.dll": {}
  1086. }
  1087. },
  1088. "Unity.IL2CPP.Common/1.0.0": {
  1089. "dependencies": {
  1090. "Unity.Cecil.Awesome": "1.0.0",
  1091. "Unity.IL2CPP.Common35": "1.0.0"
  1092. },
  1093. "runtime": {
  1094. "Unity.IL2CPP.Common.dll": {}
  1095. }
  1096. },
  1097. "Unity.IL2CPP.Common35/1.0.0": {
  1098. "runtime": {
  1099. "Unity.IL2CPP.Common35.dll": {}
  1100. }
  1101. },
  1102. "Unity.IL2CPP.CompilerServices/1.0.0": {
  1103. "runtime": {
  1104. "Unity.IL2CPP.CompilerServices.dll": {}
  1105. }
  1106. },
  1107. "Unity.IL2CPP.DataModel/1.0.0": {
  1108. "dependencies": {
  1109. "Unity.Cecil.Awesome": "1.0.0",
  1110. "Unity.IL2CPP.Common": "1.0.0",
  1111. "Unity.IL2CPP.Common35": "1.0.0",
  1112. "Unity.TinyProfiler": "1.0.0"
  1113. },
  1114. "runtime": {
  1115. "Unity.IL2CPP.DataModel.dll": {}
  1116. }
  1117. },
  1118. "Unity.IL2CPP.Shell/1.0.0": {
  1119. "dependencies": {
  1120. "Unity.IL2CPP.Common35": "1.0.0"
  1121. },
  1122. "runtime": {
  1123. "Unity.IL2CPP.Shell.dll": {}
  1124. }
  1125. },
  1126. "Unity.Linker.Api/1.0.0": {
  1127. "dependencies": {
  1128. "Unity.Api.Attributes": "1.0.0"
  1129. },
  1130. "runtime": {
  1131. "Unity.Linker.Api.dll": {}
  1132. }
  1133. },
  1134. "Unity.Options/1.0.0": {
  1135. "runtime": {
  1136. "Unity.Options.dll": {}
  1137. }
  1138. },
  1139. "Unity.TinyProfiler/1.0.0": {
  1140. "dependencies": {
  1141. "Unity.IL2CPP.Common35": "1.0.0"
  1142. },
  1143. "runtime": {
  1144. "Unity.TinyProfiler.dll": {}
  1145. }
  1146. },
  1147. "Bee.BeeDriver/1.0.0.0": {
  1148. "runtime": {
  1149. "Bee.BeeDriver.dll": {
  1150. "assemblyVersion": "1.0.0.0",
  1151. "fileVersion": "1.0.0.0"
  1152. }
  1153. }
  1154. },
  1155. "Bee.TinyProfiler2/0.0.0.0": {
  1156. "runtime": {
  1157. "Bee.TinyProfiler2.dll": {
  1158. "assemblyVersion": "0.0.0.0",
  1159. "fileVersion": "0.0.0.0"
  1160. }
  1161. }
  1162. },
  1163. "Mono.Cecil/0.10.0.0": {
  1164. "runtime": {
  1165. "Mono.Cecil.dll": {
  1166. "assemblyVersion": "0.10.0.0",
  1167. "fileVersion": "0.10.0.0"
  1168. }
  1169. }
  1170. },
  1171. "Mono.Cecil.Pdb/0.10.0.0": {
  1172. "runtime": {
  1173. "Mono.Cecil.Pdb.dll": {
  1174. "assemblyVersion": "0.10.0.0",
  1175. "fileVersion": "0.10.0.0"
  1176. }
  1177. }
  1178. },
  1179. "Bee.NativeProgramSupport/0.0.0.0": {
  1180. "runtime": {
  1181. "Bee.NativeProgramSupport.dll": {
  1182. "assemblyVersion": "0.0.0.0",
  1183. "fileVersion": "0.0.0.0"
  1184. }
  1185. }
  1186. },
  1187. "Bee.Core/0.0.0.0": {
  1188. "runtime": {
  1189. "Bee.Core.dll": {
  1190. "assemblyVersion": "0.0.0.0",
  1191. "fileVersion": "0.0.0.0"
  1192. }
  1193. }
  1194. },
  1195. "NiceIO/0.0.0.0": {
  1196. "runtime": {
  1197. "NiceIO.dll": {
  1198. "assemblyVersion": "0.0.0.0",
  1199. "fileVersion": "0.0.0.0"
  1200. }
  1201. }
  1202. },
  1203. "Bee.Tools/0.0.0.0": {
  1204. "runtime": {
  1205. "Bee.Tools.dll": {
  1206. "assemblyVersion": "0.0.0.0",
  1207. "fileVersion": "0.0.0.0"
  1208. }
  1209. }
  1210. },
  1211. "Bee.Toolchain.Android/0.0.0.0": {
  1212. "runtime": {
  1213. "Bee.Toolchain.Android.dll": {
  1214. "assemblyVersion": "0.0.0.0",
  1215. "fileVersion": "0.0.0.0"
  1216. }
  1217. }
  1218. },
  1219. "Bee.Toolchain.LLVM/0.0.0.0": {
  1220. "runtime": {
  1221. "Bee.Toolchain.LLVM.dll": {
  1222. "assemblyVersion": "0.0.0.0",
  1223. "fileVersion": "0.0.0.0"
  1224. }
  1225. }
  1226. },
  1227. "Bee.Toolchain.GNU/0.0.0.0": {
  1228. "runtime": {
  1229. "Bee.Toolchain.GNU.dll": {
  1230. "assemblyVersion": "0.0.0.0",
  1231. "fileVersion": "0.0.0.0"
  1232. }
  1233. }
  1234. },
  1235. "Bee.Toolchain.TvOS/0.0.0.0": {
  1236. "runtime": {
  1237. "Bee.Toolchain.TvOS.dll": {
  1238. "assemblyVersion": "0.0.0.0",
  1239. "fileVersion": "0.0.0.0"
  1240. }
  1241. }
  1242. },
  1243. "Bee.Toolchain.Xcode/0.0.0.0": {
  1244. "runtime": {
  1245. "Bee.Toolchain.Xcode.dll": {
  1246. "assemblyVersion": "0.0.0.0",
  1247. "fileVersion": "0.0.0.0"
  1248. }
  1249. }
  1250. },
  1251. "Bee.Toolchain.EmbeddedLinux/0.0.0.0": {
  1252. "runtime": {
  1253. "Bee.Toolchain.EmbeddedLinux.dll": {
  1254. "assemblyVersion": "0.0.0.0",
  1255. "fileVersion": "0.0.0.0"
  1256. }
  1257. }
  1258. },
  1259. "Bee.Toolchain.IOS/0.0.0.0": {
  1260. "runtime": {
  1261. "Bee.Toolchain.IOS.dll": {
  1262. "assemblyVersion": "0.0.0.0",
  1263. "fileVersion": "0.0.0.0"
  1264. }
  1265. }
  1266. },
  1267. "Bee.Toolchain.Linux/0.0.0.0": {
  1268. "runtime": {
  1269. "Bee.Toolchain.Linux.dll": {
  1270. "assemblyVersion": "0.0.0.0",
  1271. "fileVersion": "0.0.0.0"
  1272. }
  1273. }
  1274. },
  1275. "Bee.Toolchain.OpenHarmony/0.0.0.0": {
  1276. "runtime": {
  1277. "Bee.Toolchain.OpenHarmony.dll": {
  1278. "assemblyVersion": "0.0.0.0",
  1279. "fileVersion": "0.0.0.0"
  1280. }
  1281. }
  1282. },
  1283. "Bee.Toolchain.MacOS/0.0.0.0": {
  1284. "runtime": {
  1285. "Bee.Toolchain.MacOS.dll": {
  1286. "assemblyVersion": "0.0.0.0",
  1287. "fileVersion": "0.0.0.0"
  1288. }
  1289. }
  1290. },
  1291. "Bee.Toolchain.VisualStudio/0.0.0.0": {
  1292. "runtime": {
  1293. "Bee.Toolchain.VisualStudio.dll": {
  1294. "assemblyVersion": "0.0.0.0",
  1295. "fileVersion": "0.0.0.0"
  1296. }
  1297. }
  1298. },
  1299. "Bee.Toolchain.UWP/0.0.0.0": {
  1300. "runtime": {
  1301. "Bee.Toolchain.UWP.dll": {
  1302. "assemblyVersion": "0.0.0.0",
  1303. "fileVersion": "0.0.0.0"
  1304. }
  1305. }
  1306. },
  1307. "Bee.Toolchain.Emscripten/0.0.0.0": {
  1308. "runtime": {
  1309. "Bee.Toolchain.Emscripten.dll": {
  1310. "assemblyVersion": "0.0.0.0",
  1311. "fileVersion": "0.0.0.0"
  1312. }
  1313. }
  1314. },
  1315. "Bee.Toolchain.Windows/0.0.0.0": {
  1316. "runtime": {
  1317. "Bee.Toolchain.Windows.dll": {
  1318. "assemblyVersion": "0.0.0.0",
  1319. "fileVersion": "0.0.0.0"
  1320. }
  1321. }
  1322. },
  1323. "Bee.TundraBackend/0.0.0.0": {
  1324. "runtime": {
  1325. "Bee.TundraBackend.dll": {
  1326. "assemblyVersion": "0.0.0.0",
  1327. "fileVersion": "0.0.0.0"
  1328. }
  1329. }
  1330. },
  1331. "Bee.Stevedore.Program/0.0.0.0": {
  1332. "runtime": {
  1333. "Bee.Stevedore.Program.dll": {
  1334. "assemblyVersion": "0.0.0.0",
  1335. "fileVersion": "0.0.0.0"
  1336. }
  1337. }
  1338. },
  1339. "Mono.Cecil.Rocks/0.10.0.0": {
  1340. "runtime": {
  1341. "Mono.Cecil.Rocks.dll": {
  1342. "assemblyVersion": "0.10.0.0",
  1343. "fileVersion": "0.10.0.0"
  1344. }
  1345. }
  1346. },
  1347. "Mono.Cecil.Mdb/0.10.0.0": {
  1348. "runtime": {
  1349. "Mono.Cecil.Mdb.dll": {
  1350. "assemblyVersion": "0.10.0.0",
  1351. "fileVersion": "0.10.0.0"
  1352. }
  1353. }
  1354. },
  1355. "Bee.CSharpSupport/0.0.0.0": {
  1356. "runtime": {
  1357. "Bee.CSharpSupport.dll": {
  1358. "assemblyVersion": "0.0.0.0",
  1359. "fileVersion": "0.0.0.0"
  1360. }
  1361. }
  1362. },
  1363. "Bee.DotNet/0.0.0.0": {
  1364. "runtime": {
  1365. "Bee.DotNet.dll": {
  1366. "assemblyVersion": "0.0.0.0",
  1367. "fileVersion": "0.0.0.0"
  1368. }
  1369. }
  1370. },
  1371. "Bee.VisualStudioSolution/0.0.0.0": {
  1372. "runtime": {
  1373. "Bee.VisualStudioSolution.dll": {
  1374. "assemblyVersion": "0.0.0.0",
  1375. "fileVersion": "0.0.0.0"
  1376. }
  1377. }
  1378. }
  1379. }
  1380. },
  1381. "libraries": {
  1382. "il2cpp/1.0.0": {
  1383. "type": "project",
  1384. "serviceable": false,
  1385. "sha512": ""
  1386. },
  1387. "runtimepack.Microsoft.NETCore.App.Runtime.win-x64/6.0.1": {
  1388. "type": "runtimepack",
  1389. "serviceable": false,
  1390. "sha512": ""
  1391. },
  1392. "JetBrains.Profiler.Api/1.1.7": {
  1393. "type": "package",
  1394. "serviceable": true,
  1395. "sha512": "sha512-scN2nYNc7yGUNS3wF6fwuoAKZwWW2aMBHDqeVENrpJjRFKzEOWWrOGzNfr/WZft9+XzIz+ajshrx/dzz8Xp5Ig==",
  1396. "path": "jetbrains.profiler.api/1.1.7",
  1397. "hashPath": "jetbrains.profiler.api.1.1.7.nupkg.sha512"
  1398. },
  1399. "Microsoft.Win32.Registry/6.0.0-preview.5.21301.5": {
  1400. "type": "package",
  1401. "serviceable": true,
  1402. "sha512": "sha512-qYLtJIAEJJmY2vXxlVO8x4uXfgq7DFOHjpmnHlLm7kmAvyNFckYY/Dx5CZythBXvI2/7sratbIGKqSTysfgZ8A==",
  1403. "path": "microsoft.win32.registry/6.0.0-preview.5.21301.5",
  1404. "hashPath": "microsoft.win32.registry.6.0.0-preview.5.21301.5.nupkg.sha512"
  1405. },
  1406. "Newtonsoft.Json/13.0.1": {
  1407. "type": "package",
  1408. "serviceable": true,
  1409. "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  1410. "path": "newtonsoft.json/13.0.1",
  1411. "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512"
  1412. },
  1413. "System.Security.AccessControl/6.0.0-preview.5.21301.5": {
  1414. "type": "package",
  1415. "serviceable": true,
  1416. "sha512": "sha512-EA9ul7nGN8oggMvloILnR+wnrbgLNZZQBYHq5nEq/ixwnKLV3M3Tbd1Jbj8oGck3XMj0owq81e4Jxp3s0IMICw==",
  1417. "path": "system.security.accesscontrol/6.0.0-preview.5.21301.5",
  1418. "hashPath": "system.security.accesscontrol.6.0.0-preview.5.21301.5.nupkg.sha512"
  1419. },
  1420. "System.Security.Principal.Windows/6.0.0-preview.5.21301.5": {
  1421. "type": "package",
  1422. "serviceable": true,
  1423. "sha512": "sha512-ywwCqFAaRVbgqqORqYg8jdaX6NUEpzbuhxyUhAs+7mZ8AFAO4PzFYrZ5JPkYejXwougDldtbi0zOkk1lLzugLw==",
  1424. "path": "system.security.principal.windows/6.0.0-preview.5.21301.5",
  1425. "hashPath": "system.security.principal.windows.6.0.0-preview.5.21301.5.nupkg.sha512"
  1426. },
  1427. "Analytics.Api.Output/1.0.0": {
  1428. "type": "project",
  1429. "serviceable": false,
  1430. "sha512": ""
  1431. },
  1432. "Unity.Api.Attributes/1.0.0": {
  1433. "type": "project",
  1434. "serviceable": false,
  1435. "sha512": ""
  1436. },
  1437. "Unity.Cecil.Awesome/1.0.0": {
  1438. "type": "project",
  1439. "serviceable": false,
  1440. "sha512": ""
  1441. },
  1442. "Unity.Cecil.Visitor/1.0.0": {
  1443. "type": "project",
  1444. "serviceable": false,
  1445. "sha512": ""
  1446. },
  1447. "Unity.IL2CPP/1.0.0": {
  1448. "type": "project",
  1449. "serviceable": false,
  1450. "sha512": ""
  1451. },
  1452. "Unity.IL2CPP.Api/1.0.0": {
  1453. "type": "project",
  1454. "serviceable": false,
  1455. "sha512": ""
  1456. },
  1457. "Unity.IL2CPP.Api.Output/1.0.0": {
  1458. "type": "project",
  1459. "serviceable": false,
  1460. "sha512": ""
  1461. },
  1462. "Unity.IL2CPP.Bee.BuildLogic/1.0.0": {
  1463. "type": "project",
  1464. "serviceable": false,
  1465. "sha512": ""
  1466. },
  1467. "Unity.IL2CPP.Bee.BuildLogic.Android/1.0.0": {
  1468. "type": "project",
  1469. "serviceable": false,
  1470. "sha512": ""
  1471. },
  1472. "Unity.IL2CPP.Bee.BuildLogic.AppleTV/1.0.0": {
  1473. "type": "project",
  1474. "serviceable": false,
  1475. "sha512": ""
  1476. },
  1477. "Unity.IL2CPP.Bee.BuildLogic.EmbeddedLinux/1.0.0": {
  1478. "type": "project",
  1479. "serviceable": false,
  1480. "sha512": ""
  1481. },
  1482. "Unity.IL2CPP.Bee.BuildLogic.iOS/1.0.0": {
  1483. "type": "project",
  1484. "serviceable": false,
  1485. "sha512": ""
  1486. },
  1487. "Unity.IL2CPP.Bee.BuildLogic.Linux/1.0.0": {
  1488. "type": "project",
  1489. "serviceable": false,
  1490. "sha512": ""
  1491. },
  1492. "Unity.IL2CPP.Bee.BuildLogic.MacOSX/1.0.0": {
  1493. "type": "project",
  1494. "serviceable": false,
  1495. "sha512": ""
  1496. },
  1497. "Unity.IL2CPP.Bee.BuildLogic.OpenHarmony/1.0.0": {
  1498. "type": "project",
  1499. "serviceable": false,
  1500. "sha512": ""
  1501. },
  1502. "Unity.IL2CPP.Bee.BuildLogic.UniversalWindows/1.0.0": {
  1503. "type": "project",
  1504. "serviceable": false,
  1505. "sha512": ""
  1506. },
  1507. "Unity.IL2CPP.Bee.BuildLogic.WebGL/1.0.0": {
  1508. "type": "project",
  1509. "serviceable": false,
  1510. "sha512": ""
  1511. },
  1512. "Unity.IL2CPP.Bee.BuildLogic.WindowsDesktop/1.0.0": {
  1513. "type": "project",
  1514. "serviceable": false,
  1515. "sha512": ""
  1516. },
  1517. "Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram/1.0.0": {
  1518. "type": "project",
  1519. "serviceable": false,
  1520. "sha512": ""
  1521. },
  1522. "Unity.IL2CPP.Bee.IL2CPPExeCompileCppBuildProgram.Data/1.0.0": {
  1523. "type": "project",
  1524. "serviceable": false,
  1525. "sha512": ""
  1526. },
  1527. "Unity.IL2CPP.Building/1.0.0": {
  1528. "type": "project",
  1529. "serviceable": false,
  1530. "sha512": ""
  1531. },
  1532. "Unity.IL2CPP.Common/1.0.0": {
  1533. "type": "project",
  1534. "serviceable": false,
  1535. "sha512": ""
  1536. },
  1537. "Unity.IL2CPP.Common35/1.0.0": {
  1538. "type": "project",
  1539. "serviceable": false,
  1540. "sha512": ""
  1541. },
  1542. "Unity.IL2CPP.CompilerServices/1.0.0": {
  1543. "type": "project",
  1544. "serviceable": false,
  1545. "sha512": ""
  1546. },
  1547. "Unity.IL2CPP.DataModel/1.0.0": {
  1548. "type": "project",
  1549. "serviceable": false,
  1550. "sha512": ""
  1551. },
  1552. "Unity.IL2CPP.Shell/1.0.0": {
  1553. "type": "project",
  1554. "serviceable": false,
  1555. "sha512": ""
  1556. },
  1557. "Unity.Linker.Api/1.0.0": {
  1558. "type": "project",
  1559. "serviceable": false,
  1560. "sha512": ""
  1561. },
  1562. "Unity.Options/1.0.0": {
  1563. "type": "project",
  1564. "serviceable": false,
  1565. "sha512": ""
  1566. },
  1567. "Unity.TinyProfiler/1.0.0": {
  1568. "type": "project",
  1569. "serviceable": false,
  1570. "sha512": ""
  1571. },
  1572. "Bee.BeeDriver/1.0.0.0": {
  1573. "type": "reference",
  1574. "serviceable": false,
  1575. "sha512": ""
  1576. },
  1577. "Bee.TinyProfiler2/0.0.0.0": {
  1578. "type": "reference",
  1579. "serviceable": false,
  1580. "sha512": ""
  1581. },
  1582. "Mono.Cecil/0.10.0.0": {
  1583. "type": "reference",
  1584. "serviceable": false,
  1585. "sha512": ""
  1586. },
  1587. "Mono.Cecil.Pdb/0.10.0.0": {
  1588. "type": "reference",
  1589. "serviceable": false,
  1590. "sha512": ""
  1591. },
  1592. "Bee.NativeProgramSupport/0.0.0.0": {
  1593. "type": "reference",
  1594. "serviceable": false,
  1595. "sha512": ""
  1596. },
  1597. "Bee.Core/0.0.0.0": {
  1598. "type": "reference",
  1599. "serviceable": false,
  1600. "sha512": ""
  1601. },
  1602. "NiceIO/0.0.0.0": {
  1603. "type": "reference",
  1604. "serviceable": false,
  1605. "sha512": ""
  1606. },
  1607. "Bee.Tools/0.0.0.0": {
  1608. "type": "reference",
  1609. "serviceable": false,
  1610. "sha512": ""
  1611. },
  1612. "Bee.Toolchain.Android/0.0.0.0": {
  1613. "type": "reference",
  1614. "serviceable": false,
  1615. "sha512": ""
  1616. },
  1617. "Bee.Toolchain.LLVM/0.0.0.0": {
  1618. "type": "reference",
  1619. "serviceable": false,
  1620. "sha512": ""
  1621. },
  1622. "Bee.Toolchain.GNU/0.0.0.0": {
  1623. "type": "reference",
  1624. "serviceable": false,
  1625. "sha512": ""
  1626. },
  1627. "Bee.Toolchain.TvOS/0.0.0.0": {
  1628. "type": "reference",
  1629. "serviceable": false,
  1630. "sha512": ""
  1631. },
  1632. "Bee.Toolchain.Xcode/0.0.0.0": {
  1633. "type": "reference",
  1634. "serviceable": false,
  1635. "sha512": ""
  1636. },
  1637. "Bee.Toolchain.EmbeddedLinux/0.0.0.0": {
  1638. "type": "reference",
  1639. "serviceable": false,
  1640. "sha512": ""
  1641. },
  1642. "Bee.Toolchain.IOS/0.0.0.0": {
  1643. "type": "reference",
  1644. "serviceable": false,
  1645. "sha512": ""
  1646. },
  1647. "Bee.Toolchain.Linux/0.0.0.0": {
  1648. "type": "reference",
  1649. "serviceable": false,
  1650. "sha512": ""
  1651. },
  1652. "Bee.Toolchain.OpenHarmony/0.0.0.0": {
  1653. "type": "reference",
  1654. "serviceable": false,
  1655. "sha512": ""
  1656. },
  1657. "Bee.Toolchain.MacOS/0.0.0.0": {
  1658. "type": "reference",
  1659. "serviceable": false,
  1660. "sha512": ""
  1661. },
  1662. "Bee.Toolchain.VisualStudio/0.0.0.0": {
  1663. "type": "reference",
  1664. "serviceable": false,
  1665. "sha512": ""
  1666. },
  1667. "Bee.Toolchain.UWP/0.0.0.0": {
  1668. "type": "reference",
  1669. "serviceable": false,
  1670. "sha512": ""
  1671. },
  1672. "Bee.Toolchain.Emscripten/0.0.0.0": {
  1673. "type": "reference",
  1674. "serviceable": false,
  1675. "sha512": ""
  1676. },
  1677. "Bee.Toolchain.Windows/0.0.0.0": {
  1678. "type": "reference",
  1679. "serviceable": false,
  1680. "sha512": ""
  1681. },
  1682. "Bee.TundraBackend/0.0.0.0": {
  1683. "type": "reference",
  1684. "serviceable": false,
  1685. "sha512": ""
  1686. },
  1687. "Bee.Stevedore.Program/0.0.0.0": {
  1688. "type": "reference",
  1689. "serviceable": false,
  1690. "sha512": ""
  1691. },
  1692. "Mono.Cecil.Rocks/0.10.0.0": {
  1693. "type": "reference",
  1694. "serviceable": false,
  1695. "sha512": ""
  1696. },
  1697. "Mono.Cecil.Mdb/0.10.0.0": {
  1698. "type": "reference",
  1699. "serviceable": false,
  1700. "sha512": ""
  1701. },
  1702. "Bee.CSharpSupport/0.0.0.0": {
  1703. "type": "reference",
  1704. "serviceable": false,
  1705. "sha512": ""
  1706. },
  1707. "Bee.DotNet/0.0.0.0": {
  1708. "type": "reference",
  1709. "serviceable": false,
  1710. "sha512": ""
  1711. },
  1712. "Bee.VisualStudioSolution/0.0.0.0": {
  1713. "type": "reference",
  1714. "serviceable": false,
  1715. "sha512": ""
  1716. }
  1717. },
  1718. "runtimes": {
  1719. "win-x64": [
  1720. "win",
  1721. "any",
  1722. "base"
  1723. ],
  1724. "win-x64-aot": [
  1725. "win-aot",
  1726. "win-x64",
  1727. "win",
  1728. "aot",
  1729. "any",
  1730. "base"
  1731. ],
  1732. "win10-x64": [
  1733. "win10",
  1734. "win81-x64",
  1735. "win81",
  1736. "win8-x64",
  1737. "win8",
  1738. "win7-x64",
  1739. "win7",
  1740. "win-x64",
  1741. "win",
  1742. "any",
  1743. "base"
  1744. ],
  1745. "win10-x64-aot": [
  1746. "win10-aot",
  1747. "win10-x64",
  1748. "win10",
  1749. "win81-x64-aot",
  1750. "win81-aot",
  1751. "win81-x64",
  1752. "win81",
  1753. "win8-x64-aot",
  1754. "win8-aot",
  1755. "win8-x64",
  1756. "win8",
  1757. "win7-x64-aot",
  1758. "win7-aot",
  1759. "win7-x64",
  1760. "win7",
  1761. "win-x64-aot",
  1762. "win-aot",
  1763. "win-x64",
  1764. "win",
  1765. "aot",
  1766. "any",
  1767. "base"
  1768. ],
  1769. "win7-x64": [
  1770. "win7",
  1771. "win-x64",
  1772. "win",
  1773. "any",
  1774. "base"
  1775. ],
  1776. "win7-x64-aot": [
  1777. "win7-aot",
  1778. "win7-x64",
  1779. "win7",
  1780. "win-x64-aot",
  1781. "win-aot",
  1782. "win-x64",
  1783. "win",
  1784. "aot",
  1785. "any",
  1786. "base"
  1787. ],
  1788. "win8-x64": [
  1789. "win8",
  1790. "win7-x64",
  1791. "win7",
  1792. "win-x64",
  1793. "win",
  1794. "any",
  1795. "base"
  1796. ],
  1797. "win8-x64-aot": [
  1798. "win8-aot",
  1799. "win8-x64",
  1800. "win8",
  1801. "win7-x64-aot",
  1802. "win7-aot",
  1803. "win7-x64",
  1804. "win7",
  1805. "win-x64-aot",
  1806. "win-aot",
  1807. "win-x64",
  1808. "win",
  1809. "aot",
  1810. "any",
  1811. "base"
  1812. ],
  1813. "win81-x64": [
  1814. "win81",
  1815. "win8-x64",
  1816. "win8",
  1817. "win7-x64",
  1818. "win7",
  1819. "win-x64",
  1820. "win",
  1821. "any",
  1822. "base"
  1823. ],
  1824. "win81-x64-aot": [
  1825. "win81-aot",
  1826. "win81-x64",
  1827. "win81",
  1828. "win8-x64-aot",
  1829. "win8-aot",
  1830. "win8-x64",
  1831. "win8",
  1832. "win7-x64-aot",
  1833. "win7-aot",
  1834. "win7-x64",
  1835. "win7",
  1836. "win-x64-aot",
  1837. "win-aot",
  1838. "win-x64",
  1839. "win",
  1840. "aot",
  1841. "any",
  1842. "base"
  1843. ]
  1844. }
  1845. }