1
votes

I am trying to make a simple ServiceApp in UWP following this Microsoft article https://docs.microsoft.com/en-us/windows/uwp/launch-resume/how-to-create-and-consume-an-app-service

However, the manifest change suggested by this article is causing my service app to not build.

enter image description here

I have spent days searching Microsoft documentation for terms such as "http://schemas.microsoft.com/appx/manifest/uap/windows10/4", "uap4", and "SupportsMultipleInstances" but have not had any luck figuring why building fails. I have posted numerous questions on MSDN with detailed information, but that turned to be a major waste of time, so, as usual with MS.

My Windows 10 version is 1703, Windows 10 Enterprise, OS Build 15063.413

Visual Studio 2015 Enterprise, Version 14.0.25431.01 Update 3

Below is the error I get

Validation error. error C00CE015: App manifest validation error: 
The app manifest must be valid as per schema: 
Line 31, Column 58, Note: 
The schema for OSMinVersion specified does not recognize XML fields with namespace "http://schemas.microsoft.com/appx/manifest/uap/windows10/4". 
Please ensure that you have the correct OSMinVersion specified. Reason: The attribute '{http://schemas.microsoft.com/appx/manifest/uap/windows10/4}SupportsMultipleInstances' on the element '{http://schemas.microsoft.com/appx/manifest/uap/windows10}AppService' is not defined in the DTD/Schema.   
AppServiceProviderInSeparateBackgroundProcess   C:\Users\myuid\Desktop\work\AppServiceProviderInSeparateBackgroundProcess\AppServiceProviderInSeparateBackgroundProcess\bin\x86\Debug\AppxManifest.xml  

Here is the full Package.appmanifest as created by Blank App (Universal Windows) with added namespace and Extensions tag as suggested by the article

<?xml version="1.0" encoding="utf-8"?>

<Package
  xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
  xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest"
  xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
  xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3"
  xmlns:uap4="http://schemas.microsoft.com/appx/manifest/uap/windows10/4"
  IgnorableNamespaces="uap mp">

  <Identity
    Name="8db1ab9e-1dff-4fd4-a450-77fadd221043"
    Publisher="CN=username"
    Version="1.0.0.0" />

  <mp:PhoneIdentity PhoneProductId="8db1ab9e-1dff-4fd4-a450-77fadd221043" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>

  <Properties>
    <DisplayName>AppServiceProviderInSeparateBackgroundProcess</DisplayName>
    <PublisherDisplayName>username</PublisherDisplayName>
    <Logo>Assets\StoreLogo.png</Logo>
  </Properties>

  <Dependencies>
    <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" />
  </Dependencies>

  <Resources>
    <Resource Language="x-generate"/>
  </Resources>

  <Applications>
    <Application Id="App"
      Executable="$targetnametoken$.exe"
      EntryPoint="AppServiceProviderInSeparateBackgroundProcess.App">
      <!-- Added Appservice extension that advertises com.Microsoft.Inventory service
           This identifies this app as an app service provider.  The service wil be
           implemented as a background task.
           The app service app exposes the service to other apps.-->
      <Extensions>
        <uap:Extension Category="windows.appService" EntryPoint="MyAppService.Inventory">
          <uap:AppService Name="com.microsoft.inventory" uap4:SupportsMultipleInstances="true"/>
        </uap:Extension>
      </Extensions>
      <uap:VisualElements
        DisplayName="AppServiceProviderInSeparateBackgroundProcess"
        Square150x150Logo="Assets\Square150x150Logo.png"
        Square44x44Logo="Assets\Square44x44Logo.png"
        Description="AppServiceProviderInSeparateBackgroundProcess"
        BackgroundColor="transparent">
        <uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png"/>
        <uap:SplashScreen Image="Assets\SplashScreen.png" />
      </uap:VisualElements>
    </Application>
  </Applications>

  <Capabilities>
    <Capability Name="internetClient" />
  </Capabilities>
</Package>

Version of UWP screenshot is below enter image description here

enter image description here

Windows 10 SDK enter image description here

1
You should use small t instead of caps T in True Like this uap4:SupportsMultipleInstances="true" - Vijay Nirmal
Thanks Vijay but that makes no difference. - pixel
That was a mistake in Microsoft documentation. - Vijay Nirmal
Maybe, but they are not correcting the link article nor answering my question on it @Microsoft - pixel
@pixel To Target Creators Update you need Visual Studio 2017. - Vijay Nirmal

1 Answers

3
votes

The problem is that you need to use Visual Studio 2017 and target build 15063 or higher to use the uap4-namespaced attribute.