@typespec/http-client-csharp 0.1.9-alpha.20240715.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (275) hide show
  1. package/dist/emitter/constants.d.ts +7 -0
  2. package/dist/emitter/constants.d.ts.map +1 -0
  3. package/dist/emitter/constants.js +9 -0
  4. package/dist/emitter/constants.js.map +1 -0
  5. package/dist/emitter/emitter.d.ts +4 -0
  6. package/dist/emitter/emitter.d.ts.map +1 -0
  7. package/dist/emitter/emitter.js +174 -0
  8. package/dist/emitter/emitter.js.map +1 -0
  9. package/dist/emitter/index.d.ts +7 -0
  10. package/dist/emitter/index.d.ts.map +1 -0
  11. package/dist/emitter/index.js +9 -0
  12. package/dist/emitter/index.js.map +1 -0
  13. package/dist/emitter/lib/client-model-builder.d.ts +7 -0
  14. package/dist/emitter/lib/client-model-builder.d.ts.map +1 -0
  15. package/dist/emitter/lib/client-model-builder.js +236 -0
  16. package/dist/emitter/lib/client-model-builder.js.map +1 -0
  17. package/dist/emitter/lib/converter.d.ts +7 -0
  18. package/dist/emitter/lib/converter.d.ts.map +1 -0
  19. package/dist/emitter/lib/converter.js +261 -0
  20. package/dist/emitter/lib/converter.js.map +1 -0
  21. package/dist/emitter/lib/decorators.d.ts +10 -0
  22. package/dist/emitter/lib/decorators.d.ts.map +1 -0
  23. package/dist/emitter/lib/decorators.js +17 -0
  24. package/dist/emitter/lib/decorators.js.map +1 -0
  25. package/dist/emitter/lib/lib.d.ts +66 -0
  26. package/dist/emitter/lib/lib.d.ts.map +1 -0
  27. package/dist/emitter/lib/lib.js +45 -0
  28. package/dist/emitter/lib/lib.js.map +1 -0
  29. package/dist/emitter/lib/log-level.d.ts +6 -0
  30. package/dist/emitter/lib/log-level.d.ts.map +1 -0
  31. package/dist/emitter/lib/log-level.js +7 -0
  32. package/dist/emitter/lib/log-level.js.map +1 -0
  33. package/dist/emitter/lib/logger.d.ts +18 -0
  34. package/dist/emitter/lib/logger.d.ts.map +1 -0
  35. package/dist/emitter/lib/logger.js +70 -0
  36. package/dist/emitter/lib/logger.js.map +1 -0
  37. package/dist/emitter/lib/model.d.ts +20 -0
  38. package/dist/emitter/lib/model.d.ts.map +1 -0
  39. package/dist/emitter/lib/model.js +255 -0
  40. package/dist/emitter/lib/model.js.map +1 -0
  41. package/dist/emitter/lib/operation.d.ts +9 -0
  42. package/dist/emitter/lib/operation.d.ts.map +1 -0
  43. package/dist/emitter/lib/operation.js +295 -0
  44. package/dist/emitter/lib/operation.js.map +1 -0
  45. package/dist/emitter/lib/service-authentication.d.ts +4 -0
  46. package/dist/emitter/lib/service-authentication.d.ts.map +1 -0
  47. package/dist/emitter/lib/service-authentication.js +53 -0
  48. package/dist/emitter/lib/service-authentication.js.map +1 -0
  49. package/dist/emitter/lib/typespec-server.d.ts +12 -0
  50. package/dist/emitter/lib/typespec-server.d.ts.map +1 -0
  51. package/dist/emitter/lib/typespec-server.js +83 -0
  52. package/dist/emitter/lib/typespec-server.js.map +1 -0
  53. package/dist/emitter/lib/utils.d.ts +8 -0
  54. package/dist/emitter/lib/utils.d.ts.map +1 -0
  55. package/dist/emitter/lib/utils.js +53 -0
  56. package/dist/emitter/lib/utils.js.map +1 -0
  57. package/dist/emitter/options.d.ts +93 -0
  58. package/dist/emitter/options.d.ts.map +1 -0
  59. package/dist/emitter/options.js +114 -0
  60. package/dist/emitter/options.js.map +1 -0
  61. package/dist/emitter/tsdoc-metadata.json +11 -0
  62. package/dist/emitter/type/body-media-type.d.ts +12 -0
  63. package/dist/emitter/type/body-media-type.d.ts.map +1 -0
  64. package/dist/emitter/type/body-media-type.js +26 -0
  65. package/dist/emitter/type/body-media-type.js.map +1 -0
  66. package/dist/emitter/type/client-kind.d.ts +5 -0
  67. package/dist/emitter/type/client-kind.d.ts.map +1 -0
  68. package/dist/emitter/type/client-kind.js +8 -0
  69. package/dist/emitter/type/client-kind.js.map +1 -0
  70. package/dist/emitter/type/code-model.d.ts +12 -0
  71. package/dist/emitter/type/code-model.d.ts.map +1 -0
  72. package/dist/emitter/type/code-model.js +4 -0
  73. package/dist/emitter/type/code-model.js.map +1 -0
  74. package/dist/emitter/type/collection-format.d.ts +13 -0
  75. package/dist/emitter/type/collection-format.d.ts.map +1 -0
  76. package/dist/emitter/type/collection-format.js +22 -0
  77. package/dist/emitter/type/collection-format.js.map +1 -0
  78. package/dist/emitter/type/configuration.d.ts +21 -0
  79. package/dist/emitter/type/configuration.d.ts.map +1 -0
  80. package/dist/emitter/type/configuration.js +4 -0
  81. package/dist/emitter/type/configuration.js.map +1 -0
  82. package/dist/emitter/type/external-docs.d.ts +5 -0
  83. package/dist/emitter/type/external-docs.d.ts.map +1 -0
  84. package/dist/emitter/type/external-docs.js +4 -0
  85. package/dist/emitter/type/external-docs.js.map +1 -0
  86. package/dist/emitter/type/http-response-header.d.ts +8 -0
  87. package/dist/emitter/type/http-response-header.d.ts.map +1 -0
  88. package/dist/emitter/type/http-response-header.js +4 -0
  89. package/dist/emitter/type/http-response-header.js.map +1 -0
  90. package/dist/emitter/type/input-api-key-auth.d.ts +5 -0
  91. package/dist/emitter/type/input-api-key-auth.d.ts.map +1 -0
  92. package/dist/emitter/type/input-api-key-auth.js +4 -0
  93. package/dist/emitter/type/input-api-key-auth.js.map +1 -0
  94. package/dist/emitter/type/input-auth.d.ts +7 -0
  95. package/dist/emitter/type/input-auth.d.ts.map +1 -0
  96. package/dist/emitter/type/input-auth.js +4 -0
  97. package/dist/emitter/type/input-auth.js.map +1 -0
  98. package/dist/emitter/type/input-client.d.ts +12 -0
  99. package/dist/emitter/type/input-client.d.ts.map +1 -0
  100. package/dist/emitter/type/input-client.js +4 -0
  101. package/dist/emitter/type/input-client.js.map +1 -0
  102. package/dist/emitter/type/input-constant.d.ts +6 -0
  103. package/dist/emitter/type/input-constant.d.ts.map +1 -0
  104. package/dist/emitter/type/input-constant.js +4 -0
  105. package/dist/emitter/type/input-constant.js.map +1 -0
  106. package/dist/emitter/type/input-enum-type-value.d.ts +6 -0
  107. package/dist/emitter/type/input-enum-type-value.d.ts.map +1 -0
  108. package/dist/emitter/type/input-enum-type-value.js +4 -0
  109. package/dist/emitter/type/input-enum-type-value.js.map +1 -0
  110. package/dist/emitter/type/input-model-property.d.ts +12 -0
  111. package/dist/emitter/type/input-model-property.d.ts.map +1 -0
  112. package/dist/emitter/type/input-model-property.js +4 -0
  113. package/dist/emitter/type/input-model-property.js.map +1 -0
  114. package/dist/emitter/type/input-oauth2-auth.d.ts +4 -0
  115. package/dist/emitter/type/input-oauth2-auth.d.ts.map +1 -0
  116. package/dist/emitter/type/input-oauth2-auth.js +4 -0
  117. package/dist/emitter/type/input-oauth2-auth.js.map +1 -0
  118. package/dist/emitter/type/input-operation-parameter-kind.d.ts +9 -0
  119. package/dist/emitter/type/input-operation-parameter-kind.d.ts.map +1 -0
  120. package/dist/emitter/type/input-operation-parameter-kind.js +12 -0
  121. package/dist/emitter/type/input-operation-parameter-kind.js.map +1 -0
  122. package/dist/emitter/type/input-operation.d.ts +33 -0
  123. package/dist/emitter/type/input-operation.d.ts.map +1 -0
  124. package/dist/emitter/type/input-operation.js +4 -0
  125. package/dist/emitter/type/input-operation.js.map +1 -0
  126. package/dist/emitter/type/input-parameter.d.ts +27 -0
  127. package/dist/emitter/type/input-parameter.d.ts.map +1 -0
  128. package/dist/emitter/type/input-parameter.js +4 -0
  129. package/dist/emitter/type/input-parameter.js.map +1 -0
  130. package/dist/emitter/type/input-type-serialization-format.d.ts +15 -0
  131. package/dist/emitter/type/input-type-serialization-format.d.ts.map +1 -0
  132. package/dist/emitter/type/input-type-serialization-format.js +18 -0
  133. package/dist/emitter/type/input-type-serialization-format.js.map +1 -0
  134. package/dist/emitter/type/input-type-value.d.ts +6 -0
  135. package/dist/emitter/type/input-type-value.d.ts.map +1 -0
  136. package/dist/emitter/type/input-type-value.js +4 -0
  137. package/dist/emitter/type/input-type-value.js.map +1 -0
  138. package/dist/emitter/type/input-type.d.ts +87 -0
  139. package/dist/emitter/type/input-type.d.ts.map +1 -0
  140. package/dist/emitter/type/input-type.js +21 -0
  141. package/dist/emitter/type/input-type.js.map +1 -0
  142. package/dist/emitter/type/literal-type-context.d.ts +5 -0
  143. package/dist/emitter/type/literal-type-context.d.ts.map +1 -0
  144. package/dist/emitter/type/literal-type-context.js +4 -0
  145. package/dist/emitter/type/literal-type-context.js.map +1 -0
  146. package/dist/emitter/type/operation-final-state-via.d.ts +12 -0
  147. package/dist/emitter/type/operation-final-state-via.d.ts.map +1 -0
  148. package/dist/emitter/type/operation-final-state-via.js +36 -0
  149. package/dist/emitter/type/operation-final-state-via.js.map +1 -0
  150. package/dist/emitter/type/operation-long-running.d.ts +8 -0
  151. package/dist/emitter/type/operation-long-running.d.ts.map +1 -0
  152. package/dist/emitter/type/operation-long-running.js +4 -0
  153. package/dist/emitter/type/operation-long-running.js.map +1 -0
  154. package/dist/emitter/type/operation-paging.d.ts +8 -0
  155. package/dist/emitter/type/operation-paging.d.ts.map +1 -0
  156. package/dist/emitter/type/operation-paging.js +4 -0
  157. package/dist/emitter/type/operation-paging.js.map +1 -0
  158. package/dist/emitter/type/operation-response.d.ts +12 -0
  159. package/dist/emitter/type/operation-response.d.ts.map +1 -0
  160. package/dist/emitter/type/operation-response.js +4 -0
  161. package/dist/emitter/type/operation-response.js.map +1 -0
  162. package/dist/emitter/type/protocols.d.ts +3 -0
  163. package/dist/emitter/type/protocols.d.ts.map +1 -0
  164. package/dist/emitter/type/protocols.js +4 -0
  165. package/dist/emitter/type/protocols.js.map +1 -0
  166. package/dist/emitter/type/request-location.d.ts +12 -0
  167. package/dist/emitter/type/request-location.d.ts.map +1 -0
  168. package/dist/emitter/type/request-location.js +19 -0
  169. package/dist/emitter/type/request-location.js.map +1 -0
  170. package/dist/emitter/type/request-method.d.ts +13 -0
  171. package/dist/emitter/type/request-method.d.ts.map +1 -0
  172. package/dist/emitter/type/request-method.js +40 -0
  173. package/dist/emitter/type/request-method.js.map +1 -0
  174. package/dist/emitter/type/usage.d.ts +8 -0
  175. package/dist/emitter/type/usage.d.ts.map +1 -0
  176. package/dist/emitter/type/usage.js +11 -0
  177. package/dist/emitter/type/usage.js.map +1 -0
  178. package/dist/emitter/type/validation-type.d.ts +6 -0
  179. package/dist/emitter/type/validation-type.d.ts.map +1 -0
  180. package/dist/emitter/type/validation-type.js +9 -0
  181. package/dist/emitter/type/validation-type.js.map +1 -0
  182. package/dist/generator/CommandLine.dll +0 -0
  183. package/dist/generator/Humanizer.dll +0 -0
  184. package/dist/generator/Microsoft.Bcl.AsyncInterfaces.dll +0 -0
  185. package/dist/generator/Microsoft.Build.Framework.dll +0 -0
  186. package/dist/generator/Microsoft.Build.dll +0 -0
  187. package/dist/generator/Microsoft.CodeAnalysis.CSharp.Workspaces.dll +0 -0
  188. package/dist/generator/Microsoft.CodeAnalysis.CSharp.dll +0 -0
  189. package/dist/generator/Microsoft.CodeAnalysis.Workspaces.dll +0 -0
  190. package/dist/generator/Microsoft.CodeAnalysis.dll +0 -0
  191. package/dist/generator/Microsoft.Generator.CSharp +0 -0
  192. package/dist/generator/Microsoft.Generator.CSharp.ClientModel.deps.json +818 -0
  193. package/dist/generator/Microsoft.Generator.CSharp.ClientModel.dll +0 -0
  194. package/dist/generator/Microsoft.Generator.CSharp.ClientModel.pdb +0 -0
  195. package/dist/generator/Microsoft.Generator.CSharp.Customization.dll +0 -0
  196. package/dist/generator/Microsoft.Generator.CSharp.Customization.pdb +0 -0
  197. package/dist/generator/Microsoft.Generator.CSharp.Input.dll +0 -0
  198. package/dist/generator/Microsoft.Generator.CSharp.Input.pdb +0 -0
  199. package/dist/generator/Microsoft.Generator.CSharp.deps.json +785 -0
  200. package/dist/generator/Microsoft.Generator.CSharp.dll +0 -0
  201. package/dist/generator/Microsoft.Generator.CSharp.pdb +0 -0
  202. package/dist/generator/Microsoft.Generator.CSharp.runtimeconfig.json +12 -0
  203. package/dist/generator/Microsoft.NET.StringTools.dll +0 -0
  204. package/dist/generator/NuGet.Common.dll +0 -0
  205. package/dist/generator/NuGet.Configuration.dll +0 -0
  206. package/dist/generator/NuGet.Frameworks.dll +0 -0
  207. package/dist/generator/System.ClientModel.dll +0 -0
  208. package/dist/generator/System.ComponentModel.Composition.dll +0 -0
  209. package/dist/generator/System.Composition.AttributedModel.dll +0 -0
  210. package/dist/generator/System.Composition.Convention.dll +0 -0
  211. package/dist/generator/System.Composition.Hosting.dll +0 -0
  212. package/dist/generator/System.Composition.Runtime.dll +0 -0
  213. package/dist/generator/System.Composition.TypedParts.dll +0 -0
  214. package/dist/generator/System.Configuration.ConfigurationManager.dll +0 -0
  215. package/dist/generator/System.Diagnostics.EventLog.dll +0 -0
  216. package/dist/generator/System.IO.Pipelines.dll +0 -0
  217. package/dist/generator/System.Memory.Data.dll +0 -0
  218. package/dist/generator/System.Reflection.MetadataLoadContext.dll +0 -0
  219. package/dist/generator/System.Security.Cryptography.ProtectedData.dll +0 -0
  220. package/dist/generator/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  221. package/dist/generator/cs/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  222. package/dist/generator/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  223. package/dist/generator/cs/Microsoft.CodeAnalysis.resources.dll +0 -0
  224. package/dist/generator/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  225. package/dist/generator/de/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  226. package/dist/generator/de/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  227. package/dist/generator/de/Microsoft.CodeAnalysis.resources.dll +0 -0
  228. package/dist/generator/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  229. package/dist/generator/es/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  230. package/dist/generator/es/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  231. package/dist/generator/es/Microsoft.CodeAnalysis.resources.dll +0 -0
  232. package/dist/generator/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  233. package/dist/generator/fr/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  234. package/dist/generator/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  235. package/dist/generator/fr/Microsoft.CodeAnalysis.resources.dll +0 -0
  236. package/dist/generator/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  237. package/dist/generator/it/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  238. package/dist/generator/it/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  239. package/dist/generator/it/Microsoft.CodeAnalysis.resources.dll +0 -0
  240. package/dist/generator/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  241. package/dist/generator/ja/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  242. package/dist/generator/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  243. package/dist/generator/ja/Microsoft.CodeAnalysis.resources.dll +0 -0
  244. package/dist/generator/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  245. package/dist/generator/ko/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  246. package/dist/generator/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  247. package/dist/generator/ko/Microsoft.CodeAnalysis.resources.dll +0 -0
  248. package/dist/generator/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  249. package/dist/generator/pl/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  250. package/dist/generator/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  251. package/dist/generator/pl/Microsoft.CodeAnalysis.resources.dll +0 -0
  252. package/dist/generator/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  253. package/dist/generator/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  254. package/dist/generator/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  255. package/dist/generator/pt-BR/Microsoft.CodeAnalysis.resources.dll +0 -0
  256. package/dist/generator/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  257. package/dist/generator/ru/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  258. package/dist/generator/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  259. package/dist/generator/ru/Microsoft.CodeAnalysis.resources.dll +0 -0
  260. package/dist/generator/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll +0 -0
  261. package/dist/generator/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll +0 -0
  262. package/dist/generator/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  263. package/dist/generator/tr/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  264. package/dist/generator/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  265. package/dist/generator/tr/Microsoft.CodeAnalysis.resources.dll +0 -0
  266. package/dist/generator/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  267. package/dist/generator/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  268. package/dist/generator/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  269. package/dist/generator/zh-Hans/Microsoft.CodeAnalysis.resources.dll +0 -0
  270. package/dist/generator/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  271. package/dist/generator/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  272. package/dist/generator/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  273. package/dist/generator/zh-Hant/Microsoft.CodeAnalysis.resources.dll +0 -0
  274. package/dist/typespec-http-client-csharp.d.ts +202 -0
  275. package/package.json +76 -0
@@ -0,0 +1,818 @@
1
+ {
2
+ "runtimeTarget": {
3
+ "name": ".NETCoreApp,Version=v8.0",
4
+ "signature": ""
5
+ },
6
+ "compilationOptions": {},
7
+ "targets": {
8
+ ".NETCoreApp,Version=v8.0": {
9
+ "Microsoft.Generator.CSharp.ClientModel/1.0.0-beta.1": {
10
+ "dependencies": {
11
+ "Microsoft.Generator.CSharp": "1.0.0-beta.1",
12
+ "StyleCop.Analyzers": "1.2.0-beta.556",
13
+ "System.ClientModel": "1.1.0-beta.4"
14
+ },
15
+ "runtime": {
16
+ "Microsoft.Generator.CSharp.ClientModel.dll": {}
17
+ }
18
+ },
19
+ "CommandLineParser/2.9.1": {
20
+ "runtime": {
21
+ "lib/netstandard2.0/CommandLine.dll": {
22
+ "assemblyVersion": "2.9.1.0",
23
+ "fileVersion": "2.9.1.0"
24
+ }
25
+ }
26
+ },
27
+ "Humanizer.Core/2.14.1": {
28
+ "runtime": {
29
+ "lib/net6.0/Humanizer.dll": {
30
+ "assemblyVersion": "2.14.0.0",
31
+ "fileVersion": "2.14.1.48190"
32
+ }
33
+ }
34
+ },
35
+ "Microsoft.Bcl.AsyncInterfaces/7.0.0": {
36
+ "runtime": {
37
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
38
+ "assemblyVersion": "7.0.0.0",
39
+ "fileVersion": "7.0.22.51805"
40
+ }
41
+ }
42
+ },
43
+ "Microsoft.Build/17.9.5": {
44
+ "dependencies": {
45
+ "Microsoft.Build.Framework": "17.9.5",
46
+ "Microsoft.NET.StringTools": "17.9.5",
47
+ "System.Collections.Immutable": "8.0.0",
48
+ "System.Configuration.ConfigurationManager": "8.0.0",
49
+ "System.Reflection.Metadata": "8.0.0",
50
+ "System.Reflection.MetadataLoadContext": "8.0.0",
51
+ "System.Security.Principal.Windows": "5.0.0",
52
+ "System.Threading.Tasks.Dataflow": "8.0.0"
53
+ },
54
+ "runtime": {
55
+ "lib/net8.0/Microsoft.Build.dll": {
56
+ "assemblyVersion": "15.1.0.0",
57
+ "fileVersion": "17.9.5.7608"
58
+ }
59
+ }
60
+ },
61
+ "Microsoft.Build.Framework/17.9.5": {
62
+ "runtime": {
63
+ "lib/net8.0/Microsoft.Build.Framework.dll": {
64
+ "assemblyVersion": "15.1.0.0",
65
+ "fileVersion": "17.9.5.7608"
66
+ }
67
+ }
68
+ },
69
+ "Microsoft.CodeAnalysis.Analyzers/3.3.4": {},
70
+ "Microsoft.CodeAnalysis.Common/4.8.0": {
71
+ "dependencies": {
72
+ "Microsoft.CodeAnalysis.Analyzers": "3.3.4",
73
+ "System.Collections.Immutable": "8.0.0",
74
+ "System.Reflection.Metadata": "8.0.0",
75
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
76
+ },
77
+ "runtime": {
78
+ "lib/net7.0/Microsoft.CodeAnalysis.dll": {
79
+ "assemblyVersion": "4.8.0.0",
80
+ "fileVersion": "4.800.23.55801"
81
+ }
82
+ },
83
+ "resources": {
84
+ "lib/net7.0/cs/Microsoft.CodeAnalysis.resources.dll": {
85
+ "locale": "cs"
86
+ },
87
+ "lib/net7.0/de/Microsoft.CodeAnalysis.resources.dll": {
88
+ "locale": "de"
89
+ },
90
+ "lib/net7.0/es/Microsoft.CodeAnalysis.resources.dll": {
91
+ "locale": "es"
92
+ },
93
+ "lib/net7.0/fr/Microsoft.CodeAnalysis.resources.dll": {
94
+ "locale": "fr"
95
+ },
96
+ "lib/net7.0/it/Microsoft.CodeAnalysis.resources.dll": {
97
+ "locale": "it"
98
+ },
99
+ "lib/net7.0/ja/Microsoft.CodeAnalysis.resources.dll": {
100
+ "locale": "ja"
101
+ },
102
+ "lib/net7.0/ko/Microsoft.CodeAnalysis.resources.dll": {
103
+ "locale": "ko"
104
+ },
105
+ "lib/net7.0/pl/Microsoft.CodeAnalysis.resources.dll": {
106
+ "locale": "pl"
107
+ },
108
+ "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
109
+ "locale": "pt-BR"
110
+ },
111
+ "lib/net7.0/ru/Microsoft.CodeAnalysis.resources.dll": {
112
+ "locale": "ru"
113
+ },
114
+ "lib/net7.0/tr/Microsoft.CodeAnalysis.resources.dll": {
115
+ "locale": "tr"
116
+ },
117
+ "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
118
+ "locale": "zh-Hans"
119
+ },
120
+ "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
121
+ "locale": "zh-Hant"
122
+ }
123
+ }
124
+ },
125
+ "Microsoft.CodeAnalysis.CSharp/4.8.0": {
126
+ "dependencies": {
127
+ "Microsoft.CodeAnalysis.Common": "4.8.0"
128
+ },
129
+ "runtime": {
130
+ "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll": {
131
+ "assemblyVersion": "4.8.0.0",
132
+ "fileVersion": "4.800.23.55801"
133
+ }
134
+ },
135
+ "resources": {
136
+ "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
137
+ "locale": "cs"
138
+ },
139
+ "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
140
+ "locale": "de"
141
+ },
142
+ "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
143
+ "locale": "es"
144
+ },
145
+ "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
146
+ "locale": "fr"
147
+ },
148
+ "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
149
+ "locale": "it"
150
+ },
151
+ "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
152
+ "locale": "ja"
153
+ },
154
+ "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
155
+ "locale": "ko"
156
+ },
157
+ "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
158
+ "locale": "pl"
159
+ },
160
+ "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
161
+ "locale": "pt-BR"
162
+ },
163
+ "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
164
+ "locale": "ru"
165
+ },
166
+ "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
167
+ "locale": "tr"
168
+ },
169
+ "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
170
+ "locale": "zh-Hans"
171
+ },
172
+ "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
173
+ "locale": "zh-Hant"
174
+ }
175
+ }
176
+ },
177
+ "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": {
178
+ "dependencies": {
179
+ "Humanizer.Core": "2.14.1",
180
+ "Microsoft.CodeAnalysis.CSharp": "4.8.0",
181
+ "Microsoft.CodeAnalysis.Common": "4.8.0",
182
+ "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0"
183
+ },
184
+ "runtime": {
185
+ "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
186
+ "assemblyVersion": "4.8.0.0",
187
+ "fileVersion": "4.800.23.55801"
188
+ }
189
+ },
190
+ "resources": {
191
+ "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
192
+ "locale": "cs"
193
+ },
194
+ "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
195
+ "locale": "de"
196
+ },
197
+ "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
198
+ "locale": "es"
199
+ },
200
+ "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
201
+ "locale": "fr"
202
+ },
203
+ "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
204
+ "locale": "it"
205
+ },
206
+ "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
207
+ "locale": "ja"
208
+ },
209
+ "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
210
+ "locale": "ko"
211
+ },
212
+ "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
213
+ "locale": "pl"
214
+ },
215
+ "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
216
+ "locale": "pt-BR"
217
+ },
218
+ "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
219
+ "locale": "ru"
220
+ },
221
+ "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
222
+ "locale": "tr"
223
+ },
224
+ "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
225
+ "locale": "zh-Hans"
226
+ },
227
+ "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
228
+ "locale": "zh-Hant"
229
+ }
230
+ }
231
+ },
232
+ "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": {
233
+ "dependencies": {
234
+ "Humanizer.Core": "2.14.1",
235
+ "Microsoft.Bcl.AsyncInterfaces": "7.0.0",
236
+ "Microsoft.CodeAnalysis.Common": "4.8.0",
237
+ "System.Composition": "7.0.0",
238
+ "System.IO.Pipelines": "7.0.0",
239
+ "System.Threading.Channels": "7.0.0"
240
+ },
241
+ "runtime": {
242
+ "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll": {
243
+ "assemblyVersion": "4.8.0.0",
244
+ "fileVersion": "4.800.23.55801"
245
+ }
246
+ },
247
+ "resources": {
248
+ "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
249
+ "locale": "cs"
250
+ },
251
+ "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
252
+ "locale": "de"
253
+ },
254
+ "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
255
+ "locale": "es"
256
+ },
257
+ "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
258
+ "locale": "fr"
259
+ },
260
+ "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
261
+ "locale": "it"
262
+ },
263
+ "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
264
+ "locale": "ja"
265
+ },
266
+ "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
267
+ "locale": "ko"
268
+ },
269
+ "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
270
+ "locale": "pl"
271
+ },
272
+ "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
273
+ "locale": "pt-BR"
274
+ },
275
+ "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
276
+ "locale": "ru"
277
+ },
278
+ "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
279
+ "locale": "tr"
280
+ },
281
+ "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
282
+ "locale": "zh-Hans"
283
+ },
284
+ "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
285
+ "locale": "zh-Hant"
286
+ }
287
+ }
288
+ },
289
+ "Microsoft.NET.StringTools/17.9.5": {
290
+ "runtime": {
291
+ "lib/net8.0/Microsoft.NET.StringTools.dll": {
292
+ "assemblyVersion": "1.0.0.0",
293
+ "fileVersion": "17.9.5.7608"
294
+ }
295
+ }
296
+ },
297
+ "NuGet.Common/6.9.1": {
298
+ "dependencies": {
299
+ "NuGet.Frameworks": "6.9.1"
300
+ },
301
+ "runtime": {
302
+ "lib/netstandard2.0/NuGet.Common.dll": {
303
+ "assemblyVersion": "6.9.1.3",
304
+ "fileVersion": "6.9.1.3"
305
+ }
306
+ }
307
+ },
308
+ "NuGet.Configuration/6.9.1": {
309
+ "dependencies": {
310
+ "NuGet.Common": "6.9.1",
311
+ "System.Security.Cryptography.ProtectedData": "8.0.0"
312
+ },
313
+ "runtime": {
314
+ "lib/netstandard2.0/NuGet.Configuration.dll": {
315
+ "assemblyVersion": "6.9.1.3",
316
+ "fileVersion": "6.9.1.3"
317
+ }
318
+ }
319
+ },
320
+ "NuGet.Frameworks/6.9.1": {
321
+ "runtime": {
322
+ "lib/netstandard2.0/NuGet.Frameworks.dll": {
323
+ "assemblyVersion": "6.9.1.3",
324
+ "fileVersion": "6.9.1.3"
325
+ }
326
+ }
327
+ },
328
+ "StyleCop.Analyzers/1.2.0-beta.556": {
329
+ "dependencies": {
330
+ "StyleCop.Analyzers.Unstable": "1.2.0.556"
331
+ }
332
+ },
333
+ "StyleCop.Analyzers.Unstable/1.2.0.556": {},
334
+ "System.ClientModel/1.1.0-beta.4": {
335
+ "dependencies": {
336
+ "System.Memory.Data": "8.0.0",
337
+ "System.Text.Json": "8.0.0"
338
+ },
339
+ "runtime": {
340
+ "lib/net6.0/System.ClientModel.dll": {
341
+ "assemblyVersion": "1.1.0.0",
342
+ "fileVersion": "1.100.24.26606"
343
+ }
344
+ }
345
+ },
346
+ "System.Collections.Immutable/8.0.0": {},
347
+ "System.ComponentModel.Composition/8.0.0": {
348
+ "runtime": {
349
+ "lib/net8.0/System.ComponentModel.Composition.dll": {
350
+ "assemblyVersion": "8.0.0.0",
351
+ "fileVersion": "8.0.23.53103"
352
+ }
353
+ }
354
+ },
355
+ "System.Composition/7.0.0": {
356
+ "dependencies": {
357
+ "System.Composition.AttributedModel": "7.0.0",
358
+ "System.Composition.Convention": "7.0.0",
359
+ "System.Composition.Hosting": "7.0.0",
360
+ "System.Composition.Runtime": "7.0.0",
361
+ "System.Composition.TypedParts": "7.0.0"
362
+ }
363
+ },
364
+ "System.Composition.AttributedModel/7.0.0": {
365
+ "runtime": {
366
+ "lib/net7.0/System.Composition.AttributedModel.dll": {
367
+ "assemblyVersion": "7.0.0.0",
368
+ "fileVersion": "7.0.22.51805"
369
+ }
370
+ }
371
+ },
372
+ "System.Composition.Convention/7.0.0": {
373
+ "dependencies": {
374
+ "System.Composition.AttributedModel": "7.0.0"
375
+ },
376
+ "runtime": {
377
+ "lib/net7.0/System.Composition.Convention.dll": {
378
+ "assemblyVersion": "7.0.0.0",
379
+ "fileVersion": "7.0.22.51805"
380
+ }
381
+ }
382
+ },
383
+ "System.Composition.Hosting/7.0.0": {
384
+ "dependencies": {
385
+ "System.Composition.Runtime": "7.0.0"
386
+ },
387
+ "runtime": {
388
+ "lib/net7.0/System.Composition.Hosting.dll": {
389
+ "assemblyVersion": "7.0.0.0",
390
+ "fileVersion": "7.0.22.51805"
391
+ }
392
+ }
393
+ },
394
+ "System.Composition.Runtime/7.0.0": {
395
+ "runtime": {
396
+ "lib/net7.0/System.Composition.Runtime.dll": {
397
+ "assemblyVersion": "7.0.0.0",
398
+ "fileVersion": "7.0.22.51805"
399
+ }
400
+ }
401
+ },
402
+ "System.Composition.TypedParts/7.0.0": {
403
+ "dependencies": {
404
+ "System.Composition.AttributedModel": "7.0.0",
405
+ "System.Composition.Hosting": "7.0.0",
406
+ "System.Composition.Runtime": "7.0.0"
407
+ },
408
+ "runtime": {
409
+ "lib/net7.0/System.Composition.TypedParts.dll": {
410
+ "assemblyVersion": "7.0.0.0",
411
+ "fileVersion": "7.0.22.51805"
412
+ }
413
+ }
414
+ },
415
+ "System.Configuration.ConfigurationManager/8.0.0": {
416
+ "dependencies": {
417
+ "System.Diagnostics.EventLog": "8.0.0",
418
+ "System.Security.Cryptography.ProtectedData": "8.0.0"
419
+ },
420
+ "runtime": {
421
+ "lib/net8.0/System.Configuration.ConfigurationManager.dll": {
422
+ "assemblyVersion": "8.0.0.0",
423
+ "fileVersion": "8.0.23.53103"
424
+ }
425
+ }
426
+ },
427
+ "System.Diagnostics.EventLog/8.0.0": {
428
+ "runtime": {
429
+ "lib/net8.0/System.Diagnostics.EventLog.dll": {
430
+ "assemblyVersion": "8.0.0.0",
431
+ "fileVersion": "8.0.23.53103"
432
+ }
433
+ },
434
+ "runtimeTargets": {
435
+ "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": {
436
+ "rid": "win",
437
+ "assetType": "runtime",
438
+ "assemblyVersion": "8.0.0.0",
439
+ "fileVersion": "8.0.23.53103"
440
+ },
441
+ "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll": {
442
+ "rid": "win",
443
+ "assetType": "runtime",
444
+ "assemblyVersion": "8.0.0.0",
445
+ "fileVersion": "8.0.23.53103"
446
+ }
447
+ }
448
+ },
449
+ "System.IO.Pipelines/7.0.0": {
450
+ "runtime": {
451
+ "lib/net7.0/System.IO.Pipelines.dll": {
452
+ "assemblyVersion": "7.0.0.0",
453
+ "fileVersion": "7.0.22.51805"
454
+ }
455
+ }
456
+ },
457
+ "System.Memory.Data/8.0.0": {
458
+ "dependencies": {
459
+ "System.Text.Json": "8.0.0"
460
+ },
461
+ "runtime": {
462
+ "lib/net8.0/System.Memory.Data.dll": {
463
+ "assemblyVersion": "8.0.0.0",
464
+ "fileVersion": "8.0.23.53103"
465
+ }
466
+ }
467
+ },
468
+ "System.Reflection.Metadata/8.0.0": {
469
+ "dependencies": {
470
+ "System.Collections.Immutable": "8.0.0"
471
+ }
472
+ },
473
+ "System.Reflection.MetadataLoadContext/8.0.0": {
474
+ "dependencies": {
475
+ "System.Collections.Immutable": "8.0.0",
476
+ "System.Reflection.Metadata": "8.0.0"
477
+ },
478
+ "runtime": {
479
+ "lib/net8.0/System.Reflection.MetadataLoadContext.dll": {
480
+ "assemblyVersion": "8.0.0.0",
481
+ "fileVersion": "8.0.23.53103"
482
+ }
483
+ }
484
+ },
485
+ "System.Runtime.CompilerServices.Unsafe/6.0.0": {},
486
+ "System.Security.Cryptography.ProtectedData/8.0.0": {
487
+ "runtime": {
488
+ "lib/net8.0/System.Security.Cryptography.ProtectedData.dll": {
489
+ "assemblyVersion": "8.0.0.0",
490
+ "fileVersion": "8.0.23.53103"
491
+ }
492
+ }
493
+ },
494
+ "System.Security.Principal.Windows/5.0.0": {},
495
+ "System.Text.Encodings.Web/8.0.0": {},
496
+ "System.Text.Json/8.0.0": {
497
+ "dependencies": {
498
+ "System.Text.Encodings.Web": "8.0.0"
499
+ }
500
+ },
501
+ "System.Threading.Channels/7.0.0": {},
502
+ "System.Threading.Tasks.Dataflow/8.0.0": {},
503
+ "Microsoft.Generator.CSharp/1.0.0-beta.1": {
504
+ "dependencies": {
505
+ "CommandLineParser": "2.9.1",
506
+ "Microsoft.Build": "17.9.5",
507
+ "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
508
+ "Microsoft.Generator.CSharp.Customization": "1.0.0-beta.1",
509
+ "Microsoft.Generator.CSharp.Input": "1.0.0-beta.1",
510
+ "NuGet.Configuration": "6.9.1",
511
+ "System.ComponentModel.Composition": "8.0.0",
512
+ "System.Memory.Data": "8.0.0"
513
+ },
514
+ "runtime": {
515
+ "Microsoft.Generator.CSharp.dll": {}
516
+ }
517
+ },
518
+ "Microsoft.Generator.CSharp.Customization/1.0.0-beta.1": {
519
+ "runtime": {
520
+ "Microsoft.Generator.CSharp.Customization.dll": {}
521
+ }
522
+ },
523
+ "Microsoft.Generator.CSharp.Input/1.0.0-beta.1": {
524
+ "runtime": {
525
+ "Microsoft.Generator.CSharp.Input.dll": {}
526
+ }
527
+ }
528
+ }
529
+ },
530
+ "libraries": {
531
+ "Microsoft.Generator.CSharp.ClientModel/1.0.0-beta.1": {
532
+ "type": "project",
533
+ "serviceable": false,
534
+ "sha512": ""
535
+ },
536
+ "CommandLineParser/2.9.1": {
537
+ "type": "package",
538
+ "serviceable": true,
539
+ "sha512": "sha512-OE0sl1/sQ37bjVsPKKtwQlWDgqaxWgtme3xZz7JssWUzg5JpMIyHgCTY9MVMxOg48fJ1AgGT3tgdH5m/kQ5xhA==",
540
+ "path": "commandlineparser/2.9.1",
541
+ "hashPath": "commandlineparser.2.9.1.nupkg.sha512"
542
+ },
543
+ "Humanizer.Core/2.14.1": {
544
+ "type": "package",
545
+ "serviceable": true,
546
+ "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==",
547
+ "path": "humanizer.core/2.14.1",
548
+ "hashPath": "humanizer.core.2.14.1.nupkg.sha512"
549
+ },
550
+ "Microsoft.Bcl.AsyncInterfaces/7.0.0": {
551
+ "type": "package",
552
+ "serviceable": true,
553
+ "sha512": "sha512-3aeMZ1N0lJoSyzqiP03hqemtb1BijhsJADdobn/4nsMJ8V1H+CrpuduUe4hlRdx+ikBQju1VGjMD1GJ3Sk05Eg==",
554
+ "path": "microsoft.bcl.asyncinterfaces/7.0.0",
555
+ "hashPath": "microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512"
556
+ },
557
+ "Microsoft.Build/17.9.5": {
558
+ "type": "package",
559
+ "serviceable": true,
560
+ "sha512": "sha512-DxMxhO2DrGytHQLRlKB1CiyJVghemYY4vynMKwh5Y/7Ion07VdqVWLZZmyS+KYkMKD7oC4+rijiVldakN7ZNMA==",
561
+ "path": "microsoft.build/17.9.5",
562
+ "hashPath": "microsoft.build.17.9.5.nupkg.sha512"
563
+ },
564
+ "Microsoft.Build.Framework/17.9.5": {
565
+ "type": "package",
566
+ "serviceable": true,
567
+ "sha512": "sha512-CjRmqu9Wv2fyC1d7NKOuBDXcNMI8+GiXGM6izygB+skGGu4Vf0cBcoPq7AFqZCcMpn5DtZ+y7RpaLpB2qrzanQ==",
568
+ "path": "microsoft.build.framework/17.9.5",
569
+ "hashPath": "microsoft.build.framework.17.9.5.nupkg.sha512"
570
+ },
571
+ "Microsoft.CodeAnalysis.Analyzers/3.3.4": {
572
+ "type": "package",
573
+ "serviceable": true,
574
+ "sha512": "sha512-AxkxcPR+rheX0SmvpLVIGLhOUXAKG56a64kV9VQZ4y9gR9ZmPXnqZvHJnmwLSwzrEP6junUF11vuc+aqo5r68g==",
575
+ "path": "microsoft.codeanalysis.analyzers/3.3.4",
576
+ "hashPath": "microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512"
577
+ },
578
+ "Microsoft.CodeAnalysis.Common/4.8.0": {
579
+ "type": "package",
580
+ "serviceable": true,
581
+ "sha512": "sha512-/jR+e/9aT+BApoQJABlVCKnnggGQbvGh7BKq2/wI1LamxC+LbzhcLj4Vj7gXCofl1n4E521YfF9w0WcASGg/KA==",
582
+ "path": "microsoft.codeanalysis.common/4.8.0",
583
+ "hashPath": "microsoft.codeanalysis.common.4.8.0.nupkg.sha512"
584
+ },
585
+ "Microsoft.CodeAnalysis.CSharp/4.8.0": {
586
+ "type": "package",
587
+ "serviceable": true,
588
+ "sha512": "sha512-+3+qfdb/aaGD8PZRCrsdobbzGs1m9u119SkkJt8e/mk3xLJz/udLtS2T6nY27OTXxBBw10HzAbC8Z9w08VyP/g==",
589
+ "path": "microsoft.codeanalysis.csharp/4.8.0",
590
+ "hashPath": "microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512"
591
+ },
592
+ "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": {
593
+ "type": "package",
594
+ "serviceable": true,
595
+ "sha512": "sha512-3amm4tq4Lo8/BGvg9p3BJh3S9nKq2wqCXfS7138i69TUpo/bD+XvD0hNurpEBtcNZhi1FyutiomKJqVF39ugYA==",
596
+ "path": "microsoft.codeanalysis.csharp.workspaces/4.8.0",
597
+ "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512"
598
+ },
599
+ "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": {
600
+ "type": "package",
601
+ "serviceable": true,
602
+ "sha512": "sha512-LXyV+MJKsKRu3FGJA3OmSk40OUIa/dQCFLOnm5X8MNcujx7hzGu8o+zjXlb/cy5xUdZK2UKYb9YaQ2E8m9QehQ==",
603
+ "path": "microsoft.codeanalysis.workspaces.common/4.8.0",
604
+ "hashPath": "microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512"
605
+ },
606
+ "Microsoft.NET.StringTools/17.9.5": {
607
+ "type": "package",
608
+ "serviceable": true,
609
+ "sha512": "sha512-C/oPRnjcIZBRzcpl1V06R1eEMCxOGt6mIm+8ioyblELgJEXLM8XjUPuCwljMO52VetsHw54xMcYwU8UEeHEIEg==",
610
+ "path": "microsoft.net.stringtools/17.9.5",
611
+ "hashPath": "microsoft.net.stringtools.17.9.5.nupkg.sha512"
612
+ },
613
+ "NuGet.Common/6.9.1": {
614
+ "type": "package",
615
+ "serviceable": true,
616
+ "sha512": "sha512-FbuWZBjQ1NJXBDqCwSddN2yvw3Plq3sTCIh0nc66Hu8jrNr+BOaxlKZv78jvJ+pSy8BvurYOdF9sl9KoORjrtg==",
617
+ "path": "nuget.common/6.9.1",
618
+ "hashPath": "nuget.common.6.9.1.nupkg.sha512"
619
+ },
620
+ "NuGet.Configuration/6.9.1": {
621
+ "type": "package",
622
+ "serviceable": true,
623
+ "sha512": "sha512-GM06pcUzWdNsizeGciqCjAhryfI1F/rQPETLDF+8pDRgzVpA+wKAR01/4aFU+IXzugnQ9LqOb5YyCRuR1OVZiQ==",
624
+ "path": "nuget.configuration/6.9.1",
625
+ "hashPath": "nuget.configuration.6.9.1.nupkg.sha512"
626
+ },
627
+ "NuGet.Frameworks/6.9.1": {
628
+ "type": "package",
629
+ "serviceable": true,
630
+ "sha512": "sha512-DaKh3lenPUvzGccPkbI97BIvA27z+/UsL3ankfoZlX/4vBVDK5N1sheFTQ+GuJf+IgSzsJz/A21SPUpQLHwUtA==",
631
+ "path": "nuget.frameworks/6.9.1",
632
+ "hashPath": "nuget.frameworks.6.9.1.nupkg.sha512"
633
+ },
634
+ "StyleCop.Analyzers/1.2.0-beta.556": {
635
+ "type": "package",
636
+ "serviceable": true,
637
+ "sha512": "sha512-llRPgmA1fhC0I0QyFLEcjvtM2239QzKr/tcnbsjArLMJxJlu0AA5G7Fft0OI30pHF3MW63Gf4aSSsjc5m82J1Q==",
638
+ "path": "stylecop.analyzers/1.2.0-beta.556",
639
+ "hashPath": "stylecop.analyzers.1.2.0-beta.556.nupkg.sha512"
640
+ },
641
+ "StyleCop.Analyzers.Unstable/1.2.0.556": {
642
+ "type": "package",
643
+ "serviceable": true,
644
+ "sha512": "sha512-zvn9Mqs/ox/83cpYPignI8hJEM2A93s2HkHs8HYMOAQW0PkampyoErAiIyKxgTLqbbad29HX/shv/6LGSjPJNQ==",
645
+ "path": "stylecop.analyzers.unstable/1.2.0.556",
646
+ "hashPath": "stylecop.analyzers.unstable.1.2.0.556.nupkg.sha512"
647
+ },
648
+ "System.ClientModel/1.1.0-beta.4": {
649
+ "type": "package",
650
+ "serviceable": true,
651
+ "sha512": "sha512-TSzxsr0lU6ohBsSWXoJtLaI+Jl739f6I2eEAmAxTERxRmXs49kp/FwsUuXhjZ95Y7TcdbUi6Peb79TZhC/cBvg==",
652
+ "path": "system.clientmodel/1.1.0-beta.4",
653
+ "hashPath": "system.clientmodel.1.1.0-beta.4.nupkg.sha512"
654
+ },
655
+ "System.Collections.Immutable/8.0.0": {
656
+ "type": "package",
657
+ "serviceable": true,
658
+ "sha512": "sha512-AurL6Y5BA1WotzlEvVaIDpqzpIPvYnnldxru8oXJU2yFxFUy3+pNXjXd1ymO+RA0rq0+590Q8gaz2l3Sr7fmqg==",
659
+ "path": "system.collections.immutable/8.0.0",
660
+ "hashPath": "system.collections.immutable.8.0.0.nupkg.sha512"
661
+ },
662
+ "System.ComponentModel.Composition/8.0.0": {
663
+ "type": "package",
664
+ "serviceable": true,
665
+ "sha512": "sha512-bGhUX5BTivJ9Wax0qnJy7uGq7dn/TQkEpJ2Fpu1etg8dbPwyDkUzNPc1d3I2/jUr9y4wDI3a1dkSmi8X21Pzbw==",
666
+ "path": "system.componentmodel.composition/8.0.0",
667
+ "hashPath": "system.componentmodel.composition.8.0.0.nupkg.sha512"
668
+ },
669
+ "System.Composition/7.0.0": {
670
+ "type": "package",
671
+ "serviceable": true,
672
+ "sha512": "sha512-tRwgcAkDd85O8Aq6zHDANzQaq380cek9lbMg5Qma46u5BZXq/G+XvIYmu+UI+BIIZ9zssXLYrkTykEqxxvhcmg==",
673
+ "path": "system.composition/7.0.0",
674
+ "hashPath": "system.composition.7.0.0.nupkg.sha512"
675
+ },
676
+ "System.Composition.AttributedModel/7.0.0": {
677
+ "type": "package",
678
+ "serviceable": true,
679
+ "sha512": "sha512-2QzClqjElKxgI1jK1Jztnq44/8DmSuTSGGahXqQ4TdEV0h9s2KikQZIgcEqVzR7OuWDFPGLHIprBJGQEPr8fAQ==",
680
+ "path": "system.composition.attributedmodel/7.0.0",
681
+ "hashPath": "system.composition.attributedmodel.7.0.0.nupkg.sha512"
682
+ },
683
+ "System.Composition.Convention/7.0.0": {
684
+ "type": "package",
685
+ "serviceable": true,
686
+ "sha512": "sha512-IMhTlpCs4HmlD8B+J8/kWfwX7vrBBOs6xyjSTzBlYSs7W4OET4tlkR/Sg9NG8jkdJH9Mymq0qGdYS1VPqRTBnQ==",
687
+ "path": "system.composition.convention/7.0.0",
688
+ "hashPath": "system.composition.convention.7.0.0.nupkg.sha512"
689
+ },
690
+ "System.Composition.Hosting/7.0.0": {
691
+ "type": "package",
692
+ "serviceable": true,
693
+ "sha512": "sha512-eB6gwN9S+54jCTBJ5bpwMOVerKeUfGGTYCzz3QgDr1P55Gg/Wb27ShfPIhLMjmZ3MoAKu8uUSv6fcCdYJTN7Bg==",
694
+ "path": "system.composition.hosting/7.0.0",
695
+ "hashPath": "system.composition.hosting.7.0.0.nupkg.sha512"
696
+ },
697
+ "System.Composition.Runtime/7.0.0": {
698
+ "type": "package",
699
+ "serviceable": true,
700
+ "sha512": "sha512-aZJ1Zr5Txe925rbo4742XifEyW0MIni1eiUebmcrP3HwLXZ3IbXUj4MFMUH/RmnJOAQiS401leg/2Sz1MkApDw==",
701
+ "path": "system.composition.runtime/7.0.0",
702
+ "hashPath": "system.composition.runtime.7.0.0.nupkg.sha512"
703
+ },
704
+ "System.Composition.TypedParts/7.0.0": {
705
+ "type": "package",
706
+ "serviceable": true,
707
+ "sha512": "sha512-ZK0KNPfbtxVceTwh+oHNGUOYV2WNOHReX2AXipuvkURC7s/jPwoWfsu3SnDBDgofqbiWr96geofdQ2erm/KTHg==",
708
+ "path": "system.composition.typedparts/7.0.0",
709
+ "hashPath": "system.composition.typedparts.7.0.0.nupkg.sha512"
710
+ },
711
+ "System.Configuration.ConfigurationManager/8.0.0": {
712
+ "type": "package",
713
+ "serviceable": true,
714
+ "sha512": "sha512-JlYi9XVvIREURRUlGMr1F6vOFLk7YSY4p1vHo4kX3tQ0AGrjqlRWHDi66ImHhy6qwXBG3BJ6Y1QlYQ+Qz6Xgww==",
715
+ "path": "system.configuration.configurationmanager/8.0.0",
716
+ "hashPath": "system.configuration.configurationmanager.8.0.0.nupkg.sha512"
717
+ },
718
+ "System.Diagnostics.EventLog/8.0.0": {
719
+ "type": "package",
720
+ "serviceable": true,
721
+ "sha512": "sha512-fdYxcRjQqTTacKId/2IECojlDSFvp7LP5N78+0z/xH7v/Tuw5ZAxu23Y6PTCRinqyu2ePx+Gn1098NC6jM6d+A==",
722
+ "path": "system.diagnostics.eventlog/8.0.0",
723
+ "hashPath": "system.diagnostics.eventlog.8.0.0.nupkg.sha512"
724
+ },
725
+ "System.IO.Pipelines/7.0.0": {
726
+ "type": "package",
727
+ "serviceable": true,
728
+ "sha512": "sha512-jRn6JYnNPW6xgQazROBLSfpdoczRw694vO5kKvMcNnpXuolEixUyw6IBuBs2Y2mlSX/LdLvyyWmfXhaI3ND1Yg==",
729
+ "path": "system.io.pipelines/7.0.0",
730
+ "hashPath": "system.io.pipelines.7.0.0.nupkg.sha512"
731
+ },
732
+ "System.Memory.Data/8.0.0": {
733
+ "type": "package",
734
+ "serviceable": true,
735
+ "sha512": "sha512-iNz0OOSj4bcOdVvyBzaDwJe0aA2nbGVQzUGAaN4bngJu2g8tMncWb7SsR/EdSMCyf0J3KHMCYu3QR/bnckxvdg==",
736
+ "path": "system.memory.data/8.0.0",
737
+ "hashPath": "system.memory.data.8.0.0.nupkg.sha512"
738
+ },
739
+ "System.Reflection.Metadata/8.0.0": {
740
+ "type": "package",
741
+ "serviceable": true,
742
+ "sha512": "sha512-ptvgrFh7PvWI8bcVqG5rsA/weWM09EnthFHR5SCnS6IN+P4mj6rE1lBDC4U8HL9/57htKAqy4KQ3bBj84cfYyQ==",
743
+ "path": "system.reflection.metadata/8.0.0",
744
+ "hashPath": "system.reflection.metadata.8.0.0.nupkg.sha512"
745
+ },
746
+ "System.Reflection.MetadataLoadContext/8.0.0": {
747
+ "type": "package",
748
+ "serviceable": true,
749
+ "sha512": "sha512-SZxrQ4sQYnIcdwiO3G/lHZopbPYQ2lW0ioT4JezgccWUrKaKbHLJbAGZaDfkYjWcta1pWssAo3MOXLsR0ie4tQ==",
750
+ "path": "system.reflection.metadataloadcontext/8.0.0",
751
+ "hashPath": "system.reflection.metadataloadcontext.8.0.0.nupkg.sha512"
752
+ },
753
+ "System.Runtime.CompilerServices.Unsafe/6.0.0": {
754
+ "type": "package",
755
+ "serviceable": true,
756
+ "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
757
+ "path": "system.runtime.compilerservices.unsafe/6.0.0",
758
+ "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
759
+ },
760
+ "System.Security.Cryptography.ProtectedData/8.0.0": {
761
+ "type": "package",
762
+ "serviceable": true,
763
+ "sha512": "sha512-+TUFINV2q2ifyXauQXRwy4CiBhqvDEDZeVJU7qfxya4aRYOKzVBpN+4acx25VcPB9ywUN6C0n8drWl110PhZEg==",
764
+ "path": "system.security.cryptography.protecteddata/8.0.0",
765
+ "hashPath": "system.security.cryptography.protecteddata.8.0.0.nupkg.sha512"
766
+ },
767
+ "System.Security.Principal.Windows/5.0.0": {
768
+ "type": "package",
769
+ "serviceable": true,
770
+ "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
771
+ "path": "system.security.principal.windows/5.0.0",
772
+ "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512"
773
+ },
774
+ "System.Text.Encodings.Web/8.0.0": {
775
+ "type": "package",
776
+ "serviceable": true,
777
+ "sha512": "sha512-yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==",
778
+ "path": "system.text.encodings.web/8.0.0",
779
+ "hashPath": "system.text.encodings.web.8.0.0.nupkg.sha512"
780
+ },
781
+ "System.Text.Json/8.0.0": {
782
+ "type": "package",
783
+ "serviceable": true,
784
+ "sha512": "sha512-OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==",
785
+ "path": "system.text.json/8.0.0",
786
+ "hashPath": "system.text.json.8.0.0.nupkg.sha512"
787
+ },
788
+ "System.Threading.Channels/7.0.0": {
789
+ "type": "package",
790
+ "serviceable": true,
791
+ "sha512": "sha512-qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==",
792
+ "path": "system.threading.channels/7.0.0",
793
+ "hashPath": "system.threading.channels.7.0.0.nupkg.sha512"
794
+ },
795
+ "System.Threading.Tasks.Dataflow/8.0.0": {
796
+ "type": "package",
797
+ "serviceable": true,
798
+ "sha512": "sha512-7V0I8tPa9V7UxMx/+7DIwkhls5ouaEMQx6l/GwGm1Y8kJQ61On9B/PxCXFLbgu5/C47g0BP2CUYs+nMv1+Oaqw==",
799
+ "path": "system.threading.tasks.dataflow/8.0.0",
800
+ "hashPath": "system.threading.tasks.dataflow.8.0.0.nupkg.sha512"
801
+ },
802
+ "Microsoft.Generator.CSharp/1.0.0-beta.1": {
803
+ "type": "project",
804
+ "serviceable": false,
805
+ "sha512": ""
806
+ },
807
+ "Microsoft.Generator.CSharp.Customization/1.0.0-beta.1": {
808
+ "type": "project",
809
+ "serviceable": false,
810
+ "sha512": ""
811
+ },
812
+ "Microsoft.Generator.CSharp.Input/1.0.0-beta.1": {
813
+ "type": "project",
814
+ "serviceable": false,
815
+ "sha512": ""
816
+ }
817
+ }
818
+ }