26 lines
1000 B
XML
Raw Normal View History

2024-09-05 21:27:41 +04:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
2024-10-22 19:58:21 +04:00
<TargetFramework>net8.0-windows7.0</TargetFramework>
2024-09-05 21:27:41 +04:00
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ComponentsLibraryNet60" Version="1.0.0" />
<PackageReference Include="ControlsLibraryNet60" Version="1.0.0" />
2024-10-22 19:58:21 +04:00
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.10">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="PDFsharp-MigraDoc-GDI" Version="6.1.1" />
</ItemGroup>
2024-09-05 21:27:41 +04:00
<ItemGroup>
<ProjectReference Include="..\ComponentProgramming\ComponentProgramming.csproj" />
2024-10-22 19:58:21 +04:00
<ProjectReference Include="..\DatabaseImplement\DatabaseImplement.csproj" />
2024-09-05 21:27:41 +04:00
</ItemGroup>
</Project>