File tree Expand file tree Collapse file tree 3 files changed +14
-1
lines changed
packages/http-client-csharp/generator
Microsoft.TypeSpec.Generator/src/Providers Expand file tree Collapse file tree 3 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,8 @@ protected override FormattableString BuildDescription()
55
55
private readonly bool _isAbstract ;
56
56
57
57
private readonly CSharpType _additionalBinaryDataPropsFieldType = typeof ( IDictionary < string , BinaryData > ) ;
58
- private readonly CSharpType _additionalPropertiesType = new CSharpType ( typeof ( object ) ) ; // TODO: Replace with AdditionalProperties when available
58
+ // TODO: Replace with typeof(System.ClientModel.Primitives.AdditionalProperties) when System.ClientModel 1.6.0-alpha.20250804.4 becomes available
59
+ private readonly CSharpType _additionalPropertiesType = new CSharpType ( typeof ( object ) ) ;
59
60
private readonly Type _additionalPropsUnknownType = typeof ( BinaryData ) ;
60
61
private readonly Lazy < TypeProvider ? > ? _baseTypeProvider ;
61
62
private FieldProvider ? _rawDataField ;
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <configuration >
3
+ <packageSources >
4
+ <clear />
5
+ <add key =" nuget.org" value =" https://api.nuget.org/v3/index.json" />
6
+ <add key =" azure-sdk-for-net" value =" https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-net/nuget/v3/index.json" />
7
+ </packageSources >
8
+ <disabledPackageSources >
9
+ <clear />
10
+ </disabledPackageSources >
11
+ </configuration >
Original file line number Diff line number Diff line change 14
14
<PackageReference Update =" NuGet.Versioning" Version =" 6.14.0" />
15
15
<PackageReference Update =" NuGet.Protocol" Version =" 6.14.0" />
16
16
<PackageReference Update =" System.ComponentModel.Composition" Version =" 8.0.0" />
17
+ <!-- TODO: Update to 1.6.0-alpha.20250804.4 when available from azure-sdk-for-net feed -->
17
18
<PackageReference Update =" System.ClientModel" Version =" 1.5.1" />
18
19
<PackageReference Update =" System.Memory.Data" Version =" 8.0.1" />
19
20
</ItemGroup >
You can’t perform that action at this time.
0 commit comments