2

Visual Studio 2015 RC の空のアプリ (Windows ユニバーサル) テンプレートにエラーが見つかりました。

スキーマ内の不一致です。

エラー 0xC00CE014: アプリ マニフェストの検証エラー: アプリ マニフェストはスキーマに従って有効である必要があります: 行 23、列 4、理由: 要素 '{http:/schemas.microsoft.com/appx/manifest/foundation/windows10}TargetDeviceFamily' は予期されていません親要素 '{http:/schemas.microsoft.com/appx/manifest/foundation/windows10}Dependencies' のコンテンツ モデルに従います。期待: {http:/schemas.microsoft.com/appx/manifest/foundation/windows10}TargetPlatform.

パッケージ.appxmanifest:

<?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"
  IgnorableNamespaces="uap mp">

  <Identity
    Name="a29f94a4-dc5e-4558-9497-90c6190f49ef"
    Publisher="CN=Petr"
    Version="1.0.0.0" />

  <mp:PhoneIdentity PhoneProductId="a29f94a4-dc5e-4558-9497-90c6190f49ef" 
                    PhonePublisherId="00000000-0000-0000-0000-000000000000"/>

  <Properties>
    <DisplayName>App1</DisplayName>
    <PublisherDisplayName>Petr</PublisherDisplayName>
    <Logo>Assets\StoreLogo.png</Logo>
  </Properties>

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

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

  <Applications>
    <Application Id="App"
      Executable="$targetnametoken$.exe"
      EntryPoint="App1.App">
      <uap:VisualElements
        DisplayName="App1"
        Square150x150Logo="Assets\Logo.png"
        Square44x44Logo="Assets\SmallLogo.png"
        Description="App1"
        BackgroundColor="#464646">
        <!--ForegroundText="dark"-->
        <uap:SplashScreen Image="Assets\SplashScreen.png" />
      </uap:VisualElements>
    </Application>
  </Applications>

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

1 に答える 1

1

アプリを Windows システムに展開するときにこのエラーが発生する場合は、古い Windows 10 プレビュー システムにアプリ パッケージを展開/インストールしようとしていることを意味します。//Build で公開された Windows 10 バージョンを使用していることを確認してください。

http://blogs.windows.com/bloggingwindows/2015/04/29/new-windows-10-insider-preview-build-10074-now-available/

于 2015-05-08T17:36:47.930 に答える