条目程序集中缺少 [NeutralResourceLanguage] 属性
我正在尝试向 Windows Phone 7 市场提交应用程序,但在验证 .xap 包时从未遇到过此错误。 App Hub 刚刚进行了改造,大约一小时前重新上线。有谁知道我该如何解决这个问题?
I'm trying to submit an app to the windows phone 7 marketplace and have never encountered this error when validating my .xap package. App Hub just remodeled and became back online roughly an hour ago. Does anyone know how I can fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
我得到了同样的事情..也许他们刚刚进行的新更新不起作用?
找到了...
用这个更新 Assembly.cs:
这对我有用..干杯..Blakomen
的注释:
如果您要提交全球发布的申请,您应该使用 NeutralResourcesLanguage("en"),而不仅仅是“en-US”,否则它会赢例如,如果您尝试发布到英国市场,则不会出现在市场中(但由于某种原因,它会出现在韩国和日本)
I'm getting the same thing.. Maybe their new update they just made doesn't work?
Found it...
Update Assembly.cs with this:
This worked for me.. Cheers..
Note per Blakomen:
If you are submitting an application for worldwide publishing, you should use NeutralResourcesLanguage("en"), not just "en-US" or it won't show up in the marketplace if you're trying to publish to UK marketplace, for example (it will for some reason come up for Korea and Japan though)
这对我有用。我的应用程序没有指定默认语言,因此在更新中我将其设置为英语。不管怎样,现在我陷入了“没有关键字或描述(丢失)”的错误,祝你好运。
来源:
http://forums.create.msdn.com/forums/t/87530.aspx
This worked for me. My application didn't have a default language specified, so in the update I've set it to English. Anyway now I'm stuck at the "No Keywords or Description (Missing)" bug, good luck.
Source:
http://forums.create.msdn.com/forums/t/87530.aspx
我有同样的问题。添加 NeutralResourcesLanguage("en-US") 后,我从应用程序中心收到另一个错误,指出我无法更改之前提交的语言。然后我使用 NeutralResourcesLanguage(null) ,然后是应用程序中心发出的奇怪的意外错误消息,建议我现在可能是出去散步的绝佳时机:) 说真的!
I have the same problem. After adding the NeutralResourcesLanguage("en-US"), I got another error from app hub saying that I can't change previously submitted language. Then I used NeutralResourcesLanguage(null) followed by a weird unexpected error message from app hub recommending me that now might be an excellent time to go out for a walk :) Seriously!!!
从项目中打开 AssemblyInfo.cs 并在顶部添加以下内容“using System.Resources;”
应用程序中心有一个新要求(为 Mango 做好准备),其中所有应用程序现在必须指定中性资源语言。
选择中性语言并选择您选择的语言。我的工作语言是英语,所以我只选择英语,然后就可以开始了。
<前><代码>>>>>希望对您有帮助<<<
Open the AssemblyInfo.cs from your project and add the following at the top "using System.Resources;"
There is a new requirement of the app hub (ready for Mango) where all applications must now have a neutral resource language specified.
Select Neutral language and choose a language of your choice. I work with English so i just choose English and you are good to go.
或者也可以使用 VS2010 修复此问题,选择您的项目 -->右键单击-->属性-->在“应用程序”选项卡下 -->单击组件信息按钮-->选择中性语言——英语。
宾果游戏 - 完成...:-)
希望这会有所帮助!
感谢和问候
Nishant Rana
我的博客 - http://www.nishantcop.blogspot.com
alternatively can also fix this using VS2010 select your project --> right click --> properties --> under Application tab --> click Assembly information button --> select neutral language -- English.
Bingo -- done... :-)
Hope this may help!!
Thanks and Regards
Nishant Rana
My blog- http://www.nishantcop.blogspot.com
如果您想更详细地了解如何解决此问题,请查看:
中性资源语言属性丢失
In case you want a more detailed step by step on how to fix this, check out:
Neutral Resource Language Attribute Missing