27 lines
1.2 KiB
XML
Raw Permalink Normal View History

2023-03-09 14:41:50 +04:00
<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>
2023-04-06 13:59:30 +04:00
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.0-preview.2.23128.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="NLog.Extensions.Logging" Version="5.2.3" />
2023-05-18 12:07:56 +04:00
<PackageReference Include="ReportViewerCore.WinForms" Version="15.1.17" />
2023-03-09 14:41:50 +04:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\PlumbingRepairBusinesLogic\PlumbingRepairBusinessLogic.csproj" />
<ProjectReference Include="..\PlumbingRepairContracts\PlumbingRepairContracts.csproj" />
2023-04-06 13:59:30 +04:00
<ProjectReference Include="..\PlumbingRepairDatabaseImplements\PlumbingRepairDatabaseImplements.csproj" />
2023-03-09 14:41:50 +04:00
<ProjectReference Include="..\PlumbingRepairDataModels\PlumbingRepairDataModels.csproj" />
</ItemGroup>
</Project>