条目程序集中缺少 [NeutralResourceLanguage] 属性

发布于 2024-11-24 10:24:55 字数 103 浏览 1 评论 0原文

我正在尝试向 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

别挽留 2024-12-01 10:24:55

我得到了同样的事情..也许他们刚刚进行的新更新不起作用?

找到了...
用这个更新 Assembly.cs:

using System.Resources;  // Add this to the top..

[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]

这对我有用..干杯..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:

using System.Resources;  // Add this to the top..

[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]

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)

ま柒月 2024-12-01 10:24:55
  • 在“解决方案资源管理器”中,右键单击项目名称,然后单击“属性”。
  • 在“应用程序”选项卡下,单击“程序集信息”按钮。
  • 在“中性语言”列表中,选择默认区域性。

这对我有用。我的应用程序没有指定默认语言,因此在更新中我将其设置为英语。不管怎样,现在我陷入了“没有关键字或描述(丢失)”的错误,祝你好运。

来源:
http://forums.create.msdn.com/forums/t/87530.aspx

  • In Solution Explorer, right-click the project name, and click Properties.
  • Under the Application tab, click the Assembly Information button.
  • In the Neutral Language list, select the default culture.

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

以往的大感动 2024-12-01 10:24:55

我有同样的问题。添加 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!!!

_畞蕅 2024-12-01 10:24:55

从项目中打开 AssemblyInfo.cs 并在顶部添加以下内容“using System.Resources;”

应用程序中心有一个新要求(为 Mango 做好准备),其中所有应用程序现在必须指定中性资源语言。

                        **OR ALTERNATIVELY TRY THIS:**
  1. 右键单击您的项目并选择“属性”
  2. 单击“程序集信息”按钮
  3. 选择中性语言并选择您选择的语言。我的工作语言是英语,所以我只选择英语,然后就可以开始了。

    <前><代码>>>>>希望对您有帮助<<<

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.

                        **OR ALTERNATIVELY TRY THIS:**
  1. Right click your project and select "properties"
  2. Click on the Assembly Info button
  3. 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.

                           >>> Hope it helped <<<
    
执手闯天涯 2024-12-01 10:24:55

或者也可以使用 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

冷默言语 2024-12-01 10:24:55

如果您想更详细地了解如何解决此问题,请查看:

中性资源语言属性丢失

In case you want a more detailed step by step on how to fix this, check out:

Neutral Resource Language Attribute Missing

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文