Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Templar

An indentation-aware template engine for C# code generation. Templar's key feature: when a multi-line value is injected into a template, continuation lines automatically inherit the column position of the placeholder — generated code stays correctly formatted at any nesting depth.
Indentation-aware template engine for C# codegen — multi-line values inherit the placeholder's column, trim/AOT-safe, zero dependencies.

## The Problem

Expand Down
6 changes: 3 additions & 3 deletions src/Templar.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);CS1591</NoWarn>

<PackageId>Templar</PackageId>
<PackageId>Templar.Net</PackageId>
<Title>Templar</Title>
<Description>Indentation-aware template engine for C# code generation. Multi-line values automatically inherit the column position of the placeholder, so generated code stays correctly formatted at any nesting depth.</Description>
<PackageTags>codegen;template;source-generator;code-generation;text-template</PackageTags>
Expand Down Expand Up @@ -50,8 +50,8 @@
<None Include="..\README.md" Pack="true" PackagePath="\" />
<None Include="..\LICENSE" Pack="true" PackagePath="\" />
<None Include="..\NOTICE" Pack="true" PackagePath="\" />
<None Include="build\Templar.targets" Pack="true" PackagePath="build\" />
<None Include="buildTransitive\Templar.targets" Pack="true" PackagePath="buildTransitive\" />
<None Include="build\Templar.Net.targets" Pack="true" PackagePath="build\" />
<None Include="buildTransitive\Templar.Net.targets" Pack="true" PackagePath="buildTransitive\" />
<None Include="Templar.Generators\bin\$(Configuration)\net10.0\Templar.Generators.dll"
Pack="true"
PackagePath="analyzers\dotnet\cs\"
Expand Down
File renamed without changes.
Loading