-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFillDOCX.csproj
More file actions
18 lines (18 loc) · 905 Bytes
/
Copy pathFillDOCX.csproj
File metadata and controls
18 lines (18 loc) · 905 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<RuntimeIdentifiers>win-x64</RuntimeIdentifiers>
<Version>0.9.6</Version>
<Company>KeyVisions</Company>
<Authors>Giancarlo Trevisan</Authors>
<Product>FillDOCX</Product>
<Description>Merge a DOCX document, sprinkled with placeholders, with data in an XML or JSON file: placeholders are canonical words preceeded by @@, e.g., @@city, in the XML file there will be something like <city>Boston</city> while in JSON "city": "Boston".</Description>
<Copyright>©2020</Copyright>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DocumentFormat.OpenXml" Version="3.3.0" />
<PackageReference Include="FreeSpire.Office" Version="8.2.0" />
<PackageReference Include="QRCoder" Version="1.6.0" />
</ItemGroup>
</Project>