Skip to content

Commit

Permalink
Add inner loop test app project file and manifest (#1980)
Browse files Browse the repository at this point in the history
* 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
marcelwgn and ranjeshj committed Feb 25, 2020
1 parent 5fecf51 commit 19831cd
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 3 deletions.
9 changes: 6 additions & 3 deletions test/MUXControlsTestApp/MSTest/MUXControlsTestApp.csproj
Expand Up @@ -39,8 +39,11 @@
<ItemGroup>
<SDKReference Include="TestPlatform.Universal, Version=$(UnitTestPlatformVersion)" />
</ItemGroup>
<ItemGroup>
<AppxManifest Include="Package.appxmanifest">
<ItemGroup >
<AppxManifest Include="PackageInnerLoop.appxmanifest" Condition="$(SolutionName) == 'MUXControlsInnerLoop'">
<SubType>Designer</SubType>
</AppxManifest>
<AppxManifest Include="Package.appxmanifest" Condition="$(SolutionName) != 'MUXControlsInnerLoop'">
<SubType>Designer</SubType>
</AppxManifest>
</ItemGroup>
Expand All @@ -54,4 +57,4 @@
</ItemGroup>
<Import Project="..\MUXControlsTestApp.Shared.projitems" />
<Import Project="..\MUXControlsTestApp.Shared.targets" />
</Project>
</Project>
32 changes: 32 additions & 0 deletions test/MUXControlsTestApp/MSTest/PackageInnerLoop.appxmanifest
@@ -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>

0 comments on commit 19831cd

Please sign in to comment.