33 lines
1.4 KiB
XML
33 lines
1.4 KiB
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<OutputType>WinExe</OutputType>
|
|||
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|||
|
<Nullable>enable</Nullable>
|
|||
|
<UseWindowsForms>true</UseWindowsForms>
|
|||
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="Components" Version="1.0.0" />
|
|||
|
<PackageReference Include="ComponentsLibraryNet60" Version="1.0.0" />
|
|||
|
<PackageReference Include="ControlsLibraryNet60" Version="1.0.0" />
|
|||
|
<PackageReference Include="EPPlus" Version="7.5.1" />
|
|||
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.0">
|
|||
|
<PrivateAssets>all</PrivateAssets>
|
|||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|||
|
</PackageReference>
|
|||
|
<PackageReference Include="NPOI" Version="2.7.2" />
|
|||
|
<PackageReference Include="PutincevLibrary" Version="1.0.0" />
|
|||
|
<PackageReference Include="RodionovLibrary" Version="1.0.0" />
|
|||
|
<PackageReference Include="System.Runtime.InteropServices" Version="4.3.0" />
|
|||
|
<PackageReference Include="System.Runtime.InteropServices.RuntimeInformation" Version="4.3.0" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\BusinessLogic\BusinessLogic.csproj" />
|
|||
|
<ProjectReference Include="..\Contracts\Contracts.csproj" />
|
|||
|
<ProjectReference Include="..\DatabaseImplement\DatabaseImplement.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|