-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTriasDev.Templify.csproj
More file actions
45 lines (37 loc) · 1.89 KB
/
TriasDev.Templify.csproj
File metadata and controls
45 lines (37 loc) · 1.89 KB
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>
<TargetFrameworks>net10.0;net9.0;net8.0;net6.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<!-- XML Documentation -->
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn> <!-- Suppress missing XML doc warnings -->
<!-- NuGet Package Metadata -->
<PackageId>TriasDev.Templify</PackageId>
<Version>1.6.1</Version>
<Authors>TriasDev GmbH & Co. KG</Authors>
<Company>TriasDev GmbH & Co. KG</Company>
<Description>High-performance templating engine for .NET. Process Word documents (.docx) and plain text templates with the same powerful syntax. Replace placeholders, evaluate conditionals, and process loops without Microsoft Word. Built on OpenXML SDK with 100% test coverage.</Description>
<Copyright>Copyright © 2025 TriasDev GmbH & Co. KG</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/TriasDev/templify</PackageProjectUrl>
<RepositoryUrl>https://github.com/TriasDev/templify</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>word;docx;template;openxml;document-generation;templating;word-documents;office;dotnet;email;text-templates</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DocumentFormat.OpenXml" Version="3.5.1"/>
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="TriasDev.Templify.Tests"/>
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\"/>
<None Include="..\assets\icon-128.png" Pack="true" PackagePath="icon.png"/>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\WarningReportTemplate.docx"/>
</ItemGroup>
</Project>