Skip to content

Commit 327deb3

Browse files
committed
Start flowing Microsoft.NETCore.App dependency
1 parent a57d2e5 commit 327deb3

File tree

6 files changed

+20
-2
lines changed

6 files changed

+20
-2
lines changed

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
</PropertyGroup>
1818

1919
<PropertyGroup>
20-
<DefaultNetCoreTargetFramework>netcoreapp5.0</DefaultNetCoreTargetFramework>
20+
<DefaultNetCoreTargetFramework>net5.0</DefaultNetCoreTargetFramework>
2121
</PropertyGroup>
2222

2323
<PropertyGroup>

Directory.Build.targets

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
11
<Project>
22
<Import Project="Sdk.targets" Sdk="Microsoft.DotNet.Arcade.Sdk" />
3+
4+
<ItemGroup>
5+
<FrameworkReference Update="Microsoft.NETCore.App"
6+
Condition="'$(TargetFramework)' == '$(DefaultNetCoreTargetFramework)'"
7+
RuntimeFrameworkVersion="$(MicrosoftNETCoreAppRuntimewinx64PackageVersion)"
8+
TargetingPackVersion="$(MicrosoftNETCoreAppRefPackageVersion)" />
9+
</ItemGroup>
310
</Project>

eng/Version.Details.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,14 @@
3737
<Uri>https://github.com/dotnet/runtime</Uri>
3838
<Sha>ba5b5d18915eb637e53719373b857a2a310c204f</Sha>
3939
</Dependency>
40+
<Dependency Name="Microsoft.NETCore.App.Ref" Version="5.0.0-rc.1.20427.3">
41+
<Uri>https://github.com/dotnet/runtime</Uri>
42+
<Sha>ba5b5d18915eb637e53719373b857a2a310c204f</Sha>
43+
</Dependency>
44+
<Dependency Name="Microsoft.NETCore.App.Runtime.win-x64" Version="5.0.0-rc.1.20427.3">
45+
<Uri>https://github.com/dotnet/runtime</Uri>
46+
<Sha>ba5b5d18915eb637e53719373b857a2a310c204f</Sha>
47+
</Dependency>
4048
<Dependency Name="System.Collections.Immutable" Version="5.0.0-rc.1.20427.3">
4149
<Uri>https://github.com/dotnet/runtime</Uri>
4250
<Sha>ba5b5d18915eb637e53719373b857a2a310c204f</Sha>

eng/Versions.props

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
<MicrosoftExtensionsDependencyModelVersion>5.0.0-rc.1.20427.3</MicrosoftExtensionsDependencyModelVersion>
2828
<MicrosoftExtensionsHostFactoryResolverSourcesVersion>5.0.0-rc.1.20427.3</MicrosoftExtensionsHostFactoryResolverSourcesVersion>
2929
<MicrosoftExtensionsLoggingVersion>5.0.0-rc.1.20427.3</MicrosoftExtensionsLoggingVersion>
30+
<MicrosoftNETCoreAppRefPackageVersion>5.0.0-rc.1.20427.3</MicrosoftNETCoreAppRefPackageVersion>
31+
<MicrosoftNETCoreAppRuntimewinx64PackageVersion>5.0.0-rc.1.20427.3</MicrosoftNETCoreAppRuntimewinx64PackageVersion>
3032
</PropertyGroup>
3133
<PropertyGroup Label="Other dependencies">
3234
<MicrosoftCodeAnalysisVersion>3.7.0</MicrosoftCodeAnalysisVersion>

eng/helix.proj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
<PropertyGroup>
3535
<HelixPreCommands Condition = "'$(HelixTargetQueue.StartsWith(`Windows`))'">$(HelixPreCommands); SqlLocalDB start</HelixPreCommands>
36-
<XUnitPublishTargetFramework>netcoreapp5.0</XUnitPublishTargetFramework>
36+
<XUnitPublishTargetFramework>net5.0</XUnitPublishTargetFramework>
3737
<XUnitRuntimeTargetFramework>netcoreapp2.0</XUnitRuntimeTargetFramework>
3838
<XUnitRunnerVersion>2.4.1</XUnitRunnerVersion>
3939
<XUnitArguments></XUnitArguments>

global.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"dotnet": "5.0.100-preview.8.20417.9",
44
"runtimes": {
55
"dotnet": [
6+
"$(MicrosoftNETCoreAppRuntimewinx64PackageVersion)",
67
"3.1.7"
78
],
89
"aspnetcore": [

0 commit comments

Comments
 (0)