Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8b67995

Browse files
committedJun 10, 2025·
changing build to net9 to see if that fixes it
1 parent 07e0c15 commit 8b67995

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎build/BuildSteps.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System;
1+
using System;
22
using System.Collections.Generic;
33
using System.IO;
44
using System.IO.Compression;
@@ -349,7 +349,7 @@ public static void TestNewE2EProject()
349349

350350
Environment.SetEnvironmentVariable("DURABLE_FUNCTION_PATH", Settings.DurableFolder);
351351

352-
Shell.Run("dotnet", $"test {Settings.NewTestProjectFile} -f net8.0 --blame-hang-timeout 10m --logger \"console;verbosity=detailed\"");
352+
Shell.Run("dotnet", $"test {Settings.NewTestProjectFile} -f net9.0 --blame-hang-timeout 10m --logger \"console;verbosity=detailed\"");
353353
}
354354

355355
public static void TestNewE2EProjectDotnetInProc()

‎test/Cli/Func.E2E.Tests/Azure.Functions.Cli.E2E.Tests.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

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<DisableImplicitNamespaceImports>true</DisableImplicitNamespaceImports>
66
</PropertyGroup>
77

0 commit comments

Comments
 (0)
Please sign in to comment.