2024-02-06 13:30:20 +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>
|
2024-03-16 20:18:37 +04:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.14" />
|
2024-03-05 12:53:08 +04:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.14">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2024-03-16 20:18:37 +04:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.14" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.14">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2024-02-06 13:30:20 +04:00
|
|
|
|
<PackageReference Include="NLog.Extensions.Logging" Version="5.2.2" />
|
2024-03-18 18:29:29 +04:00
|
|
|
|
<PackageReference Include="ReportViewerCore.WinForms" Version="15.1.19" />
|
2024-02-06 13:30:20 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\AbstractShopBusinessLogic\DinerBusinessLogic.csproj" />
|
2024-03-18 18:29:29 +04:00
|
|
|
|
<ProjectReference Include="..\..\AbstractShopContracts\DinerContracts.csproj" />
|
2024-02-06 13:30:20 +04:00
|
|
|
|
<ProjectReference Include="..\AbstractShopListImplement\DinerListImplement.csproj" />
|
2024-03-05 12:53:08 +04:00
|
|
|
|
<ProjectReference Include="..\DinerDataBaseImplement\DinerDataBaseImplement.csproj" />
|
2024-03-04 19:15:57 +04:00
|
|
|
|
<ProjectReference Include="..\DinerFileImplement\DinerFileImplement.csproj" />
|
2024-02-06 13:30:20 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-03-18 18:29:29 +04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Update="Properties\Resources.Designer.cs">
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
|
|
|
</Compile>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Update="Properties\Resources.resx">
|
|
|
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
|
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-02-06 13:30:20 +04:00
|
|
|
|
</Project>
|