-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathOpenize.OpenXML-SDK.csproj
33 lines (30 loc) · 1.68 KB
/
Openize.OpenXML-SDK.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<LangVersion>9.0</LangVersion>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
<Description>A .NET library that simplifies working with OpenXML documents. Create, read, and manipulate Wordprocessing documents (Docx), Excel spreadsheets (Xlsx), and PowerPoint presentations (Pptx) effortlessly with Openize.OpenXML SDK. Licensed under MIT.</Description>
<ReleaseVersion>25.4.1</ReleaseVersion>
<SynchReleaseVersion>false</SynchReleaseVersion>
<PackageVersion>25.4.1</PackageVersion>
<Authors>Openize Pty Ltd</Authors>
<Copyright>2024-2025</Copyright>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Owners>Openize Pty Ltd</Owners>
<PackageProjectUrl>https://github.com/openize-com/openize-open-xml-sdk-net</PackageProjectUrl>
<Summary>Work with offile file formats including DOCX, XLSX and PPTX with a few lines of code.</Summary>
<Title>Openize.OpenXML SDK for .NET</Title>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DocumentationFile>bin\Debug\netcoreapp3.1\Openize.OpenXMLSDK.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' " />
<ItemGroup>
<None Remove="DocumentFormat.OpenXml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DocumentFormat.OpenXml" Version="3.2.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
</Project>