@azure-typespec/http-client-csharp-provisioning 1.0.0-alpha.20260313.4

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 (277) hide show
  1. package/README.md +40 -0
  2. package/dist/emitter/emitter.d.ts +4 -0
  3. package/dist/emitter/emitter.d.ts.map +1 -0
  4. package/dist/emitter/emitter.js +11 -0
  5. package/dist/emitter/emitter.js.map +1 -0
  6. package/dist/emitter/index.d.ts +3 -0
  7. package/dist/emitter/index.d.ts.map +1 -0
  8. package/dist/emitter/index.js +5 -0
  9. package/dist/emitter/index.js.map +1 -0
  10. package/dist/emitter/lib/lib.d.ts +4 -0
  11. package/dist/emitter/lib/lib.d.ts.map +1 -0
  12. package/dist/emitter/lib/lib.js +15 -0
  13. package/dist/emitter/lib/lib.js.map +1 -0
  14. package/dist/emitter/options.d.ts +6 -0
  15. package/dist/emitter/options.d.ts.map +1 -0
  16. package/dist/emitter/options.js +11 -0
  17. package/dist/emitter/options.js.map +1 -0
  18. package/dist/generator/Azure.Core.Expressions.DataFactory.dll +0 -0
  19. package/dist/generator/Azure.Core.dll +0 -0
  20. package/dist/generator/Azure.Generator.Management.dll +0 -0
  21. package/dist/generator/Azure.Generator.Provisioning.deps.json +1062 -0
  22. package/dist/generator/Azure.Generator.Provisioning.dll +0 -0
  23. package/dist/generator/Azure.Generator.Provisioning.pdb +0 -0
  24. package/dist/generator/Azure.Generator.Provisioning.xml +1051 -0
  25. package/dist/generator/Azure.Generator.dll +0 -0
  26. package/dist/generator/Azure.Provisioning.dll +0 -0
  27. package/dist/generator/Azure.ResourceManager.dll +0 -0
  28. package/dist/generator/CommandLine.dll +0 -0
  29. package/dist/generator/Humanizer.dll +0 -0
  30. package/dist/generator/Microsoft.Bcl.AsyncInterfaces.dll +0 -0
  31. package/dist/generator/Microsoft.Build.Framework.dll +0 -0
  32. package/dist/generator/Microsoft.Build.dll +0 -0
  33. package/dist/generator/Microsoft.CodeAnalysis.CSharp.Workspaces.dll +0 -0
  34. package/dist/generator/Microsoft.CodeAnalysis.CSharp.dll +0 -0
  35. package/dist/generator/Microsoft.CodeAnalysis.Workspaces.dll +0 -0
  36. package/dist/generator/Microsoft.CodeAnalysis.dll +0 -0
  37. package/dist/generator/Microsoft.Extensions.Configuration.Abstractions.dll +0 -0
  38. package/dist/generator/Microsoft.Extensions.DependencyInjection.Abstractions.dll +0 -0
  39. package/dist/generator/Microsoft.Extensions.Diagnostics.Abstractions.dll +0 -0
  40. package/dist/generator/Microsoft.Extensions.FileProviders.Abstractions.dll +0 -0
  41. package/dist/generator/Microsoft.Extensions.Hosting.Abstractions.dll +0 -0
  42. package/dist/generator/Microsoft.Extensions.Logging.Abstractions.dll +0 -0
  43. package/dist/generator/Microsoft.Extensions.Options.dll +0 -0
  44. package/dist/generator/Microsoft.Extensions.Primitives.dll +0 -0
  45. package/dist/generator/Microsoft.NET.StringTools.dll +0 -0
  46. package/dist/generator/Microsoft.TypeSpec.Generator.ClientModel.dll +0 -0
  47. package/dist/generator/Microsoft.TypeSpec.Generator.Input.dll +0 -0
  48. package/dist/generator/Microsoft.TypeSpec.Generator.dll +0 -0
  49. package/dist/generator/Microsoft.TypeSpec.Generator.runtimeconfig.json +12 -0
  50. package/dist/generator/Newtonsoft.Json.dll +0 -0
  51. package/dist/generator/NuGet.Common.dll +0 -0
  52. package/dist/generator/NuGet.Configuration.dll +0 -0
  53. package/dist/generator/NuGet.Frameworks.dll +0 -0
  54. package/dist/generator/NuGet.Packaging.dll +0 -0
  55. package/dist/generator/NuGet.Protocol.dll +0 -0
  56. package/dist/generator/NuGet.Versioning.dll +0 -0
  57. package/dist/generator/Shared/Core/AppContextSwitchHelper.cs +42 -0
  58. package/dist/generator/Shared/Core/AsyncLockWithValue.cs +260 -0
  59. package/dist/generator/Shared/Core/AzureKeyCredentialPolicy.cs +50 -0
  60. package/dist/generator/Shared/Core/ClientDiagnostics.cs +73 -0
  61. package/dist/generator/Shared/Core/DiagnosticScope.cs +473 -0
  62. package/dist/generator/Shared/Core/DiagnosticScopeFactory.cs +104 -0
  63. package/dist/generator/Shared/Core/FixedDelayWithNoJitterStrategy.cs +26 -0
  64. package/dist/generator/Shared/Core/ForwardsClientCallsAttribute.cs +39 -0
  65. package/dist/generator/Shared/Core/HttpMessageSanitizer.cs +198 -0
  66. package/dist/generator/Shared/Core/IOperationSource.cs +14 -0
  67. package/dist/generator/Shared/Core/NextLinkOperationImplementation.cs +701 -0
  68. package/dist/generator/Shared/Core/NoValueResponseOfT.cs +39 -0
  69. package/dist/generator/Shared/Core/OperationFinalStateVia.cs +16 -0
  70. package/dist/generator/Shared/Core/OperationInternal.cs +263 -0
  71. package/dist/generator/Shared/Core/OperationInternalBase.cs +234 -0
  72. package/dist/generator/Shared/Core/OperationInternalOfT.cs +431 -0
  73. package/dist/generator/Shared/Core/OperationPoller.cs +114 -0
  74. package/dist/generator/Shared/Core/RawRequestUriBuilder.cs +229 -0
  75. package/dist/generator/Shared/Core/RequestHeaderExtensions.cs +132 -0
  76. package/dist/generator/Shared/Core/SequentialDelayStrategy.cs +38 -0
  77. package/dist/generator/Shared/Core/TaskExtensions.cs +313 -0
  78. package/dist/generator/Shared/Core/TypeFormatters.cs +159 -0
  79. package/dist/generator/Shared/Core/VoidValue.cs +10 -0
  80. package/dist/generator/System.ClientModel.dll +0 -0
  81. package/dist/generator/System.ComponentModel.Composition.dll +0 -0
  82. package/dist/generator/System.Composition.AttributedModel.dll +0 -0
  83. package/dist/generator/System.Composition.Convention.dll +0 -0
  84. package/dist/generator/System.Composition.Hosting.dll +0 -0
  85. package/dist/generator/System.Composition.Runtime.dll +0 -0
  86. package/dist/generator/System.Composition.TypedParts.dll +0 -0
  87. package/dist/generator/System.Configuration.ConfigurationManager.dll +0 -0
  88. package/dist/generator/System.Diagnostics.EventLog.dll +0 -0
  89. package/dist/generator/System.Memory.Data.dll +0 -0
  90. package/dist/generator/System.Reflection.MetadataLoadContext.dll +0 -0
  91. package/dist/generator/System.Security.Cryptography.Pkcs.dll +0 -0
  92. package/dist/generator/System.Security.Cryptography.ProtectedData.dll +0 -0
  93. package/dist/generator/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  94. package/dist/generator/cs/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  95. package/dist/generator/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  96. package/dist/generator/cs/Microsoft.CodeAnalysis.resources.dll +0 -0
  97. package/dist/generator/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  98. package/dist/generator/de/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  99. package/dist/generator/de/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  100. package/dist/generator/de/Microsoft.CodeAnalysis.resources.dll +0 -0
  101. package/dist/generator/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  102. package/dist/generator/es/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  103. package/dist/generator/es/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  104. package/dist/generator/es/Microsoft.CodeAnalysis.resources.dll +0 -0
  105. package/dist/generator/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  106. package/dist/generator/fr/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  107. package/dist/generator/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  108. package/dist/generator/fr/Microsoft.CodeAnalysis.resources.dll +0 -0
  109. package/dist/generator/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  110. package/dist/generator/it/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  111. package/dist/generator/it/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  112. package/dist/generator/it/Microsoft.CodeAnalysis.resources.dll +0 -0
  113. package/dist/generator/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  114. package/dist/generator/ja/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  115. package/dist/generator/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  116. package/dist/generator/ja/Microsoft.CodeAnalysis.resources.dll +0 -0
  117. package/dist/generator/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  118. package/dist/generator/ko/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  119. package/dist/generator/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  120. package/dist/generator/ko/Microsoft.CodeAnalysis.resources.dll +0 -0
  121. package/dist/generator/net10.0/Azure.Core.Expressions.DataFactory.dll +0 -0
  122. package/dist/generator/net10.0/Azure.Core.dll +0 -0
  123. package/dist/generator/net10.0/Azure.Generator.Management.dll +0 -0
  124. package/dist/generator/net10.0/Azure.Generator.Provisioning.deps.json +1062 -0
  125. package/dist/generator/net10.0/Azure.Generator.Provisioning.dll +0 -0
  126. package/dist/generator/net10.0/Azure.Generator.Provisioning.pdb +0 -0
  127. package/dist/generator/net10.0/Azure.Generator.Provisioning.xml +1051 -0
  128. package/dist/generator/net10.0/Azure.Generator.dll +0 -0
  129. package/dist/generator/net10.0/Azure.Provisioning.dll +0 -0
  130. package/dist/generator/net10.0/Azure.ResourceManager.dll +0 -0
  131. package/dist/generator/net10.0/CommandLine.dll +0 -0
  132. package/dist/generator/net10.0/Humanizer.dll +0 -0
  133. package/dist/generator/net10.0/Microsoft.Bcl.AsyncInterfaces.dll +0 -0
  134. package/dist/generator/net10.0/Microsoft.Build.Framework.dll +0 -0
  135. package/dist/generator/net10.0/Microsoft.Build.dll +0 -0
  136. package/dist/generator/net10.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll +0 -0
  137. package/dist/generator/net10.0/Microsoft.CodeAnalysis.CSharp.dll +0 -0
  138. package/dist/generator/net10.0/Microsoft.CodeAnalysis.Workspaces.dll +0 -0
  139. package/dist/generator/net10.0/Microsoft.CodeAnalysis.dll +0 -0
  140. package/dist/generator/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll +0 -0
  141. package/dist/generator/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll +0 -0
  142. package/dist/generator/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll +0 -0
  143. package/dist/generator/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll +0 -0
  144. package/dist/generator/net10.0/Microsoft.Extensions.Hosting.Abstractions.dll +0 -0
  145. package/dist/generator/net10.0/Microsoft.Extensions.Logging.Abstractions.dll +0 -0
  146. package/dist/generator/net10.0/Microsoft.Extensions.Options.dll +0 -0
  147. package/dist/generator/net10.0/Microsoft.Extensions.Primitives.dll +0 -0
  148. package/dist/generator/net10.0/Microsoft.NET.StringTools.dll +0 -0
  149. package/dist/generator/net10.0/Microsoft.TypeSpec.Generator.ClientModel.dll +0 -0
  150. package/dist/generator/net10.0/Microsoft.TypeSpec.Generator.Input.dll +0 -0
  151. package/dist/generator/net10.0/Microsoft.TypeSpec.Generator.dll +0 -0
  152. package/dist/generator/net10.0/Newtonsoft.Json.dll +0 -0
  153. package/dist/generator/net10.0/NuGet.Common.dll +0 -0
  154. package/dist/generator/net10.0/NuGet.Configuration.dll +0 -0
  155. package/dist/generator/net10.0/NuGet.Frameworks.dll +0 -0
  156. package/dist/generator/net10.0/NuGet.Packaging.dll +0 -0
  157. package/dist/generator/net10.0/NuGet.Protocol.dll +0 -0
  158. package/dist/generator/net10.0/NuGet.Versioning.dll +0 -0
  159. package/dist/generator/net10.0/Shared/Core/AppContextSwitchHelper.cs +42 -0
  160. package/dist/generator/net10.0/Shared/Core/AsyncLockWithValue.cs +260 -0
  161. package/dist/generator/net10.0/Shared/Core/AzureKeyCredentialPolicy.cs +50 -0
  162. package/dist/generator/net10.0/Shared/Core/ClientDiagnostics.cs +73 -0
  163. package/dist/generator/net10.0/Shared/Core/DiagnosticScope.cs +473 -0
  164. package/dist/generator/net10.0/Shared/Core/DiagnosticScopeFactory.cs +104 -0
  165. package/dist/generator/net10.0/Shared/Core/FixedDelayWithNoJitterStrategy.cs +26 -0
  166. package/dist/generator/net10.0/Shared/Core/ForwardsClientCallsAttribute.cs +39 -0
  167. package/dist/generator/net10.0/Shared/Core/HttpMessageSanitizer.cs +198 -0
  168. package/dist/generator/net10.0/Shared/Core/IOperationSource.cs +14 -0
  169. package/dist/generator/net10.0/Shared/Core/NextLinkOperationImplementation.cs +701 -0
  170. package/dist/generator/net10.0/Shared/Core/NoValueResponseOfT.cs +39 -0
  171. package/dist/generator/net10.0/Shared/Core/OperationFinalStateVia.cs +16 -0
  172. package/dist/generator/net10.0/Shared/Core/OperationInternal.cs +263 -0
  173. package/dist/generator/net10.0/Shared/Core/OperationInternalBase.cs +234 -0
  174. package/dist/generator/net10.0/Shared/Core/OperationInternalOfT.cs +431 -0
  175. package/dist/generator/net10.0/Shared/Core/OperationPoller.cs +114 -0
  176. package/dist/generator/net10.0/Shared/Core/RawRequestUriBuilder.cs +229 -0
  177. package/dist/generator/net10.0/Shared/Core/RequestHeaderExtensions.cs +132 -0
  178. package/dist/generator/net10.0/Shared/Core/SequentialDelayStrategy.cs +38 -0
  179. package/dist/generator/net10.0/Shared/Core/TaskExtensions.cs +313 -0
  180. package/dist/generator/net10.0/Shared/Core/TypeFormatters.cs +159 -0
  181. package/dist/generator/net10.0/Shared/Core/VoidValue.cs +10 -0
  182. package/dist/generator/net10.0/System.ClientModel.dll +0 -0
  183. package/dist/generator/net10.0/System.ComponentModel.Composition.dll +0 -0
  184. package/dist/generator/net10.0/System.Composition.AttributedModel.dll +0 -0
  185. package/dist/generator/net10.0/System.Composition.Convention.dll +0 -0
  186. package/dist/generator/net10.0/System.Composition.Hosting.dll +0 -0
  187. package/dist/generator/net10.0/System.Composition.Runtime.dll +0 -0
  188. package/dist/generator/net10.0/System.Composition.TypedParts.dll +0 -0
  189. package/dist/generator/net10.0/System.Configuration.ConfigurationManager.dll +0 -0
  190. package/dist/generator/net10.0/System.Diagnostics.EventLog.dll +0 -0
  191. package/dist/generator/net10.0/System.Memory.Data.dll +0 -0
  192. package/dist/generator/net10.0/System.Reflection.MetadataLoadContext.dll +0 -0
  193. package/dist/generator/net10.0/System.Security.Cryptography.Pkcs.dll +0 -0
  194. package/dist/generator/net10.0/System.Security.Cryptography.ProtectedData.dll +0 -0
  195. package/dist/generator/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  196. package/dist/generator/net10.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  197. package/dist/generator/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  198. package/dist/generator/net10.0/cs/Microsoft.CodeAnalysis.resources.dll +0 -0
  199. package/dist/generator/net10.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  200. package/dist/generator/net10.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  201. package/dist/generator/net10.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  202. package/dist/generator/net10.0/de/Microsoft.CodeAnalysis.resources.dll +0 -0
  203. package/dist/generator/net10.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  204. package/dist/generator/net10.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  205. package/dist/generator/net10.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  206. package/dist/generator/net10.0/es/Microsoft.CodeAnalysis.resources.dll +0 -0
  207. package/dist/generator/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  208. package/dist/generator/net10.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  209. package/dist/generator/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  210. package/dist/generator/net10.0/fr/Microsoft.CodeAnalysis.resources.dll +0 -0
  211. package/dist/generator/net10.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  212. package/dist/generator/net10.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  213. package/dist/generator/net10.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  214. package/dist/generator/net10.0/it/Microsoft.CodeAnalysis.resources.dll +0 -0
  215. package/dist/generator/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  216. package/dist/generator/net10.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  217. package/dist/generator/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  218. package/dist/generator/net10.0/ja/Microsoft.CodeAnalysis.resources.dll +0 -0
  219. package/dist/generator/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  220. package/dist/generator/net10.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  221. package/dist/generator/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  222. package/dist/generator/net10.0/ko/Microsoft.CodeAnalysis.resources.dll +0 -0
  223. package/dist/generator/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  224. package/dist/generator/net10.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  225. package/dist/generator/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  226. package/dist/generator/net10.0/pl/Microsoft.CodeAnalysis.resources.dll +0 -0
  227. package/dist/generator/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  228. package/dist/generator/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  229. package/dist/generator/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  230. package/dist/generator/net10.0/pt-BR/Microsoft.CodeAnalysis.resources.dll +0 -0
  231. package/dist/generator/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  232. package/dist/generator/net10.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  233. package/dist/generator/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  234. package/dist/generator/net10.0/ru/Microsoft.CodeAnalysis.resources.dll +0 -0
  235. package/dist/generator/net10.0/runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll +0 -0
  236. package/dist/generator/net10.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll +0 -0
  237. package/dist/generator/net10.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll +0 -0
  238. package/dist/generator/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  239. package/dist/generator/net10.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  240. package/dist/generator/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  241. package/dist/generator/net10.0/tr/Microsoft.CodeAnalysis.resources.dll +0 -0
  242. package/dist/generator/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  243. package/dist/generator/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  244. package/dist/generator/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  245. package/dist/generator/net10.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll +0 -0
  246. package/dist/generator/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  247. package/dist/generator/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  248. package/dist/generator/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  249. package/dist/generator/net10.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll +0 -0
  250. package/dist/generator/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  251. package/dist/generator/pl/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  252. package/dist/generator/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  253. package/dist/generator/pl/Microsoft.CodeAnalysis.resources.dll +0 -0
  254. package/dist/generator/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  255. package/dist/generator/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  256. package/dist/generator/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  257. package/dist/generator/pt-BR/Microsoft.CodeAnalysis.resources.dll +0 -0
  258. package/dist/generator/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  259. package/dist/generator/ru/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  260. package/dist/generator/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  261. package/dist/generator/ru/Microsoft.CodeAnalysis.resources.dll +0 -0
  262. package/dist/generator/runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll +0 -0
  263. package/dist/generator/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll +0 -0
  264. package/dist/generator/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll +0 -0
  265. package/dist/generator/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  266. package/dist/generator/tr/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  267. package/dist/generator/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  268. package/dist/generator/tr/Microsoft.CodeAnalysis.resources.dll +0 -0
  269. package/dist/generator/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  270. package/dist/generator/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  271. package/dist/generator/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  272. package/dist/generator/zh-Hans/Microsoft.CodeAnalysis.resources.dll +0 -0
  273. package/dist/generator/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +0 -0
  274. package/dist/generator/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll +0 -0
  275. package/dist/generator/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll +0 -0
  276. package/dist/generator/zh-Hant/Microsoft.CodeAnalysis.resources.dll +0 -0
  277. package/package.json +64 -0
@@ -0,0 +1,1062 @@
1
+ {
2
+ "runtimeTarget": {
3
+ "name": ".NETCoreApp,Version=v10.0",
4
+ "signature": ""
5
+ },
6
+ "compilationOptions": {},
7
+ "targets": {
8
+ ".NETCoreApp,Version=v10.0": {
9
+ "Azure.Generator.Provisioning/1.0.0-alpha.20260313.4": {
10
+ "dependencies": {
11
+ "Azure.Generator": "1.0.0-alpha.20260310.3",
12
+ "Azure.Generator.Management": "1.0.0-alpha.20260313.1",
13
+ "Azure.Provisioning": "1.5.0"
14
+ },
15
+ "runtime": {
16
+ "Azure.Generator.Provisioning.dll": {}
17
+ }
18
+ },
19
+ "Azure.Core/1.51.1": {
20
+ "dependencies": {
21
+ "Microsoft.Bcl.AsyncInterfaces": "10.0.2",
22
+ "System.ClientModel": "1.9.0",
23
+ "System.Memory.Data": "10.0.1"
24
+ },
25
+ "runtime": {
26
+ "lib/net10.0/Azure.Core.dll": {
27
+ "assemblyVersion": "1.51.1.0",
28
+ "fileVersion": "1.5100.126.10405"
29
+ }
30
+ }
31
+ },
32
+ "Azure.Core.Expressions.DataFactory/1.0.0": {
33
+ "dependencies": {
34
+ "Azure.Core": "1.51.1"
35
+ },
36
+ "runtime": {
37
+ "lib/netstandard2.0/Azure.Core.Expressions.DataFactory.dll": {
38
+ "assemblyVersion": "1.0.0.0",
39
+ "fileVersion": "1.0.24.15803"
40
+ }
41
+ }
42
+ },
43
+ "Azure.Generator/1.0.0-alpha.20260310.3": {
44
+ "dependencies": {
45
+ "Azure.Core": "1.51.1",
46
+ "Azure.Core.Expressions.DataFactory": "1.0.0",
47
+ "Azure.ResourceManager": "1.14.0",
48
+ "Microsoft.TypeSpec.Generator.ClientModel": "1.0.0-alpha.20260310.1"
49
+ },
50
+ "runtime": {
51
+ "lib/net10.0/Azure.Generator.dll": {
52
+ "assemblyVersion": "1.0.0.0",
53
+ "fileVersion": "1.0.26.16003"
54
+ }
55
+ }
56
+ },
57
+ "Azure.Generator.Management/1.0.0-alpha.20260313.1": {
58
+ "dependencies": {
59
+ "Azure.Core": "1.51.1",
60
+ "Azure.Generator": "1.0.0-alpha.20260310.3",
61
+ "Azure.ResourceManager": "1.14.0",
62
+ "Humanizer.Core": "3.0.1"
63
+ },
64
+ "runtime": {
65
+ "lib/net10.0/Azure.Generator.Management.dll": {
66
+ "assemblyVersion": "1.0.0.0",
67
+ "fileVersion": "1.0.26.16301"
68
+ }
69
+ }
70
+ },
71
+ "Azure.Provisioning/1.5.0": {
72
+ "dependencies": {
73
+ "Azure.Core": "1.51.1"
74
+ },
75
+ "runtime": {
76
+ "lib/net10.0/Azure.Provisioning.dll": {
77
+ "assemblyVersion": "1.5.0.0",
78
+ "fileVersion": "1.500.26.15403"
79
+ }
80
+ }
81
+ },
82
+ "Azure.ResourceManager/1.14.0": {
83
+ "dependencies": {
84
+ "Azure.Core": "1.51.1"
85
+ },
86
+ "runtime": {
87
+ "lib/net10.0/Azure.ResourceManager.dll": {
88
+ "assemblyVersion": "1.14.0.0",
89
+ "fileVersion": "1.1400.26.12605"
90
+ }
91
+ }
92
+ },
93
+ "CommandLineParser/2.9.1": {
94
+ "runtime": {
95
+ "lib/netstandard2.0/CommandLine.dll": {
96
+ "assemblyVersion": "2.9.1.0",
97
+ "fileVersion": "2.9.1.0"
98
+ }
99
+ }
100
+ },
101
+ "Humanizer.Core/3.0.1": {
102
+ "runtime": {
103
+ "lib/net10.0/Humanizer.dll": {
104
+ "assemblyVersion": "3.0.0.0",
105
+ "fileVersion": "3.0.1.28244"
106
+ }
107
+ }
108
+ },
109
+ "Microsoft.Bcl.AsyncInterfaces/10.0.2": {
110
+ "runtime": {
111
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
112
+ "assemblyVersion": "10.0.0.2",
113
+ "fileVersion": "10.0.225.61305"
114
+ }
115
+ }
116
+ },
117
+ "Microsoft.Build/17.9.5": {
118
+ "dependencies": {
119
+ "Microsoft.Build.Framework": "17.9.5",
120
+ "Microsoft.NET.StringTools": "17.9.5",
121
+ "System.Configuration.ConfigurationManager": "8.0.0",
122
+ "System.Reflection.MetadataLoadContext": "8.0.0"
123
+ },
124
+ "runtime": {
125
+ "lib/net8.0/Microsoft.Build.dll": {
126
+ "assemblyVersion": "15.1.0.0",
127
+ "fileVersion": "17.9.5.7608"
128
+ }
129
+ }
130
+ },
131
+ "Microsoft.Build.Framework/17.9.5": {
132
+ "runtime": {
133
+ "lib/net8.0/Microsoft.Build.Framework.dll": {
134
+ "assemblyVersion": "15.1.0.0",
135
+ "fileVersion": "17.9.5.7608"
136
+ }
137
+ }
138
+ },
139
+ "Microsoft.CodeAnalysis.Common/4.8.0": {
140
+ "runtime": {
141
+ "lib/net7.0/Microsoft.CodeAnalysis.dll": {
142
+ "assemblyVersion": "4.8.0.0",
143
+ "fileVersion": "4.800.23.55801"
144
+ }
145
+ },
146
+ "resources": {
147
+ "lib/net7.0/cs/Microsoft.CodeAnalysis.resources.dll": {
148
+ "locale": "cs"
149
+ },
150
+ "lib/net7.0/de/Microsoft.CodeAnalysis.resources.dll": {
151
+ "locale": "de"
152
+ },
153
+ "lib/net7.0/es/Microsoft.CodeAnalysis.resources.dll": {
154
+ "locale": "es"
155
+ },
156
+ "lib/net7.0/fr/Microsoft.CodeAnalysis.resources.dll": {
157
+ "locale": "fr"
158
+ },
159
+ "lib/net7.0/it/Microsoft.CodeAnalysis.resources.dll": {
160
+ "locale": "it"
161
+ },
162
+ "lib/net7.0/ja/Microsoft.CodeAnalysis.resources.dll": {
163
+ "locale": "ja"
164
+ },
165
+ "lib/net7.0/ko/Microsoft.CodeAnalysis.resources.dll": {
166
+ "locale": "ko"
167
+ },
168
+ "lib/net7.0/pl/Microsoft.CodeAnalysis.resources.dll": {
169
+ "locale": "pl"
170
+ },
171
+ "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
172
+ "locale": "pt-BR"
173
+ },
174
+ "lib/net7.0/ru/Microsoft.CodeAnalysis.resources.dll": {
175
+ "locale": "ru"
176
+ },
177
+ "lib/net7.0/tr/Microsoft.CodeAnalysis.resources.dll": {
178
+ "locale": "tr"
179
+ },
180
+ "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
181
+ "locale": "zh-Hans"
182
+ },
183
+ "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
184
+ "locale": "zh-Hant"
185
+ }
186
+ }
187
+ },
188
+ "Microsoft.CodeAnalysis.CSharp/4.8.0": {
189
+ "dependencies": {
190
+ "Microsoft.CodeAnalysis.Common": "4.8.0"
191
+ },
192
+ "runtime": {
193
+ "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll": {
194
+ "assemblyVersion": "4.8.0.0",
195
+ "fileVersion": "4.800.23.55801"
196
+ }
197
+ },
198
+ "resources": {
199
+ "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
200
+ "locale": "cs"
201
+ },
202
+ "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
203
+ "locale": "de"
204
+ },
205
+ "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
206
+ "locale": "es"
207
+ },
208
+ "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
209
+ "locale": "fr"
210
+ },
211
+ "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
212
+ "locale": "it"
213
+ },
214
+ "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
215
+ "locale": "ja"
216
+ },
217
+ "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
218
+ "locale": "ko"
219
+ },
220
+ "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
221
+ "locale": "pl"
222
+ },
223
+ "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
224
+ "locale": "pt-BR"
225
+ },
226
+ "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
227
+ "locale": "ru"
228
+ },
229
+ "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
230
+ "locale": "tr"
231
+ },
232
+ "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
233
+ "locale": "zh-Hans"
234
+ },
235
+ "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
236
+ "locale": "zh-Hant"
237
+ }
238
+ }
239
+ },
240
+ "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": {
241
+ "dependencies": {
242
+ "Humanizer.Core": "3.0.1",
243
+ "Microsoft.CodeAnalysis.CSharp": "4.8.0",
244
+ "Microsoft.CodeAnalysis.Common": "4.8.0",
245
+ "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0"
246
+ },
247
+ "runtime": {
248
+ "lib/net7.0/Microsoft.CodeAnalysis.CSharp.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.CSharp.Workspaces.resources.dll": {
255
+ "locale": "cs"
256
+ },
257
+ "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
258
+ "locale": "de"
259
+ },
260
+ "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
261
+ "locale": "es"
262
+ },
263
+ "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
264
+ "locale": "fr"
265
+ },
266
+ "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
267
+ "locale": "it"
268
+ },
269
+ "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
270
+ "locale": "ja"
271
+ },
272
+ "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
273
+ "locale": "ko"
274
+ },
275
+ "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
276
+ "locale": "pl"
277
+ },
278
+ "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
279
+ "locale": "pt-BR"
280
+ },
281
+ "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
282
+ "locale": "ru"
283
+ },
284
+ "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
285
+ "locale": "tr"
286
+ },
287
+ "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
288
+ "locale": "zh-Hans"
289
+ },
290
+ "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
291
+ "locale": "zh-Hant"
292
+ }
293
+ }
294
+ },
295
+ "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": {
296
+ "dependencies": {
297
+ "Humanizer.Core": "3.0.1",
298
+ "Microsoft.Bcl.AsyncInterfaces": "10.0.2",
299
+ "Microsoft.CodeAnalysis.Common": "4.8.0",
300
+ "System.Composition": "7.0.0"
301
+ },
302
+ "runtime": {
303
+ "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll": {
304
+ "assemblyVersion": "4.8.0.0",
305
+ "fileVersion": "4.800.23.55801"
306
+ }
307
+ },
308
+ "resources": {
309
+ "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
310
+ "locale": "cs"
311
+ },
312
+ "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
313
+ "locale": "de"
314
+ },
315
+ "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
316
+ "locale": "es"
317
+ },
318
+ "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
319
+ "locale": "fr"
320
+ },
321
+ "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
322
+ "locale": "it"
323
+ },
324
+ "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
325
+ "locale": "ja"
326
+ },
327
+ "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
328
+ "locale": "ko"
329
+ },
330
+ "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
331
+ "locale": "pl"
332
+ },
333
+ "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
334
+ "locale": "pt-BR"
335
+ },
336
+ "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
337
+ "locale": "ru"
338
+ },
339
+ "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
340
+ "locale": "tr"
341
+ },
342
+ "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
343
+ "locale": "zh-Hans"
344
+ },
345
+ "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
346
+ "locale": "zh-Hant"
347
+ }
348
+ }
349
+ },
350
+ "Microsoft.Extensions.Configuration.Abstractions/10.0.2": {
351
+ "dependencies": {
352
+ "Microsoft.Extensions.Primitives": "10.0.2"
353
+ },
354
+ "runtime": {
355
+ "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
356
+ "assemblyVersion": "10.0.0.0",
357
+ "fileVersion": "10.0.225.61305"
358
+ }
359
+ }
360
+ },
361
+ "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.2": {
362
+ "runtime": {
363
+ "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
364
+ "assemblyVersion": "10.0.0.0",
365
+ "fileVersion": "10.0.225.61305"
366
+ }
367
+ }
368
+ },
369
+ "Microsoft.Extensions.Diagnostics.Abstractions/10.0.2": {
370
+ "dependencies": {
371
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.2",
372
+ "Microsoft.Extensions.Options": "10.0.2"
373
+ },
374
+ "runtime": {
375
+ "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
376
+ "assemblyVersion": "10.0.0.0",
377
+ "fileVersion": "10.0.225.61305"
378
+ }
379
+ }
380
+ },
381
+ "Microsoft.Extensions.FileProviders.Abstractions/10.0.2": {
382
+ "dependencies": {
383
+ "Microsoft.Extensions.Primitives": "10.0.2"
384
+ },
385
+ "runtime": {
386
+ "lib/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
387
+ "assemblyVersion": "10.0.0.0",
388
+ "fileVersion": "10.0.225.61305"
389
+ }
390
+ }
391
+ },
392
+ "Microsoft.Extensions.Hosting.Abstractions/10.0.2": {
393
+ "dependencies": {
394
+ "Microsoft.Extensions.Configuration.Abstractions": "10.0.2",
395
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.2",
396
+ "Microsoft.Extensions.Diagnostics.Abstractions": "10.0.2",
397
+ "Microsoft.Extensions.FileProviders.Abstractions": "10.0.2",
398
+ "Microsoft.Extensions.Logging.Abstractions": "10.0.2"
399
+ },
400
+ "runtime": {
401
+ "lib/net10.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
402
+ "assemblyVersion": "10.0.0.0",
403
+ "fileVersion": "10.0.225.61305"
404
+ }
405
+ }
406
+ },
407
+ "Microsoft.Extensions.Logging.Abstractions/10.0.2": {
408
+ "dependencies": {
409
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.2"
410
+ },
411
+ "runtime": {
412
+ "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": {
413
+ "assemblyVersion": "10.0.0.0",
414
+ "fileVersion": "10.0.225.61305"
415
+ }
416
+ }
417
+ },
418
+ "Microsoft.Extensions.Options/10.0.2": {
419
+ "dependencies": {
420
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.2",
421
+ "Microsoft.Extensions.Primitives": "10.0.2"
422
+ },
423
+ "runtime": {
424
+ "lib/net10.0/Microsoft.Extensions.Options.dll": {
425
+ "assemblyVersion": "10.0.0.0",
426
+ "fileVersion": "10.0.225.61305"
427
+ }
428
+ }
429
+ },
430
+ "Microsoft.Extensions.Primitives/10.0.2": {
431
+ "runtime": {
432
+ "lib/net10.0/Microsoft.Extensions.Primitives.dll": {
433
+ "assemblyVersion": "10.0.0.0",
434
+ "fileVersion": "10.0.225.61305"
435
+ }
436
+ }
437
+ },
438
+ "Microsoft.NET.StringTools/17.9.5": {
439
+ "runtime": {
440
+ "lib/net8.0/Microsoft.NET.StringTools.dll": {
441
+ "assemblyVersion": "1.0.0.0",
442
+ "fileVersion": "17.9.5.7608"
443
+ }
444
+ }
445
+ },
446
+ "Microsoft.TypeSpec.Generator/1.0.0-alpha.20260310.1": {
447
+ "dependencies": {
448
+ "CommandLineParser": "2.9.1",
449
+ "Microsoft.Build": "17.9.5",
450
+ "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
451
+ "Microsoft.TypeSpec.Generator.Input": "1.0.0-alpha.20260310.1",
452
+ "NuGet.Configuration": "6.14.0",
453
+ "NuGet.Protocol": "6.14.0",
454
+ "NuGet.Versioning": "6.14.0",
455
+ "System.ComponentModel.Composition": "8.0.0",
456
+ "System.Memory.Data": "10.0.1"
457
+ },
458
+ "runtime": {
459
+ "lib/net10.0/Microsoft.TypeSpec.Generator.dll": {
460
+ "assemblyVersion": "1.0.0.0",
461
+ "fileVersion": "1.0.0.0"
462
+ }
463
+ }
464
+ },
465
+ "Microsoft.TypeSpec.Generator.ClientModel/1.0.0-alpha.20260310.1": {
466
+ "dependencies": {
467
+ "Microsoft.TypeSpec.Generator": "1.0.0-alpha.20260310.1",
468
+ "System.ClientModel": "1.9.0"
469
+ },
470
+ "runtime": {
471
+ "lib/net10.0/Microsoft.TypeSpec.Generator.ClientModel.dll": {
472
+ "assemblyVersion": "1.0.0.0",
473
+ "fileVersion": "1.0.0.0"
474
+ }
475
+ }
476
+ },
477
+ "Microsoft.TypeSpec.Generator.Input/1.0.0-alpha.20260310.1": {
478
+ "dependencies": {
479
+ "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
480
+ "System.Memory.Data": "10.0.1"
481
+ },
482
+ "runtime": {
483
+ "lib/net10.0/Microsoft.TypeSpec.Generator.Input.dll": {
484
+ "assemblyVersion": "1.0.0.0",
485
+ "fileVersion": "1.0.0.0"
486
+ }
487
+ }
488
+ },
489
+ "Newtonsoft.Json/13.0.3": {
490
+ "runtime": {
491
+ "lib/net6.0/Newtonsoft.Json.dll": {
492
+ "assemblyVersion": "13.0.0.0",
493
+ "fileVersion": "13.0.3.27908"
494
+ }
495
+ }
496
+ },
497
+ "NuGet.Common/6.14.0": {
498
+ "dependencies": {
499
+ "NuGet.Frameworks": "6.14.0"
500
+ },
501
+ "runtime": {
502
+ "lib/netstandard2.0/NuGet.Common.dll": {
503
+ "assemblyVersion": "6.14.0.116",
504
+ "fileVersion": "6.14.0.116"
505
+ }
506
+ }
507
+ },
508
+ "NuGet.Configuration/6.14.0": {
509
+ "dependencies": {
510
+ "NuGet.Common": "6.14.0",
511
+ "System.Security.Cryptography.ProtectedData": "8.0.0"
512
+ },
513
+ "runtime": {
514
+ "lib/netstandard2.0/NuGet.Configuration.dll": {
515
+ "assemblyVersion": "6.14.0.116",
516
+ "fileVersion": "6.14.0.116"
517
+ }
518
+ }
519
+ },
520
+ "NuGet.Frameworks/6.14.0": {
521
+ "runtime": {
522
+ "lib/netstandard2.0/NuGet.Frameworks.dll": {
523
+ "assemblyVersion": "6.14.0.116",
524
+ "fileVersion": "6.14.0.116"
525
+ }
526
+ }
527
+ },
528
+ "NuGet.Packaging/6.14.0": {
529
+ "dependencies": {
530
+ "Newtonsoft.Json": "13.0.3",
531
+ "NuGet.Configuration": "6.14.0",
532
+ "NuGet.Versioning": "6.14.0",
533
+ "System.Security.Cryptography.Pkcs": "6.0.4"
534
+ },
535
+ "runtime": {
536
+ "lib/net8.0/NuGet.Packaging.dll": {
537
+ "assemblyVersion": "6.14.0.116",
538
+ "fileVersion": "6.14.0.116"
539
+ }
540
+ }
541
+ },
542
+ "NuGet.Protocol/6.14.0": {
543
+ "dependencies": {
544
+ "NuGet.Packaging": "6.14.0"
545
+ },
546
+ "runtime": {
547
+ "lib/net8.0/NuGet.Protocol.dll": {
548
+ "assemblyVersion": "6.14.0.116",
549
+ "fileVersion": "6.14.0.116"
550
+ }
551
+ }
552
+ },
553
+ "NuGet.Versioning/6.14.0": {
554
+ "runtime": {
555
+ "lib/netstandard2.0/NuGet.Versioning.dll": {
556
+ "assemblyVersion": "6.14.0.116",
557
+ "fileVersion": "6.14.0.116"
558
+ }
559
+ }
560
+ },
561
+ "System.ClientModel/1.9.0": {
562
+ "dependencies": {
563
+ "Microsoft.Extensions.Configuration.Abstractions": "10.0.2",
564
+ "Microsoft.Extensions.Hosting.Abstractions": "10.0.2",
565
+ "Microsoft.Extensions.Logging.Abstractions": "10.0.2",
566
+ "System.Memory.Data": "10.0.1"
567
+ },
568
+ "runtime": {
569
+ "lib/net10.0/System.ClientModel.dll": {
570
+ "assemblyVersion": "1.9.0.0",
571
+ "fileVersion": "1.900.26.7706"
572
+ }
573
+ }
574
+ },
575
+ "System.ComponentModel.Composition/8.0.0": {
576
+ "runtime": {
577
+ "lib/net8.0/System.ComponentModel.Composition.dll": {
578
+ "assemblyVersion": "8.0.0.0",
579
+ "fileVersion": "8.0.23.53103"
580
+ }
581
+ }
582
+ },
583
+ "System.Composition/7.0.0": {
584
+ "dependencies": {
585
+ "System.Composition.AttributedModel": "7.0.0",
586
+ "System.Composition.Convention": "7.0.0",
587
+ "System.Composition.Hosting": "7.0.0",
588
+ "System.Composition.Runtime": "7.0.0",
589
+ "System.Composition.TypedParts": "7.0.0"
590
+ }
591
+ },
592
+ "System.Composition.AttributedModel/7.0.0": {
593
+ "runtime": {
594
+ "lib/net7.0/System.Composition.AttributedModel.dll": {
595
+ "assemblyVersion": "7.0.0.0",
596
+ "fileVersion": "7.0.22.51805"
597
+ }
598
+ }
599
+ },
600
+ "System.Composition.Convention/7.0.0": {
601
+ "dependencies": {
602
+ "System.Composition.AttributedModel": "7.0.0"
603
+ },
604
+ "runtime": {
605
+ "lib/net7.0/System.Composition.Convention.dll": {
606
+ "assemblyVersion": "7.0.0.0",
607
+ "fileVersion": "7.0.22.51805"
608
+ }
609
+ }
610
+ },
611
+ "System.Composition.Hosting/7.0.0": {
612
+ "dependencies": {
613
+ "System.Composition.Runtime": "7.0.0"
614
+ },
615
+ "runtime": {
616
+ "lib/net7.0/System.Composition.Hosting.dll": {
617
+ "assemblyVersion": "7.0.0.0",
618
+ "fileVersion": "7.0.22.51805"
619
+ }
620
+ }
621
+ },
622
+ "System.Composition.Runtime/7.0.0": {
623
+ "runtime": {
624
+ "lib/net7.0/System.Composition.Runtime.dll": {
625
+ "assemblyVersion": "7.0.0.0",
626
+ "fileVersion": "7.0.22.51805"
627
+ }
628
+ }
629
+ },
630
+ "System.Composition.TypedParts/7.0.0": {
631
+ "dependencies": {
632
+ "System.Composition.AttributedModel": "7.0.0",
633
+ "System.Composition.Hosting": "7.0.0",
634
+ "System.Composition.Runtime": "7.0.0"
635
+ },
636
+ "runtime": {
637
+ "lib/net7.0/System.Composition.TypedParts.dll": {
638
+ "assemblyVersion": "7.0.0.0",
639
+ "fileVersion": "7.0.22.51805"
640
+ }
641
+ }
642
+ },
643
+ "System.Configuration.ConfigurationManager/8.0.0": {
644
+ "dependencies": {
645
+ "System.Diagnostics.EventLog": "8.0.0",
646
+ "System.Security.Cryptography.ProtectedData": "8.0.0"
647
+ },
648
+ "runtime": {
649
+ "lib/net8.0/System.Configuration.ConfigurationManager.dll": {
650
+ "assemblyVersion": "8.0.0.0",
651
+ "fileVersion": "8.0.23.53103"
652
+ }
653
+ }
654
+ },
655
+ "System.Diagnostics.EventLog/8.0.0": {
656
+ "runtime": {
657
+ "lib/net8.0/System.Diagnostics.EventLog.dll": {
658
+ "assemblyVersion": "8.0.0.0",
659
+ "fileVersion": "8.0.23.53103"
660
+ }
661
+ },
662
+ "runtimeTargets": {
663
+ "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": {
664
+ "rid": "win",
665
+ "assetType": "runtime",
666
+ "assemblyVersion": "8.0.0.0",
667
+ "fileVersion": "8.0.23.53103"
668
+ },
669
+ "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll": {
670
+ "rid": "win",
671
+ "assetType": "runtime",
672
+ "assemblyVersion": "8.0.0.0",
673
+ "fileVersion": "8.0.23.53103"
674
+ }
675
+ }
676
+ },
677
+ "System.Memory.Data/10.0.1": {
678
+ "runtime": {
679
+ "lib/net10.0/System.Memory.Data.dll": {
680
+ "assemblyVersion": "10.0.0.1",
681
+ "fileVersion": "10.0.125.57005"
682
+ }
683
+ }
684
+ },
685
+ "System.Reflection.MetadataLoadContext/8.0.0": {
686
+ "runtime": {
687
+ "lib/net8.0/System.Reflection.MetadataLoadContext.dll": {
688
+ "assemblyVersion": "8.0.0.0",
689
+ "fileVersion": "8.0.23.53103"
690
+ }
691
+ }
692
+ },
693
+ "System.Security.Cryptography.Pkcs/6.0.4": {
694
+ "runtime": {
695
+ "lib/net6.0/System.Security.Cryptography.Pkcs.dll": {
696
+ "assemblyVersion": "6.0.0.0",
697
+ "fileVersion": "6.0.1923.31806"
698
+ }
699
+ },
700
+ "runtimeTargets": {
701
+ "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": {
702
+ "rid": "win",
703
+ "assetType": "runtime",
704
+ "assemblyVersion": "6.0.0.0",
705
+ "fileVersion": "6.0.1923.31806"
706
+ }
707
+ }
708
+ },
709
+ "System.Security.Cryptography.ProtectedData/8.0.0": {
710
+ "runtime": {
711
+ "lib/net8.0/System.Security.Cryptography.ProtectedData.dll": {
712
+ "assemblyVersion": "8.0.0.0",
713
+ "fileVersion": "8.0.23.53103"
714
+ }
715
+ }
716
+ }
717
+ }
718
+ },
719
+ "libraries": {
720
+ "Azure.Generator.Provisioning/1.0.0-alpha.20260313.4": {
721
+ "type": "project",
722
+ "serviceable": false,
723
+ "sha512": ""
724
+ },
725
+ "Azure.Core/1.51.1": {
726
+ "type": "package",
727
+ "serviceable": true,
728
+ "sha512": "sha512-JRANrRvN5O5FFRh+pMUb8qqWU7jBQ39qXEbVr7Rkb1/s7rqc6RSzVHKGBz5Ro1gDy2WSGjG5YEOJKpPIBiCMcA==",
729
+ "path": "azure.core/1.51.1",
730
+ "hashPath": "azure.core.1.51.1.nupkg.sha512"
731
+ },
732
+ "Azure.Core.Expressions.DataFactory/1.0.0": {
733
+ "type": "package",
734
+ "serviceable": true,
735
+ "sha512": "sha512-LN2glk3oRMqWHr4NJqkdXXiLv1eFT0hmGmjZn4dyecT5sgBj9vbcP6GTkrVe6KrbhxZXb+TinKzuBsQKinsqcg==",
736
+ "path": "azure.core.expressions.datafactory/1.0.0",
737
+ "hashPath": "azure.core.expressions.datafactory.1.0.0.nupkg.sha512"
738
+ },
739
+ "Azure.Generator/1.0.0-alpha.20260310.3": {
740
+ "type": "package",
741
+ "serviceable": true,
742
+ "sha512": "sha512-En8VhDOQ8K3JFmSjoxxpz6N+1tpK8pC/h4N14StFPHUplyT+Ndc7L6vOHn/qH6pDclzu1bgC95ZHQQFEtDRsVQ==",
743
+ "path": "azure.generator/1.0.0-alpha.20260310.3",
744
+ "hashPath": "azure.generator.1.0.0-alpha.20260310.3.nupkg.sha512"
745
+ },
746
+ "Azure.Generator.Management/1.0.0-alpha.20260313.1": {
747
+ "type": "package",
748
+ "serviceable": true,
749
+ "sha512": "sha512-t2YjwV/OkHaoZ+ePIXV5yE0KiGL3mSp0DBKVcnmXckPQpvj2NNw6eSLQPQupATgd8zqHhdGeBgBMlzYCuwA6TQ==",
750
+ "path": "azure.generator.management/1.0.0-alpha.20260313.1",
751
+ "hashPath": "azure.generator.management.1.0.0-alpha.20260313.1.nupkg.sha512"
752
+ },
753
+ "Azure.Provisioning/1.5.0": {
754
+ "type": "package",
755
+ "serviceable": true,
756
+ "sha512": "sha512-tgjG2wh20PQpenN3R1uah5lPyDMMPo/tgBVpNR6RkOZm1dE8at4ejyit1UQ18FqyKEu053eXtAmpREzYxizH8g==",
757
+ "path": "azure.provisioning/1.5.0",
758
+ "hashPath": "azure.provisioning.1.5.0.nupkg.sha512"
759
+ },
760
+ "Azure.ResourceManager/1.14.0": {
761
+ "type": "package",
762
+ "serviceable": true,
763
+ "sha512": "sha512-i925pQG3EPXQ+jgTfO/26aODZ7IqWBo34nYg+kCgCPLGsMulbzjuJDiJH+PHV+xoWEjFKGvm1SBaAAXbG4887A==",
764
+ "path": "azure.resourcemanager/1.14.0",
765
+ "hashPath": "azure.resourcemanager.1.14.0.nupkg.sha512"
766
+ },
767
+ "CommandLineParser/2.9.1": {
768
+ "type": "package",
769
+ "serviceable": true,
770
+ "sha512": "sha512-OE0sl1/sQ37bjVsPKKtwQlWDgqaxWgtme3xZz7JssWUzg5JpMIyHgCTY9MVMxOg48fJ1AgGT3tgdH5m/kQ5xhA==",
771
+ "path": "commandlineparser/2.9.1",
772
+ "hashPath": "commandlineparser.2.9.1.nupkg.sha512"
773
+ },
774
+ "Humanizer.Core/3.0.1": {
775
+ "type": "package",
776
+ "serviceable": true,
777
+ "sha512": "sha512-scB3+KcxNmEjZK5V8rKCW2gIiL8m8KH91w14FuuExyhi9xTyAJ+jr+DDxGdy12mHmioe2uvjxTfMgM7WmSUFlw==",
778
+ "path": "humanizer.core/3.0.1",
779
+ "hashPath": "humanizer.core.3.0.1.nupkg.sha512"
780
+ },
781
+ "Microsoft.Bcl.AsyncInterfaces/10.0.2": {
782
+ "type": "package",
783
+ "serviceable": true,
784
+ "sha512": "sha512-qE5JhRoeJbAipLqpUCZyNfNwnpAvUttXgIQDnTiJ15d8ji+/bPgoPkB3xLzK5cQTobN2D2ditUesUlDHb7p3Pg==",
785
+ "path": "microsoft.bcl.asyncinterfaces/10.0.2",
786
+ "hashPath": "microsoft.bcl.asyncinterfaces.10.0.2.nupkg.sha512"
787
+ },
788
+ "Microsoft.Build/17.9.5": {
789
+ "type": "package",
790
+ "serviceable": true,
791
+ "sha512": "sha512-DxMxhO2DrGytHQLRlKB1CiyJVghemYY4vynMKwh5Y/7Ion07VdqVWLZZmyS+KYkMKD7oC4+rijiVldakN7ZNMA==",
792
+ "path": "microsoft.build/17.9.5",
793
+ "hashPath": "microsoft.build.17.9.5.nupkg.sha512"
794
+ },
795
+ "Microsoft.Build.Framework/17.9.5": {
796
+ "type": "package",
797
+ "serviceable": true,
798
+ "sha512": "sha512-CjRmqu9Wv2fyC1d7NKOuBDXcNMI8+GiXGM6izygB+skGGu4Vf0cBcoPq7AFqZCcMpn5DtZ+y7RpaLpB2qrzanQ==",
799
+ "path": "microsoft.build.framework/17.9.5",
800
+ "hashPath": "microsoft.build.framework.17.9.5.nupkg.sha512"
801
+ },
802
+ "Microsoft.CodeAnalysis.Common/4.8.0": {
803
+ "type": "package",
804
+ "serviceable": true,
805
+ "sha512": "sha512-/jR+e/9aT+BApoQJABlVCKnnggGQbvGh7BKq2/wI1LamxC+LbzhcLj4Vj7gXCofl1n4E521YfF9w0WcASGg/KA==",
806
+ "path": "microsoft.codeanalysis.common/4.8.0",
807
+ "hashPath": "microsoft.codeanalysis.common.4.8.0.nupkg.sha512"
808
+ },
809
+ "Microsoft.CodeAnalysis.CSharp/4.8.0": {
810
+ "type": "package",
811
+ "serviceable": true,
812
+ "sha512": "sha512-+3+qfdb/aaGD8PZRCrsdobbzGs1m9u119SkkJt8e/mk3xLJz/udLtS2T6nY27OTXxBBw10HzAbC8Z9w08VyP/g==",
813
+ "path": "microsoft.codeanalysis.csharp/4.8.0",
814
+ "hashPath": "microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512"
815
+ },
816
+ "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": {
817
+ "type": "package",
818
+ "serviceable": true,
819
+ "sha512": "sha512-3amm4tq4Lo8/BGvg9p3BJh3S9nKq2wqCXfS7138i69TUpo/bD+XvD0hNurpEBtcNZhi1FyutiomKJqVF39ugYA==",
820
+ "path": "microsoft.codeanalysis.csharp.workspaces/4.8.0",
821
+ "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512"
822
+ },
823
+ "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": {
824
+ "type": "package",
825
+ "serviceable": true,
826
+ "sha512": "sha512-LXyV+MJKsKRu3FGJA3OmSk40OUIa/dQCFLOnm5X8MNcujx7hzGu8o+zjXlb/cy5xUdZK2UKYb9YaQ2E8m9QehQ==",
827
+ "path": "microsoft.codeanalysis.workspaces.common/4.8.0",
828
+ "hashPath": "microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512"
829
+ },
830
+ "Microsoft.Extensions.Configuration.Abstractions/10.0.2": {
831
+ "type": "package",
832
+ "serviceable": true,
833
+ "sha512": "sha512-KC5PslaTDnTuTvyke0KYAVBYdZ7IVTsU3JhHe69BpEbHLcj1YThP3bIGtZNOkZfast2AuLnul5lk4rZKxAdUGQ==",
834
+ "path": "microsoft.extensions.configuration.abstractions/10.0.2",
835
+ "hashPath": "microsoft.extensions.configuration.abstractions.10.0.2.nupkg.sha512"
836
+ },
837
+ "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.2": {
838
+ "type": "package",
839
+ "serviceable": true,
840
+ "sha512": "sha512-zOIurr59+kUf9vNcsUkCvKWZv+fPosUZXURZesYkJCvl0EzTc9F7maAO4Cd2WEV7ZJJ0AZrFQvuH6Npph9wdBw==",
841
+ "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.2",
842
+ "hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.2.nupkg.sha512"
843
+ },
844
+ "Microsoft.Extensions.Diagnostics.Abstractions/10.0.2": {
845
+ "type": "package",
846
+ "serviceable": true,
847
+ "sha512": "sha512-GaiaeKUuLuUbRPkUokndDuzonhO6dk4lcfGflHsCeXiJ5JrZxcyks1KuG6eB9pON16x/+9uWfa4w9g3oP8AYvQ==",
848
+ "path": "microsoft.extensions.diagnostics.abstractions/10.0.2",
849
+ "hashPath": "microsoft.extensions.diagnostics.abstractions.10.0.2.nupkg.sha512"
850
+ },
851
+ "Microsoft.Extensions.FileProviders.Abstractions/10.0.2": {
852
+ "type": "package",
853
+ "serviceable": true,
854
+ "sha512": "sha512-+r/eJ+slW/EmwWmH3En4gzRg1k6+yTqexoHBrMuz5fxsIKJA8MDiSGepjw/ko3XyNqg+w3dxQe+huoVXs5XDJw==",
855
+ "path": "microsoft.extensions.fileproviders.abstractions/10.0.2",
856
+ "hashPath": "microsoft.extensions.fileproviders.abstractions.10.0.2.nupkg.sha512"
857
+ },
858
+ "Microsoft.Extensions.Hosting.Abstractions/10.0.2": {
859
+ "type": "package",
860
+ "serviceable": true,
861
+ "sha512": "sha512-CeAAPVOtI/wtBcHOwq6Pw3VPdGi+pNaGHZj6vfXX/5zr8beO9SyL7IOCSQ70BauFTAFS0QF7f6zu2A6hC8D6nw==",
862
+ "path": "microsoft.extensions.hosting.abstractions/10.0.2",
863
+ "hashPath": "microsoft.extensions.hosting.abstractions.10.0.2.nupkg.sha512"
864
+ },
865
+ "Microsoft.Extensions.Logging.Abstractions/10.0.2": {
866
+ "type": "package",
867
+ "serviceable": true,
868
+ "sha512": "sha512-RZkez/JjpnO+MZ6efKkSynN6ZztLpw3WbxNzjLCPBd97wWj1S9ZYPWi0nmT4kWBRa6atHsdM1ydGkUr8GudyDQ==",
869
+ "path": "microsoft.extensions.logging.abstractions/10.0.2",
870
+ "hashPath": "microsoft.extensions.logging.abstractions.10.0.2.nupkg.sha512"
871
+ },
872
+ "Microsoft.Extensions.Options/10.0.2": {
873
+ "type": "package",
874
+ "serviceable": true,
875
+ "sha512": "sha512-1De2LJjmxdqopI5AYC5dIhoZQ79AR5ayywxNF1rXrXFtKQfbQOV9+n/IsZBa7qWlr0MqoGpW8+OY2v/57udZOA==",
876
+ "path": "microsoft.extensions.options/10.0.2",
877
+ "hashPath": "microsoft.extensions.options.10.0.2.nupkg.sha512"
878
+ },
879
+ "Microsoft.Extensions.Primitives/10.0.2": {
880
+ "type": "package",
881
+ "serviceable": true,
882
+ "sha512": "sha512-QmSiO+oLBEooGgB3i0GRXyeYRDHjllqt3k365jwfZlYWhvSHA3UL2NEVV5m8aZa041eIlblo6KMI5txvTMpTwA==",
883
+ "path": "microsoft.extensions.primitives/10.0.2",
884
+ "hashPath": "microsoft.extensions.primitives.10.0.2.nupkg.sha512"
885
+ },
886
+ "Microsoft.NET.StringTools/17.9.5": {
887
+ "type": "package",
888
+ "serviceable": true,
889
+ "sha512": "sha512-C/oPRnjcIZBRzcpl1V06R1eEMCxOGt6mIm+8ioyblELgJEXLM8XjUPuCwljMO52VetsHw54xMcYwU8UEeHEIEg==",
890
+ "path": "microsoft.net.stringtools/17.9.5",
891
+ "hashPath": "microsoft.net.stringtools.17.9.5.nupkg.sha512"
892
+ },
893
+ "Microsoft.TypeSpec.Generator/1.0.0-alpha.20260310.1": {
894
+ "type": "package",
895
+ "serviceable": true,
896
+ "sha512": "sha512-Whhaz5IoROXhF3onVAx+epyYnqztlNCD3izlR1sjEiC7gHLen3tolWOev5MNGJWciBn9apHUnlb39zV7WTLKyA==",
897
+ "path": "microsoft.typespec.generator/1.0.0-alpha.20260310.1",
898
+ "hashPath": "microsoft.typespec.generator.1.0.0-alpha.20260310.1.nupkg.sha512"
899
+ },
900
+ "Microsoft.TypeSpec.Generator.ClientModel/1.0.0-alpha.20260310.1": {
901
+ "type": "package",
902
+ "serviceable": true,
903
+ "sha512": "sha512-EH18KHwLzkks3s/THiCT2iDlg7Ci6di3fcCJebQq8BAGPe0gka1fTDAMCMzy8IIYRKPkxR1FOF1nLHJV3eqMEA==",
904
+ "path": "microsoft.typespec.generator.clientmodel/1.0.0-alpha.20260310.1",
905
+ "hashPath": "microsoft.typespec.generator.clientmodel.1.0.0-alpha.20260310.1.nupkg.sha512"
906
+ },
907
+ "Microsoft.TypeSpec.Generator.Input/1.0.0-alpha.20260310.1": {
908
+ "type": "package",
909
+ "serviceable": true,
910
+ "sha512": "sha512-nptykRw0UClPXyegVopmT5QdBN4/GzpF/4gNij1BFsz7DbD90jdritNzugZlu0q93U7F74JHWMY2PJVx/GcCkw==",
911
+ "path": "microsoft.typespec.generator.input/1.0.0-alpha.20260310.1",
912
+ "hashPath": "microsoft.typespec.generator.input.1.0.0-alpha.20260310.1.nupkg.sha512"
913
+ },
914
+ "Newtonsoft.Json/13.0.3": {
915
+ "type": "package",
916
+ "serviceable": true,
917
+ "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
918
+ "path": "newtonsoft.json/13.0.3",
919
+ "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
920
+ },
921
+ "NuGet.Common/6.14.0": {
922
+ "type": "package",
923
+ "serviceable": true,
924
+ "sha512": "sha512-E+IyoDez4kPrjNPYp41fScowTuSjGifXfjrtU9p9XlQDOGig6vrikQDCMeo6BT6YmT9vUZ+Tb1CX8ru8z0bkNg==",
925
+ "path": "nuget.common/6.14.0",
926
+ "hashPath": "nuget.common.6.14.0.nupkg.sha512"
927
+ },
928
+ "NuGet.Configuration/6.14.0": {
929
+ "type": "package",
930
+ "serviceable": true,
931
+ "sha512": "sha512-YwoF+Nm0IGdNP/LQ97xysCQlhy4oWIzD4oGcbvz5bQGogPrqn/5lSGwP8llmVv+zfJ6tZZDAT9vh4Q+gH0Aqqg==",
932
+ "path": "nuget.configuration/6.14.0",
933
+ "hashPath": "nuget.configuration.6.14.0.nupkg.sha512"
934
+ },
935
+ "NuGet.Frameworks/6.14.0": {
936
+ "type": "package",
937
+ "serviceable": true,
938
+ "sha512": "sha512-xZ37J58DQAkVUX29qoMwla26iBYRScdcfSGNe1FIZjCX1tpafN9n7TinrkRxaJqYzW0D8Ob8a3eRSYhwEUauCA==",
939
+ "path": "nuget.frameworks/6.14.0",
940
+ "hashPath": "nuget.frameworks.6.14.0.nupkg.sha512"
941
+ },
942
+ "NuGet.Packaging/6.14.0": {
943
+ "type": "package",
944
+ "serviceable": true,
945
+ "sha512": "sha512-BpQlGpkuAhrh6x00mGvwK13a5c30vX3FYQbWI11LIyXl/nWmoOQSZrB3yEAh9ihibeGo8SunWZBGXvkkJUxbEg==",
946
+ "path": "nuget.packaging/6.14.0",
947
+ "hashPath": "nuget.packaging.6.14.0.nupkg.sha512"
948
+ },
949
+ "NuGet.Protocol/6.14.0": {
950
+ "type": "package",
951
+ "serviceable": true,
952
+ "sha512": "sha512-hYk9j/ZKErdiK0tFaqsrRtT5q+sJ2VjCUrgFCQG2wGhAlmb8YaBzYLOGDvRdFwuvTi5I+KRuVHPqhc010Np1Bg==",
953
+ "path": "nuget.protocol/6.14.0",
954
+ "hashPath": "nuget.protocol.6.14.0.nupkg.sha512"
955
+ },
956
+ "NuGet.Versioning/6.14.0": {
957
+ "type": "package",
958
+ "serviceable": true,
959
+ "sha512": "sha512-4v4blkhCv8mpKtfx+z0G/X0daVCzdIaHSC51GkUspugi5JIMn2Bo8xm5PdZYF0U68gOBfz/+aPWMnpRd85Jbow==",
960
+ "path": "nuget.versioning/6.14.0",
961
+ "hashPath": "nuget.versioning.6.14.0.nupkg.sha512"
962
+ },
963
+ "System.ClientModel/1.9.0": {
964
+ "type": "package",
965
+ "serviceable": true,
966
+ "sha512": "sha512-1wdwKtMMMEFEYsxJmtrOd3G+7zVOVO3MlVZAsbKv9H0PnIx6J27fYAarMn0eQS0vKJPQL018DOb7YRK1O97p0A==",
967
+ "path": "system.clientmodel/1.9.0",
968
+ "hashPath": "system.clientmodel.1.9.0.nupkg.sha512"
969
+ },
970
+ "System.ComponentModel.Composition/8.0.0": {
971
+ "type": "package",
972
+ "serviceable": true,
973
+ "sha512": "sha512-bGhUX5BTivJ9Wax0qnJy7uGq7dn/TQkEpJ2Fpu1etg8dbPwyDkUzNPc1d3I2/jUr9y4wDI3a1dkSmi8X21Pzbw==",
974
+ "path": "system.componentmodel.composition/8.0.0",
975
+ "hashPath": "system.componentmodel.composition.8.0.0.nupkg.sha512"
976
+ },
977
+ "System.Composition/7.0.0": {
978
+ "type": "package",
979
+ "serviceable": true,
980
+ "sha512": "sha512-tRwgcAkDd85O8Aq6zHDANzQaq380cek9lbMg5Qma46u5BZXq/G+XvIYmu+UI+BIIZ9zssXLYrkTykEqxxvhcmg==",
981
+ "path": "system.composition/7.0.0",
982
+ "hashPath": "system.composition.7.0.0.nupkg.sha512"
983
+ },
984
+ "System.Composition.AttributedModel/7.0.0": {
985
+ "type": "package",
986
+ "serviceable": true,
987
+ "sha512": "sha512-2QzClqjElKxgI1jK1Jztnq44/8DmSuTSGGahXqQ4TdEV0h9s2KikQZIgcEqVzR7OuWDFPGLHIprBJGQEPr8fAQ==",
988
+ "path": "system.composition.attributedmodel/7.0.0",
989
+ "hashPath": "system.composition.attributedmodel.7.0.0.nupkg.sha512"
990
+ },
991
+ "System.Composition.Convention/7.0.0": {
992
+ "type": "package",
993
+ "serviceable": true,
994
+ "sha512": "sha512-IMhTlpCs4HmlD8B+J8/kWfwX7vrBBOs6xyjSTzBlYSs7W4OET4tlkR/Sg9NG8jkdJH9Mymq0qGdYS1VPqRTBnQ==",
995
+ "path": "system.composition.convention/7.0.0",
996
+ "hashPath": "system.composition.convention.7.0.0.nupkg.sha512"
997
+ },
998
+ "System.Composition.Hosting/7.0.0": {
999
+ "type": "package",
1000
+ "serviceable": true,
1001
+ "sha512": "sha512-eB6gwN9S+54jCTBJ5bpwMOVerKeUfGGTYCzz3QgDr1P55Gg/Wb27ShfPIhLMjmZ3MoAKu8uUSv6fcCdYJTN7Bg==",
1002
+ "path": "system.composition.hosting/7.0.0",
1003
+ "hashPath": "system.composition.hosting.7.0.0.nupkg.sha512"
1004
+ },
1005
+ "System.Composition.Runtime/7.0.0": {
1006
+ "type": "package",
1007
+ "serviceable": true,
1008
+ "sha512": "sha512-aZJ1Zr5Txe925rbo4742XifEyW0MIni1eiUebmcrP3HwLXZ3IbXUj4MFMUH/RmnJOAQiS401leg/2Sz1MkApDw==",
1009
+ "path": "system.composition.runtime/7.0.0",
1010
+ "hashPath": "system.composition.runtime.7.0.0.nupkg.sha512"
1011
+ },
1012
+ "System.Composition.TypedParts/7.0.0": {
1013
+ "type": "package",
1014
+ "serviceable": true,
1015
+ "sha512": "sha512-ZK0KNPfbtxVceTwh+oHNGUOYV2WNOHReX2AXipuvkURC7s/jPwoWfsu3SnDBDgofqbiWr96geofdQ2erm/KTHg==",
1016
+ "path": "system.composition.typedparts/7.0.0",
1017
+ "hashPath": "system.composition.typedparts.7.0.0.nupkg.sha512"
1018
+ },
1019
+ "System.Configuration.ConfigurationManager/8.0.0": {
1020
+ "type": "package",
1021
+ "serviceable": true,
1022
+ "sha512": "sha512-JlYi9XVvIREURRUlGMr1F6vOFLk7YSY4p1vHo4kX3tQ0AGrjqlRWHDi66ImHhy6qwXBG3BJ6Y1QlYQ+Qz6Xgww==",
1023
+ "path": "system.configuration.configurationmanager/8.0.0",
1024
+ "hashPath": "system.configuration.configurationmanager.8.0.0.nupkg.sha512"
1025
+ },
1026
+ "System.Diagnostics.EventLog/8.0.0": {
1027
+ "type": "package",
1028
+ "serviceable": true,
1029
+ "sha512": "sha512-fdYxcRjQqTTacKId/2IECojlDSFvp7LP5N78+0z/xH7v/Tuw5ZAxu23Y6PTCRinqyu2ePx+Gn1098NC6jM6d+A==",
1030
+ "path": "system.diagnostics.eventlog/8.0.0",
1031
+ "hashPath": "system.diagnostics.eventlog.8.0.0.nupkg.sha512"
1032
+ },
1033
+ "System.Memory.Data/10.0.1": {
1034
+ "type": "package",
1035
+ "serviceable": true,
1036
+ "sha512": "sha512-BZC4mhdL569AXV56ep9YO6ShjhxFXGP7SwVX0Bc/e0dJPWnS6aBEXZJXqh64RVx8HquqWHkJUINBydLRQ1yq0g==",
1037
+ "path": "system.memory.data/10.0.1",
1038
+ "hashPath": "system.memory.data.10.0.1.nupkg.sha512"
1039
+ },
1040
+ "System.Reflection.MetadataLoadContext/8.0.0": {
1041
+ "type": "package",
1042
+ "serviceable": true,
1043
+ "sha512": "sha512-SZxrQ4sQYnIcdwiO3G/lHZopbPYQ2lW0ioT4JezgccWUrKaKbHLJbAGZaDfkYjWcta1pWssAo3MOXLsR0ie4tQ==",
1044
+ "path": "system.reflection.metadataloadcontext/8.0.0",
1045
+ "hashPath": "system.reflection.metadataloadcontext.8.0.0.nupkg.sha512"
1046
+ },
1047
+ "System.Security.Cryptography.Pkcs/6.0.4": {
1048
+ "type": "package",
1049
+ "serviceable": true,
1050
+ "sha512": "sha512-LGbXi1oUJ9QgCNGXRO9ndzBL/GZgANcsURpMhNR8uO+rca47SZmciS3RSQUvlQRwK3QHZSHNOXzoMUASKA+Anw==",
1051
+ "path": "system.security.cryptography.pkcs/6.0.4",
1052
+ "hashPath": "system.security.cryptography.pkcs.6.0.4.nupkg.sha512"
1053
+ },
1054
+ "System.Security.Cryptography.ProtectedData/8.0.0": {
1055
+ "type": "package",
1056
+ "serviceable": true,
1057
+ "sha512": "sha512-+TUFINV2q2ifyXauQXRwy4CiBhqvDEDZeVJU7qfxya4aRYOKzVBpN+4acx25VcPB9ywUN6C0n8drWl110PhZEg==",
1058
+ "path": "system.security.cryptography.protecteddata/8.0.0",
1059
+ "hashPath": "system.security.cryptography.protecteddata.8.0.0.nupkg.sha512"
1060
+ }
1061
+ }
1062
+ }