Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

APPX321 SDK folder containing 'UAP.props' for 'UAP 10.0.17763.0' cannot be located

I want to create an upload package for the Windows Store. The app is essentially "Hello world" for a dev express XAF Win application. I am using the Desktop Bridge.

I am following the docs to create the upload package

This created a file

C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\MSBuild\Microsoft\VisualStudio\v15.0\AppxPackage

And an error

APPX3217    SDK folder containing 'UAP.props' for 'UAP 10.0.17763.0' 
cannot be located. See http://go.microsoft.com/fwlink/?LinkID=798187 for more information

When I double click the error it goes to the following code in the Targets file

<GetSdkPropertyValue Condition="'$(AppxPackagePipelineVersion)' == '$(UapBuildPipeline)'"
                 TargetPlatformSdkRootOverride="$(TargetPlatformSdkRootOverride)"
                 SDKIdentifier="$(SDKIdentifier)"
                 SDKVersion="$(SDKVersion)"
                 TargetPlatformIdentifier="$(TargetPlatformIdentifier)"
                 TargetPlatformMinVersion="$(TargetPlatformMinVersion)"
                 TargetPlatformVersion="$(TargetPlatformVersion)"
                 PropertyName="WindowsSdkDir"
                 VsTelemetrySession="$(VsTelemetrySession)">

I am targeting WIndows 10, version 1809(10.0; Build 17763) and also have this as the min version.

The application is using .Net Framework 4.7.2

like image 658
Kirsten Avatar asked Dec 02 '18 00:12

Kirsten


1 Answers

As per the Microsoft link I had to install the update for Windows 10 SDK, version 1809.

like image 186
Kirsten Avatar answered Sep 28 '22 00:09

Kirsten