Catel 异常:无法获取资源名称 'PleaseWait' 的字符串

Catel Exception: Failed to get string for resource name 'PleaseWait'

使用 Catel 4.4.0。

我正在对我的应用程序进行一些清理工作,并查看了错误日志。每次我的应用程序启动时,我都会看到几个异常,例如下面列出的异常。我的应用程序似乎没有受到影响(没有崩溃或显示弹出窗口),但我想消除诸如此类的异常。有解决办法吗?或者,也许,固定在较新的 Catel 版本中?我可能不理解异常第一行的说明。如果您需要更多信息,请告诉我。谢谢!

01/13/2017 21:25:57.4817 [LogAlways][128]: Catel: Failed to get string for resource name 'PleaseWait' from resource file 'Catel.Services.Models.LanguageResourceSource' | [MissingManifestResourceException] System.Resources.MissingManifestResourceException: Could not find any resources appropriate for the specified culture or the neutral culture.  Make sure "Catel.Properties.Exceptions.resources" was correctly embedded or linked into assembly "Catel.Core" at compile time, or that all the satellite assemblies required are loadable and fully signed.
   at System.Resources.ManifestBasedResourceGroveler.HandleResourceStreamMissing(String fileName)
   at System.Resources.ManifestBasedResourceGroveler.GrovelForResourceSet(CultureInfo culture, Dictionary`2 localResourceSets, Boolean tryParents, Boolean createIfNotExists, StackCrawlMark& stackMark)
   at System.Resources.ResourceManager.InternalGetResourceSet(CultureInfo requestedCulture, Boolean createIfNotExists, Boolean tryParents, StackCrawlMark& stackMark)
   at System.Resources.ResourceManager.InternalGetResourceSet(CultureInfo culture, Boolean createIfNotExists, Boolean tryParents)
   at System.Resources.ResourceManager.GetString(String name, CultureInfo culture)
   at Catel.Services.LanguageService.GetString(ILanguageSource languageSource, String resourceName, CultureInfo cultureInfo) in C:\CI_WS\Ws058\Source\Catel\src\Catel.Core\Catel.Core.Shared\Services\LanguageService.xaml.cs:line 91
   at Catel.Services.LanguageService.GetStringInternal(String resourceName, CultureInfo cultureInfo) in C:\CI_WS\Ws058\Source\Catel\src\Catel.Core\Catel.Core.Shared\Services\LanguageService.cs:line 177

当 Catel 在不同的资源字典中查找所需资源时,这些是 first-chance 异常(可以忽略)。 Catel 一个一个地检查所有已注册的资源文件,并尝试解析正确的资源。

这些调用的结果在内部缓存,因此不必再次遍历所有资源文件。