Skip to content

Commit 58cec21

Browse files
committed
Update SDK
1 parent 4b0d340 commit 58cec21

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

eng/Workarounds.props

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,10 @@
2929
<!-- Ignore warning about calling the Pack target on Web SDK projects. Our build scripts call /t:pack on everything in this repo. -->
3030
<WarnOnPackingNonPackableProject>false</WarnOnPackingNonPackableProject>
3131
</PropertyGroup>
32+
33+
<PropertyGroup>
34+
<!-- Turn off end of life target framework checks as we intentionally build older .NETCoreApp configurations. -->
35+
<!-- Ignores the NETSDK1138 warning -->
36+
<CheckEolTargetFramework>false</CheckEolTargetFramework>
37+
</PropertyGroup>
3238
</Project>

global.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"sdk": {
3-
"version": "5.0.401"
3+
"version": "5.0.402"
44
},
55
"tools": {
6-
"dotnet": "5.0.401",
6+
"dotnet": "5.0.402",
77
"runtimes": {
88
"dotnet/x64": [
99
"2.1.30",
@@ -13,7 +13,7 @@
1313
"$(MicrosoftNETCoreAppInternalPackageVersion)"
1414
],
1515
"aspnetcore/x64": [
16-
"3.1.19"
16+
"3.1.20"
1717
]
1818
},
1919
"Git": "2.22.0",

src/Razor/test/testassets/Directory.Build.props

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
<RepoRoot Condition="'$(BuildingTestAppsIndependently)' == 'true' AND '$(RepoRoot)' == ''">$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory)..\, 'global.json'))\</RepoRoot>
1818
<RazorSdkArtifactsDirectory>$(RepoRoot)artifacts\bin\Microsoft.NET.Sdk.Razor\</RazorSdkArtifactsDirectory>
1919
<BlazorWebAssemblyJSPath>$(MSBuildThisFileDirectory)blazor.webassembly.js</BlazorWebAssemblyJSPath>
20+
21+
<!-- Turn off end of life target framework checks as we intentionally build older .NETCoreApp configurations. -->
22+
<CheckEolTargetFramework>false</CheckEolTargetFramework>
2023
</PropertyGroup>
2124

2225
<Import Project="$(RepoRoot)eng\Versions.props" />

0 commit comments

Comments
 (0)