-
Notifications
You must be signed in to change notification settings - Fork 705
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add inner loop test app project file and manifest (#1980)
* Add inner loop test app project file and manifest * CR feedback * Update MUXControlsTestApp.csproj minor fix Co-authored-by: Ranjesh <28935693+ranjeshj@users.noreply.github.com>
- Loading branch information
Showing
2 changed files
with
38 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
test/MUXControlsTestApp/MSTest/PackageInnerLoop.appxmanifest
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<?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:uap6="http://schemas.microsoft.com/appx/manifest/uap/windows10/6" IgnorableNamespaces="uap mp uap6"> | ||
<Identity Name="MUXControlsInnerLoopTestApp" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" Version="1.0.0.0" /> | ||
<mp:PhoneIdentity PhoneProductId="407b1cc5-f51e-4bfa-b5d2-04afa83fe380" PhonePublisherId="00000000-0000-0000-0000-000000000000" /> | ||
<Properties> | ||
<DisplayName>MUXControlsInnerLoopTestApp</DisplayName> | ||
<PublisherDisplayName>Microsoft Corporation</PublisherDisplayName> | ||
<Logo>Assets\Tile\StoreLogo.png</Logo> | ||
</Properties> | ||
<Dependencies> | ||
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.10586.0" MaxVersionTested="10.0.20000.0" /> | ||
</Dependencies> | ||
<Resources> | ||
<Resource Language="en-us" /> | ||
</Resources> | ||
<Applications> | ||
<Application Id="App" Executable="MUXControlsTestApp.exe" EntryPoint="MUXControlsTestApp.App"> | ||
<uap:VisualElements Square150x150Logo="Assets\Tile\Square150x150Logo.png" Square44x44Logo="Assets\Tile\Square44x44Logo.png" DisplayName="MUXControlsInnerLoopTestApp" Description="MUXControlsInnerLoopTestApp" BackgroundColor="transparent"> | ||
<uap:DefaultTile Square71x71Logo="Assets\Tile\SmallTile.png" Square310x310Logo="Assets\Tile\LargeTile.png" Wide310x150Logo="Assets\Tile\WideTile.png"> | ||
</uap:DefaultTile> | ||
<uap:SplashScreen Image="Assets\Tile\SplashScreen.png" /> | ||
</uap:VisualElements> | ||
</Application> | ||
</Applications> | ||
<Capabilities> | ||
<Capability Name="internetClient" /> | ||
<Capability Name="internetClientServer" /> | ||
<uap6:Capability Name="graphicsCapture" /> | ||
<uap:Capability Name="musicLibrary" /> | ||
<uap:Capability Name="picturesLibrary"/> | ||
</Capabilities> | ||
</Package> |