18 lines
539 B
XML
Raw Permalink Normal View History

2023-10-12 18:21:37 +04:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
2023-10-25 12:15:47 +04:00
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
2023-10-12 18:21:37 +04:00
</PropertyGroup>
2023-10-13 21:09:48 +04:00
<ItemGroup>
<PackageReference Include="DocumentFormat.OpenXml" Version="2.20.0" />
<PackageReference Include="EPPlus" Version="6.2.10" />
<PackageReference Include="NPOI" Version="2.6.2" />
</ItemGroup>
2023-10-12 18:21:37 +04:00
</Project>