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