wip: add c# version of sql injection code

This commit is contained in:
Michael Hohn
2024-12-02 14:58:44 -08:00
committed by =Michael Hohn
commit 690a6fc046
6 changed files with 221 additions and 0 deletions

17
SqliDemo/SqliDemo.csproj Normal file
View File

@@ -0,0 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Data.Sqlite" Version="9.0.0" />
</ItemGroup>
</Project>