我已经开始了一个新项目--javascript - windows通用应用程序并且没有更改任何内容或添加任何代码我尝试构建它并运行它但它不会出现以下错误:
错误:DEP0700:应用注册失败。错误0x80080204:应用程序清单验证错误:文档根元素m:包必须在http://schemas.microsoft.com/appx/2010/manifest命名空间中定义。 (0x80080204)App7
报告了一个类似的问题here,我尝试用项目更新许可证 - >商店 - >获取开发者许可证无济于事。似乎实际问题必须是我不熟悉的文档根元素部分,因为在我尝试将xmlns:m="http://schemas.microsoft.com/appx/2010/manifest"
添加到包appxmanifest
之前我没有使用过Visual Studio。但这似乎没有帮助。
下面是整个清单:
<?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>
感谢您花时间阅读我的问题,如果您可以帮助我解决这个问题,那就更多了!
答案 0 :(得分:1)
开发者模式没有在Windows 10中打开。我不确定这有什么不同但是在启用后我能够构建项目。