Silverlight 4 浏览器外:“无法从 Web 确定 Xap 文件的 URL”

发布于 2024-11-09 08:39:08 字数 212 浏览 6 评论 0原文

由于某种原因,每当我现在尝试在浏览器外运行 SL4 应用程序时,我都会收到以下消息:

“无法从 Web 确定 Xap 文件的 URL”

指的是我的 Web 的旧名称项目,现已更名。我已经浏览了该项目名称的所有参考文献,但找不到更多;显然它是从某个地方得到的!

谷歌搜索但什么也没找到(除了一个现在已删除的问题的链接!)。

任何帮助感激不尽...

For some reason, whenever I now try and run my SL4 application out-of-browser, when I run it I get the following message:

"Unable to determine the URL to the Xap file from web "

refers to an old name of my web project, and it has now been renamed. I've gone through all references of said project name and can't find any more; clearly it's getting it from somewhere though!

Googled but found nothing (aside from a link to an SO question which is now removed!).

Any help gratefully received...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

诺曦 2024-11-16 08:39:08

该问题来自项目用户文件的错误配置。 VS在调试过程中找不到它应该使用哪个XAP文件。

在 myproject.csproj.user 文件中,更改

<OutOfBrowserProjectToDebug>OldName</OutOfBrowserProjectToDebug>

<OutOfBrowserProjectToDebug>NewName</OutOfBrowserProjectToDebug>

The issue comes from a misconfiguration of the project's user file. VS can't find which XAP file it should use during the debugging experience.

In the myproject.csproj.user file, change

<OutOfBrowserProjectToDebug>OldName</OutOfBrowserProjectToDebug>

to

<OutOfBrowserProjectToDebug>NewName</OutOfBrowserProjectToDebug>
时光清浅 2024-11-16 08:39:08

在 Silverlight 5 和 Visual Studio 2012 中:

  • 转到 silverlight 项目设置,打开“调试”选项卡并单击组合框,然后选择现有值。通常只有一项(已选择),但单击它很重要。

ScreenShot

In Silverlight 5 and Visual Studio 2012:

  • go to silverlight project settings, open Debug tab and click on combobox, then select existing value. Usually there will be only one item (already selected), but it's important to click on it.

ScreenShot

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