Skip to content

Commit b9b721f

Browse files
committed
2 parents d94de47 + 71495ec commit b9b721f

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

README.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# RazorEngineCore
2-
NETCore 3.1.5 Razor Template Engine. No legacy code.
2+
.NET5 Razor Template Engine. No legacy code.
33
* .NET Standard 2.0
4+
* .NET 5.0
45
* .NET Framework 4.7.2
6+
* Windows / Linux
57

68
[![NuGet](https://img.shields.io/nuget/dt/RazorEngineCore.svg?style=flat-square)](https://www.nuget.org/packages/RazorEngineCore)
79
[![NuGet](https://img.shields.io/nuget/v/RazorEngineCore.svg?style=flat-square)](https://www.nuget.org/packages/RazorEngineCore)
@@ -26,6 +28,7 @@ Install-Package RazorEngineCore
2628
* [@Inject and referencing other assemblies](https://github.com/adoconnection/RazorEngineCore/wiki/@Inject-and-referencing-other-assemblies)
2729
* [Switch from RazorEngine cshtml templates](https://github.com/adoconnection/RazorEngineCore/wiki/Switch-from-RazorEngine-cshtml-templates)
2830
* [Azure Functions FileNotFoundException workaround](https://github.com/adoconnection/RazorEngineCore/wiki/Azure-Functions-FileNotFoundException-workaround)
31+
* [@Html implementation example](https://github.com/adoconnection/RazorEngineCore/wiki/@Html-implementation-example)
2932

3033
## Extensions
3134
* [wdcossey/RazorEngineCore.Extensions](https://github.com/wdcossey/RazorEngineCore.Extensions)
@@ -114,7 +117,7 @@ private string RenderTemplate(string template, object model)
114117
```
115118

116119
#### Template functions
117-
ASP.NET Core 3 way of defining template functions:
120+
ASP.NET Core way of defining template functions:
118121
```
119122
<area>
120123
@{ RecursionTest(3); }
@@ -190,6 +193,16 @@ This package is inspired by [Simon Mourier SO post](https://stackoverflow.com/a/
190193

191194

192195
#### Changelog
196+
* 2021.3.1
197+
* fixed NET5 publish as single file (thanks [@jddj007-hydra](https://github.com/jddj007-hydra))
198+
* AnonymousTypeWrapper array handling fix
199+
* System.Collections referenced by default
200+
* Microsoft.AspNetCore.Razor.Language 3.1.8 -> 5.0.3
201+
* Microsoft.CodeAnalysis.CSharp 3.7.0 -> 3.8.0
202+
* 2020.10.1
203+
* Linux fix for #34
204+
* Microsoft.AspNetCore.Razor.Language 3.1.5 -> 3.1.8
205+
* Microsoft.CodeAnalysis.CSharp 3.6.0 -> 3.7.0
193206
* 2020.9.1
194207
* .NET 4.7.2 support (thanks [@krmr](https://github.com/krmr))
195208
* 2020.6.1

0 commit comments

Comments
 (0)