发布时,资源上不存在验证

时间:2018-03-04 15:32:27

标签: c# resources umbraco

我有一个Umbraco解决方案,我已经安装了一个名为PageComments的插件。 一切都在当地工作。 但是当我发布并将其丢弃在服务器上时,我收到一个错误:

Compiler Error Message: CS0234: The type or namespace name 'Validations' does not exist in the namespace 'Resources' (are you missing an assembly reference?)

Line 51:             {
Line 52:                 //If model is not valid or Not able to find pageId or Invalid Captcha return error message.
Line 53:                 returnMessage = Resources.Validations.CommentPostedFailure;
Line 54:                 return Content(returnMessage);
Line 55:             }

我试过要在参考文献中添加dll,但是一直找不到正确的...

我有点难过。到目前为止,谷歌搜索答案无济于事。

1 个答案:

答案 0 :(得分:0)

似乎整个文件夹都没有发布。全球资源。 添加后,网站再次运作。