Skip to content

Commit 6b406cb

Browse files
srinjoyraycopybara-github
authored andcommitted
Use Aspnetcore 6.0 in universal builder acceptance test
PiperOrigin-RevId: 796384439 Change-Id: Ic75bb2c1e68b2674ff72a31a7bec4e9d12b1e3bb
1 parent fc307ac commit 6b406cb

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

builders/gcp/base/acceptance/dotnet_fn_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,10 @@ func TestAcceptanceDotNetFn(t *testing.T) {
3030
testCases := []acceptance.Test{
3131
// When there is only one target, we don't need to set FUNCTION_TARGET.
3232
{
33+
// .NET 3.1 is not supported on Ubuntu 22.04.
3334
Name: "cs single target",
3435
App: "cs_single_target",
35-
SkipStacks: []string{"google.24.full", "google.24"},
36+
SkipStacks: []string{"google.24.full", "google.24", "google.22", "google.gae.22"},
3637
Path: "/function",
3738
MustUse: []string{dotnetRuntime, dotnetPublish},
3839
MustNotUse: []string{entrypoint},

builders/testdata/dotnet/functions/cs_multiple_targets/TestFunction.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.Web">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFramework>netcoreapp3.1</TargetFramework>
4+
<TargetFramework>netcoreapp6.0</TargetFramework>
55
</PropertyGroup>
66

77
<ItemGroup>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.1</TargetFramework>
4+
<TargetFramework>netcoreapp6.0</TargetFramework>
55
</PropertyGroup>
66

77
</Project>

0 commit comments

Comments
 (0)