Skip to content

Commit

Permalink
Update dotnet8 test dependencies and remove extra using directives
Browse files Browse the repository at this point in the history
  • Loading branch information
Beau-Gosse-dev committed Feb 12, 2024
1 parent f712e18 commit b341a09
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 15 deletions.
11 changes: 5 additions & 6 deletions tests/integration/testdata/buildcmd/Dotnet8/HelloWorld.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Amazon.Lambda.Core" Version="1.0.0" />
<PackageReference Include="Amazon.Lambda.APIGatewayEvents" Version="1.1.3" />
<PackageReference Include="Amazon.Lambda.Serialization.Json" Version="1.4.0" />
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
<PackageReference Include="Amazon.Lambda.Core" Version="2.2.0" />
<PackageReference Include="Amazon.Lambda.APIGatewayEvents" Version="2.7.0" />
<PackageReference Include="Amazon.Lambda.Serialization.Json" Version="2.2.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>

</Project>

</Project>
10 changes: 1 addition & 9 deletions tests/integration/testdata/buildcmd/Dotnet8/Program.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Net.Http;
using System.Net.Http.Headers;
using Newtonsoft.Json;

using Amazon.Lambda.Core;
using Amazon.Lambda.APIGatewayEvents;

Expand Down Expand Up @@ -41,4 +33,4 @@ public string FunctionHandler(APIGatewayProxyRequest apigProxyEvent, ILambdaCont
return "Hello Mars";
}
}
}
}

0 comments on commit b341a09

Please sign in to comment.