Skip to content

Commit 9022171

Browse files
committed
Run Azure functions tests on .NET 8 and .NET 9
1 parent dc6b7c1 commit 9022171

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

tracer/build/_build/Build.VariableGenerations.cs

+2
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,8 @@ void GenerateIntegrationTestsWindowsAzureFunctionsMatrix()
204204
// new {framework = TargetFramework.NETCOREAPP3_1, runtimeInstall = v3Install, runtimeUninstall = v3Uninstall },
205205
new {framework = TargetFramework.NET6_0 },
206206
new {framework = TargetFramework.NET7_0 },
207+
new {framework = TargetFramework.NET8_0 },
208+
new {framework = TargetFramework.NET9_0 },
207209
};
208210

209211
var matrix = new Dictionary<string, object>();

tracer/test/test-applications/azure-functions/Samples.AzureFunctions.V4Isolated/Samples.AzureFunctions.V4Isolated.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<ApiVersion Condition="'$(ApiVersion)' == ''">2.0.0</ApiVersion>
4-
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
4+
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
55
<AzureFunctionsVersion>v4</AzureFunctionsVersion>
66
<OutputType>Exe</OutputType>
77
<ImplicitUsings>enable</ImplicitUsings>

0 commit comments

Comments
 (0)