47 lines
2.0 KiB
XML
Raw Normal View History

2024-02-12 12:12:37 +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-12 12:46:44 +04:00
<ItemGroup>
2024-03-10 21:20:18 +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-02-12 12:46:44 +04:00
<PackageReference Include="NLog.Extensions.Logging" Version="5.3.8" />
2024-03-25 01:48:14 +04:00
<PackageReference Include="ReportViewerCore.WinForms" Version="15.1.19" />
2024-02-12 12:46:44 +04:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TypographyBusinessLogic\TypographyBusinessLogic.csproj" />
<ProjectReference Include="..\TypographyContracts\TypographyContracts.csproj" />
<ProjectReference Include="..\TypographyDataModels\TypographyDataModels.csproj" />
2024-02-27 20:12:40 +04:00
<ProjectReference Include="..\TypographyFileImplement\TypographyFileImplement.csproj" />
<ProjectReference Include="..\TypographyListImplement\TypographyListImplement.csproj" />
2024-03-10 21:20:18 +04:00
<ProjectReference Include="..\TypographyShopDatabaseImplements\TypographyDatabaseImplements.csproj" />
2024-02-12 12:46:44 +04:00
</ItemGroup>
2024-02-13 11:35:30 +04:00
<ItemGroup>
<None Update="App.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
2024-02-13 11:35:30 +04:00
<None Update="nlog.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="ReportOrders.rdlc">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
2024-02-13 11:35:30 +04:00
</ItemGroup>
2024-02-12 12:12:37 +04:00
</Project>