在 Windows Phone 7 中创建具有多个目标的应用程序
有没有办法创建一个具有多个目标的项目/应用程序。
这与我们在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用配置管理器将其他配置添加到调试和发布列表中。然后,对于每个配置,请转到项目/属性/构建/条件编译符号,并添加与您的配置或目标一起使用的符号,例如。使其成为 SILVERLIGHT;WINDOWS_PHONE;CUSTOMVERSION1
然后在您的代码中您可以说
否则 - 如果您想进行更大的更改 - 您将创建另一个项目并将文件从一个项目链接到另一个项目 - 项目/添加/现有项目//添加为链接(“添加”按钮菜单中的一个选项)。然后,您可以根据需要添加更多文件或添加这些文件的不同版本。您可以使用项目链接器来更快地完成此操作。
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
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.