我可以在 Windows 8 的 WinRT Metro 风格应用程序上使用现有的 .Net 4.0 类库吗
我刚刚开始深入研究 Metro Style 应用程序开发,当我查看应用程序的属性时,我意识到没有针对性的框架。
那么,我可以在适用于 Windows 8 的 WinRT Metro Stype 应用程序上使用现有的 .Net 4.0 类库(或以前的类库)吗?
例如,我想获取 Autofac 并使用它,但我不确定它是否合适。
编辑
我认为它实际上是针对.Net Framework Core 4.5。
I just started diving into Metro Style application development and I realized that there is no framework targeted when I look at the properties of the application.
So, can I use my existing .Net 4.0 Class Libraries (or previous ones) on WinRT Metro Stype Applications for Windows 8?
For example, I would like to get the Autofac
and use it but I am not sure if it would be a right fit.
Edit
I think it is actually targeting .Net Framework Core 4.5.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
虽然许多 WinRT API 与 .NET API 非常相似,但您不能直接共享类库。这与 WPF、Silverlight 和 Silverlight for Windows Phone 的情况相同,其中 API 相似,但类库不可互换。但是,如果您使用可移植类库( PCL)。我猜想 PCL 将来有可能支持 WinRT,但是,我确信它会像 XBox360 支持一样,只有核心库可以共享。
Whilst a number of WinRT APIs are quite similar to the .NET APIs, you cannot directly share class libraries. This is the same situation with WPF, Silverlight and Silverlight for Windows Phone, where the APIs are similar but class libraries are not interchangeable. You can however target these three platforms if you use the Portable Class Library (PCL). I guess there is a chance that the PCL might support WinRT in the future, however, I am sure it will be much like XBox360 support, where only the core libraries can beshared.