2024-02-25 19:23:21 +04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2024-02-25 19:43:57 +04:00
|
|
|
|
<ItemGroup>
|
2024-03-24 22:25:36 +04:00
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.8.0" />
|
2024-03-09 00:35:52 +04:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.2">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2024-02-25 19:43:57 +04:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" />
|
|
|
|
|
<PackageReference Include="NLog.Extensions.Logging" Version="5.3.8" />
|
2024-03-29 12:44:11 +04:00
|
|
|
|
<PackageReference Include="PdfSharp.MigraDoc.Standard" Version="1.51.12" />
|
2024-03-24 18:34:36 +04:00
|
|
|
|
<PackageReference Include="ReportViewerCore.WinForms" Version="15.1.19" />
|
2024-03-24 23:52:35 +04:00
|
|
|
|
<PackageReference Include="System.Text.Encoding.CodePages" Version="8.0.0" />
|
2024-02-25 19:43:57 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-02-25 19:52:48 +04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\SushiBarBusinessLogic\SushiBarBusinessLogic.csproj" />
|
|
|
|
|
<ProjectReference Include="..\SushiBarContracts\SushiBarContracts.csproj" />
|
2024-03-09 00:35:52 +04:00
|
|
|
|
<ProjectReference Include="..\SushiBarDatabaseImplement\SushiBarDatabaseImplement.csproj" />
|
2024-02-25 21:26:19 +04:00
|
|
|
|
<ProjectReference Include="..\SushiBarFileImplement\SushiBarFileImplement.csproj" />
|
2024-02-25 19:52:48 +04:00
|
|
|
|
<ProjectReference Include="..\SushiBarListImplements\SushiBarListImplements.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-02-25 19:23:21 +04:00
|
|
|
|
</Project>
|