16 lines
440 B
XML
16 lines
440 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Excel-DNA.Interop" Version="15.0.1" />
|
|
<PackageReference Include="Microsoft.Office.Excel" Version="14.0.4760.1000" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|