15 lines
359 B
XML
15 lines
359 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
|
<ApplicationIcon />
|
|
<StartupObject>DatabaseTest.Program</StartupObject>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="MySqlConnector" Version="0.56" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|