@azure-typespec/http-client-csharp-mgmt 1.0.0-alpha.20260324.1 → 1.0.0-alpha.20260325.2

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 (38) hide show
  1. package/dist/emitter/api-version-fixer.d.ts +32 -0
  2. package/dist/emitter/api-version-fixer.d.ts.map +1 -0
  3. package/dist/emitter/api-version-fixer.js +117 -0
  4. package/dist/emitter/api-version-fixer.js.map +1 -0
  5. package/dist/emitter/emitter.d.ts.map +1 -1
  6. package/dist/emitter/emitter.js +9 -0
  7. package/dist/emitter/emitter.js.map +1 -1
  8. package/dist/generator/Azure.Core.dll +0 -0
  9. package/dist/generator/Azure.Generator.Management.deps.json +106 -106
  10. package/dist/generator/Azure.Generator.Management.dll +0 -0
  11. package/dist/generator/Azure.Generator.Management.pdb +0 -0
  12. package/dist/generator/Microsoft.Bcl.AsyncInterfaces.dll +0 -0
  13. package/dist/generator/Microsoft.Extensions.Configuration.Abstractions.dll +0 -0
  14. package/dist/generator/Microsoft.Extensions.DependencyInjection.Abstractions.dll +0 -0
  15. package/dist/generator/Microsoft.Extensions.Diagnostics.Abstractions.dll +0 -0
  16. package/dist/generator/Microsoft.Extensions.FileProviders.Abstractions.dll +0 -0
  17. package/dist/generator/Microsoft.Extensions.Hosting.Abstractions.dll +0 -0
  18. package/dist/generator/Microsoft.Extensions.Logging.Abstractions.dll +0 -0
  19. package/dist/generator/Microsoft.Extensions.Options.dll +0 -0
  20. package/dist/generator/Microsoft.Extensions.Primitives.dll +0 -0
  21. package/dist/generator/System.ClientModel.dll +0 -0
  22. package/dist/generator/System.Memory.Data.dll +0 -0
  23. package/dist/generator/net10.0/Azure.Core.dll +0 -0
  24. package/dist/generator/net10.0/Azure.Generator.Management.deps.json +106 -106
  25. package/dist/generator/net10.0/Azure.Generator.Management.dll +0 -0
  26. package/dist/generator/net10.0/Azure.Generator.Management.pdb +0 -0
  27. package/dist/generator/net10.0/Microsoft.Bcl.AsyncInterfaces.dll +0 -0
  28. package/dist/generator/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll +0 -0
  29. package/dist/generator/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll +0 -0
  30. package/dist/generator/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll +0 -0
  31. package/dist/generator/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll +0 -0
  32. package/dist/generator/net10.0/Microsoft.Extensions.Hosting.Abstractions.dll +0 -0
  33. package/dist/generator/net10.0/Microsoft.Extensions.Logging.Abstractions.dll +0 -0
  34. package/dist/generator/net10.0/Microsoft.Extensions.Options.dll +0 -0
  35. package/dist/generator/net10.0/Microsoft.Extensions.Primitives.dll +0 -0
  36. package/dist/generator/net10.0/System.ClientModel.dll +0 -0
  37. package/dist/generator/net10.0/System.Memory.Data.dll +0 -0
  38. package/package.json +1 -1
@@ -0,0 +1,32 @@
1
+ import { CodeModel, CSharpEmitterContext } from "@typespec/http-client-csharp";
2
+ /**
3
+ * Deduplicates ApiVersionEnum enums in the code model to work around a base generator bug
4
+ * where multiple enums with the same namespace cause duplicate field names in ClientOptionsProvider,
5
+ * crashing in ClientProvider.BuildMethods().
6
+ *
7
+ * In multi-service scenarios (e.g., Compute has Compute, ComputeDisk, ComputeGallery, ComputeSku),
8
+ * each service produces its own Versions enum, all with the same namespace. The base generator
9
+ * creates one API version field per enum, using the namespace to derive the field name — so
10
+ * identical namespaces produce identical field names, causing a Dictionary duplicate key crash.
11
+ *
12
+ * This workaround merges all ApiVersionEnum enums that share the same namespace into a single
13
+ * enum with the union of all values. The mgmt generator does not use the base generator's
14
+ * ClientOptionsProvider API version mechanism, so this is safe.
15
+ *
16
+ * Tracked by: https://github.com/microsoft/typespec/issues/10055
17
+ */
18
+ export declare function deduplicateApiVersionEnums(codeModel: CodeModel): void;
19
+ /**
20
+ * Walks the entire client tree in the code model and fixes clients with empty apiVersions.
21
+ *
22
+ * For each client that has methods but no apiVersions:
23
+ * - If all methods share the same apiVersions list, assign it to the client.
24
+ * - If methods have different apiVersions, report an error diagnostic asking the user
25
+ * to use @@clientLocation to separate methods with different API versions.
26
+ *
27
+ * In TCGC's hierarchical client model, parent clients don't carry apiVersions — child clients
28
+ * inherit from parents. In mgmt SDK we flatten the hierarchy, so each client needs its own
29
+ * apiVersions. We infer them from the client's methods.
30
+ */
31
+ export declare function fixClientApiVersions(codeModel: CodeModel, sdkContext: CSharpEmitterContext): void;
32
+ //# sourceMappingURL=api-version-fixer.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"api-version-fixer.d.ts","sourceRoot":"","sources":["../../emitter/src/api-version-fixer.ts"],"names":[],"mappings":"AAGA,OAAO,EACL,SAAS,EACT,oBAAoB,EAErB,MAAM,8BAA8B,CAAC;AAKtC;;;;;;;;;;;;;;;GAeG;AACH,wBAAgB,0BAA0B,CAAC,SAAS,EAAE,SAAS,GAAG,IAAI,CA2CrE;AAED;;;;;;;;;;;GAWG;AACH,wBAAgB,oBAAoB,CAClC,SAAS,EAAE,SAAS,EACpB,UAAU,EAAE,oBAAoB,GAC/B,IAAI,CAgDN"}
@@ -0,0 +1,117 @@
1
+ // Copyright (c) Microsoft Corporation. All rights reserved.
2
+ // Licensed under the MIT License. See License.txt in the project root for license information.
3
+ import { NoTarget } from "@typespec/compiler";
4
+ import { UsageFlags } from "@azure-tools/typespec-client-generator-core";
5
+ import { traverseClient } from "./sdk-client-utils.js";
6
+ /**
7
+ * Deduplicates ApiVersionEnum enums in the code model to work around a base generator bug
8
+ * where multiple enums with the same namespace cause duplicate field names in ClientOptionsProvider,
9
+ * crashing in ClientProvider.BuildMethods().
10
+ *
11
+ * In multi-service scenarios (e.g., Compute has Compute, ComputeDisk, ComputeGallery, ComputeSku),
12
+ * each service produces its own Versions enum, all with the same namespace. The base generator
13
+ * creates one API version field per enum, using the namespace to derive the field name — so
14
+ * identical namespaces produce identical field names, causing a Dictionary duplicate key crash.
15
+ *
16
+ * This workaround merges all ApiVersionEnum enums that share the same namespace into a single
17
+ * enum with the union of all values. The mgmt generator does not use the base generator's
18
+ * ClientOptionsProvider API version mechanism, so this is safe.
19
+ *
20
+ * Tracked by: https://github.com/microsoft/typespec/issues/10055
21
+ */
22
+ export function deduplicateApiVersionEnums(codeModel) {
23
+ const apiVersionEnums = codeModel.enums.filter((e) => (e.usage & UsageFlags.ApiVersionEnum) !== 0);
24
+ if (apiVersionEnums.length <= 1) {
25
+ return;
26
+ }
27
+ // Group ApiVersionEnum enums by namespace
28
+ const byNamespace = new Map();
29
+ for (const e of apiVersionEnums) {
30
+ const group = byNamespace.get(e.namespace);
31
+ if (group) {
32
+ group.push(e);
33
+ }
34
+ else {
35
+ byNamespace.set(e.namespace, [e]);
36
+ }
37
+ }
38
+ for (const [, group] of byNamespace) {
39
+ if (group.length <= 1) {
40
+ continue;
41
+ }
42
+ // Merge all values into the first enum, keeping unique values by value
43
+ const primary = group[0];
44
+ const seenValues = new Set(primary.values.map((v) => String(v.value)));
45
+ for (let i = 1; i < group.length; i++) {
46
+ for (const val of group[i].values) {
47
+ if (!seenValues.has(String(val.value))) {
48
+ seenValues.add(String(val.value));
49
+ // Re-parent the enum value to the primary enum
50
+ const mergedValue = { ...val, enumType: primary };
51
+ primary.values.push(mergedValue);
52
+ }
53
+ }
54
+ }
55
+ // Remove the duplicate enums from the code model
56
+ const duplicates = new Set(group.slice(1));
57
+ codeModel.enums = codeModel.enums.filter((e) => !duplicates.has(e));
58
+ }
59
+ }
60
+ /**
61
+ * Walks the entire client tree in the code model and fixes clients with empty apiVersions.
62
+ *
63
+ * For each client that has methods but no apiVersions:
64
+ * - If all methods share the same apiVersions list, assign it to the client.
65
+ * - If methods have different apiVersions, report an error diagnostic asking the user
66
+ * to use @@clientLocation to separate methods with different API versions.
67
+ *
68
+ * In TCGC's hierarchical client model, parent clients don't carry apiVersions — child clients
69
+ * inherit from parents. In mgmt SDK we flatten the hierarchy, so each client needs its own
70
+ * apiVersions. We infer them from the client's methods.
71
+ */
72
+ export function fixClientApiVersions(codeModel, sdkContext) {
73
+ const allClients = [];
74
+ for (const client of codeModel.clients) {
75
+ traverseClient(client, allClients);
76
+ }
77
+ for (const client of allClients) {
78
+ if (client.apiVersions.length > 0) {
79
+ continue;
80
+ }
81
+ // Only care about clients that have methods (operations)
82
+ if (!client.methods || client.methods.length === 0) {
83
+ continue;
84
+ }
85
+ // Collect distinct apiVersions lists from all methods
86
+ const methodApiVersionsMap = new Map();
87
+ for (const method of client.methods) {
88
+ const key = method.apiVersions.join(",");
89
+ if (!methodApiVersionsMap.has(key)) {
90
+ methodApiVersionsMap.set(key, method.apiVersions);
91
+ }
92
+ }
93
+ if (methodApiVersionsMap.size === 1) {
94
+ // All methods share the same apiVersions — assign to the client
95
+ const [sharedVersions] = methodApiVersionsMap.values();
96
+ client.apiVersions = sharedVersions;
97
+ }
98
+ else {
99
+ // Methods have different apiVersions — report diagnostic
100
+ const details = [];
101
+ for (const method of client.methods) {
102
+ details.push(` - ${method.name}: [${method.apiVersions.join(", ")}]`);
103
+ }
104
+ sdkContext.logger.reportDiagnostic({
105
+ code: "general-error",
106
+ messageId: "default",
107
+ format: {
108
+ message: `Client '${client.name}' has empty apiVersions but its methods have inconsistent API versions. ` +
109
+ `Use @@clientLocation decorator to move methods with different API versions into separate clients.\n` +
110
+ `Methods and their API versions:\n${details.join("\n")}`
111
+ },
112
+ target: NoTarget
113
+ });
114
+ }
115
+ }
116
+ }
117
+ //# sourceMappingURL=api-version-fixer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"api-version-fixer.js","sourceRoot":"","sources":["../../emitter/src/api-version-fixer.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"emitter.d.ts","sourceRoot":"","sources":["../../emitter/src/emitter.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AAWjD,OAAO,EAAE,uBAAuB,EAAE,MAAM,cAAc,CAAC;AAGvD,wBAAsB,OAAO,CAAC,OAAO,EAAE,WAAW,CAAC,uBAAuB,CAAC,iBAoB1E"}
1
+ {"version":3,"file":"emitter.d.ts","sourceRoot":"","sources":["../../emitter/src/emitter.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AAWjD,OAAO,EAAE,uBAAuB,EAAE,MAAM,cAAc,CAAC;AAOvD,wBAAsB,OAAO,CAAC,OAAO,EAAE,WAAW,CAAC,uBAAuB,CAAC,iBA8B1E"}
@@ -4,6 +4,7 @@ import { $onEmit as $onAzureEmit } from "@azure-typespec/http-client-csharp";
4
4
  import { azureSDKContextOptions, flattenPropertyDecorator } from "./sdk-context-options.js";
5
5
  import { updateClients } from "./resource-detection.js";
6
6
  import { transformSubscriptionIdParameters } from "./subscription-id-transformer.js";
7
+ import { deduplicateApiVersionEnums, fixClientApiVersions } from "./api-version-fixer.js";
7
8
  export async function $onEmit(context) {
8
9
  context.options["generator-name"] ??= "ManagementClientGenerator";
9
10
  context.options["update-code-model"] = updateCodeModel;
@@ -15,6 +16,14 @@ export async function $onEmit(context) {
15
16
  // Transform subscriptionId parameters from client scope to method scope
16
17
  // This must happen before other transformations that may depend on method parameters
17
18
  transformSubscriptionIdParameters(codeModel);
19
+ // Deduplicate ApiVersionEnum enums to work around base generator crash
20
+ // when multiple services share the same namespace.
21
+ // https://github.com/microsoft/typespec/issues/10055
22
+ deduplicateApiVersionEnums(codeModel);
23
+ // Fix clients with empty apiVersions by inferring from their methods.
24
+ // In TCGC's hierarchical client model, parent clients don't carry apiVersions — child clients
25
+ // inherit from parents. In mgmt SDK we flatten the hierarchy, so we infer from methods instead.
26
+ fixClientApiVersions(codeModel, sdkContext);
18
27
  updateClients(codeModel, sdkContext, context.options);
19
28
  setFlattenProperty(codeModel, sdkContext);
20
29
  return codeModel;
@@ -1 +1 @@
1
- {"version":3,"file":"emitter.js","sourceRoot":"","sources":["../../emitter/src/emitter.ts"],"names":[],"mappings":"AAAA,4DAA4D;AAC5D,+FAA+F;AAM/F,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,oCAAoC,CAAC;AAC7E,OAAO,EACL,sBAAsB,EACtB,wBAAwB,EACzB,MAAM,0BAA0B,CAAC;AAClC,OAAO,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AAGxD,OAAO,EAAE,iCAAiC,EAAE,MAAM,kCAAkC,CAAC;AAErF,MAAM,CAAC,KAAK,UAAU,OAAO,CAAC,OAA6C;IACzE,OAAO,CAAC,OAAO,CAAC,gBAAgB,CAAC,KAAK,2BAA2B,CAAC;IAClE,OAAO,CAAC,OAAO,CAAC,mBAAmB,CAAC,GAAG,eAAe,CAAC;IACvD,OAAO,CAAC,OAAO,CAAC,wBAAwB,CAAC,KAAK,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC;IAC9D,OAAO,CAAC,OAAO,CAAC,qBAAqB,CAAC,KAAK,sBAAsB,CAAC;IAClE,OAAO,CAAC,OAAO,CAAC,iBAAiB,CAAC,KAAK,IAAI,CAAC;IAC5C,MAAM,YAAY,CAAC,OAAO,CAAC,CAAC;IAE5B,SAAS,eAAe,CACtB,SAAoB,EACpB,UAAgC;QAEhC,wEAAwE;QACxE,qFAAqF;QACrF,iCAAiC,CAAC,SAAS,CAAC,CAAC;QAE7C,aAAa,CAAC,SAAS,EAAE,UAAU,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;QACtD,kBAAkB,CAAC,SAAS,EAAE,UAAU,CAAC,CAAC;QAC1C,OAAO,SAAS,CAAC;IACnB,CAAC;AACH,CAAC;AAED,SAAS,kBAAkB,CACzB,SAAoB,EACpB,UAAgC;IAEhC,KAAK,MAAM,KAAK,IAAI,UAAU,CAAC,UAAU,CAAC,MAAM,EAAE,CAAC;QACjD,KAAK,MAAM,QAAQ,IAAI,KAAK,CAAC,UAAU,EAAE,CAAC;YACxC,IAAI,QAAQ,CAAC,OAAO,EAAE,CAAC;gBACrB,MAAM,gCAAgC,GAAkB;oBACtD,IAAI,EAAE,wBAAwB;oBAC9B,SAAS,EAAE,EAAE;iBACd,CAAC;gBACF,QAAQ,CAAC,UAAU,CAAC,IAAI,CAAC,gCAAgC,CAAC,CAAC;YAC7D,CAAC;QACH,CAAC;IACH,CAAC;AACH,CAAC"}
1
+ {"version":3,"file":"emitter.js","sourceRoot":"","sources":["../../emitter/src/emitter.ts"],"names":[],"mappings":"AAAA,4DAA4D;AAC5D,+FAA+F;AAM/F,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,oCAAoC,CAAC;AAC7E,OAAO,EACL,sBAAsB,EACtB,wBAAwB,EACzB,MAAM,0BAA0B,CAAC;AAClC,OAAO,EAAE,aAAa,EAAE,MAAM,yBAAyB,CAAC;AAGxD,OAAO,EAAE,iCAAiC,EAAE,MAAM,kCAAkC,CAAC;AACrF,OAAO,EACL,0BAA0B,EAC1B,oBAAoB,EACrB,MAAM,wBAAwB,CAAC;AAEhC,MAAM,CAAC,KAAK,UAAU,OAAO,CAAC,OAA6C;IACzE,OAAO,CAAC,OAAO,CAAC,gBAAgB,CAAC,KAAK,2BAA2B,CAAC;IAClE,OAAO,CAAC,OAAO,CAAC,mBAAmB,CAAC,GAAG,eAAe,CAAC;IACvD,OAAO,CAAC,OAAO,CAAC,wBAAwB,CAAC,KAAK,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC;IAC9D,OAAO,CAAC,OAAO,CAAC,qBAAqB,CAAC,KAAK,sBAAsB,CAAC;IAClE,OAAO,CAAC,OAAO,CAAC,iBAAiB,CAAC,KAAK,IAAI,CAAC;IAC5C,MAAM,YAAY,CAAC,OAAO,CAAC,CAAC;IAE5B,SAAS,eAAe,CACtB,SAAoB,EACpB,UAAgC;QAEhC,wEAAwE;QACxE,qFAAqF;QACrF,iCAAiC,CAAC,SAAS,CAAC,CAAC;QAE7C,uEAAuE;QACvE,mDAAmD;QACnD,qDAAqD;QACrD,0BAA0B,CAAC,SAAS,CAAC,CAAC;QAEtC,sEAAsE;QACtE,8FAA8F;QAC9F,gGAAgG;QAChG,oBAAoB,CAAC,SAAS,EAAE,UAAU,CAAC,CAAC;QAE5C,aAAa,CAAC,SAAS,EAAE,UAAU,EAAE,OAAO,CAAC,OAAO,CAAC,CAAC;QACtD,kBAAkB,CAAC,SAAS,EAAE,UAAU,CAAC,CAAC;QAC1C,OAAO,SAAS,CAAC;IACnB,CAAC;AACH,CAAC;AAED,SAAS,kBAAkB,CACzB,SAAoB,EACpB,UAAgC;IAEhC,KAAK,MAAM,KAAK,IAAI,UAAU,CAAC,UAAU,CAAC,MAAM,EAAE,CAAC;QACjD,KAAK,MAAM,QAAQ,IAAI,KAAK,CAAC,UAAU,EAAE,CAAC;YACxC,IAAI,QAAQ,CAAC,OAAO,EAAE,CAAC;gBACrB,MAAM,gCAAgC,GAAkB;oBACtD,IAAI,EAAE,wBAAwB;oBAC9B,SAAS,EAAE,EAAE;iBACd,CAAC;gBACF,QAAQ,CAAC,UAAU,CAAC,IAAI,CAAC,gCAAgC,CAAC,CAAC;YAC7D,CAAC;QACH,CAAC;IACH,CAAC;AACH,CAAC"}
Binary file
@@ -6,9 +6,9 @@
6
6
  "compilationOptions": {},
7
7
  "targets": {
8
8
  ".NETCoreApp,Version=v10.0": {
9
- "Azure.Generator.Management/1.0.0-alpha.20260324.1": {
9
+ "Azure.Generator.Management/1.0.0-alpha.20260325.2": {
10
10
  "dependencies": {
11
- "Azure.Core": "1.51.1",
11
+ "Azure.Core": "1.52.0",
12
12
  "Azure.Generator": "1.0.0-alpha.20260320.2",
13
13
  "Azure.ResourceManager": "1.14.0",
14
14
  "Humanizer.Core": "3.0.1"
@@ -17,22 +17,22 @@
17
17
  "Azure.Generator.Management.dll": {}
18
18
  }
19
19
  },
20
- "Azure.Core/1.51.1": {
20
+ "Azure.Core/1.52.0": {
21
21
  "dependencies": {
22
- "Microsoft.Bcl.AsyncInterfaces": "10.0.2",
23
- "System.ClientModel": "1.9.0",
24
- "System.Memory.Data": "10.0.1"
22
+ "Microsoft.Bcl.AsyncInterfaces": "10.0.3",
23
+ "System.ClientModel": "1.10.0",
24
+ "System.Memory.Data": "10.0.3"
25
25
  },
26
26
  "runtime": {
27
27
  "lib/net10.0/Azure.Core.dll": {
28
- "assemblyVersion": "1.51.1.0",
29
- "fileVersion": "1.5100.126.10405"
28
+ "assemblyVersion": "1.52.0.0",
29
+ "fileVersion": "1.5200.26.17404"
30
30
  }
31
31
  }
32
32
  },
33
33
  "Azure.Core.Expressions.DataFactory/1.0.0": {
34
34
  "dependencies": {
35
- "Azure.Core": "1.51.1"
35
+ "Azure.Core": "1.52.0"
36
36
  },
37
37
  "runtime": {
38
38
  "lib/netstandard2.0/Azure.Core.Expressions.DataFactory.dll": {
@@ -43,7 +43,7 @@
43
43
  },
44
44
  "Azure.Generator/1.0.0-alpha.20260320.2": {
45
45
  "dependencies": {
46
- "Azure.Core": "1.51.1",
46
+ "Azure.Core": "1.52.0",
47
47
  "Azure.Core.Expressions.DataFactory": "1.0.0",
48
48
  "Azure.ResourceManager": "1.14.0",
49
49
  "Microsoft.TypeSpec.Generator.ClientModel": "1.0.0-alpha.20260320.2"
@@ -57,7 +57,7 @@
57
57
  },
58
58
  "Azure.ResourceManager/1.14.0": {
59
59
  "dependencies": {
60
- "Azure.Core": "1.51.1"
60
+ "Azure.Core": "1.52.0"
61
61
  },
62
62
  "runtime": {
63
63
  "lib/net10.0/Azure.ResourceManager.dll": {
@@ -82,11 +82,11 @@
82
82
  }
83
83
  }
84
84
  },
85
- "Microsoft.Bcl.AsyncInterfaces/10.0.2": {
85
+ "Microsoft.Bcl.AsyncInterfaces/10.0.3": {
86
86
  "runtime": {
87
87
  "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
88
- "assemblyVersion": "10.0.0.2",
89
- "fileVersion": "10.0.225.61305"
88
+ "assemblyVersion": "10.0.0.3",
89
+ "fileVersion": "10.0.326.7603"
90
90
  }
91
91
  }
92
92
  },
@@ -271,7 +271,7 @@
271
271
  "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": {
272
272
  "dependencies": {
273
273
  "Humanizer.Core": "3.0.1",
274
- "Microsoft.Bcl.AsyncInterfaces": "10.0.2",
274
+ "Microsoft.Bcl.AsyncInterfaces": "10.0.3",
275
275
  "Microsoft.CodeAnalysis.Common": "4.8.0",
276
276
  "System.Composition": "7.0.0"
277
277
  },
@@ -323,91 +323,91 @@
323
323
  }
324
324
  }
325
325
  },
326
- "Microsoft.Extensions.Configuration.Abstractions/10.0.2": {
326
+ "Microsoft.Extensions.Configuration.Abstractions/10.0.3": {
327
327
  "dependencies": {
328
- "Microsoft.Extensions.Primitives": "10.0.2"
328
+ "Microsoft.Extensions.Primitives": "10.0.3"
329
329
  },
330
330
  "runtime": {
331
331
  "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
332
332
  "assemblyVersion": "10.0.0.0",
333
- "fileVersion": "10.0.225.61305"
333
+ "fileVersion": "10.0.326.7603"
334
334
  }
335
335
  }
336
336
  },
337
- "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.2": {
337
+ "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.3": {
338
338
  "runtime": {
339
339
  "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
340
340
  "assemblyVersion": "10.0.0.0",
341
- "fileVersion": "10.0.225.61305"
341
+ "fileVersion": "10.0.326.7603"
342
342
  }
343
343
  }
344
344
  },
345
- "Microsoft.Extensions.Diagnostics.Abstractions/10.0.2": {
345
+ "Microsoft.Extensions.Diagnostics.Abstractions/10.0.3": {
346
346
  "dependencies": {
347
- "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.2",
348
- "Microsoft.Extensions.Options": "10.0.2"
347
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.3",
348
+ "Microsoft.Extensions.Options": "10.0.3"
349
349
  },
350
350
  "runtime": {
351
351
  "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
352
352
  "assemblyVersion": "10.0.0.0",
353
- "fileVersion": "10.0.225.61305"
353
+ "fileVersion": "10.0.326.7603"
354
354
  }
355
355
  }
356
356
  },
357
- "Microsoft.Extensions.FileProviders.Abstractions/10.0.2": {
357
+ "Microsoft.Extensions.FileProviders.Abstractions/10.0.3": {
358
358
  "dependencies": {
359
- "Microsoft.Extensions.Primitives": "10.0.2"
359
+ "Microsoft.Extensions.Primitives": "10.0.3"
360
360
  },
361
361
  "runtime": {
362
362
  "lib/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
363
363
  "assemblyVersion": "10.0.0.0",
364
- "fileVersion": "10.0.225.61305"
364
+ "fileVersion": "10.0.326.7603"
365
365
  }
366
366
  }
367
367
  },
368
- "Microsoft.Extensions.Hosting.Abstractions/10.0.2": {
368
+ "Microsoft.Extensions.Hosting.Abstractions/10.0.3": {
369
369
  "dependencies": {
370
- "Microsoft.Extensions.Configuration.Abstractions": "10.0.2",
371
- "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.2",
372
- "Microsoft.Extensions.Diagnostics.Abstractions": "10.0.2",
373
- "Microsoft.Extensions.FileProviders.Abstractions": "10.0.2",
374
- "Microsoft.Extensions.Logging.Abstractions": "10.0.2"
370
+ "Microsoft.Extensions.Configuration.Abstractions": "10.0.3",
371
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.3",
372
+ "Microsoft.Extensions.Diagnostics.Abstractions": "10.0.3",
373
+ "Microsoft.Extensions.FileProviders.Abstractions": "10.0.3",
374
+ "Microsoft.Extensions.Logging.Abstractions": "10.0.3"
375
375
  },
376
376
  "runtime": {
377
377
  "lib/net10.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
378
378
  "assemblyVersion": "10.0.0.0",
379
- "fileVersion": "10.0.225.61305"
379
+ "fileVersion": "10.0.326.7603"
380
380
  }
381
381
  }
382
382
  },
383
- "Microsoft.Extensions.Logging.Abstractions/10.0.2": {
383
+ "Microsoft.Extensions.Logging.Abstractions/10.0.3": {
384
384
  "dependencies": {
385
- "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.2"
385
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.3"
386
386
  },
387
387
  "runtime": {
388
388
  "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": {
389
389
  "assemblyVersion": "10.0.0.0",
390
- "fileVersion": "10.0.225.61305"
390
+ "fileVersion": "10.0.326.7603"
391
391
  }
392
392
  }
393
393
  },
394
- "Microsoft.Extensions.Options/10.0.2": {
394
+ "Microsoft.Extensions.Options/10.0.3": {
395
395
  "dependencies": {
396
- "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.2",
397
- "Microsoft.Extensions.Primitives": "10.0.2"
396
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.3",
397
+ "Microsoft.Extensions.Primitives": "10.0.3"
398
398
  },
399
399
  "runtime": {
400
400
  "lib/net10.0/Microsoft.Extensions.Options.dll": {
401
401
  "assemblyVersion": "10.0.0.0",
402
- "fileVersion": "10.0.225.61305"
402
+ "fileVersion": "10.0.326.7603"
403
403
  }
404
404
  }
405
405
  },
406
- "Microsoft.Extensions.Primitives/10.0.2": {
406
+ "Microsoft.Extensions.Primitives/10.0.3": {
407
407
  "runtime": {
408
408
  "lib/net10.0/Microsoft.Extensions.Primitives.dll": {
409
409
  "assemblyVersion": "10.0.0.0",
410
- "fileVersion": "10.0.225.61305"
410
+ "fileVersion": "10.0.326.7603"
411
411
  }
412
412
  }
413
413
  },
@@ -429,7 +429,7 @@
429
429
  "NuGet.Protocol": "6.14.0",
430
430
  "NuGet.Versioning": "6.14.0",
431
431
  "System.ComponentModel.Composition": "8.0.0",
432
- "System.Memory.Data": "10.0.1"
432
+ "System.Memory.Data": "10.0.3"
433
433
  },
434
434
  "runtime": {
435
435
  "lib/net10.0/Microsoft.TypeSpec.Generator.dll": {
@@ -440,9 +440,9 @@
440
440
  },
441
441
  "Microsoft.TypeSpec.Generator.ClientModel/1.0.0-alpha.20260320.2": {
442
442
  "dependencies": {
443
- "Microsoft.Extensions.Configuration.Abstractions": "10.0.2",
443
+ "Microsoft.Extensions.Configuration.Abstractions": "10.0.3",
444
444
  "Microsoft.TypeSpec.Generator": "1.0.0-alpha.20260320.2",
445
- "System.ClientModel": "1.9.0"
445
+ "System.ClientModel": "1.10.0"
446
446
  },
447
447
  "runtime": {
448
448
  "lib/net10.0/Microsoft.TypeSpec.Generator.ClientModel.dll": {
@@ -454,7 +454,7 @@
454
454
  "Microsoft.TypeSpec.Generator.Input/1.0.0-alpha.20260320.2": {
455
455
  "dependencies": {
456
456
  "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
457
- "System.Memory.Data": "10.0.1"
457
+ "System.Memory.Data": "10.0.3"
458
458
  },
459
459
  "runtime": {
460
460
  "lib/net10.0/Microsoft.TypeSpec.Generator.Input.dll": {
@@ -535,17 +535,17 @@
535
535
  }
536
536
  }
537
537
  },
538
- "System.ClientModel/1.9.0": {
538
+ "System.ClientModel/1.10.0": {
539
539
  "dependencies": {
540
- "Microsoft.Extensions.Configuration.Abstractions": "10.0.2",
541
- "Microsoft.Extensions.Hosting.Abstractions": "10.0.2",
542
- "Microsoft.Extensions.Logging.Abstractions": "10.0.2",
543
- "System.Memory.Data": "10.0.1"
540
+ "Microsoft.Extensions.Configuration.Abstractions": "10.0.3",
541
+ "Microsoft.Extensions.Hosting.Abstractions": "10.0.3",
542
+ "Microsoft.Extensions.Logging.Abstractions": "10.0.3",
543
+ "System.Memory.Data": "10.0.3"
544
544
  },
545
545
  "runtime": {
546
546
  "lib/net10.0/System.ClientModel.dll": {
547
- "assemblyVersion": "1.9.0.0",
548
- "fileVersion": "1.900.26.7706"
547
+ "assemblyVersion": "1.10.0.0",
548
+ "fileVersion": "1.1000.26.16607"
549
549
  }
550
550
  }
551
551
  },
@@ -651,11 +651,11 @@
651
651
  }
652
652
  }
653
653
  },
654
- "System.Memory.Data/10.0.1": {
654
+ "System.Memory.Data/10.0.3": {
655
655
  "runtime": {
656
656
  "lib/net10.0/System.Memory.Data.dll": {
657
- "assemblyVersion": "10.0.0.1",
658
- "fileVersion": "10.0.125.57005"
657
+ "assemblyVersion": "10.0.0.3",
658
+ "fileVersion": "10.0.326.7603"
659
659
  }
660
660
  }
661
661
  },
@@ -694,17 +694,17 @@
694
694
  }
695
695
  },
696
696
  "libraries": {
697
- "Azure.Generator.Management/1.0.0-alpha.20260324.1": {
697
+ "Azure.Generator.Management/1.0.0-alpha.20260325.2": {
698
698
  "type": "project",
699
699
  "serviceable": false,
700
700
  "sha512": ""
701
701
  },
702
- "Azure.Core/1.51.1": {
702
+ "Azure.Core/1.52.0": {
703
703
  "type": "package",
704
704
  "serviceable": true,
705
- "sha512": "sha512-JRANrRvN5O5FFRh+pMUb8qqWU7jBQ39qXEbVr7Rkb1/s7rqc6RSzVHKGBz5Ro1gDy2WSGjG5YEOJKpPIBiCMcA==",
706
- "path": "azure.core/1.51.1",
707
- "hashPath": "azure.core.1.51.1.nupkg.sha512"
705
+ "sha512": "sha512-If2gP0B4kDAwOw3kvMFs7gEounDhLyeleoWMih0xPdGAvhKpcWQwoPI3L/L0gmcQt0hrtqDnRni1jaIaxwdL7w==",
706
+ "path": "azure.core/1.52.0",
707
+ "hashPath": "azure.core.1.52.0.nupkg.sha512"
708
708
  },
709
709
  "Azure.Core.Expressions.DataFactory/1.0.0": {
710
710
  "type": "package",
@@ -741,12 +741,12 @@
741
741
  "path": "humanizer.core/3.0.1",
742
742
  "hashPath": "humanizer.core.3.0.1.nupkg.sha512"
743
743
  },
744
- "Microsoft.Bcl.AsyncInterfaces/10.0.2": {
744
+ "Microsoft.Bcl.AsyncInterfaces/10.0.3": {
745
745
  "type": "package",
746
746
  "serviceable": true,
747
- "sha512": "sha512-qE5JhRoeJbAipLqpUCZyNfNwnpAvUttXgIQDnTiJ15d8ji+/bPgoPkB3xLzK5cQTobN2D2ditUesUlDHb7p3Pg==",
748
- "path": "microsoft.bcl.asyncinterfaces/10.0.2",
749
- "hashPath": "microsoft.bcl.asyncinterfaces.10.0.2.nupkg.sha512"
747
+ "sha512": "sha512-TV62UsrJZPX6gbt3c4WrtXh7bmaDIcMqf9uft1cc4L6gJXOU07hDGEh+bFQh/L2Az0R1WVOkiT66lFqS6G2NmA==",
748
+ "path": "microsoft.bcl.asyncinterfaces/10.0.3",
749
+ "hashPath": "microsoft.bcl.asyncinterfaces.10.0.3.nupkg.sha512"
750
750
  },
751
751
  "Microsoft.Build/17.9.5": {
752
752
  "type": "package",
@@ -790,61 +790,61 @@
790
790
  "path": "microsoft.codeanalysis.workspaces.common/4.8.0",
791
791
  "hashPath": "microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512"
792
792
  },
793
- "Microsoft.Extensions.Configuration.Abstractions/10.0.2": {
793
+ "Microsoft.Extensions.Configuration.Abstractions/10.0.3": {
794
794
  "type": "package",
795
795
  "serviceable": true,
796
- "sha512": "sha512-KC5PslaTDnTuTvyke0KYAVBYdZ7IVTsU3JhHe69BpEbHLcj1YThP3bIGtZNOkZfast2AuLnul5lk4rZKxAdUGQ==",
797
- "path": "microsoft.extensions.configuration.abstractions/10.0.2",
798
- "hashPath": "microsoft.extensions.configuration.abstractions.10.0.2.nupkg.sha512"
796
+ "sha512": "sha512-xVDHL0+SIgemfh95fTO9cGLe17TWv/ZP0n7m01z8X6pzt2DmQpucioWR/mYZA1sRlkWnkXzfl0JweLNWmE9WMg==",
797
+ "path": "microsoft.extensions.configuration.abstractions/10.0.3",
798
+ "hashPath": "microsoft.extensions.configuration.abstractions.10.0.3.nupkg.sha512"
799
799
  },
800
- "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.2": {
800
+ "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.3": {
801
801
  "type": "package",
802
802
  "serviceable": true,
803
- "sha512": "sha512-zOIurr59+kUf9vNcsUkCvKWZv+fPosUZXURZesYkJCvl0EzTc9F7maAO4Cd2WEV7ZJJ0AZrFQvuH6Npph9wdBw==",
804
- "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.2",
805
- "hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.2.nupkg.sha512"
803
+ "sha512": "sha512-bwGMrRcAMWx2s/RDgja97p27rxSz2pEQW0+rX5cWAUWVETVJ/eyxGfjAl8vuG5a+lckWmPIE+vcuaZNVB5YDdw==",
804
+ "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.3",
805
+ "hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.3.nupkg.sha512"
806
806
  },
807
- "Microsoft.Extensions.Diagnostics.Abstractions/10.0.2": {
807
+ "Microsoft.Extensions.Diagnostics.Abstractions/10.0.3": {
808
808
  "type": "package",
809
809
  "serviceable": true,
810
- "sha512": "sha512-GaiaeKUuLuUbRPkUokndDuzonhO6dk4lcfGflHsCeXiJ5JrZxcyks1KuG6eB9pON16x/+9uWfa4w9g3oP8AYvQ==",
811
- "path": "microsoft.extensions.diagnostics.abstractions/10.0.2",
812
- "hashPath": "microsoft.extensions.diagnostics.abstractions.10.0.2.nupkg.sha512"
810
+ "sha512": "sha512-mQiTzAj7PIJ2A9YXR5QhgulS1fTWhmQc3ckd1Mrf3hKW07d03fBDqx8vVaFw+cRTebDOeB6pNqdWdnRxsi1hBA==",
811
+ "path": "microsoft.extensions.diagnostics.abstractions/10.0.3",
812
+ "hashPath": "microsoft.extensions.diagnostics.abstractions.10.0.3.nupkg.sha512"
813
813
  },
814
- "Microsoft.Extensions.FileProviders.Abstractions/10.0.2": {
814
+ "Microsoft.Extensions.FileProviders.Abstractions/10.0.3": {
815
815
  "type": "package",
816
816
  "serviceable": true,
817
- "sha512": "sha512-+r/eJ+slW/EmwWmH3En4gzRg1k6+yTqexoHBrMuz5fxsIKJA8MDiSGepjw/ko3XyNqg+w3dxQe+huoVXs5XDJw==",
818
- "path": "microsoft.extensions.fileproviders.abstractions/10.0.2",
819
- "hashPath": "microsoft.extensions.fileproviders.abstractions.10.0.2.nupkg.sha512"
817
+ "sha512": "sha512-4TD9AXDRsipTmaemwnjt/DM5Ri0de2JzHQhvZ4woBTjUtL4XrPNsMrOk5oiLJAx1gTrE6pOIhxv+lEde5F6CZA==",
818
+ "path": "microsoft.extensions.fileproviders.abstractions/10.0.3",
819
+ "hashPath": "microsoft.extensions.fileproviders.abstractions.10.0.3.nupkg.sha512"
820
820
  },
821
- "Microsoft.Extensions.Hosting.Abstractions/10.0.2": {
821
+ "Microsoft.Extensions.Hosting.Abstractions/10.0.3": {
822
822
  "type": "package",
823
823
  "serviceable": true,
824
- "sha512": "sha512-CeAAPVOtI/wtBcHOwq6Pw3VPdGi+pNaGHZj6vfXX/5zr8beO9SyL7IOCSQ70BauFTAFS0QF7f6zu2A6hC8D6nw==",
825
- "path": "microsoft.extensions.hosting.abstractions/10.0.2",
826
- "hashPath": "microsoft.extensions.hosting.abstractions.10.0.2.nupkg.sha512"
824
+ "sha512": "sha512-GdMpC10Jf6poxSvUJ4lgYpJ5F/kJeaAoJmrPufjBoPYyCTKKY5Dyl0rZA+LBNvFqTq1cZa/lhlptlUhNvU6xrg==",
825
+ "path": "microsoft.extensions.hosting.abstractions/10.0.3",
826
+ "hashPath": "microsoft.extensions.hosting.abstractions.10.0.3.nupkg.sha512"
827
827
  },
828
- "Microsoft.Extensions.Logging.Abstractions/10.0.2": {
828
+ "Microsoft.Extensions.Logging.Abstractions/10.0.3": {
829
829
  "type": "package",
830
830
  "serviceable": true,
831
- "sha512": "sha512-RZkez/JjpnO+MZ6efKkSynN6ZztLpw3WbxNzjLCPBd97wWj1S9ZYPWi0nmT4kWBRa6atHsdM1ydGkUr8GudyDQ==",
832
- "path": "microsoft.extensions.logging.abstractions/10.0.2",
833
- "hashPath": "microsoft.extensions.logging.abstractions.10.0.2.nupkg.sha512"
831
+ "sha512": "sha512-lxl0WLk7ROgBFAsjcOYjQ8/DVK+VMszxGBzUhgtQmAsTNldLL5pk9NG/cWTsXHq0lUhUEAtZkEE7jOGOA8bGKQ==",
832
+ "path": "microsoft.extensions.logging.abstractions/10.0.3",
833
+ "hashPath": "microsoft.extensions.logging.abstractions.10.0.3.nupkg.sha512"
834
834
  },
835
- "Microsoft.Extensions.Options/10.0.2": {
835
+ "Microsoft.Extensions.Options/10.0.3": {
836
836
  "type": "package",
837
837
  "serviceable": true,
838
- "sha512": "sha512-1De2LJjmxdqopI5AYC5dIhoZQ79AR5ayywxNF1rXrXFtKQfbQOV9+n/IsZBa7qWlr0MqoGpW8+OY2v/57udZOA==",
839
- "path": "microsoft.extensions.options/10.0.2",
840
- "hashPath": "microsoft.extensions.options.10.0.2.nupkg.sha512"
838
+ "sha512": "sha512-hU6WzGTPvPoLA2ng1ILvWQb3g0qORdlHNsxI8IcPLumJb3suimYUl+bbDzdo1V4KFsvVhnMWzysHpKbZaoDQPQ==",
839
+ "path": "microsoft.extensions.options/10.0.3",
840
+ "hashPath": "microsoft.extensions.options.10.0.3.nupkg.sha512"
841
841
  },
842
- "Microsoft.Extensions.Primitives/10.0.2": {
842
+ "Microsoft.Extensions.Primitives/10.0.3": {
843
843
  "type": "package",
844
844
  "serviceable": true,
845
- "sha512": "sha512-QmSiO+oLBEooGgB3i0GRXyeYRDHjllqt3k365jwfZlYWhvSHA3UL2NEVV5m8aZa041eIlblo6KMI5txvTMpTwA==",
846
- "path": "microsoft.extensions.primitives/10.0.2",
847
- "hashPath": "microsoft.extensions.primitives.10.0.2.nupkg.sha512"
845
+ "sha512": "sha512-GEcpTwo7sUoLGGNTqV1FZEuL+tTD9m81NX/mh099dqGNna07/UGZShKQNZRw4hv6nlliSUwYQgSYc7OR99Jufg==",
846
+ "path": "microsoft.extensions.primitives/10.0.3",
847
+ "hashPath": "microsoft.extensions.primitives.10.0.3.nupkg.sha512"
848
848
  },
849
849
  "Microsoft.NET.StringTools/17.9.5": {
850
850
  "type": "package",
@@ -923,12 +923,12 @@
923
923
  "path": "nuget.versioning/6.14.0",
924
924
  "hashPath": "nuget.versioning.6.14.0.nupkg.sha512"
925
925
  },
926
- "System.ClientModel/1.9.0": {
926
+ "System.ClientModel/1.10.0": {
927
927
  "type": "package",
928
928
  "serviceable": true,
929
- "sha512": "sha512-1wdwKtMMMEFEYsxJmtrOd3G+7zVOVO3MlVZAsbKv9H0PnIx6J27fYAarMn0eQS0vKJPQL018DOb7YRK1O97p0A==",
930
- "path": "system.clientmodel/1.9.0",
931
- "hashPath": "system.clientmodel.1.9.0.nupkg.sha512"
929
+ "sha512": "sha512-lBEWs54F5Y5pZ9hC+8z4S/X76957ex+DPk7WecRHlbIHtrPfbRMMlOgI3iDn4Jpb3bSxvBnKaaHoD59auFjlBA==",
930
+ "path": "system.clientmodel/1.10.0",
931
+ "hashPath": "system.clientmodel.1.10.0.nupkg.sha512"
932
932
  },
933
933
  "System.ComponentModel.Composition/8.0.0": {
934
934
  "type": "package",
@@ -993,12 +993,12 @@
993
993
  "path": "system.diagnostics.eventlog/8.0.0",
994
994
  "hashPath": "system.diagnostics.eventlog.8.0.0.nupkg.sha512"
995
995
  },
996
- "System.Memory.Data/10.0.1": {
996
+ "System.Memory.Data/10.0.3": {
997
997
  "type": "package",
998
998
  "serviceable": true,
999
- "sha512": "sha512-BZC4mhdL569AXV56ep9YO6ShjhxFXGP7SwVX0Bc/e0dJPWnS6aBEXZJXqh64RVx8HquqWHkJUINBydLRQ1yq0g==",
1000
- "path": "system.memory.data/10.0.1",
1001
- "hashPath": "system.memory.data.10.0.1.nupkg.sha512"
999
+ "sha512": "sha512-MaGhRfGunmrj/nHjtsi9XkhlYJ/ERGWrbA+BiSKNtGnAjc9XlG5EhAvak6VRcX5LYzPF6pBO8nJ613dTgzabig==",
1000
+ "path": "system.memory.data/10.0.3",
1001
+ "hashPath": "system.memory.data.10.0.3.nupkg.sha512"
1002
1002
  },
1003
1003
  "System.Reflection.MetadataLoadContext/8.0.0": {
1004
1004
  "type": "package",
@@ -6,9 +6,9 @@
6
6
  "compilationOptions": {},
7
7
  "targets": {
8
8
  ".NETCoreApp,Version=v10.0": {
9
- "Azure.Generator.Management/1.0.0-alpha.20260324.1": {
9
+ "Azure.Generator.Management/1.0.0-alpha.20260325.2": {
10
10
  "dependencies": {
11
- "Azure.Core": "1.51.1",
11
+ "Azure.Core": "1.52.0",
12
12
  "Azure.Generator": "1.0.0-alpha.20260320.2",
13
13
  "Azure.ResourceManager": "1.14.0",
14
14
  "Humanizer.Core": "3.0.1"
@@ -17,22 +17,22 @@
17
17
  "Azure.Generator.Management.dll": {}
18
18
  }
19
19
  },
20
- "Azure.Core/1.51.1": {
20
+ "Azure.Core/1.52.0": {
21
21
  "dependencies": {
22
- "Microsoft.Bcl.AsyncInterfaces": "10.0.2",
23
- "System.ClientModel": "1.9.0",
24
- "System.Memory.Data": "10.0.1"
22
+ "Microsoft.Bcl.AsyncInterfaces": "10.0.3",
23
+ "System.ClientModel": "1.10.0",
24
+ "System.Memory.Data": "10.0.3"
25
25
  },
26
26
  "runtime": {
27
27
  "lib/net10.0/Azure.Core.dll": {
28
- "assemblyVersion": "1.51.1.0",
29
- "fileVersion": "1.5100.126.10405"
28
+ "assemblyVersion": "1.52.0.0",
29
+ "fileVersion": "1.5200.26.17404"
30
30
  }
31
31
  }
32
32
  },
33
33
  "Azure.Core.Expressions.DataFactory/1.0.0": {
34
34
  "dependencies": {
35
- "Azure.Core": "1.51.1"
35
+ "Azure.Core": "1.52.0"
36
36
  },
37
37
  "runtime": {
38
38
  "lib/netstandard2.0/Azure.Core.Expressions.DataFactory.dll": {
@@ -43,7 +43,7 @@
43
43
  },
44
44
  "Azure.Generator/1.0.0-alpha.20260320.2": {
45
45
  "dependencies": {
46
- "Azure.Core": "1.51.1",
46
+ "Azure.Core": "1.52.0",
47
47
  "Azure.Core.Expressions.DataFactory": "1.0.0",
48
48
  "Azure.ResourceManager": "1.14.0",
49
49
  "Microsoft.TypeSpec.Generator.ClientModel": "1.0.0-alpha.20260320.2"
@@ -57,7 +57,7 @@
57
57
  },
58
58
  "Azure.ResourceManager/1.14.0": {
59
59
  "dependencies": {
60
- "Azure.Core": "1.51.1"
60
+ "Azure.Core": "1.52.0"
61
61
  },
62
62
  "runtime": {
63
63
  "lib/net10.0/Azure.ResourceManager.dll": {
@@ -82,11 +82,11 @@
82
82
  }
83
83
  }
84
84
  },
85
- "Microsoft.Bcl.AsyncInterfaces/10.0.2": {
85
+ "Microsoft.Bcl.AsyncInterfaces/10.0.3": {
86
86
  "runtime": {
87
87
  "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
88
- "assemblyVersion": "10.0.0.2",
89
- "fileVersion": "10.0.225.61305"
88
+ "assemblyVersion": "10.0.0.3",
89
+ "fileVersion": "10.0.326.7603"
90
90
  }
91
91
  }
92
92
  },
@@ -271,7 +271,7 @@
271
271
  "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": {
272
272
  "dependencies": {
273
273
  "Humanizer.Core": "3.0.1",
274
- "Microsoft.Bcl.AsyncInterfaces": "10.0.2",
274
+ "Microsoft.Bcl.AsyncInterfaces": "10.0.3",
275
275
  "Microsoft.CodeAnalysis.Common": "4.8.0",
276
276
  "System.Composition": "7.0.0"
277
277
  },
@@ -323,91 +323,91 @@
323
323
  }
324
324
  }
325
325
  },
326
- "Microsoft.Extensions.Configuration.Abstractions/10.0.2": {
326
+ "Microsoft.Extensions.Configuration.Abstractions/10.0.3": {
327
327
  "dependencies": {
328
- "Microsoft.Extensions.Primitives": "10.0.2"
328
+ "Microsoft.Extensions.Primitives": "10.0.3"
329
329
  },
330
330
  "runtime": {
331
331
  "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
332
332
  "assemblyVersion": "10.0.0.0",
333
- "fileVersion": "10.0.225.61305"
333
+ "fileVersion": "10.0.326.7603"
334
334
  }
335
335
  }
336
336
  },
337
- "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.2": {
337
+ "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.3": {
338
338
  "runtime": {
339
339
  "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
340
340
  "assemblyVersion": "10.0.0.0",
341
- "fileVersion": "10.0.225.61305"
341
+ "fileVersion": "10.0.326.7603"
342
342
  }
343
343
  }
344
344
  },
345
- "Microsoft.Extensions.Diagnostics.Abstractions/10.0.2": {
345
+ "Microsoft.Extensions.Diagnostics.Abstractions/10.0.3": {
346
346
  "dependencies": {
347
- "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.2",
348
- "Microsoft.Extensions.Options": "10.0.2"
347
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.3",
348
+ "Microsoft.Extensions.Options": "10.0.3"
349
349
  },
350
350
  "runtime": {
351
351
  "lib/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
352
352
  "assemblyVersion": "10.0.0.0",
353
- "fileVersion": "10.0.225.61305"
353
+ "fileVersion": "10.0.326.7603"
354
354
  }
355
355
  }
356
356
  },
357
- "Microsoft.Extensions.FileProviders.Abstractions/10.0.2": {
357
+ "Microsoft.Extensions.FileProviders.Abstractions/10.0.3": {
358
358
  "dependencies": {
359
- "Microsoft.Extensions.Primitives": "10.0.2"
359
+ "Microsoft.Extensions.Primitives": "10.0.3"
360
360
  },
361
361
  "runtime": {
362
362
  "lib/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
363
363
  "assemblyVersion": "10.0.0.0",
364
- "fileVersion": "10.0.225.61305"
364
+ "fileVersion": "10.0.326.7603"
365
365
  }
366
366
  }
367
367
  },
368
- "Microsoft.Extensions.Hosting.Abstractions/10.0.2": {
368
+ "Microsoft.Extensions.Hosting.Abstractions/10.0.3": {
369
369
  "dependencies": {
370
- "Microsoft.Extensions.Configuration.Abstractions": "10.0.2",
371
- "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.2",
372
- "Microsoft.Extensions.Diagnostics.Abstractions": "10.0.2",
373
- "Microsoft.Extensions.FileProviders.Abstractions": "10.0.2",
374
- "Microsoft.Extensions.Logging.Abstractions": "10.0.2"
370
+ "Microsoft.Extensions.Configuration.Abstractions": "10.0.3",
371
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.3",
372
+ "Microsoft.Extensions.Diagnostics.Abstractions": "10.0.3",
373
+ "Microsoft.Extensions.FileProviders.Abstractions": "10.0.3",
374
+ "Microsoft.Extensions.Logging.Abstractions": "10.0.3"
375
375
  },
376
376
  "runtime": {
377
377
  "lib/net10.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
378
378
  "assemblyVersion": "10.0.0.0",
379
- "fileVersion": "10.0.225.61305"
379
+ "fileVersion": "10.0.326.7603"
380
380
  }
381
381
  }
382
382
  },
383
- "Microsoft.Extensions.Logging.Abstractions/10.0.2": {
383
+ "Microsoft.Extensions.Logging.Abstractions/10.0.3": {
384
384
  "dependencies": {
385
- "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.2"
385
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.3"
386
386
  },
387
387
  "runtime": {
388
388
  "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": {
389
389
  "assemblyVersion": "10.0.0.0",
390
- "fileVersion": "10.0.225.61305"
390
+ "fileVersion": "10.0.326.7603"
391
391
  }
392
392
  }
393
393
  },
394
- "Microsoft.Extensions.Options/10.0.2": {
394
+ "Microsoft.Extensions.Options/10.0.3": {
395
395
  "dependencies": {
396
- "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.2",
397
- "Microsoft.Extensions.Primitives": "10.0.2"
396
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.3",
397
+ "Microsoft.Extensions.Primitives": "10.0.3"
398
398
  },
399
399
  "runtime": {
400
400
  "lib/net10.0/Microsoft.Extensions.Options.dll": {
401
401
  "assemblyVersion": "10.0.0.0",
402
- "fileVersion": "10.0.225.61305"
402
+ "fileVersion": "10.0.326.7603"
403
403
  }
404
404
  }
405
405
  },
406
- "Microsoft.Extensions.Primitives/10.0.2": {
406
+ "Microsoft.Extensions.Primitives/10.0.3": {
407
407
  "runtime": {
408
408
  "lib/net10.0/Microsoft.Extensions.Primitives.dll": {
409
409
  "assemblyVersion": "10.0.0.0",
410
- "fileVersion": "10.0.225.61305"
410
+ "fileVersion": "10.0.326.7603"
411
411
  }
412
412
  }
413
413
  },
@@ -429,7 +429,7 @@
429
429
  "NuGet.Protocol": "6.14.0",
430
430
  "NuGet.Versioning": "6.14.0",
431
431
  "System.ComponentModel.Composition": "8.0.0",
432
- "System.Memory.Data": "10.0.1"
432
+ "System.Memory.Data": "10.0.3"
433
433
  },
434
434
  "runtime": {
435
435
  "lib/net10.0/Microsoft.TypeSpec.Generator.dll": {
@@ -440,9 +440,9 @@
440
440
  },
441
441
  "Microsoft.TypeSpec.Generator.ClientModel/1.0.0-alpha.20260320.2": {
442
442
  "dependencies": {
443
- "Microsoft.Extensions.Configuration.Abstractions": "10.0.2",
443
+ "Microsoft.Extensions.Configuration.Abstractions": "10.0.3",
444
444
  "Microsoft.TypeSpec.Generator": "1.0.0-alpha.20260320.2",
445
- "System.ClientModel": "1.9.0"
445
+ "System.ClientModel": "1.10.0"
446
446
  },
447
447
  "runtime": {
448
448
  "lib/net10.0/Microsoft.TypeSpec.Generator.ClientModel.dll": {
@@ -454,7 +454,7 @@
454
454
  "Microsoft.TypeSpec.Generator.Input/1.0.0-alpha.20260320.2": {
455
455
  "dependencies": {
456
456
  "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0",
457
- "System.Memory.Data": "10.0.1"
457
+ "System.Memory.Data": "10.0.3"
458
458
  },
459
459
  "runtime": {
460
460
  "lib/net10.0/Microsoft.TypeSpec.Generator.Input.dll": {
@@ -535,17 +535,17 @@
535
535
  }
536
536
  }
537
537
  },
538
- "System.ClientModel/1.9.0": {
538
+ "System.ClientModel/1.10.0": {
539
539
  "dependencies": {
540
- "Microsoft.Extensions.Configuration.Abstractions": "10.0.2",
541
- "Microsoft.Extensions.Hosting.Abstractions": "10.0.2",
542
- "Microsoft.Extensions.Logging.Abstractions": "10.0.2",
543
- "System.Memory.Data": "10.0.1"
540
+ "Microsoft.Extensions.Configuration.Abstractions": "10.0.3",
541
+ "Microsoft.Extensions.Hosting.Abstractions": "10.0.3",
542
+ "Microsoft.Extensions.Logging.Abstractions": "10.0.3",
543
+ "System.Memory.Data": "10.0.3"
544
544
  },
545
545
  "runtime": {
546
546
  "lib/net10.0/System.ClientModel.dll": {
547
- "assemblyVersion": "1.9.0.0",
548
- "fileVersion": "1.900.26.7706"
547
+ "assemblyVersion": "1.10.0.0",
548
+ "fileVersion": "1.1000.26.16607"
549
549
  }
550
550
  }
551
551
  },
@@ -651,11 +651,11 @@
651
651
  }
652
652
  }
653
653
  },
654
- "System.Memory.Data/10.0.1": {
654
+ "System.Memory.Data/10.0.3": {
655
655
  "runtime": {
656
656
  "lib/net10.0/System.Memory.Data.dll": {
657
- "assemblyVersion": "10.0.0.1",
658
- "fileVersion": "10.0.125.57005"
657
+ "assemblyVersion": "10.0.0.3",
658
+ "fileVersion": "10.0.326.7603"
659
659
  }
660
660
  }
661
661
  },
@@ -694,17 +694,17 @@
694
694
  }
695
695
  },
696
696
  "libraries": {
697
- "Azure.Generator.Management/1.0.0-alpha.20260324.1": {
697
+ "Azure.Generator.Management/1.0.0-alpha.20260325.2": {
698
698
  "type": "project",
699
699
  "serviceable": false,
700
700
  "sha512": ""
701
701
  },
702
- "Azure.Core/1.51.1": {
702
+ "Azure.Core/1.52.0": {
703
703
  "type": "package",
704
704
  "serviceable": true,
705
- "sha512": "sha512-JRANrRvN5O5FFRh+pMUb8qqWU7jBQ39qXEbVr7Rkb1/s7rqc6RSzVHKGBz5Ro1gDy2WSGjG5YEOJKpPIBiCMcA==",
706
- "path": "azure.core/1.51.1",
707
- "hashPath": "azure.core.1.51.1.nupkg.sha512"
705
+ "sha512": "sha512-If2gP0B4kDAwOw3kvMFs7gEounDhLyeleoWMih0xPdGAvhKpcWQwoPI3L/L0gmcQt0hrtqDnRni1jaIaxwdL7w==",
706
+ "path": "azure.core/1.52.0",
707
+ "hashPath": "azure.core.1.52.0.nupkg.sha512"
708
708
  },
709
709
  "Azure.Core.Expressions.DataFactory/1.0.0": {
710
710
  "type": "package",
@@ -741,12 +741,12 @@
741
741
  "path": "humanizer.core/3.0.1",
742
742
  "hashPath": "humanizer.core.3.0.1.nupkg.sha512"
743
743
  },
744
- "Microsoft.Bcl.AsyncInterfaces/10.0.2": {
744
+ "Microsoft.Bcl.AsyncInterfaces/10.0.3": {
745
745
  "type": "package",
746
746
  "serviceable": true,
747
- "sha512": "sha512-qE5JhRoeJbAipLqpUCZyNfNwnpAvUttXgIQDnTiJ15d8ji+/bPgoPkB3xLzK5cQTobN2D2ditUesUlDHb7p3Pg==",
748
- "path": "microsoft.bcl.asyncinterfaces/10.0.2",
749
- "hashPath": "microsoft.bcl.asyncinterfaces.10.0.2.nupkg.sha512"
747
+ "sha512": "sha512-TV62UsrJZPX6gbt3c4WrtXh7bmaDIcMqf9uft1cc4L6gJXOU07hDGEh+bFQh/L2Az0R1WVOkiT66lFqS6G2NmA==",
748
+ "path": "microsoft.bcl.asyncinterfaces/10.0.3",
749
+ "hashPath": "microsoft.bcl.asyncinterfaces.10.0.3.nupkg.sha512"
750
750
  },
751
751
  "Microsoft.Build/17.9.5": {
752
752
  "type": "package",
@@ -790,61 +790,61 @@
790
790
  "path": "microsoft.codeanalysis.workspaces.common/4.8.0",
791
791
  "hashPath": "microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512"
792
792
  },
793
- "Microsoft.Extensions.Configuration.Abstractions/10.0.2": {
793
+ "Microsoft.Extensions.Configuration.Abstractions/10.0.3": {
794
794
  "type": "package",
795
795
  "serviceable": true,
796
- "sha512": "sha512-KC5PslaTDnTuTvyke0KYAVBYdZ7IVTsU3JhHe69BpEbHLcj1YThP3bIGtZNOkZfast2AuLnul5lk4rZKxAdUGQ==",
797
- "path": "microsoft.extensions.configuration.abstractions/10.0.2",
798
- "hashPath": "microsoft.extensions.configuration.abstractions.10.0.2.nupkg.sha512"
796
+ "sha512": "sha512-xVDHL0+SIgemfh95fTO9cGLe17TWv/ZP0n7m01z8X6pzt2DmQpucioWR/mYZA1sRlkWnkXzfl0JweLNWmE9WMg==",
797
+ "path": "microsoft.extensions.configuration.abstractions/10.0.3",
798
+ "hashPath": "microsoft.extensions.configuration.abstractions.10.0.3.nupkg.sha512"
799
799
  },
800
- "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.2": {
800
+ "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.3": {
801
801
  "type": "package",
802
802
  "serviceable": true,
803
- "sha512": "sha512-zOIurr59+kUf9vNcsUkCvKWZv+fPosUZXURZesYkJCvl0EzTc9F7maAO4Cd2WEV7ZJJ0AZrFQvuH6Npph9wdBw==",
804
- "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.2",
805
- "hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.2.nupkg.sha512"
803
+ "sha512": "sha512-bwGMrRcAMWx2s/RDgja97p27rxSz2pEQW0+rX5cWAUWVETVJ/eyxGfjAl8vuG5a+lckWmPIE+vcuaZNVB5YDdw==",
804
+ "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.3",
805
+ "hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.3.nupkg.sha512"
806
806
  },
807
- "Microsoft.Extensions.Diagnostics.Abstractions/10.0.2": {
807
+ "Microsoft.Extensions.Diagnostics.Abstractions/10.0.3": {
808
808
  "type": "package",
809
809
  "serviceable": true,
810
- "sha512": "sha512-GaiaeKUuLuUbRPkUokndDuzonhO6dk4lcfGflHsCeXiJ5JrZxcyks1KuG6eB9pON16x/+9uWfa4w9g3oP8AYvQ==",
811
- "path": "microsoft.extensions.diagnostics.abstractions/10.0.2",
812
- "hashPath": "microsoft.extensions.diagnostics.abstractions.10.0.2.nupkg.sha512"
810
+ "sha512": "sha512-mQiTzAj7PIJ2A9YXR5QhgulS1fTWhmQc3ckd1Mrf3hKW07d03fBDqx8vVaFw+cRTebDOeB6pNqdWdnRxsi1hBA==",
811
+ "path": "microsoft.extensions.diagnostics.abstractions/10.0.3",
812
+ "hashPath": "microsoft.extensions.diagnostics.abstractions.10.0.3.nupkg.sha512"
813
813
  },
814
- "Microsoft.Extensions.FileProviders.Abstractions/10.0.2": {
814
+ "Microsoft.Extensions.FileProviders.Abstractions/10.0.3": {
815
815
  "type": "package",
816
816
  "serviceable": true,
817
- "sha512": "sha512-+r/eJ+slW/EmwWmH3En4gzRg1k6+yTqexoHBrMuz5fxsIKJA8MDiSGepjw/ko3XyNqg+w3dxQe+huoVXs5XDJw==",
818
- "path": "microsoft.extensions.fileproviders.abstractions/10.0.2",
819
- "hashPath": "microsoft.extensions.fileproviders.abstractions.10.0.2.nupkg.sha512"
817
+ "sha512": "sha512-4TD9AXDRsipTmaemwnjt/DM5Ri0de2JzHQhvZ4woBTjUtL4XrPNsMrOk5oiLJAx1gTrE6pOIhxv+lEde5F6CZA==",
818
+ "path": "microsoft.extensions.fileproviders.abstractions/10.0.3",
819
+ "hashPath": "microsoft.extensions.fileproviders.abstractions.10.0.3.nupkg.sha512"
820
820
  },
821
- "Microsoft.Extensions.Hosting.Abstractions/10.0.2": {
821
+ "Microsoft.Extensions.Hosting.Abstractions/10.0.3": {
822
822
  "type": "package",
823
823
  "serviceable": true,
824
- "sha512": "sha512-CeAAPVOtI/wtBcHOwq6Pw3VPdGi+pNaGHZj6vfXX/5zr8beO9SyL7IOCSQ70BauFTAFS0QF7f6zu2A6hC8D6nw==",
825
- "path": "microsoft.extensions.hosting.abstractions/10.0.2",
826
- "hashPath": "microsoft.extensions.hosting.abstractions.10.0.2.nupkg.sha512"
824
+ "sha512": "sha512-GdMpC10Jf6poxSvUJ4lgYpJ5F/kJeaAoJmrPufjBoPYyCTKKY5Dyl0rZA+LBNvFqTq1cZa/lhlptlUhNvU6xrg==",
825
+ "path": "microsoft.extensions.hosting.abstractions/10.0.3",
826
+ "hashPath": "microsoft.extensions.hosting.abstractions.10.0.3.nupkg.sha512"
827
827
  },
828
- "Microsoft.Extensions.Logging.Abstractions/10.0.2": {
828
+ "Microsoft.Extensions.Logging.Abstractions/10.0.3": {
829
829
  "type": "package",
830
830
  "serviceable": true,
831
- "sha512": "sha512-RZkez/JjpnO+MZ6efKkSynN6ZztLpw3WbxNzjLCPBd97wWj1S9ZYPWi0nmT4kWBRa6atHsdM1ydGkUr8GudyDQ==",
832
- "path": "microsoft.extensions.logging.abstractions/10.0.2",
833
- "hashPath": "microsoft.extensions.logging.abstractions.10.0.2.nupkg.sha512"
831
+ "sha512": "sha512-lxl0WLk7ROgBFAsjcOYjQ8/DVK+VMszxGBzUhgtQmAsTNldLL5pk9NG/cWTsXHq0lUhUEAtZkEE7jOGOA8bGKQ==",
832
+ "path": "microsoft.extensions.logging.abstractions/10.0.3",
833
+ "hashPath": "microsoft.extensions.logging.abstractions.10.0.3.nupkg.sha512"
834
834
  },
835
- "Microsoft.Extensions.Options/10.0.2": {
835
+ "Microsoft.Extensions.Options/10.0.3": {
836
836
  "type": "package",
837
837
  "serviceable": true,
838
- "sha512": "sha512-1De2LJjmxdqopI5AYC5dIhoZQ79AR5ayywxNF1rXrXFtKQfbQOV9+n/IsZBa7qWlr0MqoGpW8+OY2v/57udZOA==",
839
- "path": "microsoft.extensions.options/10.0.2",
840
- "hashPath": "microsoft.extensions.options.10.0.2.nupkg.sha512"
838
+ "sha512": "sha512-hU6WzGTPvPoLA2ng1ILvWQb3g0qORdlHNsxI8IcPLumJb3suimYUl+bbDzdo1V4KFsvVhnMWzysHpKbZaoDQPQ==",
839
+ "path": "microsoft.extensions.options/10.0.3",
840
+ "hashPath": "microsoft.extensions.options.10.0.3.nupkg.sha512"
841
841
  },
842
- "Microsoft.Extensions.Primitives/10.0.2": {
842
+ "Microsoft.Extensions.Primitives/10.0.3": {
843
843
  "type": "package",
844
844
  "serviceable": true,
845
- "sha512": "sha512-QmSiO+oLBEooGgB3i0GRXyeYRDHjllqt3k365jwfZlYWhvSHA3UL2NEVV5m8aZa041eIlblo6KMI5txvTMpTwA==",
846
- "path": "microsoft.extensions.primitives/10.0.2",
847
- "hashPath": "microsoft.extensions.primitives.10.0.2.nupkg.sha512"
845
+ "sha512": "sha512-GEcpTwo7sUoLGGNTqV1FZEuL+tTD9m81NX/mh099dqGNna07/UGZShKQNZRw4hv6nlliSUwYQgSYc7OR99Jufg==",
846
+ "path": "microsoft.extensions.primitives/10.0.3",
847
+ "hashPath": "microsoft.extensions.primitives.10.0.3.nupkg.sha512"
848
848
  },
849
849
  "Microsoft.NET.StringTools/17.9.5": {
850
850
  "type": "package",
@@ -923,12 +923,12 @@
923
923
  "path": "nuget.versioning/6.14.0",
924
924
  "hashPath": "nuget.versioning.6.14.0.nupkg.sha512"
925
925
  },
926
- "System.ClientModel/1.9.0": {
926
+ "System.ClientModel/1.10.0": {
927
927
  "type": "package",
928
928
  "serviceable": true,
929
- "sha512": "sha512-1wdwKtMMMEFEYsxJmtrOd3G+7zVOVO3MlVZAsbKv9H0PnIx6J27fYAarMn0eQS0vKJPQL018DOb7YRK1O97p0A==",
930
- "path": "system.clientmodel/1.9.0",
931
- "hashPath": "system.clientmodel.1.9.0.nupkg.sha512"
929
+ "sha512": "sha512-lBEWs54F5Y5pZ9hC+8z4S/X76957ex+DPk7WecRHlbIHtrPfbRMMlOgI3iDn4Jpb3bSxvBnKaaHoD59auFjlBA==",
930
+ "path": "system.clientmodel/1.10.0",
931
+ "hashPath": "system.clientmodel.1.10.0.nupkg.sha512"
932
932
  },
933
933
  "System.ComponentModel.Composition/8.0.0": {
934
934
  "type": "package",
@@ -993,12 +993,12 @@
993
993
  "path": "system.diagnostics.eventlog/8.0.0",
994
994
  "hashPath": "system.diagnostics.eventlog.8.0.0.nupkg.sha512"
995
995
  },
996
- "System.Memory.Data/10.0.1": {
996
+ "System.Memory.Data/10.0.3": {
997
997
  "type": "package",
998
998
  "serviceable": true,
999
- "sha512": "sha512-BZC4mhdL569AXV56ep9YO6ShjhxFXGP7SwVX0Bc/e0dJPWnS6aBEXZJXqh64RVx8HquqWHkJUINBydLRQ1yq0g==",
1000
- "path": "system.memory.data/10.0.1",
1001
- "hashPath": "system.memory.data.10.0.1.nupkg.sha512"
999
+ "sha512": "sha512-MaGhRfGunmrj/nHjtsi9XkhlYJ/ERGWrbA+BiSKNtGnAjc9XlG5EhAvak6VRcX5LYzPF6pBO8nJ613dTgzabig==",
1000
+ "path": "system.memory.data/10.0.3",
1001
+ "hashPath": "system.memory.data.10.0.3.nupkg.sha512"
1002
1002
  },
1003
1003
  "System.Reflection.MetadataLoadContext/8.0.0": {
1004
1004
  "type": "package",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azure-typespec/http-client-csharp-mgmt",
3
- "version": "1.0.0-alpha.20260324.1",
3
+ "version": "1.0.0-alpha.20260325.2",
4
4
  "author": "Microsoft Corporation",
5
5
  "description": "TypeSpec library for emitting Azure management libraries for C#.",
6
6
  "readme": "https://github.com/Azure/azure-sdk-for-net/blob/main/eng/packages/http-client-csharp-mgmt/README.md",