我正在尝试在 Azure 函数中使用 FluentEmail 2.8.0。但是,我有以下例外。
RazorLight.RazorLightException:无法从条目程序集中加载元数据引用。确保 PreserveCompilationContext 在 *.csproj 文件中设置为 true
我已将以下内容添加到 csproj
<PropertyGroup>
<FunctionsSkipCleanOutput>true</_FunctionsSkipCleanOutput>
</PropertyGroup>
<PropertyGroup>
<PreserveCompilationReferences>true</PreserveCompilationReferences>
<PreserveCompilationContext>true</PreserveCompilationContext>
</PropertyGroup>
但我仍然得到同样的错误。
有人遇到过这个吗?
环境:.NET Core 3.1、Azure Functions v3