Skip to content

Commit 616d6b2

Browse files
committed
update pack to use 9.0 for runtime
1 parent d73f9a4 commit 616d6b2

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

Tools/LambdaTestTool-v2/src/Amazon.Lambda.TestTool/Amazon.Lambda.TestTool.csproj

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,8 @@
2323
</ItemGroup>
2424

2525
<Target Name="CopyRuntimeSupportFiles" BeforeTargets="_GetPackageFiles">
26-
<Message Importance="high" Text="Publishing Amazon.Lambda.RuntimeSupport project..." />
27-
2826
<ItemGroup>
29-
<TargetFrameworks Include="netstandard2.0;net5.0;net6.0;net8.0" />
27+
<TargetFrameworks Include="netstandard2.0;net6.0;net8.0;net9.0" />
3028
</ItemGroup>
3129

3230
<Exec Command="dotnet publish &quot;$(MSBuildThisFileDirectory)..\..\..\..\Libraries\src\Amazon.Lambda.RuntimeSupport\Amazon.Lambda.RuntimeSupport.csproj&quot; -c $(Configuration) -f %(TargetFrameworks.Identity) -v n" />
@@ -43,4 +41,4 @@
4341
<EmbeddedResource Include="wwwroot\**" />
4442
<EmbeddedResource Include="Resources\**" />
4543
</ItemGroup>
46-
</Project>
44+
</Project>

Tools/LambdaTestTool-v2/tests/Amazon.Lambda.TestTool.UnitTests/PackagingTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ public class PackagingTests
1414
private readonly ITestOutputHelper _output;
1515
private static readonly string[] ExpectedFrameworks = new[]
1616
{
17-
"net5.0",
1817
"net6.0",
1918
"net8.0",
19+
"net9.0",
2020
"netstandard2.0"
2121
};
2222

0 commit comments

Comments
 (0)