Skip to content

Commit 8fca433

Browse files
authored
Merge branch 'main' into useescape
2 parents e397282 + a2f99a4 commit 8fca433

File tree

221 files changed

+3898
-4966
lines changed

Some content is hidden

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

221 files changed

+3898
-4966
lines changed

.devcontainer/scripts/onCreateCommand.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ case "$opt" in
4949
esac
5050

5151
# save the commit hash of the currently built assemblies, so developers know which version was built
52-
git rev-parse HEAD > ./artifacts/prebuild.sha
52+
git rev-parse HEAD > ./artifacts/prebuild.sha

.devcontainer/scripts/postCreateCommand.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ case "$opt" in
1111
esac
1212

1313
# reset the repo to the commit hash that was used to build the prebuilt Codespace
14-
git reset --hard $(cat ./artifacts/prebuild.sha)
14+
git reset --hard $(cat ./artifacts/prebuild.sha)

.devcontainer/wasm-multiThreaded/devcontainer.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
},
1111
"hostRequirements": {
1212
"cpus": 4,
13-
"memory": "8gb"
13+
"memory": "8gb",
14+
"storage": "40gb"
1415
},
1516

1617
"features": {
@@ -40,7 +41,7 @@
4041
"onCreateCommand": "${containerWorkspaceFolder}/.devcontainer/scripts/onCreateCommand.sh wasm-multithreaded",
4142

4243
// Use 'postCreateCommand' to run commands after the container is created.
43-
"postCreateCommand": "${containerWorkspaceFolder}/.devcontainer/scripts/postCreateCommand.sh",
44+
"postCreateCommand": "${containerWorkspaceFolder}/.devcontainer/scripts/postCreateCommand.sh wasm-multithreaded",
4445

4546
// Add the locally installed dotnet to the path to ensure that it is activated
4647
// This allows developers to just use 'dotnet build' on the command-line, and the local dotnet version will be used.

.devcontainer/wasm/devcontainer.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
},
1111
"hostRequirements": {
1212
"cpus": 4,
13-
"memory": "8gb"
13+
"memory": "8gb",
14+
"storage": "40gb"
1415
},
1516

1617
"features": {
@@ -40,7 +41,7 @@
4041
"onCreateCommand": "${containerWorkspaceFolder}/.devcontainer/scripts/onCreateCommand.sh wasm",
4142

4243
// Use 'postCreateCommand' to run commands after the container is created.
43-
"postCreateCommand": "${containerWorkspaceFolder}/.devcontainer/scripts/postCreateCommand.sh",
44+
"postCreateCommand": "${containerWorkspaceFolder}/.devcontainer/scripts/postCreateCommand.sh wasm",
4445

4546
// Add the locally installed dotnet to the path to ensure that it is activated
4647
// This allows developers to just use 'dotnet build' on the command-line, and the local dotnet version will be used.

docs/workflow/ci/pr-guide.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ To merge pull requests, you must have write permissions in the repository. If yo
1515

1616
## Pull Request Ownership
1717

18-
Every pull request will have automatically a single `area-*` label assigned. The label not only indicates the code segment which the change touches but also the owner. We maintain a list of [areas owners](area-owners.md) for all dotnet/runtime labels. They are responsible for landing pull requests in their area in a timely manner and for helping contributors with their submitted pull request. You can ask them for assistance if you need help with landing your changes.
18+
Every pull request will have automatically a single `area-*` label assigned. The label not only indicates the code segment which the change touches but also the owner. We maintain a list of [areas owners](../../area-owners.md) for all dotnet/runtime labels. They are responsible for landing pull requests in their area in a timely manner and for helping contributors with their submitted pull request. You can ask them for assistance if you need help with landing your changes.
1919

2020
If during the code review process a merge conflict occurs the area owner is responsible for its resolution. Pull requests should not be on hold due to the author's unwillingness to resolve code conflicts. GitHub makes this easier by allowing simple conflict resolution using the [conflict-editor](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/resolving-a-merge-conflict-on-github).
2121

eng/DotNetBuild.props

+10
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@
4545
<!-- Properties that control source-only build configurations should be added to the repository and guarded with DotNetBuildSourceOnly conditions.
4646
This allows to build the repository using './build.sh <args> /p:DotNetBuildSourceOnly=true'.
4747
Properties that control flags from the VMR build, and the expected output for the VMR build should be added to this file. -->
48+
49+
<!-- Enable regular Arcade publishing in VMR build -->
50+
<InnerBuildArgs Condition="'$(DotNetBuildOrchestrator)' == 'true'">$(InnerBuildArgs) $(FlagParameterPrefix)restore $(FlagParameterPrefix)build $(FlagParameterPrefix)publish</InnerBuildArgs>
51+
4852
<InnerBuildArgs>$(InnerBuildArgs) $(FlagParameterPrefix)arch $(TargetArch)</InnerBuildArgs>
4953
<InnerBuildArgs Condition="'$(DotNetBuildSourceOnly)' != 'true'">$(InnerBuildArgs) $(FlagParameterPrefix)os $(TargetOS)</InnerBuildArgs>
5054
<InnerBuildArgs Condition="'$(CrossBuild)' == 'true' or ('$(TargetArch)' != '$(_hostArch)' and '$(ShortStack)' != 'true')">$(InnerBuildArgs) $(FlagParameterPrefix)cross</InnerBuildArgs>
@@ -74,6 +78,12 @@
7478
<InnerBuildArgs Condition="'$(ContinuousIntegrationBuild)' != ''">$(InnerBuildArgs) /p:ContinuousIntegrationBuild=$(ContinuousIntegrationBuild)</InnerBuildArgs>
7579
<InnerBuildArgs Condition="'$(PortableBuild)' != ''">$(InnerBuildArgs) /p:PortableBuild=$(PortableBuild)</InnerBuildArgs>
7680
<InnerBuildArgs Condition="'$(RestoreConfigFile)' != ''">$(InnerBuildArgs) /p:RestoreConfigFile=$(RestoreConfigFile)</InnerBuildArgs>
81+
82+
<!-- Pass locations for assets and packages -->
83+
<InnerBuildArgs Condition="'$(SourceBuiltAssetsDir)' != ''">$(InnerBuildArgs) /p:SourceBuiltAssetsDir=$(SourceBuiltAssetsDir)</InnerBuildArgs>
84+
<InnerBuildArgs Condition="'$(SourceBuiltShippingPackagesDir)' != ''">$(InnerBuildArgs) /p:SourceBuiltShippingPackagesDir=$(SourceBuiltShippingPackagesDir)</InnerBuildArgs>
85+
<InnerBuildArgs Condition="'$(SourceBuiltNonShippingPackagesDir)' != ''">$(InnerBuildArgs) /p:SourceBuiltNonShippingPackagesDir=$(SourceBuiltNonShippingPackagesDir)</InnerBuildArgs>
86+
<InnerBuildArgs Condition="'$(SourceBuiltAssetManifestsDir)' != ''">$(InnerBuildArgs) /p:SourceBuiltAssetManifestsDir=$(SourceBuiltAssetManifestsDir)</InnerBuildArgs>
7787
</PropertyGroup>
7888
</Target>
7989

eng/Publishing.props

+31
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,35 @@
44
<ProducesDotNetReleaseShippingAssets>true</ProducesDotNetReleaseShippingAssets>
55
</PropertyGroup>
66

7+
<!-- Include installer archives and packages which aren't globbed by default.
8+
Don't include Symbols archive as it is already included in Arcade's Publish.proj, with correct blob path. -->
9+
<Target Name="PublishRuntimeInstallers"
10+
BeforeTargets="BeforePublish"
11+
Condition="'$(DotNetBuildRepo)' == 'true'">
12+
<!-- Retrieve runtime's runtime pack product version.
13+
Don't stabilize the package version in order to retrieve the VersionSuffix. -->
14+
<MSBuild Projects="$(RepoRoot)src/installer/pkg/sfx/Microsoft.NETCore.App/Microsoft.NETCore.App.Runtime.sfxproj"
15+
Targets="ReturnProductVersion"
16+
Properties="IsShipping=false;
17+
Crossgen2SdkOverridePropsPath=;
18+
Crossgen2SdkOverrideTargetsPath=">
19+
<Output TaskParameter="TargetOutputs" PropertyName="RuntimeRuntimePackProductVersion" />
20+
</MSBuild>
21+
22+
<ItemGroup>
23+
<InstallerToPublish Include="$(ArtifactsPackagesDir)**\*.tar.gz;
24+
$(ArtifactsPackagesDir)**\*.zip;
25+
$(ArtifactsPackagesDir)**\*.deb;
26+
$(ArtifactsPackagesDir)**\*.rpm;
27+
$(ArtifactsPackagesDir)**\*.exe;
28+
$(ArtifactsPackagesDir)**\*.msi"
29+
Exclude="$(ArtifactsPackagesDir)**\Symbols.runtime.tar.gz" />
30+
31+
<ItemsToPushToBlobFeed Include="@(InstallerToPublish)"
32+
IsShipping="$([System.String]::Copy('%(RecursiveDir)').StartsWith('Shipping'))"
33+
PublishFlatContainer="true"
34+
RelativeBlobPath="Runtime/$(RuntimeRuntimePackProductVersion)/%(Filename)%(Extension)" />
35+
</ItemGroup>
36+
</Target>
37+
738
</Project>

eng/Version.Details.xml

+42-42
Original file line numberDiff line numberDiff line change
@@ -92,87 +92,87 @@
9292
</Dependency>
9393
</ProductDependencies>
9494
<ToolsetDependencies>
95-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="9.0.0-beta.24161.5">
95+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="9.0.0-beta.24165.6">
9696
<Uri>https://github.com/dotnet/arcade</Uri>
97-
<Sha>39839f3007d9f3bbabf7a4b6a96ef5dd6be9e5ac</Sha>
97+
<Sha>ace00d8719b8d1fdfd0cc05f71bb9af216338d27</Sha>
9898
</Dependency>
9999
<!-- Intermediate is necessary for source build. -->
100-
<Dependency Name="Microsoft.SourceBuild.Intermediate.arcade" Version="9.0.0-beta.24161.5">
100+
<Dependency Name="Microsoft.SourceBuild.Intermediate.arcade" Version="9.0.0-beta.24165.6">
101101
<Uri>https://github.com/dotnet/arcade</Uri>
102-
<Sha>39839f3007d9f3bbabf7a4b6a96ef5dd6be9e5ac</Sha>
102+
<Sha>ace00d8719b8d1fdfd0cc05f71bb9af216338d27</Sha>
103103
<SourceBuild RepoName="arcade" ManagedOnly="true" />
104104
</Dependency>
105-
<Dependency Name="Microsoft.DotNet.XliffTasks" Version="9.0.0-beta.24161.5">
105+
<Dependency Name="Microsoft.DotNet.XliffTasks" Version="9.0.0-beta.24165.6">
106106
<Uri>https://github.com/dotnet/arcade</Uri>
107-
<Sha>39839f3007d9f3bbabf7a4b6a96ef5dd6be9e5ac</Sha>
107+
<Sha>ace00d8719b8d1fdfd0cc05f71bb9af216338d27</Sha>
108108
</Dependency>
109-
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="9.0.0-beta.24161.5">
109+
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="9.0.0-beta.24165.6">
110110
<Uri>https://github.com/dotnet/arcade</Uri>
111-
<Sha>39839f3007d9f3bbabf7a4b6a96ef5dd6be9e5ac</Sha>
111+
<Sha>ace00d8719b8d1fdfd0cc05f71bb9af216338d27</Sha>
112112
</Dependency>
113-
<Dependency Name="Microsoft.DotNet.GenAPI" Version="9.0.0-beta.24161.5">
113+
<Dependency Name="Microsoft.DotNet.GenAPI" Version="9.0.0-beta.24165.6">
114114
<Uri>https://github.com/dotnet/arcade</Uri>
115-
<Sha>39839f3007d9f3bbabf7a4b6a96ef5dd6be9e5ac</Sha>
115+
<Sha>ace00d8719b8d1fdfd0cc05f71bb9af216338d27</Sha>
116116
</Dependency>
117-
<Dependency Name="Microsoft.DotNet.GenFacades" Version="9.0.0-beta.24161.5">
117+
<Dependency Name="Microsoft.DotNet.GenFacades" Version="9.0.0-beta.24165.6">
118118
<Uri>https://github.com/dotnet/arcade</Uri>
119-
<Sha>39839f3007d9f3bbabf7a4b6a96ef5dd6be9e5ac</Sha>
119+
<Sha>ace00d8719b8d1fdfd0cc05f71bb9af216338d27</Sha>
120120
</Dependency>
121-
<Dependency Name="Microsoft.DotNet.XUnitAssert" Version="2.6.7-beta.24161.5">
121+
<Dependency Name="Microsoft.DotNet.XUnitAssert" Version="2.6.7-beta.24165.6">
122122
<Uri>https://github.com/dotnet/arcade</Uri>
123-
<Sha>39839f3007d9f3bbabf7a4b6a96ef5dd6be9e5ac</Sha>
123+
<Sha>ace00d8719b8d1fdfd0cc05f71bb9af216338d27</Sha>
124124
</Dependency>
125-
<Dependency Name="Microsoft.DotNet.XUnitExtensions" Version="9.0.0-beta.24161.5">
125+
<Dependency Name="Microsoft.DotNet.XUnitExtensions" Version="9.0.0-beta.24165.6">
126126
<Uri>https://github.com/dotnet/arcade</Uri>
127-
<Sha>39839f3007d9f3bbabf7a4b6a96ef5dd6be9e5ac</Sha>
127+
<Sha>ace00d8719b8d1fdfd0cc05f71bb9af216338d27</Sha>
128128
</Dependency>
129-
<Dependency Name="Microsoft.DotNet.XUnitConsoleRunner" Version="2.6.7-beta.24161.5">
129+
<Dependency Name="Microsoft.DotNet.XUnitConsoleRunner" Version="2.6.7-beta.24165.6">
130130
<Uri>https://github.com/dotnet/arcade</Uri>
131-
<Sha>39839f3007d9f3bbabf7a4b6a96ef5dd6be9e5ac</Sha>
131+
<Sha>ace00d8719b8d1fdfd0cc05f71bb9af216338d27</Sha>
132132
</Dependency>
133-
<Dependency Name="Microsoft.DotNet.Build.Tasks.Archives" Version="9.0.0-beta.24161.5">
133+
<Dependency Name="Microsoft.DotNet.Build.Tasks.Archives" Version="9.0.0-beta.24165.6">
134134
<Uri>https://github.com/dotnet/arcade</Uri>
135-
<Sha>39839f3007d9f3bbabf7a4b6a96ef5dd6be9e5ac</Sha>
135+
<Sha>ace00d8719b8d1fdfd0cc05f71bb9af216338d27</Sha>
136136
</Dependency>
137-
<Dependency Name="Microsoft.DotNet.Build.Tasks.Packaging" Version="9.0.0-beta.24161.5">
137+
<Dependency Name="Microsoft.DotNet.Build.Tasks.Packaging" Version="9.0.0-beta.24165.6">
138138
<Uri>https://github.com/dotnet/arcade</Uri>
139-
<Sha>39839f3007d9f3bbabf7a4b6a96ef5dd6be9e5ac</Sha>
139+
<Sha>ace00d8719b8d1fdfd0cc05f71bb9af216338d27</Sha>
140140
</Dependency>
141-
<Dependency Name="Microsoft.DotNet.Build.Tasks.Installers" Version="9.0.0-beta.24161.5">
141+
<Dependency Name="Microsoft.DotNet.Build.Tasks.Installers" Version="9.0.0-beta.24165.6">
142142
<Uri>https://github.com/dotnet/arcade</Uri>
143-
<Sha>39839f3007d9f3bbabf7a4b6a96ef5dd6be9e5ac</Sha>
143+
<Sha>ace00d8719b8d1fdfd0cc05f71bb9af216338d27</Sha>
144144
</Dependency>
145-
<Dependency Name="Microsoft.DotNet.Build.Tasks.Templating" Version="9.0.0-beta.24161.5">
145+
<Dependency Name="Microsoft.DotNet.Build.Tasks.Templating" Version="9.0.0-beta.24165.6">
146146
<Uri>https://github.com/dotnet/arcade</Uri>
147-
<Sha>39839f3007d9f3bbabf7a4b6a96ef5dd6be9e5ac</Sha>
147+
<Sha>ace00d8719b8d1fdfd0cc05f71bb9af216338d27</Sha>
148148
</Dependency>
149-
<Dependency Name="Microsoft.DotNet.Build.Tasks.Workloads" Version="9.0.0-beta.24161.5">
149+
<Dependency Name="Microsoft.DotNet.Build.Tasks.Workloads" Version="9.0.0-beta.24165.6">
150150
<Uri>https://github.com/dotnet/arcade</Uri>
151-
<Sha>39839f3007d9f3bbabf7a4b6a96ef5dd6be9e5ac</Sha>
151+
<Sha>ace00d8719b8d1fdfd0cc05f71bb9af216338d27</Sha>
152152
</Dependency>
153-
<Dependency Name="Microsoft.DotNet.CodeAnalysis" Version="9.0.0-beta.24161.5">
153+
<Dependency Name="Microsoft.DotNet.CodeAnalysis" Version="9.0.0-beta.24165.6">
154154
<Uri>https://github.com/dotnet/arcade</Uri>
155-
<Sha>39839f3007d9f3bbabf7a4b6a96ef5dd6be9e5ac</Sha>
155+
<Sha>ace00d8719b8d1fdfd0cc05f71bb9af216338d27</Sha>
156156
</Dependency>
157-
<Dependency Name="Microsoft.DotNet.Build.Tasks.TargetFramework" Version="9.0.0-beta.24161.5">
157+
<Dependency Name="Microsoft.DotNet.Build.Tasks.TargetFramework" Version="9.0.0-beta.24165.6">
158158
<Uri>https://github.com/dotnet/arcade</Uri>
159-
<Sha>39839f3007d9f3bbabf7a4b6a96ef5dd6be9e5ac</Sha>
159+
<Sha>ace00d8719b8d1fdfd0cc05f71bb9af216338d27</Sha>
160160
</Dependency>
161-
<Dependency Name="Microsoft.DotNet.RemoteExecutor" Version="9.0.0-beta.24161.5">
161+
<Dependency Name="Microsoft.DotNet.RemoteExecutor" Version="9.0.0-beta.24165.6">
162162
<Uri>https://github.com/dotnet/arcade</Uri>
163-
<Sha>39839f3007d9f3bbabf7a4b6a96ef5dd6be9e5ac</Sha>
163+
<Sha>ace00d8719b8d1fdfd0cc05f71bb9af216338d27</Sha>
164164
</Dependency>
165-
<Dependency Name="Microsoft.DotNet.Build.Tasks.Feed" Version="9.0.0-beta.24161.5">
165+
<Dependency Name="Microsoft.DotNet.Build.Tasks.Feed" Version="9.0.0-beta.24165.6">
166166
<Uri>https://github.com/dotnet/arcade</Uri>
167-
<Sha>39839f3007d9f3bbabf7a4b6a96ef5dd6be9e5ac</Sha>
167+
<Sha>ace00d8719b8d1fdfd0cc05f71bb9af216338d27</Sha>
168168
</Dependency>
169-
<Dependency Name="Microsoft.DotNet.VersionTools.Tasks" Version="9.0.0-beta.24161.5">
169+
<Dependency Name="Microsoft.DotNet.VersionTools.Tasks" Version="9.0.0-beta.24165.6">
170170
<Uri>https://github.com/dotnet/arcade</Uri>
171-
<Sha>39839f3007d9f3bbabf7a4b6a96ef5dd6be9e5ac</Sha>
171+
<Sha>ace00d8719b8d1fdfd0cc05f71bb9af216338d27</Sha>
172172
</Dependency>
173-
<Dependency Name="Microsoft.DotNet.SharedFramework.Sdk" Version="9.0.0-beta.24161.5">
173+
<Dependency Name="Microsoft.DotNet.SharedFramework.Sdk" Version="9.0.0-beta.24165.6">
174174
<Uri>https://github.com/dotnet/arcade</Uri>
175-
<Sha>39839f3007d9f3bbabf7a4b6a96ef5dd6be9e5ac</Sha>
175+
<Sha>ace00d8719b8d1fdfd0cc05f71bb9af216338d27</Sha>
176176
</Dependency>
177177
<Dependency Name="System.ComponentModel.TypeConverter.TestData" Version="9.0.0-beta.24161.1">
178178
<Uri>https://github.com/dotnet/runtime-assets</Uri>
@@ -332,9 +332,9 @@
332332
<Uri>https://github.com/dotnet/xharness</Uri>
333333
<Sha>134035492ed8154fc9c5a930a4ca52c422b21afb</Sha>
334334
</Dependency>
335-
<Dependency Name="Microsoft.DotNet.PackageTesting" Version="9.0.0-beta.24161.5">
335+
<Dependency Name="Microsoft.DotNet.PackageTesting" Version="9.0.0-beta.24165.6">
336336
<Uri>https://github.com/dotnet/arcade</Uri>
337-
<Sha>39839f3007d9f3bbabf7a4b6a96ef5dd6be9e5ac</Sha>
337+
<Sha>ace00d8719b8d1fdfd0cc05f71bb9af216338d27</Sha>
338338
</Dependency>
339339
<Dependency Name="optimization.windows_nt-x64.MIBC.Runtime" Version="1.0.0-prerelease.24106.4">
340340
<Uri>https://dev.azure.com/dnceng/internal/_git/dotnet-optimization</Uri>

eng/Versions.props

+16-16
Original file line numberDiff line numberDiff line change
@@ -83,22 +83,22 @@
8383
<!-- SDK dependencies -->
8484
<MicrosoftDotNetApiCompatTaskVersion>9.0.100-preview.3.24161.5</MicrosoftDotNetApiCompatTaskVersion>
8585
<!-- Arcade dependencies -->
86-
<MicrosoftDotNetBuildTasksFeedVersion>9.0.0-beta.24161.5</MicrosoftDotNetBuildTasksFeedVersion>
87-
<MicrosoftDotNetCodeAnalysisVersion>9.0.0-beta.24161.5</MicrosoftDotNetCodeAnalysisVersion>
88-
<MicrosoftDotNetGenAPIVersion>9.0.0-beta.24161.5</MicrosoftDotNetGenAPIVersion>
89-
<MicrosoftDotNetGenFacadesVersion>9.0.0-beta.24161.5</MicrosoftDotNetGenFacadesVersion>
90-
<MicrosoftDotNetXUnitAssertVersion>2.6.7-beta.24161.5</MicrosoftDotNetXUnitAssertVersion>
91-
<MicrosoftDotNetXUnitExtensionsVersion>9.0.0-beta.24161.5</MicrosoftDotNetXUnitExtensionsVersion>
92-
<MicrosoftDotNetXUnitConsoleRunnerVersion>2.6.7-beta.24161.5</MicrosoftDotNetXUnitConsoleRunnerVersion>
93-
<MicrosoftDotNetBuildTasksArchivesVersion>9.0.0-beta.24161.5</MicrosoftDotNetBuildTasksArchivesVersion>
94-
<MicrosoftDotNetBuildTasksInstallersVersion>9.0.0-beta.24161.5</MicrosoftDotNetBuildTasksInstallersVersion>
95-
<MicrosoftDotNetBuildTasksPackagingVersion>9.0.0-beta.24161.5</MicrosoftDotNetBuildTasksPackagingVersion>
96-
<MicrosoftDotNetBuildTasksTargetFrameworkVersion>9.0.0-beta.24161.5</MicrosoftDotNetBuildTasksTargetFrameworkVersion>
97-
<MicrosoftDotNetBuildTasksTemplatingVersion>9.0.0-beta.24161.5</MicrosoftDotNetBuildTasksTemplatingVersion>
98-
<MicrosoftDotNetBuildTasksWorkloadsPackageVersion>9.0.0-beta.24161.5</MicrosoftDotNetBuildTasksWorkloadsPackageVersion>
99-
<MicrosoftDotNetRemoteExecutorVersion>9.0.0-beta.24161.5</MicrosoftDotNetRemoteExecutorVersion>
100-
<MicrosoftDotNetVersionToolsTasksVersion>9.0.0-beta.24161.5</MicrosoftDotNetVersionToolsTasksVersion>
101-
<MicrosoftDotNetPackageTestingVersion>9.0.0-beta.24161.5</MicrosoftDotNetPackageTestingVersion>
86+
<MicrosoftDotNetBuildTasksFeedVersion>9.0.0-beta.24165.6</MicrosoftDotNetBuildTasksFeedVersion>
87+
<MicrosoftDotNetCodeAnalysisVersion>9.0.0-beta.24165.6</MicrosoftDotNetCodeAnalysisVersion>
88+
<MicrosoftDotNetGenAPIVersion>9.0.0-beta.24165.6</MicrosoftDotNetGenAPIVersion>
89+
<MicrosoftDotNetGenFacadesVersion>9.0.0-beta.24165.6</MicrosoftDotNetGenFacadesVersion>
90+
<MicrosoftDotNetXUnitAssertVersion>2.6.7-beta.24165.6</MicrosoftDotNetXUnitAssertVersion>
91+
<MicrosoftDotNetXUnitExtensionsVersion>9.0.0-beta.24165.6</MicrosoftDotNetXUnitExtensionsVersion>
92+
<MicrosoftDotNetXUnitConsoleRunnerVersion>2.6.7-beta.24165.6</MicrosoftDotNetXUnitConsoleRunnerVersion>
93+
<MicrosoftDotNetBuildTasksArchivesVersion>9.0.0-beta.24165.6</MicrosoftDotNetBuildTasksArchivesVersion>
94+
<MicrosoftDotNetBuildTasksInstallersVersion>9.0.0-beta.24165.6</MicrosoftDotNetBuildTasksInstallersVersion>
95+
<MicrosoftDotNetBuildTasksPackagingVersion>9.0.0-beta.24165.6</MicrosoftDotNetBuildTasksPackagingVersion>
96+
<MicrosoftDotNetBuildTasksTargetFrameworkVersion>9.0.0-beta.24165.6</MicrosoftDotNetBuildTasksTargetFrameworkVersion>
97+
<MicrosoftDotNetBuildTasksTemplatingVersion>9.0.0-beta.24165.6</MicrosoftDotNetBuildTasksTemplatingVersion>
98+
<MicrosoftDotNetBuildTasksWorkloadsPackageVersion>9.0.0-beta.24165.6</MicrosoftDotNetBuildTasksWorkloadsPackageVersion>
99+
<MicrosoftDotNetRemoteExecutorVersion>9.0.0-beta.24165.6</MicrosoftDotNetRemoteExecutorVersion>
100+
<MicrosoftDotNetVersionToolsTasksVersion>9.0.0-beta.24165.6</MicrosoftDotNetVersionToolsTasksVersion>
101+
<MicrosoftDotNetPackageTestingVersion>9.0.0-beta.24165.6</MicrosoftDotNetPackageTestingVersion>
102102
<!-- TODO: Remove pinned xunit.analyzers version: https://github.com/dotnet/runtime/issues/97088 -->
103103
<XUnitAnalyzersVersion>1.4.0</XUnitAnalyzersVersion>
104104
<!-- NuGet dependencies -->

0 commit comments

Comments
 (0)