-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSQL_Injection_Playground.csproj
More file actions
30 lines (26 loc) · 1000 Bytes
/
SQL_Injection_Playground.csproj
File metadata and controls
30 lines (26 loc) · 1000 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<ApplicationIcon>Resource\MySQL_Logo.ico</ApplicationIcon>
<AssemblyName>SQL Injection Playground</AssemblyName>
<DebugType>embedded</DebugType>
<Version>1.5.1.7</Version>
<Company>GermanNightmare</Company>
<Authors>Schecher_1</Authors>
<Description>With this program you can learn about SQL Injection</Description>
<Copyright>Copyright 2022</Copyright>
<IsPublishable>True</IsPublishable>
</PropertyGroup>
<ItemGroup>
<Content Include="Resource\MySQL_Logo.ico" />
<Resource Include="Resource\Key.png" />
<Resource Include="Resource\User.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MySql.Data" Version="8.0.29" />
<PackageReference Include="MySql.EntityFrameworkCore" Version="6.0.1" />
</ItemGroup>
</Project>