无法构建 JavaScript 通用 Windows 应用

Can't build JavaScript universal Windows app

我开始了一个新项目 - javascript - windows 通用应用程序,在不更改任何内容或添加任何代码的情况下,我尝试构建它并 运行 但它不会与以下错误:

Error : DEP0700 : Registration of the app failed. error 0x80080204: App manifest validation error: The document root element m:Package must be defined in the http://schemas.microsoft.com/appx/2010/manifest namespace. (0x80080204) App7

报告了类似的问题 here,我尝试通过项目 -> 商店 -> 获取开发人员许可来续订许可,但无济于事。似乎实际问题必须是我不太熟悉的文档根元素部分,因为在我尝试将 xmlns:m="http://schemas.microsoft.com/appx/2010/manifest" 添加到我的包之前我没有使用过 Visual Studio 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"
  xmlns:m="http://schemas.microsoft.com/appx/2010/manifest"
  IgnorableNamespaces="uap mp m">

  <Identity
    Name="155dc546-80c7-4275-b2a6-a2aa8ddec5f7"
    Version="1.0.0.0"
    Publisher="CN=FroboZ" />

  <mp:PhoneIdentity PhoneProductId="155dc546-80c7-4275-b2a6-a2aa8ddec5f7" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
  <Properties>
    <DisplayName>App7</DisplayName>
    <PublisherDisplayName>FroboZ</PublisherDisplayName>
    <Logo>images\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"
      StartPage="default.html">

      <uap:VisualElements
        DisplayName="App7"
        Description="App7"
        BackgroundColor="#464646"
        Square150x150Logo="images\Logo.png"
        Square44x44Logo="images\SmallLogo.png">

        <uap:SplashScreen Image="images\splashscreen.png" />

      </uap:VisualElements>
    </Application>
  </Applications>

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

</Package>

感谢您花时间阅读我的问题,如果您能帮我解决这个问题,那就更感谢了!

windows10 中未打开开发者模式。我不确定这有什么不同,但在打开它后我能够构建项目。