-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBerry.DocxViewer.csproj
45 lines (39 loc) · 1.55 KB
/
Berry.DocxViewer.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
38
39
40
41
42
43
44
45
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net40</TargetFramework>
<UseWPF>true</UseWPF>
<Version>1.0.2</Version>
<Authors>番茄土豆</Authors>
<PackageProjectUrl>https://github.com/theyangfan/Berry.DocxViewer</PackageProjectUrl>
<Description>一款用于浏览 Word 2007+ (.docx) 文档的 WPF 控件库,基于 Berry.Docx.Visual 项目开发。
A WPF control library for browsing Word 2007+ (.docx) documents, based on Berry.Docx.Visual.</Description>
<Copyright>© theyangfan 2023. All rights reserved.</Copyright>
<PackageIcon>logo.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/theyangfan/Berry.DocxViewer</RepositoryUrl>
<PackageTags>word, docx, openxml, office, word viewer, docx viewer, word browser, docx browser</PackageTags>
<PackageReleaseNotes>支持表格 (Supports tables)。</PackageReleaseNotes>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<OutputType>Library</OutputType>
</PropertyGroup>
<ItemGroup>
<Reference Include="System.Windows.Forms" />
</ItemGroup>
<ItemGroup>
<None Include="images\logo.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Berry.Docx.Visual" Version="1.0.2" />
</ItemGroup>
</Project>