在 Windows Phone 7 中创建具有多个目标的应用程序

发布于 2024-12-18 16:37:08 字数 119 浏览 1 评论 0原文

有没有办法创建一个具有多个目标的项目/应用程序。
这与我们在 XCode 中为 iPhone 应用程序创建多个目标的方式相同。
基本上我有一个必须为不同目标制作的应用程序,具有几乎所有相似的功能,但几乎没有变化。

Is there any way to create a project/application which will have multiple targets.
Its same as how we create multiple targets for an iPhone application in XCode.
Basically I have an app which has to be made for different targets, with almost all the similar functionalities but with little change.

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

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

发布评论

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

评论(1

陈年往事 2024-12-25 16:37:08

您可以使用配置管理器将其他配置添加到调试和发布列表中。然后,对于每个配置,请转到项目/属性/构建/条件编译符号,并添加与您的配置或目标一起使用的符号,例如。使其成为 SILVERLIGHT;WINDOWS_PHONE;CUSTOMVERSION1

然后在您的代码中您可以说

#if CUSTOMVERSION1
    Debug.WriteLine("This is a CUSTOMVERSION1");
#else
    Debug.WriteLine("This is not CUSTOMVERSION1");
#endif

否则 - 如果您想进行更大的更改 - 您将创建另一个项目并将文件从一个项目链接到另一个项目 - 项目/添加/现有项目//添加为链接(“添加”按钮菜单中的一个选项)。然后,您可以根据需要添加更多文件或添加这些文件的不同版本。您可以使用项目链接器来更快地完成此操作。

You can use Configuration Manager to add additional configurations to the list of Debug and Release. Then for each configuration go to Project/Properties/Build/Conditional compilation symbols and add a symbol used with your configuration or target, eg. make it SILVERLIGHT;WINDOWS_PHONE;CUSTOMVERSION1

Then in your code you can say

#if CUSTOMVERSION1
    Debug.WriteLine("This is a CUSTOMVERSION1");
#else
    Debug.WriteLine("This is not CUSTOMVERSION1");
#endif

Otherwise - if you want to make bigger changes - you would create another project and link files from one project to another project - project/Add/Existing Item//Add As Link(an option in the "Add" button menu). You can then add more files or add different versions of these files as needed. You could use Project Linker to do it faster.

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