2024-02-08 13:26:42 +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>
|
|
|
|
|
|
2024-02-08 16:12:43 +04:00
|
|
|
|
<ItemGroup>
|
2024-03-26 16:57:52 +04:00
|
|
|
|
<PackageReference Include="DocumentFormat.OpenXml" Version="3.0.2" />
|
2024-03-12 21:47:28 +04:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.0">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2024-02-08 16:12:43 +04:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" />
|
2024-02-12 17:52:44 +04:00
|
|
|
|
<PackageReference Include="NLog.Extensions.Logging" Version="5.3.8" />
|
2024-03-26 17:10:28 +04:00
|
|
|
|
<PackageReference Include="PDFsharp-MigraDoc" Version="6.0.0" />
|
2024-02-08 16:12:43 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-02-08 17:34:56 +04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\FlowerShopBusinessLogic\FlowerShopBusinessLogic.csproj" />
|
|
|
|
|
<ProjectReference Include="..\FlowerShopContracts\FlowerShopContracts.csproj" />
|
2024-03-12 21:47:28 +04:00
|
|
|
|
<ProjectReference Include="..\FlowerShopDatabaseImplement\FlowerShopDatabaseImplement.csproj" />
|
2024-02-08 17:34:56 +04:00
|
|
|
|
<ProjectReference Include="..\FlowerShopDataModels\FlowerShopDataModels.csproj" />
|
2024-02-27 17:21:18 +04:00
|
|
|
|
<ProjectReference Include="..\FlowerShopFileImplement\FlowerShopFileImplement.csproj" />
|
2024-02-08 17:34:56 +04:00
|
|
|
|
<ProjectReference Include="..\FlowerShopListImplement\FlowerShopListImplement.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-02-08 13:26:42 +04:00
|
|
|
|
</Project>
|