a .NET library that can read/write Office formats without Microsoft Office installed. No COM+, no interop.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
718 B

<Project Sdk="Microsoft.NET.Sdk">
<!-- This is an umbrella project that gathers dependencies for dotnet pack -->
<PropertyGroup>
<TargetFrameworks>net472;netstandard2.0;netstandard2.1;net8.0</TargetFrameworks>
<IncludeBuildOutput>false</IncludeBuildOutput>
<PackageId>NPOI</PackageId>
<OutputPath>..\solution\$(Configuration)\</OutputPath>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\main\NPOI.Core.csproj" />
<ProjectReference Include="..\ooxml\NPOI.OOXML.Core.csproj" />
<ProjectReference Include="..\openxml4Net\NPOI.OpenXml4Net.Core.csproj" />
<ProjectReference Include="..\OpenXmlFormats\NPOI.OpenXmlFormats.Core.csproj" />
</ItemGroup>
</Project>