Skip to content

Commit

Permalink
Replace MySql.data with MySqlConnection
Browse files Browse the repository at this point in the history
  • Loading branch information
RobKraft committed Dec 10, 2024
1 parent 0661bc4 commit 8c19a6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Lambdas/GetCharityTypes/Function.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
using Amazon.Lambda.Core;
using Amazon.Lambda.RuntimeSupport;
using Amazon.Lambda.Serialization.SystemTextJson;
using MySql.Data.MySqlClient;
using Amazon.RDS.Util;
using Amazon;
using System.Text.Json;
using System.Text.Json.Serialization;
using Amazon.Lambda.APIGatewayEvents;
using MySqlConnector;

namespace GetCharityTypes;

Expand Down
2 changes: 1 addition & 1 deletion Lambdas/GetCharityTypes/GetCharityTypes.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@
<PackageReference Include="Amazon.Lambda.Core" Version="2.5.0" />
<PackageReference Include="Amazon.Lambda.Serialization.SystemTextJson" Version="2.4.4" />
<PackageReference Include="Microsoft.ICU.ICU4C.Runtime" Version="68.2.0.9" />
<PackageReference Include="MySql.Data" Version="9.1.0" />
<PackageReference Include="MySqlConnector" Version="2.4.0" />
</ItemGroup>
</Project>

0 comments on commit 8c19a6e

Please sign in to comment.