15 lines
426 B
XML
15 lines
426 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net5.0-windows</TargetFramework>
|
|
<RootNamespace>it_projekt</RootNamespace>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="EntityFramework" Version="6.4.4" />
|
|
<PackageReference Include="MySql.Data" Version="8.0.29" />
|
|
</ItemGroup>
|
|
|
|
</Project> |