-
Notifications
You must be signed in to change notification settings - Fork 6
/
FileFormat.Words.csproj
37 lines (34 loc) · 1.97 KB
/
FileFormat.Words.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
34
35
36
37
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<AssemblyVersion>24.12.0</AssemblyVersion>
<ReleaseVersion>24.12.0</ReleaseVersion>
<SynchReleaseVersion>false</SynchReleaseVersion>
<PackageVersion>24.12.0</PackageVersion>
<Authors>Openize</Authors>
<Copyright>(C) Openize Pty Ltd 2024. All Rights Reserved.</Copyright>
<Owners>Openize</Owners>
<Description>Written in native C#, Openize.Words for .NET is a free, open-source SDK designed to easily create, load, and modify Microsoft Word documents with just a few lines of code.</Description>
<PackageId>FileFormat.Words</PackageId>
<PackageLicenseUrl>https://github.com/fileformat-words/FileFormat.Words-for-.NET/blob/main/LICENSE</PackageLicenseUrl>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageProjectUrl>https://www.openize.com</PackageProjectUrl>
<Summary>A C# library to work with word documents without requiring MS word be installed.</Summary>
<PackageTags>openxml document word-documents word-processing word-processing-file-api word-processing-document-api document-automation word-api word-document-api word-sdk word-document-sdk word-document-library word-processing-sdk word-processing-library open-source-word-sdk</PackageTags>
<Title>FileFormat.Words for .NET</Title>
<DevelopmentDependency>true</DevelopmentDependency>
<PackOnBuild>true</PackOnBuild>
</PropertyGroup>
<PropertyGroup>
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DocumentationFile>bin\Debug\netcoreapp3.1\Openize.Words.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Remove="DocumentFormat.OpenXml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DocumentFormat.OpenXml" Version="3.0.2" />
</ItemGroup>
</Project>