Skip to content

Commit d90f407

Browse files
committed
Merge dotnet/main into feature/freebsd-port/outputrid
2 parents e544b0e + aaec1c4 commit d90f407

File tree

1,169 files changed

+13354
-8578
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,169 files changed

+13354
-8578
lines changed

docs/design/datacontracts/RuntimeTypeSystem.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -333,6 +333,7 @@ The contract additionally depends on these data descriptors
333333
| `FnPtrTypeDesc` | `NumArgs` | Number of arguments to the function described by the `TypeDesc` |
334334
| `FnPtrTypeDesc` | `CallConv` | Lower 8 bits is the calling convention bit as extracted by the signature that defines this `TypeDesc` |
335335
| `FnPtrTypeDesc` | `RetAndArgTypes` | Pointer to an array of TypeHandle addresses. This length of this is 1 more than `NumArgs` |
336+
| `GenericsDictInfo` | `NumDicts` | Number of instantiation dictionaries, including inherited ones, in this `GenericsDictInfo` |
336337
| `GenericsDictInfo` | `NumTypeArgs` | Number of type arguments in the type or method instantiation described by this `GenericsDictInfo` |
337338

338339

docs/tools/illink/data-formats.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ This allows to add a custom attribute to a class, interface, delegate, struct or
382382
<type fullname="Assembly.A">
383383
<field name="MyTypeField">
384384
<attribute fullname="System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute" assembly="System.Runtime">
385-
<argument>DefaultConstructor</argument>
385+
<argument type="System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes">DefaultConstructor</argument>
386386
</attribute>
387387
</field>
388388
</type>
@@ -398,7 +398,7 @@ This allows to add a custom attribute to a class, interface, delegate, struct or
398398
<type fullname="Assembly.A">
399399
<property name="MyTypeProperty">
400400
<attribute fullname="System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute" assembly="System.Runtime">
401-
<argument>DefaultConstructor</argument>
401+
<argument type="System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes">DefaultConstructor</argument>
402402
</attribute>
403403
</property>
404404
</type>
@@ -414,7 +414,7 @@ This allows to add a custom attribute to a class, interface, delegate, struct or
414414
<type fullname="Assembly.A">
415415
<event name="MyTypeEvent">
416416
<attribute fullname="CustomAttribute" assembly="AssemblyName">
417-
<argument>DefaultConstructor</argument>
417+
<argument>ArgumentValue</argument>
418418
</attribute>
419419
</event>
420420
</type>
@@ -431,21 +431,21 @@ This allows to add a custom attribute to a class, interface, delegate, struct or
431431
<method signature="System.Void Method1(System.Type)">
432432
<parameter name="typeParameter">
433433
<attribute fullname="System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute" assembly="System.Runtime">
434-
<argument>DefaultConstructor</argument>
434+
<argument type="System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes">DefaultConstructor</argument>
435435
</attribute>
436436
</parameter>
437437
</method>
438438
<method signature="System.Type Method2()">
439439
<return>
440440
<attribute fullname="System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute" assembly="System.Runtime">
441-
<argument>PublicConstructors</argument>
441+
<argument type="System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes">PublicConstructors</argument>
442442
</attribute>
443443
</return>
444444
</method>
445445
<method signature="Method3&lt;T&gt;(T)">
446446
<parameter name="genericParameter">
447447
<attribute fullname="System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute" assembly="System.Runtime">
448-
<argument>DefaultConstructor</argument>
448+
<argument type="System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes">DefaultConstructor</argument>
449449
</attribute>
450450
</parameter>
451451
</method>
@@ -463,17 +463,17 @@ This allows to add a custom attribute to a class, interface, delegate, struct or
463463
<method signature="System.Void Method1(System.Type, System.Type, System.Type)">
464464
<parameter name="typeParameter1">
465465
<attribute fullname="System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute" assembly="System.Runtime">
466-
<argument>DefaultConstructor</argument>
466+
<argument type="System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes">DefaultConstructor</argument>
467467
</attribute>
468468
</parameter>
469469
<parameter name="typeParameter2">
470470
<attribute fullname="System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute" assembly="System.Runtime">
471-
<argument>DefaultConstructor</argument>
471+
<argument type="System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes">DefaultConstructor</argument>
472472
</attribute>
473473
</parameter>
474474
<parameter name="typeParameter3">
475475
<attribute fullname="System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute" assembly="System.Runtime">
476-
<argument>PublicConstructors</argument>
476+
<argument type="System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes">PublicConstructors</argument>
477477
</attribute>
478478
</parameter>
479479
</method>
@@ -491,7 +491,7 @@ This allows to add a custom attribute to a class, interface, delegate, struct or
491491
<type name="NestedType">
492492
<property name="MyTypeField">
493493
<attribute fullname="System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute" assembly="System.Runtime">
494-
<argument>DefaultConstructor</argument>
494+
<argument type="System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes">DefaultConstructor</argument>
495495
</attribute>
496496
</property>
497497
</type>
@@ -507,7 +507,7 @@ This allows to add a custom attribute to a class, interface, delegate, struct or
507507
<assembly fullname="*">
508508
<type fullname="Namespace.SpecialAttribute">
509509
<attribute fullname="System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute" assembly="System.Runtime">
510-
<argument>DefaultConstructor</argument>
510+
<argument type="System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes">DefaultConstructor</argument>
511511
</attribute>
512512
</type>
513513
</assembly>
@@ -528,7 +528,7 @@ attributes are applied.
528528
<method signature="System.String TestMethod()">
529529
<return>
530530
<attribute fullname="System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute" assembly="System.Runtime">
531-
<argument>PublicConstructors</argument>
531+
<argument type="System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes">PublicConstructors</argument>
532532
</attribute>
533533
</return>
534534
</method>

eng/Subsets.props

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -538,14 +538,12 @@
538538
<SharedFrameworkProjectToBuild Condition="'$(RuntimeFlavor)' == '$(PrimaryRuntimeFlavor)' and '$(TargetsMobile)' != 'true'" Include="$(InstallerProjectRoot)pkg\archives\dotnet-nethost.proj" />
539539
<SharedFrameworkProjectToBuild Condition="'$(MonoCrossAOTTargetOS)' != ''" Include="$(InstallerProjectRoot)pkg\sfx\Microsoft.NETCore.App\monocrossaot.sfxproj" Pack="true" />
540540
</ItemGroup>
541-
<ItemGroup>
542-
<ProjectToBuild Include="$(CoreClrProjectRoot)tools\aot\ILCompiler\ILCompiler.csproj" Category="packs" Condition="'$(BuildNativeAotAfterPacks)' == 'true'" />
543-
<ProjectToBuild Condition="'$(NativeAotSupported)' == 'true' and '$(RuntimeFlavor)' != 'Mono' and '$(BuildOnlyPgoInstrumentedAssets)' != 'true'" Include="$(InstallerProjectRoot)\pkg\projects\nativeaot-packages.proj" Category="packs" />
544-
</ItemGroup>
545541
<ItemGroup>
546542
<SharedFrameworkProjectToBuild Condition="'$(BuildMonoAOTCrossCompilerOnly)' != 'true'" Include="$(InstallerProjectRoot)pkg\sfx\Microsoft.NETCore.App\Microsoft.NETCore.App.Runtime.sfxproj" />
547543
<SharedFrameworkProjectToBuild Condition="'$(BuildNativeAOTRuntimePack)' != 'true' and '$(RuntimeFlavor)' == '$(PrimaryRuntimeFlavor)' and '$(TargetsMobile)' != 'true'" Include="$(InstallerProjectRoot)pkg\sfx\bundle\Microsoft.NETCore.App.Bundle.bundleproj" />
548544
<ProjectToBuild Include="@(SharedFrameworkProjectToBuild)" Category="packs" />
545+
<ProjectToBuild Include="$(CoreClrProjectRoot)tools\aot\ILCompiler\ILCompiler.csproj" Category="packs" Condition="$(_subset.Contains('+clr.tools+')) and '$(TargetsMobile)' != 'true' and '$(NativeAotSupported)' == 'true' and '$(BuildNativeAotAfterPacks)' == 'true'" />
546+
<ProjectToBuild Condition="'$(NativeAotSupported)' == 'true' and '$(RuntimeFlavor)' != 'Mono' and '$(BuildOnlyPgoInstrumentedAssets)' != 'true'" Include="$(InstallerProjectRoot)\pkg\projects\nativeaot-packages.proj" Category="packs" />
549547
</ItemGroup>
550548
</When>
551549
</Choose>
@@ -589,6 +587,7 @@
589587
<AdditionalProperties Condition="'%(ProjectToBuild.Category)' == 'tools'">%(AdditionalProperties);Configuration=$(ToolsConfiguration)</AdditionalProperties>
590588

591589
<!-- Propagate configurations for cross-subset builds -->
590+
<AdditionalProperties>%(AdditionalProperties);RuntimeConfiguration=$(RuntimeConfiguration)</AdditionalProperties>
592591
<AdditionalProperties>%(AdditionalProperties);LibrariesConfiguration=$(LibrariesConfiguration)</AdditionalProperties>
593592
<AdditionalProperties>%(AdditionalProperties);HostConfiguration=$(HostConfiguration)</AdditionalProperties>
594593
<AdditionalProperties>%(AdditionalProperties);TasksConfiguration=$(TasksConfiguration)</AdditionalProperties>

eng/Version.Details.xml

Lines changed: 48 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -64,20 +64,20 @@
6464
<Sha>c667bfea9cdbc5b5493e49e7ddc8dd635a217891</Sha>
6565
<SourceBuild RepoName="cecil" ManagedOnly="true" />
6666
</Dependency>
67-
<Dependency Name="Microsoft.NET.Workload.Emscripten.Current.Manifest-9.0.100.Transport" Version="10.0.0-alpha.1.24421.1">
67+
<Dependency Name="Microsoft.NET.Workload.Emscripten.Current.Manifest-9.0.100.Transport" Version="10.0.0-alpha.1.24422.3">
6868
<Uri>https://github.com/dotnet/emsdk</Uri>
69-
<Sha>54f01aca86de85ddb252610ccd7d070d1efece7c</Sha>
69+
<Sha>9a42b800fc36b40b1c3831009137bd33accf32eb</Sha>
7070
</Dependency>
7171
<!-- Intermediate is necessary for source build. -->
72-
<Dependency Name="Microsoft.SourceBuild.Intermediate.emsdk" Version="10.0.0-alpha.1.24421.1">
72+
<Dependency Name="Microsoft.SourceBuild.Intermediate.emsdk" Version="10.0.0-alpha.1.24422.3">
7373
<Uri>https://github.com/dotnet/emsdk</Uri>
74-
<Sha>54f01aca86de85ddb252610ccd7d070d1efece7c</Sha>
74+
<Sha>9a42b800fc36b40b1c3831009137bd33accf32eb</Sha>
7575
<SourceBuild RepoName="emsdk" ManagedOnly="true" />
7676
</Dependency>
7777
<!-- Intermediate is necessary for source build. -->
78-
<Dependency Name="Microsoft.SourceBuild.Intermediate.source-build-reference-packages" Version="10.0.0-alpha.1.24419.1">
78+
<Dependency Name="Microsoft.SourceBuild.Intermediate.source-build-reference-packages" Version="10.0.0-alpha.1.24421.1">
7979
<Uri>https://github.com/dotnet/source-build-reference-packages</Uri>
80-
<Sha>c818c3cf018e7aa9fd31f6aed5d14e9b59f03e4f</Sha>
80+
<Sha>bdd698774daa248301c236f09b97015610ca2842</Sha>
8181
<SourceBuild RepoName="source-build-reference-packages" ManagedOnly="true" />
8282
</Dependency>
8383
<!-- Intermediate is necessary for source build. -->
@@ -88,87 +88,87 @@
8888
</Dependency>
8989
</ProductDependencies>
9090
<ToolsetDependencies>
91-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="9.0.0-beta.24421.7">
91+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="9.0.0-beta.24423.2">
9292
<Uri>https://github.com/dotnet/arcade</Uri>
93-
<Sha>c28c6307d0600513219bcd9ab028c0fedbe591ec</Sha>
93+
<Sha>91599268652b51969b8d8088d4f2f2ba7b3ebb19</Sha>
9494
</Dependency>
9595
<!-- Intermediate is necessary for source build. -->
96-
<Dependency Name="Microsoft.SourceBuild.Intermediate.arcade" Version="9.0.0-beta.24421.7">
96+
<Dependency Name="Microsoft.SourceBuild.Intermediate.arcade" Version="9.0.0-beta.24423.2">
9797
<Uri>https://github.com/dotnet/arcade</Uri>
98-
<Sha>c28c6307d0600513219bcd9ab028c0fedbe591ec</Sha>
98+
<Sha>91599268652b51969b8d8088d4f2f2ba7b3ebb19</Sha>
9999
<SourceBuild RepoName="arcade" ManagedOnly="true" />
100100
</Dependency>
101-
<Dependency Name="Microsoft.DotNet.XliffTasks" Version="9.0.0-beta.24421.7">
101+
<Dependency Name="Microsoft.DotNet.XliffTasks" Version="9.0.0-beta.24423.2">
102102
<Uri>https://github.com/dotnet/arcade</Uri>
103-
<Sha>c28c6307d0600513219bcd9ab028c0fedbe591ec</Sha>
103+
<Sha>91599268652b51969b8d8088d4f2f2ba7b3ebb19</Sha>
104104
</Dependency>
105-
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="9.0.0-beta.24421.7">
105+
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="9.0.0-beta.24423.2">
106106
<Uri>https://github.com/dotnet/arcade</Uri>
107-
<Sha>c28c6307d0600513219bcd9ab028c0fedbe591ec</Sha>
107+
<Sha>91599268652b51969b8d8088d4f2f2ba7b3ebb19</Sha>
108108
</Dependency>
109-
<Dependency Name="Microsoft.DotNet.GenAPI" Version="9.0.0-beta.24421.7">
109+
<Dependency Name="Microsoft.DotNet.GenAPI" Version="9.0.0-beta.24423.2">
110110
<Uri>https://github.com/dotnet/arcade</Uri>
111-
<Sha>c28c6307d0600513219bcd9ab028c0fedbe591ec</Sha>
111+
<Sha>91599268652b51969b8d8088d4f2f2ba7b3ebb19</Sha>
112112
</Dependency>
113-
<Dependency Name="Microsoft.DotNet.GenFacades" Version="9.0.0-beta.24421.7">
113+
<Dependency Name="Microsoft.DotNet.GenFacades" Version="9.0.0-beta.24423.2">
114114
<Uri>https://github.com/dotnet/arcade</Uri>
115-
<Sha>c28c6307d0600513219bcd9ab028c0fedbe591ec</Sha>
115+
<Sha>91599268652b51969b8d8088d4f2f2ba7b3ebb19</Sha>
116116
</Dependency>
117-
<Dependency Name="Microsoft.DotNet.XUnitAssert" Version="2.9.0-beta.24421.7">
117+
<Dependency Name="Microsoft.DotNet.XUnitAssert" Version="2.9.0-beta.24423.2">
118118
<Uri>https://github.com/dotnet/arcade</Uri>
119-
<Sha>c28c6307d0600513219bcd9ab028c0fedbe591ec</Sha>
119+
<Sha>91599268652b51969b8d8088d4f2f2ba7b3ebb19</Sha>
120120
</Dependency>
121-
<Dependency Name="Microsoft.DotNet.XUnitExtensions" Version="9.0.0-beta.24421.7">
121+
<Dependency Name="Microsoft.DotNet.XUnitExtensions" Version="9.0.0-beta.24423.2">
122122
<Uri>https://github.com/dotnet/arcade</Uri>
123-
<Sha>c28c6307d0600513219bcd9ab028c0fedbe591ec</Sha>
123+
<Sha>91599268652b51969b8d8088d4f2f2ba7b3ebb19</Sha>
124124
</Dependency>
125-
<Dependency Name="Microsoft.DotNet.XUnitConsoleRunner" Version="2.9.0-beta.24421.7">
125+
<Dependency Name="Microsoft.DotNet.XUnitConsoleRunner" Version="2.9.0-beta.24423.2">
126126
<Uri>https://github.com/dotnet/arcade</Uri>
127-
<Sha>c28c6307d0600513219bcd9ab028c0fedbe591ec</Sha>
127+
<Sha>91599268652b51969b8d8088d4f2f2ba7b3ebb19</Sha>
128128
</Dependency>
129-
<Dependency Name="Microsoft.DotNet.Build.Tasks.Archives" Version="9.0.0-beta.24421.7">
129+
<Dependency Name="Microsoft.DotNet.Build.Tasks.Archives" Version="9.0.0-beta.24423.2">
130130
<Uri>https://github.com/dotnet/arcade</Uri>
131-
<Sha>c28c6307d0600513219bcd9ab028c0fedbe591ec</Sha>
131+
<Sha>91599268652b51969b8d8088d4f2f2ba7b3ebb19</Sha>
132132
</Dependency>
133-
<Dependency Name="Microsoft.DotNet.Build.Tasks.Packaging" Version="9.0.0-beta.24421.7">
133+
<Dependency Name="Microsoft.DotNet.Build.Tasks.Packaging" Version="9.0.0-beta.24423.2">
134134
<Uri>https://github.com/dotnet/arcade</Uri>
135-
<Sha>c28c6307d0600513219bcd9ab028c0fedbe591ec</Sha>
135+
<Sha>91599268652b51969b8d8088d4f2f2ba7b3ebb19</Sha>
136136
</Dependency>
137-
<Dependency Name="Microsoft.DotNet.Build.Tasks.Installers" Version="9.0.0-beta.24421.7">
137+
<Dependency Name="Microsoft.DotNet.Build.Tasks.Installers" Version="9.0.0-beta.24423.2">
138138
<Uri>https://github.com/dotnet/arcade</Uri>
139-
<Sha>c28c6307d0600513219bcd9ab028c0fedbe591ec</Sha>
139+
<Sha>91599268652b51969b8d8088d4f2f2ba7b3ebb19</Sha>
140140
</Dependency>
141-
<Dependency Name="Microsoft.DotNet.Build.Tasks.Templating" Version="9.0.0-beta.24421.7">
141+
<Dependency Name="Microsoft.DotNet.Build.Tasks.Templating" Version="9.0.0-beta.24423.2">
142142
<Uri>https://github.com/dotnet/arcade</Uri>
143-
<Sha>c28c6307d0600513219bcd9ab028c0fedbe591ec</Sha>
143+
<Sha>91599268652b51969b8d8088d4f2f2ba7b3ebb19</Sha>
144144
</Dependency>
145-
<Dependency Name="Microsoft.DotNet.Build.Tasks.Workloads" Version="9.0.0-beta.24421.7">
145+
<Dependency Name="Microsoft.DotNet.Build.Tasks.Workloads" Version="9.0.0-beta.24423.2">
146146
<Uri>https://github.com/dotnet/arcade</Uri>
147-
<Sha>c28c6307d0600513219bcd9ab028c0fedbe591ec</Sha>
147+
<Sha>91599268652b51969b8d8088d4f2f2ba7b3ebb19</Sha>
148148
</Dependency>
149-
<Dependency Name="Microsoft.DotNet.CodeAnalysis" Version="9.0.0-beta.24421.7">
149+
<Dependency Name="Microsoft.DotNet.CodeAnalysis" Version="9.0.0-beta.24423.2">
150150
<Uri>https://github.com/dotnet/arcade</Uri>
151-
<Sha>c28c6307d0600513219bcd9ab028c0fedbe591ec</Sha>
151+
<Sha>91599268652b51969b8d8088d4f2f2ba7b3ebb19</Sha>
152152
</Dependency>
153-
<Dependency Name="Microsoft.DotNet.Build.Tasks.TargetFramework" Version="9.0.0-beta.24421.7">
153+
<Dependency Name="Microsoft.DotNet.Build.Tasks.TargetFramework" Version="9.0.0-beta.24423.2">
154154
<Uri>https://github.com/dotnet/arcade</Uri>
155-
<Sha>c28c6307d0600513219bcd9ab028c0fedbe591ec</Sha>
155+
<Sha>91599268652b51969b8d8088d4f2f2ba7b3ebb19</Sha>
156156
</Dependency>
157-
<Dependency Name="Microsoft.DotNet.RemoteExecutor" Version="9.0.0-beta.24421.7">
157+
<Dependency Name="Microsoft.DotNet.RemoteExecutor" Version="9.0.0-beta.24423.2">
158158
<Uri>https://github.com/dotnet/arcade</Uri>
159-
<Sha>c28c6307d0600513219bcd9ab028c0fedbe591ec</Sha>
159+
<Sha>91599268652b51969b8d8088d4f2f2ba7b3ebb19</Sha>
160160
</Dependency>
161-
<Dependency Name="Microsoft.DotNet.Build.Tasks.Feed" Version="9.0.0-beta.24421.7">
161+
<Dependency Name="Microsoft.DotNet.Build.Tasks.Feed" Version="9.0.0-beta.24423.2">
162162
<Uri>https://github.com/dotnet/arcade</Uri>
163-
<Sha>c28c6307d0600513219bcd9ab028c0fedbe591ec</Sha>
163+
<Sha>91599268652b51969b8d8088d4f2f2ba7b3ebb19</Sha>
164164
</Dependency>
165-
<Dependency Name="Microsoft.DotNet.VersionTools.Tasks" Version="9.0.0-beta.24421.7">
165+
<Dependency Name="Microsoft.DotNet.VersionTools.Tasks" Version="9.0.0-beta.24423.2">
166166
<Uri>https://github.com/dotnet/arcade</Uri>
167-
<Sha>c28c6307d0600513219bcd9ab028c0fedbe591ec</Sha>
167+
<Sha>91599268652b51969b8d8088d4f2f2ba7b3ebb19</Sha>
168168
</Dependency>
169-
<Dependency Name="Microsoft.DotNet.SharedFramework.Sdk" Version="9.0.0-beta.24421.7">
169+
<Dependency Name="Microsoft.DotNet.SharedFramework.Sdk" Version="9.0.0-beta.24423.2">
170170
<Uri>https://github.com/dotnet/arcade</Uri>
171-
<Sha>c28c6307d0600513219bcd9ab028c0fedbe591ec</Sha>
171+
<Sha>91599268652b51969b8d8088d4f2f2ba7b3ebb19</Sha>
172172
</Dependency>
173173
<Dependency Name="System.ComponentModel.TypeConverter.TestData" Version="10.0.0-beta.24419.3">
174174
<Uri>https://github.com/dotnet/runtime-assets</Uri>
@@ -328,9 +328,9 @@
328328
<Uri>https://github.com/dotnet/xharness</Uri>
329329
<Sha>69f15217657bc3a7f0102911aa967525529fdfdb</Sha>
330330
</Dependency>
331-
<Dependency Name="Microsoft.DotNet.PackageTesting" Version="9.0.0-beta.24421.7">
331+
<Dependency Name="Microsoft.DotNet.PackageTesting" Version="9.0.0-beta.24423.2">
332332
<Uri>https://github.com/dotnet/arcade</Uri>
333-
<Sha>c28c6307d0600513219bcd9ab028c0fedbe591ec</Sha>
333+
<Sha>91599268652b51969b8d8088d4f2f2ba7b3ebb19</Sha>
334334
</Dependency>
335335
<Dependency Name="optimization.windows_nt-x64.MIBC.Runtime" Version="1.0.0-prerelease.24409.2">
336336
<Uri>https://dev.azure.com/dnceng/internal/_git/dotnet-optimization</Uri>

0 commit comments

Comments
 (0)