Skip to content

Commit 4bc42da

Browse files
author
John Luo
committed
Fix tests and tools
1 parent bb14893 commit 4bc42da

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

eng/tools/BaselineGenerator/BaselineGenerator.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFramework>netcoreapp3.1</TargetFramework>
4+
<TargetFramework>netcoreapp5.0</TargetFramework>
55
<StartArguments>-s https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json</StartArguments>
66
<StartWorkingDirectory>$(MSBuildThisFileDirectory)../../</StartWorkingDirectory>
77
</PropertyGroup>

src/Hosting/IntegrationTesting/src/Common/Tfm.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ public static class Tfm
1313
public const string NetCoreApp22 = "netcoreapp2.2";
1414
public const string NetCoreApp30 = "netcoreapp3.0";
1515
public const string NetCoreApp31 = "netcoreapp3.1";
16+
public const string NetCoreApp50 = "netcoreapp5.0";
1617

1718
public static bool Matches(string tfm1, string tfm2)
1819
{

src/Hosting/test/FunctionalTests/ShutdownTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ private async Task ExecuteShutdownTest(string testName, string shutdownMechanic)
5555
RuntimeFlavor.CoreClr,
5656
RuntimeArchitecture.x64)
5757
{
58-
TargetFramework = Tfm.NetCoreApp31,
58+
TargetFramework = Tfm.NetCoreApp50,
5959
ApplicationType = ApplicationType.Portable,
6060
PublishApplicationBeforeDeployment = true,
6161
StatusMessagesEnabled = false

src/Localization/Localization/test/Microsoft.Extensions.Localization.RootNamespace.Tests/Microsoft.Extensions.Localization.RootNamespace.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>netcoreapp3.0;net472</TargetFrameworks>
3+
<TargetFrameworks>$(DefaultNetCoreTargetFramework);net472</TargetFrameworks>
44
<RootNamespace>LocalizationTest.Abc</RootNamespace>
55
</PropertyGroup>
66
<ItemGroup>

0 commit comments

Comments
 (0)