e07684294d
Visual Studio does not like empty dependencies block in manifest XML. At least my Visual Studio 2013 fails to open visual manifest editor for XML containing the following block: <Dependencies> </Dependencies> If the block is removed or if the block has one or more PackageDependency entries the editor accepts it. Moved the <Dependencies> block to prf, so that it is only written when project really has dependencies. Also <Capabilities> block is moved to prf for consistency. On Windows Phone, where the <Capabilities> block is required, it is kept in the output even if it is empty. Change-Id: I531180d0081e4612f75be54f3813831857f1ed43 Reviewed-by: Andrew Knight <andrew.knight@digia.com> Reviewed-by: Oliver Wolff <oliver.wolff@digia.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
38 lines
1.4 KiB
XML
38 lines
1.4 KiB
XML
<?xml version=\"1.0\" encoding=\"utf-8\"?>
|
|
<Package xmlns=\"http://schemas.microsoft.com/appx/2010/manifest\">
|
|
<Identity
|
|
Name=\"$${WINRT_MANIFEST.identity}\"
|
|
ProcessorArchitecture=\"$${WINRT_MANIFEST.architecture}\"
|
|
Publisher=\"$${WINRT_MANIFEST.publisherid}\"
|
|
Version=\"$${WINRT_MANIFEST.version}\" />
|
|
<Properties>
|
|
<DisplayName>$${WINRT_MANIFEST.name}</DisplayName>
|
|
<PublisherDisplayName>$${WINRT_MANIFEST.publisher}</PublisherDisplayName>
|
|
<Logo>$${WINRT_MANIFEST.logo_store}</Logo>
|
|
</Properties>
|
|
<Prerequisites>
|
|
<OSMinVersion>6.2.0</OSMinVersion>
|
|
<OSMaxVersionTested>6.3.0</OSMaxVersionTested>
|
|
</Prerequisites>
|
|
<Resources>
|
|
<Resource Language=\"en\" />
|
|
</Resources>
|
|
<Applications>
|
|
<Application
|
|
Id=\"App\"
|
|
Executable=\"$${WINRT_MANIFEST.target}.exe\"
|
|
EntryPoint=\"$${WINRT_MANIFEST.target}.App\">
|
|
<VisualElements
|
|
DisplayName=\"$${WINRT_MANIFEST.name}\"
|
|
Logo=\"$${WINRT_MANIFEST.logo_large}\"
|
|
SmallLogo=\"$${WINRT_MANIFEST.logo_small}\"
|
|
Description=\"$${WINRT_MANIFEST.description}\"
|
|
BackgroundColor=\"$${WINRT_MANIFEST.background}\"
|
|
ForegroundText=\"$${WINRT_MANIFEST.foreground}\">
|
|
<SplashScreen Image=\"$${WINRT_MANIFEST.logo_splash}\" />
|
|
</VisualElements>
|
|
</Application>
|
|
</Applications>$${WINRT_MANIFEST.capabilities}$${WINRT_MANIFEST.dependencies}
|
|
</Package>
|
|
<!-- Generated by qmake using the $$[QMAKE_XSPEC] mkspec. -->
|