2024-02-05 19:09:54 +04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
2024-04-17 12:51:33 +04:00
|
|
|
|
<TargetFramework>net7.0-windows7.0</TargetFramework>
|
2024-02-05 19:09:54 +04:00
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-03-19 20:55:45 +04:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.16">
|
2024-03-17 21:00:26 +04:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
2024-03-19 20:55:45 +04:00
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
2024-03-17 21:00:26 +04:00
|
|
|
|
</PackageReference>
|
2024-02-05 19:09:54 +04:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
|
2024-02-06 23:13:36 +04:00
|
|
|
|
<PackageReference Include="NLog.Extensions.Logging" Version="5.3.8" />
|
2024-04-10 19:04:19 +04:00
|
|
|
|
<PackageReference Include="ReportViewerCore.WinForms" Version="15.1.19" />
|
2024-02-05 19:09:54 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-02-06 23:13:36 +04:00
|
|
|
|
<ProjectReference Include="..\FishFactoryBusinessLogic\FishFactoryBusinessLogic.csproj" />
|
2024-02-05 19:09:54 +04:00
|
|
|
|
<ProjectReference Include="..\FishFactoryContracts\FishFactoryContracts.csproj" />
|
2024-03-17 21:00:26 +04:00
|
|
|
|
<ProjectReference Include="..\FishFactoryDatabaseImplement\FishFactoryDatabaseImplement.csproj" />
|
2024-03-02 12:10:12 +04:00
|
|
|
|
<ProjectReference Include="..\FishFactoryFileImplement\FishFactoryFileImplement.csproj" />
|
2024-02-06 23:13:36 +04:00
|
|
|
|
<ProjectReference Include="..\FishFactoryListImplement\FishFactoryListImplement.csproj" />
|
2024-02-05 19:09:54 +04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-04-03 11:13:23 +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-04-10 19:04:19 +04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="ReportOrders.rdlc">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2024-02-05 19:09:54 +04:00
|
|
|
|
</Project>
|