Windows 10 IOT Foundation命名空间缺少IOT

时间:2016-07-14 14:27:19

标签: windows cordova iot

我们正在尝试为我们的Package.appxmanifest添加iot功能,以实现cordova项目。 Visual Studio抱怨我们尝试使用的功能无法找到,也不是基础名称空间的孩子。

带下划线的iot:功能在悬停时显示以下内容: 元素' BackgroundTasks'在命名空间' http://schemas.microsoft.com/appx/manifest/foundation/winows10'具有无效的子元素'功能'在命名空间' http://schemas.microsoft.com/appx/manifest/iot/windows10'。预期可能元素的列表:' ...

事情是我创建了这个新项目,让vs做所有的工作,但它无法解决它自己创建的条目。我们看到VS生成的新C#和JS项目。有人可以帮助我们吗? (是的,我们还为项目添加了参考资料" Windows IoT Extensions for UWP" 10.0.10586.0。)。仅供参考我们在添加时也会遇到相同的错误。

这是package.appxmanifest:

<?xml version='1.0' encoding='utf-8'?>
<Package IgnorableNamespaces="uap mp iot" xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:iot="http://schemas.microsoft.com/appx/manifest/iot/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10">
    <Identity Name="com.project.syndication.sitepad" Publisher="CN=$username$" Version="2.0.0.0" />
    <mp:PhoneIdentity PhoneProductId="a885d1d0-453e-11e6-a59d-550bfa336405" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
    <Properties>
        <DisplayName>SitePad App</DisplayName>
        <PublisherDisplayName>ERT</PublisherDisplayName>
        <Logo>images\StoreLogo.png</Logo>
    </Properties>
    <Dependencies>
        <TargetDeviceFamily MaxVersionTested="10.0.10586.0" MinVersion="10.0.10586.0" Name="Windows.Universal" />
    </Dependencies>
    <Resources>
        <Resource Language="x-generate" />
    </Resources>
    <Applications>
        <Application Id="com.project.syndication.sitepad" StartPage="ms-appx-web:///www/index.html">
            <uap:VisualElements BackgroundColor="#464646" Description="CordovaApp" DisplayName="SitePad App" Square150x150Logo="images\Square150x150Logo.png" Square44x44Logo="images\Square44x44Logo.png">
                <uap:SplashScreen Image="images\splashscreen.png" />
                <uap:DefaultTile ShortName="SitePad App" Square310x310Logo="images\Square310x310Logo.png" Square71x71Logo="images\Square71x71Logo.png" Wide310x150Logo="images\Wide310x150Logo.png" />
            </uap:VisualElements>
            <uap:ApplicationContentUriRules>
                <uap:Rule Match="ms-appx-web:///" Type="include" WindowsRuntimeAccess="all" />
            </uap:ApplicationContentUriRules>
        </Application>
    </Applications>
    <Capabilities>
        <Capability Name="internetClient" />
        <uap:Capability Name="picturesLibrary" />
        <iot:Capability Name="systemManagement" />
    </Capabilities>
</Package>

1 个答案:

答案 0 :(得分:0)

悬停错误看起来像某个东西的错误(VS?),我多次看到它,但我的代码仍然编译并运行正常。

不用担心这个。