Skip to content

Commit 6085bc6

Browse files
author
Jason Zhai
committed
Merge branch 'release/8.0.3xx' of https://github.com/dotnet/sdk into darc-release/8.0.3xx-7807fd3f-ccb2-4e11-837d-a1e4b1969a0f
2 parents 1944454 + 8ee71b9 commit 6085bc6

File tree

12 files changed

+325
-226
lines changed

12 files changed

+325
-226
lines changed

.vsts-ci-richnav.yml

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ stages:
2626
richCodeNavigationEnvironment: 'production'
2727
pool:
2828
name: $(DncEngPublicBuildPool)
29-
demands: ImageOverride -equals windows.vs2019.amd64.open
29+
demands: ImageOverride -equals windows.vs2019.amd64.open
3030
timeoutInMinutes: 180
3131
strategy:
3232
matrix:
@@ -45,6 +45,7 @@ stages:
4545
- _SignArgs: ''
4646
- _InternalRuntimeDownloadArgs: ''
4747
steps:
48+
- template: /eng/common/templates/steps/enable-internal-runtimes.yml
4849
- powershell: eng\common\build.ps1
4950
-restore
5051
-ci
@@ -65,23 +66,23 @@ stages:
6566
TestFullMSBuild: 'true'
6667
SYSTEM_ACCESSTOKEN: $(System.AccessToken)
6768

68-
- task: CopyFiles@2
69-
displayName: Gather Logs
70-
inputs:
71-
SourceFolder: '$(Build.SourcesDirectory)/artifacts'
72-
Contents: |
73-
log/$(_BuildConfig)/**/*
74-
TestResults/$(_BuildConfig)/**/*
75-
SymStore/$(_BuildConfig)/**/*
76-
TargetFolder: '$(Build.ArtifactStagingDirectory)'
77-
continueOnError: true
69+
- task: CopyFiles@2
70+
displayName: Gather Logs
71+
inputs:
72+
SourceFolder: '$(Build.SourcesDirectory)/artifacts'
73+
Contents: |
74+
log/$(_BuildConfig)/**/*
75+
TestResults/$(_BuildConfig)/**/*
76+
SymStore/$(_BuildConfig)/**/*
77+
TargetFolder: '$(Build.ArtifactStagingDirectory)'
78+
continueOnError: true
7879
condition: always()
7980

80-
- task: PublishBuildArtifacts@1
81-
displayName: Publish Logs to VSTS
82-
inputs:
83-
PathtoPublish: '$(Build.ArtifactStagingDirectory)'
84-
ArtifactName: '$(_AgentOSName)_$(Agent.JobName)_$(Build.BuildNumber)'
85-
publishLocation: Container
86-
continueOnError: true
81+
- task: PublishBuildArtifacts@1
82+
displayName: Publish Logs to VSTS
83+
inputs:
84+
PathtoPublish: '$(Build.ArtifactStagingDirectory)'
85+
ArtifactName: '$(_AgentOSName)_$(Agent.JobName)_$(Build.BuildNumber)'
86+
publishLocation: Container
87+
continueOnError: true
8788
condition: always()

.vsts-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,9 @@ variables:
3636
value: /p:OfficialBuilder=Microsoft
3737
- name: Codeql.Enabled
3838
value: true
39-
- group: DotNetBuilds storage account read tokens
4039
- name: _InternalRuntimeDownloadArgs
41-
value: /p:DotNetRuntimeSourceFeed=https://dotnetbuilds.blob.core.windows.net/internal
42-
/p:DotNetRuntimeSourceFeedKey=$(dotnetbuilds-internal-container-read-token-base64)
40+
value: /p:DotNetRuntimeSourceFeed=https://dotnetbuilds.blob.core.windows.net/internal
41+
/p:DotNetRuntimeSourceFeedKey=$(dotnetbuilds-internal-container-read-token-base64)
4342
- ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
4443
- group: DotNet-CLI-SDLValidation-Params
4544
- template: /eng/common/templates-official/variables/pool-providers.yml
@@ -115,6 +114,7 @@ extends:
115114
value: ''
116115
- template: /eng/common/templates-official/job/source-build.yml@self
117116
parameters:
117+
enableInternalSources: true
118118
platform:
119119
name: 'Managed'
120120
container: 'mcr.microsoft.com/dotnet-buildtools/prereqs:centos-stream8'

.vsts-pr.yml

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,8 @@ pr:
1818
variables:
1919
- name: teamName
2020
value: Roslyn-Project-System
21-
- name: _DotNetPublishToBlobFeed
22-
value: false
2321
- name: _CIBuild
2422
value: -restore -build -sign -pack -ci
25-
- name: _DotNetArtifactsCategory
26-
value: .NETCore
27-
- name: _DotNetValidationArtifactsCategory
28-
value: .NETCore
2923
- ${{ if or(startswith(variables['Build.SourceBranch'], 'refs/heads/release/'), startswith(variables['Build.SourceBranch'], 'refs/heads/internal/release/'), eq(variables['Build.Reason'], 'Manual')) }}:
3024
- name: PostBuildSign
3125
value: false
@@ -44,10 +38,9 @@ variables:
4438
value: /p:OfficialBuilder=Microsoft
4539
- name: Codeql.Enabled
4640
value: true
47-
- group: DotNetBuilds storage account read tokens
4841
- name: _InternalRuntimeDownloadArgs
49-
value: /p:DotNetRuntimeSourceFeed=https://dotnetbuilds.blob.core.windows.net/internal
50-
/p:DotNetRuntimeSourceFeedKey=$(dotnetbuilds-internal-container-read-token-base64)
42+
value: /p:DotNetRuntimeSourceFeed=https://dotnetbuilds.blob.core.windows.net/internal
43+
/p:DotNetRuntimeSourceFeedKey=$(dotnetbuilds-internal-container-read-token-base64)
5144
- ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
5245
- group: DotNet-CLI-SDLValidation-Params
5346
- template: /eng/common/templates/variables/pool-providers.yml
@@ -64,9 +57,9 @@ stages:
6457
name: $(DncEngInternalBuildPool)
6558
demands: ImageOverride -equals windows.vs2019.amd64
6659
steps:
67-
- publish: $(Build.SourcesDirectory)\eng\BuildConfiguration
68-
artifact: BuildConfiguration
69-
displayName: Publish Build Config
60+
- publish: $(Build.SourcesDirectory)\eng\BuildConfiguration
61+
artifact: BuildConfiguration
62+
displayName: Publish Build Config
7063
- template: /eng/build-pr.yml
7164
parameters:
7265
agentOs: Windows_NT
@@ -94,6 +87,7 @@ stages:
9487
_Test: ''
9588
- template: /eng/common/templates/job/source-build.yml
9689
parameters:
90+
enableInternalSources: true
9791
platform:
9892
name: 'Managed'
9993
container: 'mcr.microsoft.com/dotnet-buildtools/prereqs:centos-stream8'

eng/Version.Details.xml

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -82,34 +82,34 @@
8282
<Sha>d237e172b324021b97effa244af44d63d1a8bb7e</Sha>
8383
<SourceBuild RepoName="format" ManagedOnly="true" />
8484
</Dependency>
85-
<Dependency Name="Microsoft.Net.Compilers.Toolset" Version="4.10.0-3.24312.19">
85+
<Dependency Name="Microsoft.Net.Compilers.Toolset" Version="4.10.0-3.24324.8">
8686
<Uri>https://github.com/dotnet/roslyn</Uri>
87-
<Sha>771f269b3abcbbd991f05becf8fe5e991d24b0c1</Sha>
87+
<Sha>04fb39164c99c519832109f21b22630bc9246fce</Sha>
8888
<SourceBuild RepoName="roslyn" ManagedOnly="true" />
8989
</Dependency>
90-
<Dependency Name="Microsoft.CodeAnalysis" Version="4.10.0-3.24312.19">
90+
<Dependency Name="Microsoft.CodeAnalysis" Version="4.10.0-3.24324.8">
9191
<Uri>https://github.com/dotnet/roslyn</Uri>
92-
<Sha>771f269b3abcbbd991f05becf8fe5e991d24b0c1</Sha>
92+
<Sha>04fb39164c99c519832109f21b22630bc9246fce</Sha>
9393
</Dependency>
94-
<Dependency Name="Microsoft.CodeAnalysis.CSharp" Version="4.10.0-3.24312.19">
94+
<Dependency Name="Microsoft.CodeAnalysis.CSharp" Version="4.10.0-3.24324.8">
9595
<Uri>https://github.com/dotnet/roslyn</Uri>
96-
<Sha>771f269b3abcbbd991f05becf8fe5e991d24b0c1</Sha>
96+
<Sha>04fb39164c99c519832109f21b22630bc9246fce</Sha>
9797
</Dependency>
98-
<Dependency Name="Microsoft.CodeAnalysis.CSharp.CodeStyle" Version="4.10.0-3.24312.19">
98+
<Dependency Name="Microsoft.CodeAnalysis.CSharp.CodeStyle" Version="4.10.0-3.24324.8">
9999
<Uri>https://github.com/dotnet/roslyn</Uri>
100-
<Sha>771f269b3abcbbd991f05becf8fe5e991d24b0c1</Sha>
100+
<Sha>04fb39164c99c519832109f21b22630bc9246fce</Sha>
101101
</Dependency>
102-
<Dependency Name="Microsoft.CodeAnalysis.CSharp.Features" Version="4.10.0-3.24312.19">
102+
<Dependency Name="Microsoft.CodeAnalysis.CSharp.Features" Version="4.10.0-3.24324.8">
103103
<Uri>https://github.com/dotnet/roslyn</Uri>
104-
<Sha>771f269b3abcbbd991f05becf8fe5e991d24b0c1</Sha>
104+
<Sha>04fb39164c99c519832109f21b22630bc9246fce</Sha>
105105
</Dependency>
106-
<Dependency Name="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.10.0-3.24312.19">
106+
<Dependency Name="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.10.0-3.24324.8">
107107
<Uri>https://github.com/dotnet/roslyn</Uri>
108-
<Sha>771f269b3abcbbd991f05becf8fe5e991d24b0c1</Sha>
108+
<Sha>04fb39164c99c519832109f21b22630bc9246fce</Sha>
109109
</Dependency>
110-
<Dependency Name="Microsoft.CodeAnalysis.Workspaces.MSBuild" Version="4.10.0-3.24312.19">
110+
<Dependency Name="Microsoft.CodeAnalysis.Workspaces.MSBuild" Version="4.10.0-3.24324.8">
111111
<Uri>https://github.com/dotnet/roslyn</Uri>
112-
<Sha>771f269b3abcbbd991f05becf8fe5e991d24b0c1</Sha>
112+
<Sha>04fb39164c99c519832109f21b22630bc9246fce</Sha>
113113
</Dependency>
114114
<Dependency Name="Microsoft.AspNetCore.DeveloperCertificates.XPlat" Version="8.0.5-servicing.24224.4">
115115
<Uri>https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore</Uri>
@@ -187,18 +187,18 @@
187187
<Uri>https://github.com/nuget/nuget.client</Uri>
188188
<Sha>fb50d1a45ed10b39b5f335bc3a4bdcaea9b951cf</Sha>
189189
</Dependency>
190-
<Dependency Name="Microsoft.NET.Test.Sdk" Version="17.10.0-release-24272-11">
190+
<Dependency Name="Microsoft.NET.Test.Sdk" Version="17.10.0-release-24317-02">
191191
<Uri>https://github.com/microsoft/vstest</Uri>
192-
<Sha>83d73f783bf54c336d1eab04a53d554f8a6c0b19</Sha>
192+
<Sha>c4d80397805bec06b354d20aeb1773e243c6add0</Sha>
193193
<SourceBuild RepoName="vstest" ManagedOnly="true" />
194194
</Dependency>
195-
<Dependency Name="Microsoft.TestPlatform.CLI" Version="17.10.0-release-24272-11">
195+
<Dependency Name="Microsoft.TestPlatform.CLI" Version="17.10.0-release-24317-02">
196196
<Uri>https://github.com/microsoft/vstest</Uri>
197-
<Sha>83d73f783bf54c336d1eab04a53d554f8a6c0b19</Sha>
197+
<Sha>c4d80397805bec06b354d20aeb1773e243c6add0</Sha>
198198
</Dependency>
199-
<Dependency Name="Microsoft.TestPlatform.Build" Version="17.10.0-release-24272-11">
199+
<Dependency Name="Microsoft.TestPlatform.Build" Version="17.10.0-release-24317-02">
200200
<Uri>https://github.com/microsoft/vstest</Uri>
201-
<Sha>83d73f783bf54c336d1eab04a53d554f8a6c0b19</Sha>
201+
<Sha>c4d80397805bec06b354d20aeb1773e243c6add0</Sha>
202202
</Dependency>
203203
<Dependency Name="Microsoft.NET.ILLink.Tasks" Version="8.0.5">
204204
<Uri>https://dev.azure.com/dnceng/internal/_git/dotnet-runtime</Uri>
@@ -285,18 +285,18 @@
285285
<Uri>https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore</Uri>
286286
<Sha>c9e3996173cec136bc2e9f3b4ec45f2a323b1d63</Sha>
287287
</Dependency>
288-
<Dependency Name="Microsoft.CodeAnalysis.Razor.Tooling.Internal" Version="7.0.0-preview.24312.2">
288+
<Dependency Name="Microsoft.CodeAnalysis.Razor.Tooling.Internal" Version="7.0.0-preview.24326.2">
289289
<Uri>https://github.com/dotnet/razor</Uri>
290-
<Sha>c0bfb39f2018d2c077798ac992c799929df1453f</Sha>
290+
<Sha>6f2caf542643b6c72369e41172572015d8f48311</Sha>
291291
<SourceBuild RepoName="razor" ManagedOnly="true" />
292292
</Dependency>
293-
<Dependency Name="Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal" Version="7.0.0-preview.24312.2">
293+
<Dependency Name="Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal" Version="7.0.0-preview.24326.2">
294294
<Uri>https://github.com/dotnet/razor</Uri>
295-
<Sha>c0bfb39f2018d2c077798ac992c799929df1453f</Sha>
295+
<Sha>6f2caf542643b6c72369e41172572015d8f48311</Sha>
296296
</Dependency>
297-
<Dependency Name="Microsoft.NET.Sdk.Razor.SourceGenerators.Transport" Version="7.0.0-preview.24312.2">
297+
<Dependency Name="Microsoft.NET.Sdk.Razor.SourceGenerators.Transport" Version="7.0.0-preview.24326.2">
298298
<Uri>https://github.com/dotnet/razor</Uri>
299-
<Sha>c0bfb39f2018d2c077798ac992c799929df1453f</Sha>
299+
<Sha>6f2caf542643b6c72369e41172572015d8f48311</Sha>
300300
</Dependency>
301301
<Dependency Name="Microsoft.Extensions.FileProviders.Embedded" Version="8.0.5">
302302
<Uri>https://dev.azure.com/dnceng/internal/_git/dotnet-aspnetcore</Uri>
@@ -483,22 +483,22 @@
483483
</Dependency>
484484
</ProductDependencies>
485485
<ToolsetDependencies>
486-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="8.0.0-beta.24328.2">
486+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="8.0.0-beta.24352.1">
487487
<Uri>https://github.com/dotnet/arcade</Uri>
488-
<Sha>761c516b64fee3941d8909d24205ced835eed83e</Sha>
488+
<Sha>8b879da4e449c48d99f3f642fc429379a64e8fe8</Sha>
489489
<SourceBuild RepoName="arcade" ManagedOnly="true" />
490490
</Dependency>
491-
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="8.0.0-beta.24328.2">
491+
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="8.0.0-beta.24352.1">
492492
<Uri>https://github.com/dotnet/arcade</Uri>
493-
<Sha>761c516b64fee3941d8909d24205ced835eed83e</Sha>
493+
<Sha>8b879da4e449c48d99f3f642fc429379a64e8fe8</Sha>
494494
</Dependency>
495-
<Dependency Name="Microsoft.DotNet.SignTool" Version="8.0.0-beta.24328.2">
495+
<Dependency Name="Microsoft.DotNet.SignTool" Version="8.0.0-beta.24352.1">
496496
<Uri>https://github.com/dotnet/arcade</Uri>
497-
<Sha>761c516b64fee3941d8909d24205ced835eed83e</Sha>
497+
<Sha>8b879da4e449c48d99f3f642fc429379a64e8fe8</Sha>
498498
</Dependency>
499-
<Dependency Name="Microsoft.DotNet.XUnitExtensions" Version="8.0.0-beta.24328.2">
499+
<Dependency Name="Microsoft.DotNet.XUnitExtensions" Version="8.0.0-beta.24352.1">
500500
<Uri>https://github.com/dotnet/arcade</Uri>
501-
<Sha>761c516b64fee3941d8909d24205ced835eed83e</Sha>
501+
<Sha>8b879da4e449c48d99f3f642fc429379a64e8fe8</Sha>
502502
</Dependency>
503503
<Dependency Name="System.Reflection.MetadataLoadContext" Version="8.0.0">
504504
<Uri>https://dev.azure.com/dnceng/internal/_git/dotnet-runtime</Uri>

eng/Versions.props

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</PropertyGroup>
1212
<!-- Repo Version Information -->
1313
<PropertyGroup>
14-
<VersionPrefix>8.0.303</VersionPrefix>
14+
<VersionPrefix>8.0.304</VersionPrefix>
1515
<WorkloadsFeatureBand>8.0.300</WorkloadsFeatureBand>
1616
<!-- Enable to remove prerelease label. -->
1717
<StabilizePackageVersion Condition="'$(StabilizePackageVersion)' == ''">true</StabilizePackageVersion>
@@ -35,7 +35,7 @@
3535
<SystemCollectionsImmutablePackageVersion>7.0.0</SystemCollectionsImmutablePackageVersion>
3636
<SystemDiagnosticsFileVersionInfoVersion>4.0.0</SystemDiagnosticsFileVersionInfoVersion>
3737
<SystemReflectionMetadataVersion>7.0.0</SystemReflectionMetadataVersion>
38-
<MicrosoftDotNetSignToolVersion>8.0.0-beta.24328.2</MicrosoftDotNetSignToolVersion>
38+
<MicrosoftDotNetSignToolVersion>8.0.0-beta.24352.1</MicrosoftDotNetSignToolVersion>
3939
<MicrosoftWebXdtPackageVersion>7.0.0-preview.22423.2</MicrosoftWebXdtPackageVersion>
4040
<SystemSecurityCryptographyProtectedDataPackageVersion>8.0.0</SystemSecurityCryptographyProtectedDataPackageVersion>
4141
<SystemCollectionsSpecializedPackageVersion>4.3.0</SystemCollectionsSpecializedPackageVersion>
@@ -100,9 +100,9 @@
100100
</PropertyGroup>
101101
<PropertyGroup>
102102
<!-- Dependencies from https://github.com/Microsoft/vstest -->
103-
<MicrosoftNETTestSdkPackageVersion>17.10.0-release-24272-11</MicrosoftNETTestSdkPackageVersion>
104-
<MicrosoftTestPlatformCLIPackageVersion>17.10.0-release-24272-11</MicrosoftTestPlatformCLIPackageVersion>
105-
<MicrosoftTestPlatformBuildPackageVersion>17.10.0-release-24272-11</MicrosoftTestPlatformBuildPackageVersion>
103+
<MicrosoftNETTestSdkPackageVersion>17.10.0-release-24317-02</MicrosoftNETTestSdkPackageVersion>
104+
<MicrosoftTestPlatformCLIPackageVersion>17.10.0-release-24317-02</MicrosoftTestPlatformCLIPackageVersion>
105+
<MicrosoftTestPlatformBuildPackageVersion>17.10.0-release-24317-02</MicrosoftTestPlatformBuildPackageVersion>
106106
</PropertyGroup>
107107
<PropertyGroup>
108108
<!-- Dependencies from https://github.com/dotnet/runtime -->
@@ -155,13 +155,13 @@
155155
</PropertyGroup>
156156
<PropertyGroup>
157157
<!-- Dependencies from https://github.com/dotnet/roslyn -->
158-
<MicrosoftNetCompilersToolsetPackageVersion>4.10.0-3.24312.19</MicrosoftNetCompilersToolsetPackageVersion>
159-
<MicrosoftCodeAnalysisPackageVersion>4.10.0-3.24312.19</MicrosoftCodeAnalysisPackageVersion>
160-
<MicrosoftCodeAnalysisCSharpPackageVersion>4.10.0-3.24312.19</MicrosoftCodeAnalysisCSharpPackageVersion>
161-
<MicrosoftCodeAnalysisCSharpCodeStylePackageVersion>4.10.0-3.24312.19</MicrosoftCodeAnalysisCSharpCodeStylePackageVersion>
162-
<MicrosoftCodeAnalysisCSharpFeaturesPackageVersion>4.10.0-3.24312.19</MicrosoftCodeAnalysisCSharpFeaturesPackageVersion>
163-
<MicrosoftCodeAnalysisWorkspacesMSBuildPackageVersion>4.10.0-3.24312.19</MicrosoftCodeAnalysisWorkspacesMSBuildPackageVersion>
164-
<MicrosoftCodeAnalysisCSharpWorkspacesPackageVersion>4.10.0-3.24312.19</MicrosoftCodeAnalysisCSharpWorkspacesPackageVersion>
158+
<MicrosoftNetCompilersToolsetPackageVersion>4.10.0-3.24324.8</MicrosoftNetCompilersToolsetPackageVersion>
159+
<MicrosoftCodeAnalysisPackageVersion>4.10.0-3.24324.8</MicrosoftCodeAnalysisPackageVersion>
160+
<MicrosoftCodeAnalysisCSharpPackageVersion>4.10.0-3.24324.8</MicrosoftCodeAnalysisCSharpPackageVersion>
161+
<MicrosoftCodeAnalysisCSharpCodeStylePackageVersion>4.10.0-3.24324.8</MicrosoftCodeAnalysisCSharpCodeStylePackageVersion>
162+
<MicrosoftCodeAnalysisCSharpFeaturesPackageVersion>4.10.0-3.24324.8</MicrosoftCodeAnalysisCSharpFeaturesPackageVersion>
163+
<MicrosoftCodeAnalysisWorkspacesMSBuildPackageVersion>4.10.0-3.24324.8</MicrosoftCodeAnalysisWorkspacesMSBuildPackageVersion>
164+
<MicrosoftCodeAnalysisCSharpWorkspacesPackageVersion>4.10.0-3.24324.8</MicrosoftCodeAnalysisCSharpWorkspacesPackageVersion>
165165
<MicrosoftNetCompilersToolsetVersion>$(MicrosoftNetCompilersToolsetPackageVersion)</MicrosoftNetCompilersToolsetVersion>
166166
</PropertyGroup>
167167
<PropertyGroup>
@@ -176,9 +176,9 @@
176176
</PropertyGroup>
177177
<!-- Dependencies from https://github.com/dotnet/razor -->
178178
<PropertyGroup>
179-
<MicrosoftAspNetCoreMvcRazorExtensionsToolingInternalPackageVersion>7.0.0-preview.24312.2</MicrosoftAspNetCoreMvcRazorExtensionsToolingInternalPackageVersion>
180-
<MicrosoftCodeAnalysisRazorToolingInternalVersion>7.0.0-preview.24312.2</MicrosoftCodeAnalysisRazorToolingInternalVersion>
181-
<MicrosoftNETSdkRazorSourceGeneratorsTransportPackageVersion>7.0.0-preview.24312.2</MicrosoftNETSdkRazorSourceGeneratorsTransportPackageVersion>
179+
<MicrosoftAspNetCoreMvcRazorExtensionsToolingInternalPackageVersion>7.0.0-preview.24326.2</MicrosoftAspNetCoreMvcRazorExtensionsToolingInternalPackageVersion>
180+
<MicrosoftCodeAnalysisRazorToolingInternalVersion>7.0.0-preview.24326.2</MicrosoftCodeAnalysisRazorToolingInternalVersion>
181+
<MicrosoftNETSdkRazorSourceGeneratorsTransportPackageVersion>7.0.0-preview.24326.2</MicrosoftNETSdkRazorSourceGeneratorsTransportPackageVersion>
182182
</PropertyGroup>
183183
<PropertyGroup>
184184
<!-- Dependencies from https://github.com/dotnet/wpf -->
@@ -210,7 +210,7 @@
210210
<PropertyGroup>
211211
<FluentAssertionsVersion>6.12.0</FluentAssertionsVersion>
212212
<FluentAssertionsJsonVersion>6.1.0</FluentAssertionsJsonVersion>
213-
<MicrosoftDotNetXUnitExtensionsVersion>8.0.0-beta.24328.2</MicrosoftDotNetXUnitExtensionsVersion>
213+
<MicrosoftDotNetXUnitExtensionsVersion>8.0.0-beta.24352.1</MicrosoftDotNetXUnitExtensionsVersion>
214214
<MoqPackageVersion>4.18.4</MoqPackageVersion>
215215
<XunitCombinatorialVersion>1.3.2</XunitCombinatorialVersion>
216216
<MicrosoftDotNetInstallerWindowsSecurityTestDataPackageVersion>8.0.0-beta.23607.1</MicrosoftDotNetInstallerWindowsSecurityTestDataPackageVersion>

0 commit comments

Comments
 (0)