Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 804 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 804 Bytes

CheckWinAppSdk

A simple command line utility that detects if the DDLM and Framework WinAppSdk packages are intalled. For use by a framework dependent app installer. The exit code indicates if a suitable sdk has been found. The project only builds the x86 version because that will run on any of the three supported platforms.

It requires two position dependent parameters:

CheckWinApp.exe <version> <platform>

Where <version> is the minimum MSIX package version of a <major>.<minor> WinAppSdk release.

The <platform> is a Windows.System.ProcessorArchitecture enum value. Valid values are:

x86 = 0
x64 = 9
arm64 = 12

For example:

CheckWinApp.exe 3000.851.1712.0 9

Will return 0 if a x64 WinAppSdk release 1.3.n is installed where n >= 1