在新的 Visual Studio 2019 解决方案中,我创建了一个 .Net Core 控制台项目和一个 UWP 项目,我正在使用 Windows 应用程序打包项目对其进行打包。在这个阶段,我能够毫无问题地编译和运行所有这些项目。
我的下一个任务是将控制台应用程序的编译输出添加为打包项目windows.fullTrustProcess
的Package.appxmanifest 中:
<?xml version="1.0" encoding="utf-8"?>
<Package
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3"
xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10"
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
IgnorableNamespaces="uap uap3 desktop rescap">
<Identity
Name="7260053b-0cee-406a-a6ce-0842444e35eb"
Publisher="CN=Publisher"
Version="1.0.0.0" />
<Properties>
<DisplayName>DisplayName</DisplayName>
<PublisherDisplayName>DisplayName</PublisherDisplayName>
<Logo>Images\StoreLogo.png</Logo>
</Properties>
<Dependencies>
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" />
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.14393.0" MaxVersionTested="10.0.14393.0" />
</Dependencies>
<Resources>
<Resource Language="x-generate"/>
</Resources>
<Applications>
<Application Id="App"
Executable="$targetnametoken$.exe"
EntryPoint="$targetentrypoint$">
<uap:VisualElements
DisplayName="DisplayName"
Description="Description"
BackgroundColor="transparent"
Square150x150Logo="Images\Square150x150Logo.png"
Square44x44Logo="Images\Square44x44Logo.png">
<uap:DefaultTile Wide310x150Logo="Images\Wide310x150Logo.png" />
<uap:SplashScreen Image="Images\SplashScreen.png" />
</uap:VisualElements>
</Application>
</Applications>
<Capabilities>
<Capability Name="internetClient" />
<rescap:Capability Name="runFullTrust" />
<rescap:Capability Name="allowElevation" />
</Capabilities>
<Extensions>
<uap3:Extension Category="windows.fullTrustProcess" Executable="MyConsoleApp.exe"/>
</Extensions>
</Package>
当我尝试构建打包项目时,出现以下构建错误:
错误 APPX0501:验证错误。错误 C00CE014:应用程序清单验证错误:应用程序清单必须根据架构有效:第 40 行,第 6 列,原因:元素“{http://schemas.microsoft.com/appx/manifest/uap/windows10/3}Extension '根据父元素'{http://schemas.microsoft.com/appx/manifest/foundation/windows10}Extensions'的内容模型是意外的。期待:{http://schemas.microsoft.com/appx/manifest/foundation/windows10}扩展,{http://schemas.microsoft.com/appx/manifest/foundation/windows10}ExtensionChoice。
我尝试了 , 的不同组合,Extension
它们都给了我类似的错误。我相信从根本上说我对 appxmanifest 命名空间的了解不够,无法诊断问题。uap:Extension
desktop:Extension
如何正确声明我的 fullTrustProcess 扩展?