Compare commits

...

3 Commits

Author SHA1 Message Date
Michael Vesely 0c3a385b98
Replace (wrong) download info with branch info 2020-02-25 12:35:16 +01:00
Michael Vesely 81dd092e7b Fix: move added TagDefinitions to project folder
After the master branch did a rename of the project folder
when migrating to dotnet core we need to also move
our added TagDefinitions to the new location of the project.
2020-02-25 12:11:18 +01:00
Michael Vesely 3f383cc46a Rename Assembly to MustacheSharp for consistency
-change: TargetFrameworks of test project
    to be consistent with mein project
2020-02-25 12:00:05 +01:00
10 changed files with 6 additions and 4 deletions

View File

@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<!-- <TargetFramework>netcoreapp2.1</TargetFramework> -->
<TargetFrameworks>NET45;netstandard2.0</TargetFrameworks>
<IsPackable>false</IsPackable>
<SignAssembly>true</SignAssembly>

View File

@ -6,7 +6,7 @@
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>MustacheSharp.snk</AssemblyOriginatorKeyFile>
<DelaySign>false</DelaySign>
<AssemblyName>mustache-sharp</AssemblyName>
<AssemblyName>MustacheSharp</AssemblyName>
<Authors>Truncon</Authors>
<Description>An extension of the mustache text template engine for .NET.</Description>
<Copyright>Copyright © 2013</Copyright>

View File

@ -2,7 +2,9 @@
An extension of the mustache text template engine for .NET.
Download using NuGet: [mustache#](http://nuget.org/packages/mustache-sharp)
## Branches
- **feature-compare-tags**: adds additional tags like eq, lt, gt, ... as described below.
- **master**: contains the original version forked from [jehugaleahsa/mustache-sharp](/jehugaleahsa/mustache-sharp).
## Overview
Generating text has always been a chore. Either you're concatenating strings like a mad man or you're getting fancy with `StringBuilder`. Either way, the logic for conditionally including values or looping over a collection really obscures the intention of the code. A more declarative approach would improve your code big time. Hey, that's why server-side scripting got popular in the first place, right?