visual-studio .NET Compact Framework SDK 下载
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/1587378/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
.NET Compact Framework SDK download
提问by James Newton-King
Where can I find the .NET Compact Framework SDK for developing Compact Framework applications in Visual Studio?
在哪里可以找到用于在 Visual Studio 中开发 Compact Framework 应用程序的 .NET Compact Framework SDK?
回答by Christopher Fairbairn
Unlike the desktop version of the .NET runtime there isn't a single download for the .NET CF that I am aware of.
与 .NET 运行时的桌面版本不同,我所知道的 .NET CF 没有一个下载。
You instead need to install a Visual Studio based SDK for each device type you want to support. These SDKs install emulators and other development related support files specific to a given platform that the .NET CF runs on (i.e. XBOX, Zune and Windows Mobile OS variants all have subtle differences even though they all use the "same" .NET CF).
您需要为要支持的每种设备类型安装基于 Visual Studio 的 SDK。这些 SDK 安装特定于运行 .NET CF 的给定平台的模拟器和其他与开发相关的支持文件(即 XBOX、Zune 和 Windows Mobile 操作系统变体都有细微的差异,即使它们都使用“相同的”.NET CF)。
For example here is the MS downloads page for SDK for Windows Mobile 6.0 Professional and Standarddevices. When you install Visual Studio also make sure you select the optional Smart Devices support feature.
例如,这里是适用于 Windows Mobile 6.0 Professional 和 Standard设备的SDK的 MS 下载页面。安装 Visual Studio 时,还要确保选择可选的智能设备支持功能。
If you build something against the WM 6.0 SDK, you should find that for the most part your .NET CF application will work on any Windows Mobile device (i.e. Pocket PC 2003, WM 5.0, WM6.0, 6.1, 6.5...). This of course assumes you don't include something device, or OS version specific.
如果您针对 WM 6.0 SDK 构建某些东西,您应该会发现您的 .NET CF 应用程序大部分都可以在任何 Windows Mobile 设备上运行(即 Pocket PC 2003、WM 5.0、WM6.0、6.1、6.5...) . 这当然假设您不包含特定于设备或操作系统版本的内容。
If you install more than one SDK, its easy enough within the Visual Studio IDE (a Change Platform menu option) to toggle between the various OS versions/platforms within your project to test on different emulators etc.
如果你安装了多个 SDK,它在 Visual Studio IDE(一个更改平台菜单选项)中很容易在项目中的各种操作系统版本/平台之间切换,以在不同的模拟器等上进行测试。

