17 lines
525 B
XML
17 lines
525 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Aspose.Words" Version="23.10.0" />
|
|
<PackageReference Include="DocumentFormat.OpenXml" Version="2.20.0" />
|
|
</ItemGroup>
|
|
|
|
</Project> |