不能建立通用的JavaScript应用程序的Windows(Can't build Java

2019-10-23 08:22发布

我已经开始了一个新的项目 - 的JavaScript - 窗户普遍的应用程序,并在不改变任何东西,或添加任何代码,我尝试建立并运行它,但它不会与下面的错误:

错误:DEP0700:应用程序的注册失败。 错误0x80080204:应用清单验证错误:文档根元素M:包必须在定义http://schemas.microsoft.com/appx/2010/manifest命名空间。 (0x80080204)App7

据报道类似的问题在这里 ,我试图恢复与项目的许可- >商店- > AQUIRE开发人员许可证无济于事。 这似乎是实际的问题必须是,我真的不熟悉,因为我还没有与Visual Studio的工作之前,我尝试添加文档的根元素部分xmlns:m="http://schemas.microsoft.com/appx/2010/manifest"我的包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> 

感谢您抽出时间来阅读我的问题,更是这样,如果你能帮助我解决这个问题!

Answer 1:

开发模式是无法在Windows 10开启,我不知道这能起到什么作用,但是,我把这个之后才得以构建项目。



文章来源: Can't build JavaScript universal Windows app