如何多目标 SilverLight 4 和 WPF 应用程序?
如何同时实现 SilverLight 4 和 WPF 应用程序的多目标?
How can I MultiTarget Both SilverLight 4 and WPF Application ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何同时实现 SilverLight 4 和 WPF 应用程序的多目标?
How can I MultiTarget Both SilverLight 4 and WPF Application ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
标准方法是创建一个包含 WPF 项目和 Silverlight 项目的解决方案,这两个项目都是使用新建项目向导创建的,或者其中一个项目可以是您的现有项目。然后使用链接将一个项目中的文件添加到另一项目(添加 -> 现有项目 -> 添加 -> 下拉箭头 -> 添加为链接)。然后使用#if SILVERLIGHT 来处理任何平台差异。
The standard approach is to create a solution that contains a WPF project and a Silverlight project, both created using the new project wizard or one can be your existing project. Then add files in one project to the other project using links (Add -> Existing Item -> Add -> Drop-down arrow -> Add as link). Then use
#if SILVERLIGHT
to handle any platform differences.据我所知,您可能会使用编译器标志。为什么不向针对 WPF、Silverlight 等的项目学习呢?例如,您可以查看 Caliburn.Micro
As far as I know you will probably work with compiler flags. Why not learn from a project that does target WPF, Silverlight etc.? You could e.g. check out Caliburn.Micro