Skip to content

Commit f1dd571

Browse files
author
Mirroring
committed
Merge commit '4b4a745fc0152b887eec20da906b98a229973313'
2 parents ed05157 + 4b4a745 commit f1dd571

File tree

67 files changed

+364
-203
lines changed

Some content is hidden

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

67 files changed

+364
-203
lines changed

.config/dotnet-tools.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
]
1616
},
1717
"microsoft.dotnet.xharness.cli": {
18-
"version": "6.0.0-prerelease.24224.2",
18+
"version": "6.0.0-prerelease.24467.2",
1919
"commands": [
2020
"xharness"
2121
]

NuGet.config

+3-6
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,10 @@
99
<clear />
1010
<!--Begin: Package sources managed by Dependency Flow automation. Do not edit the sources below.-->
1111
<!-- Begin: Package sources from dotnet-emsdk -->
12-
<add key="darc-pub-dotnet-emsdk-ec74ec8" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-emsdk-ec74ec8f/nuget/v3/index.json" />
13-
<add key="darc-pub-dotnet-emsdk-ec74ec8-5" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-emsdk-ec74ec8f-5/nuget/v3/index.json" />
14-
<add key="darc-pub-dotnet-emsdk-ec74ec8-4" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-emsdk-ec74ec8f-4/nuget/v3/index.json" />
15-
<add key="darc-pub-dotnet-emsdk-ec74ec8-3" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-emsdk-ec74ec8f-3/nuget/v3/index.json" />
16-
<add key="darc-pub-dotnet-emsdk-ec74ec8-2" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-emsdk-ec74ec8f-2/nuget/v3/index.json" />
17-
<add key="darc-pub-dotnet-emsdk-ec74ec8-1" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-emsdk-ec74ec8f-1/nuget/v3/index.json" />
1812
<add key="darc-pub-dotnet-emsdk-c68eace" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-emsdk-c68eace1/nuget/v3/index.json" />
13+
<add key="darc-pub-dotnet-emsdk-c68eace-3" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-emsdk-c68eace1-3/nuget/v3/index.json" />
14+
<add key="darc-pub-dotnet-emsdk-c68eace-2" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-emsdk-c68eace1-2/nuget/v3/index.json" />
15+
<add key="darc-pub-dotnet-emsdk-c68eace-1" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-emsdk-c68eace1-1/nuget/v3/index.json" />
1916
<!-- End: Package sources from dotnet-emsdk -->
2017
<!-- Begin: Package sources from dotnet-wcf -->
2118
<!-- End: Package sources from dotnet-wcf -->

docs/coding-guidelines/libraries-packaging.md

+8
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,14 @@ Source generators and analyzers can be included in the shared framework by speci
1818

1919
Removing a library from the shared framework is a breaking change and should be avoided.
2020

21+
### References to libraries in the shared framework that produce packages
22+
23+
It's beneficial to avoid project references to libraries that are in the shared framework because it makes the package graph smaller which reduces the number of packages that require servicing and the number of libraries that end up being copied into the application directory.
24+
25+
If a dependency is part of the shared framework a project/package reference is never required on the latest version (`NetCoreAppCurrent`). A reference is required for previous .NET versions even if the dependency is part of the shared framework if the project you are building targets .NETStandard and references the project there. You may completely avoid a package dependency on .NETStandard and .NET if it's not needed for .NETStandard (for example - if it is an implementation only dependency and you're building a PNSE assembly for .NETStandard).
26+
27+
Warning NETPKG0001 is emitted when you have an unnecessary reference to a library that is part of the shared framework. To avoid this warning, make sure your ProjectReference is conditioned so that it doesn't apply on `NetCoreAppCurrent`.
28+
2129
## Transport package
2230

2331
Transport packages are non-shipping packages that dotnet/runtime produces in order to share binaries with other repositories.

docs/project/library-servicing.md

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ Additionally, if the library is listed among the project references of [Microsof
1717

1818
When you make a change to a library & ship it during the servicing release, the `ServicingVersion` must be bumped. This property is found in the library's source project. It's also possible that the property is not in that file, in which case you'll need to add it to the library's source project and set it to 1. If the property is already present in your library's source project, just increment the servicing version by 1.
1919

20+
## Optionally ensure all up-stack packages are also produced
21+
22+
If you wish to ensure that every package that references a serviced package is also serviced itself, you can enable validation by setting `ServiceTransitiveDependencies` to true. This can be done in an individual project, or globally. When doing this then building the repo, eg: `build libs -allConfigurations` you'll see errors from any project that didn't enable servicing. Reasons for forcing packages which depend on your package to service are security servicing or removing dependencies.
23+
2024
## Test your changes
2125

2226
All that's left is to ensure that your changes have worked as expected. To do so, execute the following steps:

eng/Version.Details.xml

+70-70
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<Dependencies>
22
<ProductDependencies>
3-
<Dependency Name="Microsoft.NETCore.Runtime.ICU.Transport" Version="6.0.0-rtm.24315.1">
3+
<Dependency Name="Microsoft.NETCore.Runtime.ICU.Transport" Version="6.0.0-rtm.24510.4">
44
<Uri>https://github.com/dotnet/icu</Uri>
5-
<Sha>20d255e341e98186edf70b24aa52fdd81797cc51</Sha>
5+
<Sha>c19fc3e62ccdc92489c82d7aad8d58eca86ce166</Sha>
66
</Dependency>
77
<Dependency Name="System.Net.MsQuic.Transport" Version="6.0.0-servicing.22205.1">
88
<Uri>https://github.com/dotnet/msquic</Uri>
@@ -26,125 +26,125 @@
2626
</Dependency>
2727
</ProductDependencies>
2828
<ToolsetDependencies>
29-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="6.0.0-beta.24413.1">
29+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="6.0.0-beta.24508.2">
3030
<Uri>https://github.com/dotnet/arcade</Uri>
31-
<Sha>c3f5fe044e7115fb66c79db5e074cb341dbe21dd</Sha>
31+
<Sha>bb06ac242cf3faf5cef64127bdd11c3a4f060c06</Sha>
3232
</Dependency>
33-
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="6.0.0-beta.24413.1">
33+
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="6.0.0-beta.24508.2">
3434
<Uri>https://github.com/dotnet/arcade</Uri>
35-
<Sha>c3f5fe044e7115fb66c79db5e074cb341dbe21dd</Sha>
35+
<Sha>bb06ac242cf3faf5cef64127bdd11c3a4f060c06</Sha>
3636
</Dependency>
37-
<Dependency Name="Microsoft.DotNet.ApiCompat" Version="6.0.0-beta.24413.1">
37+
<Dependency Name="Microsoft.DotNet.ApiCompat" Version="6.0.0-beta.24508.2">
3838
<Uri>https://github.com/dotnet/arcade</Uri>
39-
<Sha>c3f5fe044e7115fb66c79db5e074cb341dbe21dd</Sha>
39+
<Sha>bb06ac242cf3faf5cef64127bdd11c3a4f060c06</Sha>
4040
</Dependency>
41-
<Dependency Name="Microsoft.DotNet.GenAPI" Version="6.0.0-beta.24413.1">
41+
<Dependency Name="Microsoft.DotNet.GenAPI" Version="6.0.0-beta.24508.2">
4242
<Uri>https://github.com/dotnet/arcade</Uri>
43-
<Sha>c3f5fe044e7115fb66c79db5e074cb341dbe21dd</Sha>
43+
<Sha>bb06ac242cf3faf5cef64127bdd11c3a4f060c06</Sha>
4444
</Dependency>
45-
<Dependency Name="Microsoft.DotNet.GenFacades" Version="6.0.0-beta.24413.1">
45+
<Dependency Name="Microsoft.DotNet.GenFacades" Version="6.0.0-beta.24508.2">
4646
<Uri>https://github.com/dotnet/arcade</Uri>
47-
<Sha>c3f5fe044e7115fb66c79db5e074cb341dbe21dd</Sha>
47+
<Sha>bb06ac242cf3faf5cef64127bdd11c3a4f060c06</Sha>
4848
</Dependency>
49-
<Dependency Name="Microsoft.DotNet.XUnitExtensions" Version="6.0.0-beta.24413.1">
49+
<Dependency Name="Microsoft.DotNet.XUnitExtensions" Version="6.0.0-beta.24508.2">
5050
<Uri>https://github.com/dotnet/arcade</Uri>
51-
<Sha>c3f5fe044e7115fb66c79db5e074cb341dbe21dd</Sha>
51+
<Sha>bb06ac242cf3faf5cef64127bdd11c3a4f060c06</Sha>
5252
</Dependency>
53-
<Dependency Name="Microsoft.DotNet.XUnitConsoleRunner" Version="2.5.1-beta.24413.1">
53+
<Dependency Name="Microsoft.DotNet.XUnitConsoleRunner" Version="2.5.1-beta.24508.2">
5454
<Uri>https://github.com/dotnet/arcade</Uri>
55-
<Sha>c3f5fe044e7115fb66c79db5e074cb341dbe21dd</Sha>
55+
<Sha>bb06ac242cf3faf5cef64127bdd11c3a4f060c06</Sha>
5656
</Dependency>
57-
<Dependency Name="Microsoft.DotNet.Build.Tasks.Archives" Version="6.0.0-beta.24413.1">
57+
<Dependency Name="Microsoft.DotNet.Build.Tasks.Archives" Version="6.0.0-beta.24508.2">
5858
<Uri>https://github.com/dotnet/arcade</Uri>
59-
<Sha>c3f5fe044e7115fb66c79db5e074cb341dbe21dd</Sha>
59+
<Sha>bb06ac242cf3faf5cef64127bdd11c3a4f060c06</Sha>
6060
</Dependency>
61-
<Dependency Name="Microsoft.DotNet.Build.Tasks.Packaging" Version="6.0.0-beta.24413.1">
61+
<Dependency Name="Microsoft.DotNet.Build.Tasks.Packaging" Version="6.0.0-beta.24508.2">
6262
<Uri>https://github.com/dotnet/arcade</Uri>
63-
<Sha>c3f5fe044e7115fb66c79db5e074cb341dbe21dd</Sha>
63+
<Sha>bb06ac242cf3faf5cef64127bdd11c3a4f060c06</Sha>
6464
</Dependency>
65-
<Dependency Name="Microsoft.DotNet.Build.Tasks.Installers" Version="6.0.0-beta.24413.1">
65+
<Dependency Name="Microsoft.DotNet.Build.Tasks.Installers" Version="6.0.0-beta.24508.2">
6666
<Uri>https://github.com/dotnet/arcade</Uri>
67-
<Sha>c3f5fe044e7115fb66c79db5e074cb341dbe21dd</Sha>
67+
<Sha>bb06ac242cf3faf5cef64127bdd11c3a4f060c06</Sha>
6868
</Dependency>
69-
<Dependency Name="Microsoft.DotNet.Build.Tasks.Templating" Version="6.0.0-beta.24413.1">
69+
<Dependency Name="Microsoft.DotNet.Build.Tasks.Templating" Version="6.0.0-beta.24508.2">
7070
<Uri>https://github.com/dotnet/arcade</Uri>
71-
<Sha>c3f5fe044e7115fb66c79db5e074cb341dbe21dd</Sha>
71+
<Sha>bb06ac242cf3faf5cef64127bdd11c3a4f060c06</Sha>
7272
</Dependency>
73-
<Dependency Name="Microsoft.DotNet.Build.Tasks.Workloads" Version="6.0.0-beta.24413.1">
73+
<Dependency Name="Microsoft.DotNet.Build.Tasks.Workloads" Version="6.0.0-beta.24508.2">
7474
<Uri>https://github.com/dotnet/arcade</Uri>
75-
<Sha>c3f5fe044e7115fb66c79db5e074cb341dbe21dd</Sha>
75+
<Sha>bb06ac242cf3faf5cef64127bdd11c3a4f060c06</Sha>
7676
</Dependency>
77-
<Dependency Name="Microsoft.DotNet.CodeAnalysis" Version="6.0.0-beta.24413.1">
77+
<Dependency Name="Microsoft.DotNet.CodeAnalysis" Version="6.0.0-beta.24508.2">
7878
<Uri>https://github.com/dotnet/arcade</Uri>
79-
<Sha>c3f5fe044e7115fb66c79db5e074cb341dbe21dd</Sha>
79+
<Sha>bb06ac242cf3faf5cef64127bdd11c3a4f060c06</Sha>
8080
</Dependency>
81-
<Dependency Name="Microsoft.DotNet.Build.Tasks.TargetFramework.Sdk" Version="6.0.0-beta.24413.1">
81+
<Dependency Name="Microsoft.DotNet.Build.Tasks.TargetFramework.Sdk" Version="6.0.0-beta.24508.2">
8282
<Uri>https://github.com/dotnet/arcade</Uri>
83-
<Sha>c3f5fe044e7115fb66c79db5e074cb341dbe21dd</Sha>
83+
<Sha>bb06ac242cf3faf5cef64127bdd11c3a4f060c06</Sha>
8484
</Dependency>
85-
<Dependency Name="Microsoft.DotNet.RemoteExecutor" Version="6.0.0-beta.24413.1">
85+
<Dependency Name="Microsoft.DotNet.RemoteExecutor" Version="6.0.0-beta.24508.2">
8686
<Uri>https://github.com/dotnet/arcade</Uri>
87-
<Sha>c3f5fe044e7115fb66c79db5e074cb341dbe21dd</Sha>
87+
<Sha>bb06ac242cf3faf5cef64127bdd11c3a4f060c06</Sha>
8888
</Dependency>
89-
<Dependency Name="Microsoft.DotNet.Build.Tasks.Feed" Version="6.0.0-beta.24413.1">
89+
<Dependency Name="Microsoft.DotNet.Build.Tasks.Feed" Version="6.0.0-beta.24508.2">
9090
<Uri>https://github.com/dotnet/arcade</Uri>
91-
<Sha>c3f5fe044e7115fb66c79db5e074cb341dbe21dd</Sha>
91+
<Sha>bb06ac242cf3faf5cef64127bdd11c3a4f060c06</Sha>
9292
</Dependency>
93-
<Dependency Name="Microsoft.DotNet.VersionTools.Tasks" Version="6.0.0-beta.24413.1">
93+
<Dependency Name="Microsoft.DotNet.VersionTools.Tasks" Version="6.0.0-beta.24508.2">
9494
<Uri>https://github.com/dotnet/arcade</Uri>
95-
<Sha>c3f5fe044e7115fb66c79db5e074cb341dbe21dd</Sha>
95+
<Sha>bb06ac242cf3faf5cef64127bdd11c3a4f060c06</Sha>
9696
</Dependency>
97-
<Dependency Name="Microsoft.DotNet.SharedFramework.Sdk" Version="6.0.0-beta.24413.1">
97+
<Dependency Name="Microsoft.DotNet.SharedFramework.Sdk" Version="6.0.0-beta.24508.2">
9898
<Uri>https://github.com/dotnet/arcade</Uri>
99-
<Sha>c3f5fe044e7115fb66c79db5e074cb341dbe21dd</Sha>
99+
<Sha>bb06ac242cf3faf5cef64127bdd11c3a4f060c06</Sha>
100100
</Dependency>
101101
<Dependency Name="Microsoft.NET.Test.Sdk" Version="16.9.0-preview-20201201-01">
102102
<Uri>https://github.com/microsoft/vstest</Uri>
103103
<Sha>140434f7109d357d0158ade9e5164a4861513965</Sha>
104104
</Dependency>
105-
<Dependency Name="System.ComponentModel.TypeConverter.TestData" Version="6.0.0-beta.24362.1">
105+
<Dependency Name="System.ComponentModel.TypeConverter.TestData" Version="6.0.0-beta.24510.5">
106106
<Uri>https://github.com/dotnet/runtime-assets</Uri>
107-
<Sha>cb15e730441643e6187521d46d19ee3cef732ca8</Sha>
107+
<Sha>6a4f81213202fee94133c3e8173afc673107fa99</Sha>
108108
</Dependency>
109-
<Dependency Name="System.Data.Common.TestData" Version="6.0.0-beta.24362.1">
109+
<Dependency Name="System.Data.Common.TestData" Version="6.0.0-beta.24510.5">
110110
<Uri>https://github.com/dotnet/runtime-assets</Uri>
111-
<Sha>cb15e730441643e6187521d46d19ee3cef732ca8</Sha>
111+
<Sha>6a4f81213202fee94133c3e8173afc673107fa99</Sha>
112112
</Dependency>
113-
<Dependency Name="System.Drawing.Common.TestData" Version="6.0.0-beta.24362.1">
113+
<Dependency Name="System.Drawing.Common.TestData" Version="6.0.0-beta.24510.5">
114114
<Uri>https://github.com/dotnet/runtime-assets</Uri>
115-
<Sha>cb15e730441643e6187521d46d19ee3cef732ca8</Sha>
115+
<Sha>6a4f81213202fee94133c3e8173afc673107fa99</Sha>
116116
</Dependency>
117-
<Dependency Name="System.IO.Compression.TestData" Version="6.0.0-beta.24362.1">
117+
<Dependency Name="System.IO.Compression.TestData" Version="6.0.0-beta.24510.5">
118118
<Uri>https://github.com/dotnet/runtime-assets</Uri>
119-
<Sha>cb15e730441643e6187521d46d19ee3cef732ca8</Sha>
119+
<Sha>6a4f81213202fee94133c3e8173afc673107fa99</Sha>
120120
</Dependency>
121-
<Dependency Name="System.IO.Packaging.TestData" Version="6.0.0-beta.24362.1">
121+
<Dependency Name="System.IO.Packaging.TestData" Version="6.0.0-beta.24510.5">
122122
<Uri>https://github.com/dotnet/runtime-assets</Uri>
123-
<Sha>cb15e730441643e6187521d46d19ee3cef732ca8</Sha>
123+
<Sha>6a4f81213202fee94133c3e8173afc673107fa99</Sha>
124124
</Dependency>
125-
<Dependency Name="System.Net.TestData" Version="6.0.0-beta.24362.1">
125+
<Dependency Name="System.Net.TestData" Version="6.0.0-beta.24510.5">
126126
<Uri>https://github.com/dotnet/runtime-assets</Uri>
127-
<Sha>cb15e730441643e6187521d46d19ee3cef732ca8</Sha>
127+
<Sha>6a4f81213202fee94133c3e8173afc673107fa99</Sha>
128128
</Dependency>
129-
<Dependency Name="System.Private.Runtime.UnicodeData" Version="6.0.0-beta.24362.1">
129+
<Dependency Name="System.Private.Runtime.UnicodeData" Version="6.0.0-beta.24510.5">
130130
<Uri>https://github.com/dotnet/runtime-assets</Uri>
131-
<Sha>cb15e730441643e6187521d46d19ee3cef732ca8</Sha>
131+
<Sha>6a4f81213202fee94133c3e8173afc673107fa99</Sha>
132132
</Dependency>
133-
<Dependency Name="System.Runtime.TimeZoneData" Version="6.0.0-beta.24362.1">
133+
<Dependency Name="System.Runtime.TimeZoneData" Version="6.0.0-beta.24510.5">
134134
<Uri>https://github.com/dotnet/runtime-assets</Uri>
135-
<Sha>cb15e730441643e6187521d46d19ee3cef732ca8</Sha>
135+
<Sha>6a4f81213202fee94133c3e8173afc673107fa99</Sha>
136136
</Dependency>
137-
<Dependency Name="System.Security.Cryptography.X509Certificates.TestData" Version="6.0.0-beta.24362.1">
137+
<Dependency Name="System.Security.Cryptography.X509Certificates.TestData" Version="6.0.0-beta.24510.5">
138138
<Uri>https://github.com/dotnet/runtime-assets</Uri>
139-
<Sha>cb15e730441643e6187521d46d19ee3cef732ca8</Sha>
139+
<Sha>6a4f81213202fee94133c3e8173afc673107fa99</Sha>
140140
</Dependency>
141-
<Dependency Name="System.Windows.Extensions.TestData" Version="6.0.0-beta.24362.1">
141+
<Dependency Name="System.Windows.Extensions.TestData" Version="6.0.0-beta.24510.5">
142142
<Uri>https://github.com/dotnet/runtime-assets</Uri>
143-
<Sha>cb15e730441643e6187521d46d19ee3cef732ca8</Sha>
143+
<Sha>6a4f81213202fee94133c3e8173afc673107fa99</Sha>
144144
</Dependency>
145-
<Dependency Name="Microsoft.DotNet.CilStrip.Sources" Version="6.0.0-beta.24362.1">
145+
<Dependency Name="Microsoft.DotNet.CilStrip.Sources" Version="6.0.0-beta.24510.5">
146146
<Uri>https://github.com/dotnet/runtime-assets</Uri>
147-
<Sha>cb15e730441643e6187521d46d19ee3cef732ca8</Sha>
147+
<Sha>6a4f81213202fee94133c3e8173afc673107fa99</Sha>
148148
</Dependency>
149149
<Dependency Name="runtime.linux-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk" Version="11.1.0-alpha.1.21416.1">
150150
<Uri>https://github.com/dotnet/llvm-project</Uri>
@@ -214,17 +214,17 @@
214214
<Uri>https://github.com/mono/linker</Uri>
215215
<Sha>c8499798a2a09639174e2f5c694d6652794cc73d</Sha>
216216
</Dependency>
217-
<Dependency Name="Microsoft.DotNet.XHarness.TestRunners.Xunit" Version="6.0.0-prerelease.24224.2">
217+
<Dependency Name="Microsoft.DotNet.XHarness.TestRunners.Xunit" Version="6.0.0-prerelease.24467.2">
218218
<Uri>https://github.com/dotnet/xharness</Uri>
219-
<Sha>d1dd9c2ce3fc0b9358d2cda64c52d052d1a612c1</Sha>
219+
<Sha>c77d400d1c31f721ad585970c4ba8586e2f86b51</Sha>
220220
</Dependency>
221-
<Dependency Name="Microsoft.DotNet.XHarness.CLI" Version="6.0.0-prerelease.24224.2">
221+
<Dependency Name="Microsoft.DotNet.XHarness.CLI" Version="6.0.0-prerelease.24467.2">
222222
<Uri>https://github.com/dotnet/xharness</Uri>
223-
<Sha>d1dd9c2ce3fc0b9358d2cda64c52d052d1a612c1</Sha>
223+
<Sha>c77d400d1c31f721ad585970c4ba8586e2f86b51</Sha>
224224
</Dependency>
225-
<Dependency Name="Microsoft.DotNet.PackageTesting" Version="6.0.0-beta.24413.1">
225+
<Dependency Name="Microsoft.DotNet.PackageTesting" Version="6.0.0-beta.24508.2">
226226
<Uri>https://github.com/dotnet/arcade</Uri>
227-
<Sha>c3f5fe044e7115fb66c79db5e074cb341dbe21dd</Sha>
227+
<Sha>bb06ac242cf3faf5cef64127bdd11c3a4f060c06</Sha>
228228
</Dependency>
229229
<Dependency Name="optimization.windows_nt-x64.MIBC.Runtime" Version="1.0.0-prerelease.21416.5">
230230
<Uri>https://dev.azure.com/dnceng/internal/_git/dotnet-optimization</Uri>
@@ -242,13 +242,13 @@
242242
<Uri>https://dev.azure.com/dnceng/internal/_git/dotnet-optimization</Uri>
243243
<Sha>d50065944d8b41d804448a7056351481d583ad3d</Sha>
244244
</Dependency>
245-
<Dependency Name="Microsoft.DotNet.HotReload.Utils.Generator.BuildTool" Version="6.0.0-alpha.0.24402.2">
245+
<Dependency Name="Microsoft.DotNet.HotReload.Utils.Generator.BuildTool" Version="6.0.0-alpha.0.24511.1">
246246
<Uri>https://github.com/dotnet/hotreload-utils</Uri>
247-
<Sha>036e630c228a06e61db385ecbe2b96ad995b0f61</Sha>
247+
<Sha>862404d0de2399be339effabad912c7f6027fc20</Sha>
248248
</Dependency>
249-
<Dependency Name="System.Runtime.Numerics.TestData" Version="6.0.0-beta.24362.1">
249+
<Dependency Name="System.Runtime.Numerics.TestData" Version="6.0.0-beta.24510.5">
250250
<Uri>https://github.com/dotnet/runtime-assets</Uri>
251-
<Sha>cb15e730441643e6187521d46d19ee3cef732ca8</Sha>
251+
<Sha>6a4f81213202fee94133c3e8173afc673107fa99</Sha>
252252
</Dependency>
253253
<Dependency Name="Microsoft.CodeAnalysis.NetAnalyzers" Version="6.0.0-rc1.21413.4">
254254
<Uri>https://github.com/dotnet/roslyn-analyzers</Uri>

0 commit comments

Comments
 (0)