Neutral Scent

App developments & Gadgets

AppHubへのアプリ登録時にThe [NeutralResourceLanguage] attribute is missing...と言われたら

AppHubへ新しいアプリを登録しようと思ったら、

The [NeutralResourceLanguage] attribute is missing on the entry assembly.

などというエラーが出ました。
とりあえず対処方法、

[ソリューションエクスプローラー]/プロジェクトの[プロパティ]/[Application]/[Assembly Information...]/[Neutral Language]

を「英語(米国)」あたりにするといいでしょう。

日本もありますけど、今登録するアプリにはまだ早いかも?
AssemblyInfo.csに

using System.Resources;

[assembly: NeutralResourcesLanguageAttribute("en-US")]

を追記するのでも可。
ネタ元:
WP7 App hub error: The [NeutralResourceLanguage] attribute is missing on the entry assembly. (2003) - vdcruijsen.net
http://www.vdcruijsen.net/2011/07/wp7-app-hub-error-the-neutralresourcelanguage-attribute-is-missing-on-the-entry-assembly-2003/