Unnecessary windows desktop sdk

Как использовать пакет SDK для Windows 10 в классическом приложении Windows How to: Use the Windows 10 SDK in a Windows Desktop application

При создании проекта классического рабочего стола Windows в Visual Studio он по умолчанию обращается к пакету SDK для Windows 10. When you create a new classic Windows desktop project in Visual Studio, it targets the Windows 10 SDK by default. Visual Studio устанавливает версию этого пакета SDK при установке рабочей нагрузки C++ рабочего стола. Visual Studio installs a version of this SDK when you install the C++ Desktop workload. Пакет SDK для Windows 10 поддерживает написание кода для Windows 7 SP1 и более поздних версий. The Windows 10 SDK supports writing code for Windows 7 SP1 and later. Дополнительные сведения о нацеливании на конкретные версии Windows см. в разделе Использование заголовков Windows и обновление winver и _WIN32_WINNT. For more information about targeting specific versions of Windows, see Using the Windows Headers and Update WINVER and _WIN32_WINNT.

При обновлении существующего проекта можно выбрать один из вариантов: можно использовать целевой Windows SDK, указанный в проекте. When you upgrade an existing project, you have a choice: You can keep using the target Windows SDK specified in your project. Вы также можете перенацелить проект для использования пакета SDK для Windows 10. Or, you can retarget your project to use the Windows 10 SDK. С помощью пакета SDK для Windows 10 вы получаете преимущества поддержки новейших операционных систем и языковых стандартов. With the Windows 10 SDK, you get the advantages of support for the latest operating systems and language standards.

Использование правильного Windows SDK для проекта Use the right Windows SDK for your project

Начиная с Visual Studio 2015 библиотека среды выполнения C (CRT) была разделена на две части: одна часть, ucrtbase, содержит стандартные функции CRT C и Microsoft, которые можно использовать в универсальных приложениях Windows. Starting with Visual Studio 2015, the C Runtime (CRT) library was separated into two parts: One part, ucrtbase, contains the Standard C and Microsoft-specific CRT functions that you can use in Universal Windows Apps. Эта библиотека теперь называется универсальной библиотекой CRT или UCRT и перешла в пакет SDK для Windows 10. This library is now known as the Universal CRT, or UCRT, and has moved into the Windows 10 SDK. UCRT содержит множество новых функций, таких как функции C99, которые необходимы для поддержки новейших C++ языковых стандартов. The UCRT contains many new functions, such as C99 functions, needed to support the latest C++ language standards. Другая часть исходной CRT — vcruntime. The other part of the original CRT is vcruntime. Он содержит поддержку, запуск и код завершения среды выполнения C, а также все остальное, которые не были отправлены в UCRT. It contains the C runtime support, startup, and termination code, and everything else that didn’t go into the UCRT. Библиотека vcruntime устанавливается вместе с C++ компилятором и набором инструментов в Visual Studio. The vcruntime library gets installed along with the C++ compiler and toolset in Visual Studio. Дополнительные сведения см. в разделе функции библиотеки CRT. For more information, see CRT library features.

UCRT теперь является системным компонентом, установленным на каждой версии Windows 10. The UCRT is now a system component that’s installed on every version of Windows 10. Он также доступен как устанавливаемый компонент для всех более ранних поддерживаемых версий Windows. It’s also available as an installable component for all earlier supported versions of Windows. Вы можете использовать пакет SDK для Windows 10, чтобы выбрать все поддерживаемые версии Windows. You can use the Windows 10 SDK to target all the supported versions of Windows. Полный список поддерживаемых операционных систем см. в разделе Windows 10 SDK. For a complete list of supported operating systems, see Windows 10 SDK.

Читайте также:  Linux mint ulysse wallpapers

Чтобы перенацелить проекты на использование пакета SDK для Windows 10 при обновлении версии проекта до Visual Studio 2015, выполните следующие действия. To retarget your projects to use the Windows 10 SDK when you upgrade from a project version before Visual Studio 2015, follow these steps:

Изменение целевой платформы для пакета SDK для Windows 10 To target the Windows 10 SDK

Убедитесь, что установлен пакет SDK для Windows 10. Make sure the Windows 10 SDK is installed. Пакет SDK для Windows 10 устанавливается как часть разработки классических приложений с C++ рабочей нагрузкой. The Windows 10 SDK is installed as part of the Desktop development with C++ workload. Автономная версия доступна в загружаемых файлах и средствах для Windows 10. A standalone version is available at Downloads and tools for Windows 10.

Откройте контекстное меню для узла проекта и выберите пункт перенацелить проекты. Open the shortcut menu for the project node, and choose Retarget projects. (В более ранних версиях Visual Studio выберите Изменить целевую версию пакета SDK.) Откроется диалоговое окно Проверка действий решения . (In earlier versions of Visual Studio, choose Retarget SDK Version.) The Review Solution Actions dialog appears.

В раскрывающемся списке Версия целевой платформы выберите версию пакета SDK для Windows 10, которую вы хотите использовать. In the Target Platform Version dropdown list, choose the version of the Windows 10 SDK you want to target. В целом, мы рекомендуем выбрать последнюю установленную версию. Generally speaking, we recommend you choose the latest installed version. Нажмите кнопку ОК , чтобы применить изменение. Choose the OK button to apply the change.

8,1 в этом контексте относится к пакету SDK для Windows 8.1. The 8.1 in this context refers to the Windows 8.1 SDK.

Если этот шаг выполнен успешно, в окне вывода появится следующее сообщение. If this step is successful, the following text appears in the Output window:

Retargeting End: 1 completed, 0 failed, 0 skipped

Откройте диалоговое окно Свойства проекта. Open the project properties dialog. В разделе Свойства конфигурации > Общие Обратите внимание на значения версии целевой платформы Windows. In the Configuration Properties > General section, notice the values of Windows Target Platform Version. Изменение значения на данном этапе действует аналогично данной процедуре. Changing the value here has the same effect as following this procedure. Дополнительные сведения см. в разделе Страница свойств «Общие» (проект). For more information, see General Property Page (Project).

Это действие приводит к изменению значений макросов проекта, содержащих пути к файлам заголовка и файлам библиотеки. This action changes the values of project macros that include paths to header files and library files. Чтобы увидеть изменения, откройте раздел » визуальные C++ каталоги » диалогового окна » Свойства проекта «. To see what changed, open the Visual C++ Directories section of the Project Properties dialog. Выберите одно из свойств, например каталоги включения. Select one of the properties, such as Include Directories. Затем откройте раскрывающийся список значение свойства и выберите . Then, open the property value’s dropdown list, and choose . Откроется диалоговое окно Каталоги включения . The Include Directories dialog appears.

Нажмите кнопку макросы > > и прокрутите список макросов до Windows SDK макросов, чтобы просмотреть все новые значения. Choose the Macros >> button, and scroll down the list of macros to the Windows SDK macros to see all the new values.

При необходимости повторите процедуру перенаправления для других проектов решений и перестройте решение. Repeat the retargeting procedure for other solution projects, as needed, and rebuild the solution.

Читайте также:  Mac os как удалить неудаляемые файлы

Изменение целевой платформы для пакета SDK для Windows 8.1 To target the Windows 8.1 SDK

Откройте контекстное меню узла проекта в обозреватель решений и выберите пункт перенацелить проекты. Open the shortcut menu for the project node in Solution Explorer, and choose Retarget projects. (В более ранних версиях Visual Studio выберите Изменить целевую версию пакета SDK.) (In earlier versions of Visual Studio, choose Retarget SDK Version.)

В раскрывающемся списке Версия целевой платформы выберите 8,1. In the Target Platform Version dropdown list, choose 8.1.

Windows SDK and emulator archive

This archive contains SDK releases and updates for earlier Windows and Windows Phone platform versions, as well as emulator releases supporting development and UX testing for mobile device experiences.

For the latest editions of Visual Studio and the Windows 10 developer tools, see Downloads and tools for Windows.

Windows 10, version 20H2 is a scoped set of features for select performance improvements and quality enhancements. Developers should be aware of this release, but no action is necessary at this time.

A new Windows SDK will not be issued to accompany this version of Windows because this release doesn’t introduce new APIs. That means there’s no need to modify your project files or target a new version of Windows, and you should continue to use the Windows 10 SDK for Windows 10, version 2004. When setting the target version for your Windows app, Windows 10 build 19041 is still the most recent target version.

Windows 10

Released in conjunction with Windows 10, version 2004. Includes servicing updates 10.0.19041.685. Updated 12/16/20

  • Resolved unpredictable and hard to diagnose crashes when linking both umbrella libraries and native OS libraries (for example, onecoreuap.lib and kernel32.lib)
  • Resolved issue that prevented AppVerifier from working
  • Resolved issue that caused WACK to fail with “Task failed to enable HighVersionLie”

See details

Release
Windows 10 SDK, version 2004 (10.0.19041.0) INSTALL SDK DOWNLOAD .ISO
Windows 10 SDK, version 1903 (10.0.18362.1)

Released in conjunction with Windows 10, version 1903.

INSTALL SDK DOWNLOAD .ISO
Windows 10 SDK, version 1809 (10.0.17763.0) Released in conjunction with Windows 10, version 1809. Includes servicing updates 10.0.17763.132.

  • Addressed issue where Windows App Certification Kits crashes for any app that declares more than one Device Family in manifest
  • Addressed issue where Windows App Certification Kit failed to deploy MSIX bundle
  • Addressed issue where UWP projects that used multiple MinTargetPlatformVersions would fail with a build error related to XAML.
  • Addressed issue where deriving from SelectorAutomationPeer in IDL raises MIDL error «Unsupported array pattern detected.»

See details

INSTALL SDK DOWNLOAD .ISO
Windows 10 SDK, version 1803 (10.0.17134.12) Released in conjunction with the Windows 10 April Update (version 1803). INSTALL SDK
Windows 10 SDK (10.0.16299.91) and Microsoft Emulator for Windows 10 mobile (10.0.15254.1) Released in conjunction with the Windows 10 Fall Creators Update (version 1709). INSTALL SDK INSTALL EMULATOR
Windows 10 SDK (10.0.15063.468) and Microsoft Emulator for Windows 10 mobile (10.0.15254.1) Released in conjunction with the Windows 10 Creators Update (version 1703).

  • Addressed issue where build errors were encountered when including events.h
  • Back ported tests to App Certification Kit
  • Addressed issue where WinAppDeploycmd tool fails to connect to phone via USB
  • Addressed issue where UWP Remote Deployment Pipeline silently swallows SMB exceptions.

See details

INSTALL SDK INSTALL EMULATOR
Windows 10 SDK (10.0.14393.795) and Microsoft Emulator for Windows 10 mobile (10.0.14393.0) Released in conjunction with the Windows 10 Anniversary Edition (version 1607).

This non-security update includes quality improvements.

  • Addressed issue where developers could not build UWP apps on Windows 7 because MRMSupport.dll failed to load.
  • Addressed issue where MidlRT and MDMerge failed to run on Windows 7
  • Addressed issue where SDK setup failed to install on Windows
  • Addressed issue where deploying a legacy Store app to a 8.1 Phone caused Visual Studio to crash
  • Addressed issue where application data was not preserved across remote debugging sessions when apps were getting un-registered.
INSTALL SDK INSTALL EMULATOR
Windows 10 SDK (10.0.10586.212) and Microsoft Emulator for Windows 10 mobile (10.0.10586.11) Released in conjunction with Windows 10, version 1511 INSTALL SDK INSTALL EMULATOR
Windows 10 SDK (10.0.10240) and Microsoft Emulator for Windows 10 mobile (10.0.10240). Released in conjunction with Windows 10, version 1507.

Note: The version will display as 10.0.26624 during setup.

INSTALL SDK INSTALL EMULATOR
Microsoft HoloLens Emulator Run apps on Windows Holographic in a virtual machine without a HoloLens. This installation also includes holographic DirectX project templates for Visual Studio INSTALL EMULATOR

Earlier releases

Released in October 2013, this SDK can be used to create Windows apps (for Windows 8.1 or later) using web technologies, native, and managed code; or desktop apps that use the native or managed programming model.

INSTALL SDK Windows Phone 8.1 development tools

The Windows Phone 8.1 development tools are installed with Visual Studio Community 2015 with Update 2. Features introduced in Update 2 include new emulators and universal app templates.

The Windows Phone 8.1 Emulators package adds six emulator images to an existing installation of Visual Studio 2013 so you can test how apps will work on phones running Windows Phone 8.1. (Requires Visual Studio 2013 with Update 2 or later.)

INSTALL EMULATORS Windows Phone 8.1 Update and Emulators

Supports use of emulators in test scenarios for phones running Windows Phone 8.1 Update 1. (Requires Visual Studio 2013 with Update 2 or later.)

Released in November 2012, this SDK can be used to create Windows apps (for Windows 8 or earlier) using web technologies, native, and managed code; or desktop apps that use the native or managed programming model.

Included in Visual Studio Community 2015 to support developing apps for Windows Phone 8 devices.

INSTALL VISUAL STUDIO MORE LANGUAGES Windows Phone SDK 8.0 Update 3 Emulators

Adds five new emulator images to an existing installation of Windows Phone SDK 8.0. With this update installed, you can test how your app will run on devices that have Update 3 (version 8.0.10492 or later) of Windows Phone 8. This update requires either Visual Studio 2012 with Windows Phone SDK 8.0 and Update 4 or later, or Visual Studio 2013 with the optional Windows Phone SDK 8.0 option selected during setup.

INSTALL EMULATORS MORE LANGUAGES Windows Phone SDK 8.0 Update for Windows Phone 8.0.10322 Adds four new emulator images to an existing installation of Windows Phone SDK 8.0. This update requires either Visual Studio 2012 with Windows Phone SDK 8.0 and Update 4 or later, or Visual Studio 2013 with the optional Windows Phone SDK 8.0 option selected during setup. INSTALL EMULATORS MORE LANGUAGES Windows Phone SDK Update for Windows Phone 7.8

Adds two new emulator images to an existing Windows Phone SDK installation. This update supports Windows Phone SDK 7.1 and Windows Phone SDK 8.0. With this update, use Windows Phone 8 Start screen experience in your Windows Phone 7.5 apps. You also can test how your apps will run on Windows Phone 7.8 devices.

Tools to help you develop apps for Windows Phone 7.5 and Windows Phone 7.0 devices.

Brings additional functionality to Windows Phone SDK 7.1. With this update, it’s easier to develop apps and games that are optimized to run on 256-MB devices.

INSTALL SDK MORE LANGUAGES Windows SDK for Windows 7 and .NET Framework 4

Released in June 2010, this SDK can be used to develop applications for Windows 7, Windows XP, Windows Server 2003, Windows Vista, Windows Server 2008, and .NET Framework versions 2.0, 3.0, 3.5 SP1, and 4.0.

To avoid problems with installation, review this article first.

Читайте также:  Support aspx только для windows
Оцените статью