Skip to content

Commit f169b71

Browse files
authored
Fix Microsoft.NETCore.Platforms builds on Unix (#57739)
The casing of the SDK imported via the Sdk attribute was wrong which lead to: Microsoft.NETCore.Platforms.csproj : error MSB4236: The SDK 'Microsoft.NET.SDK' specified could not be found.
1 parent 060b404 commit f169b71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libraries/Microsoft.NETCore.Platforms/src/Microsoft.NETCore.Platforms.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.SDK">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFrameworks>$(NetCoreAppToolCurrent);net472</TargetFrameworks>
44
<!-- This project should not build against the live built .NETCoreApp targeting pack as it contributes to the build itself. -->

0 commit comments

Comments
 (0)