26 lines
1.0 KiB
XML
26 lines
1.0 KiB
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<OutputType>WinExe</OutputType>
|
|||
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|||
|
<Nullable>enable</Nullable>
|
|||
|
<UseWindowsForms>true</UseWindowsForms>
|
|||
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.16">
|
|||
|
<PrivateAssets>all</PrivateAssets>
|
|||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|||
|
</PackageReference>
|
|||
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
|
|||
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\TaskTrackerBusinessLogics\TaskTrackerBusinessLogics.csproj" />
|
|||
|
<ProjectReference Include="..\TaskTrackerContracts\TaskTrackerContracts.csproj" />
|
|||
|
<ProjectReference Include="..\TaskTrackerDatabase\TaskTrackerDatabase.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|