本文介绍了无法加载类型“Microsoft.AspNetCore.Razor.Language.RazorTemplateEngine"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在 .Net Core 3.1 中使用 RazorEngine.NetCore,当我运行下面的代码时
I am using RazorEngine.NetCore in .Net Core 3.1 and when I run below code
string template = "Hello @Model.Name!";
var result = Engine
.Razor
.RunCompile(template,
"templateKey",
null,
new
{
Name = "World"
});
我收到以下错误
'Could not load type 'Microsoft.AspNetCore.Razor.Language.RazorTemplateEngine' from assembly 'Microsoft.AspNetCore.Razor.Language, Version=3.1.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'.'
推荐答案
您使用的是什么版本的 RazorEngine.NetCore?如果您使用的是2.2.6"或以下,将其更改为3.1.0".
What version of RazorEngine.NetCore are you using?If you are using "2.2.6" or below, change it to "3.1.0".
这篇关于无法加载类型“Microsoft.AspNetCore.Razor.Language.RazorTemplateEngine"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!