DOCX.csproj 416 B

1234567891011121314
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFrameworks>netcoreapp3.1;net472</TargetFrameworks>
  4. </PropertyGroup>
  5. <ItemGroup>
  6. <PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
  7. </ItemGroup>
  8. <ItemGroup Condition=" '$(TargetFramework)' == 'net472' ">
  9. <Reference Include="System.IO.Compression" />
  10. <Reference Include="System.IO.Compression.FileSystem" />
  11. </ItemGroup>
  12. </Project>