2024-03-30 14:26:33 +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-03-30 14:30:43 +04:00
|
|
|
|
<ItemGroup>
|
2024-04-21 16:04:37 +04:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.16" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.16">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.16" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.16">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2024-03-30 14:30:43 +04:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
|
|
|
|
|
<PackageReference Include="NLog.Extensions.Logging" Version="5.3.8" />
|
2024-04-27 15:00:40 +04:00
|
|
|
|
<PackageReference Include="ReportViewerCore.WinForms" Version="15.1.19" />
|
2024-03-30 14:30:43 +04:00
|
|
|
|
<PackageReference Include="Serilog" Version="3.1.1" />
|
|
|
|
|
<PackageReference Include="Serilog.AspNetCore" Version="8.0.1" />
|
|
|
|
|
<PackageReference Include="Serilog.Settings.Configuration" Version="8.0.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\BarBusinessLogic\BarBusinessLogic.csproj" />
|
|
|
|
|
<ProjectReference Include="..\BarContracts\BarContracts.csproj" />
|
2024-04-21 16:04:37 +04:00
|
|
|
|
<ProjectReference Include="..\BarBusinessLogic\BarBusinessLogic.csproj" />
|
|
|
|
|
<ProjectReference Include="..\BarContracts\BarContracts.csproj" />
|
|
|
|
|
<ProjectReference Include="..\BarDatabaseImplement\BarDatabaseImplement.csproj" />
|
2024-04-27 15:00:40 +04:00
|
|
|
|
<ProjectReference Include="..\BarFileImplement\BarFileImplement.csproj" />
|
|
|
|
|
<ProjectReference Include="..\BarListImplement\BarListImplement.csproj" />
|
2024-03-30 14:30:43 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<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-03-30 14:26:33 +04:00
|
|
|
|
</Project>
|