0

使用很棒的LinqPad,它引用了一个 ClassLib,后者又执行RazorLight引擎。物理cshtml文件位于本地文件夹中。我遇到了同样的错误:

RazorLight.RazorLightException: Can't load metadata reference from the entry assembly. Make sure PreserveCompilationContext is set to true in *.csproj file

我尝试添加<PreserveCompilationContext>到 classlib csproj,但我知道它不会工作,因为它不是入口点。LinqPad 是入口点!

此外,仅在 LinqPad 中运行 RazorLight 而不引用 classLib 也会引发相同的错误。所以下面我复制了这个。尝试过 RazorLight 的官方和非官方版本,都抛出相同的错误。

有没有办法解决这个错误?

查看:hello_world.cshtml "Hello, @Model.Name. Welcome to RazorLight repository"

LinqPad:RazorLightTest.linq

<Query Kind="Program">
  <NuGetReference Version="2.0.0-beta9">RazorLight</NuGetReference>
  <Namespace>RazorLight</Namespace>
  <Namespace>System.Threading.Tasks</Namespace>
</Query>

void Main()
{
   RazorLightTest().Dump("RazorLight output");
}
public async Task<string> RazorLightTest()
{
   var engine = new RazorLightEngineBuilder()
   .UseFileSystemProject(@"D:\Temp")
   .UseMemoryCachingProvider()
   .Build();

   var model = new { Name = "John Doe" };
   return await engine.CompileRenderAsync("hello_world.cshtml", model);
}
// You can define other methods, fields, classes and namespaces here
4

0 回答 0