1
私は自分のリソースファイルを変更するたびに、ResourceManagerに無効なパスが設定されるという問題が発生しています。保存時にResourceManagerが正しく設定されていません
例
namespace bundlrs_MVC6.Resources {
...
global::System.Resources.ResourceManager temp = new global::System.ResourceManager("bundlrs_MVC6.HomeIndexViewResources", typeof(HomeIndexViewResources).GetTypeInfo().Assembly);
は次のようになります。
namespace bundlrs_MVC6.Resources {
...
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("bundlrs_MVC6.Resources.HomeIndexViewResources", typeof(HomeIndexViewResources).GetTypeInfo().Assembly);
フォルダ構造を(余分なリソースに注意してください):
は、私は、Visual Studio
を使用しています私は、すべてのリソースファイルを移動する必要があります:namespace bundlrs_MVC6
の代わりnamespace bundlrs_MVC6.Resources
もしそうなら、なぜですか?