Click here to Skip to main content
15,881,882 members
Articles / Programming Languages / C#

My First Windows 8 Application – Metro Puzzle

Rate me:
Please Sign up or sign in to vote.
4.83/5 (52 votes)
7 Apr 2012Ms-PL4 min read 128.4K   6.4K   97  
My first Windows 8 application, Metro Puzzle.
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/2010/manifest">
  <Identity Name="66546f8f-354d-4d23-adec-499e7ff547ab" Publisher="CN=Shai Raiten" Version="1.0.0.0" ProcessorArchitecture="neutral" />
  <Properties>
    <DisplayName>PuzzleMetro</DisplayName>
    <PublisherDisplayName>Shai</PublisherDisplayName>
    <Logo>Images\StoreLogo.png</Logo>
    <Description>PuzzleMetro</Description>
  </Properties>
  <Prerequisites>
    <OSMinVersion>6.2</OSMinVersion>
    <OSMaxVersionTested>6.2</OSMaxVersionTested>
  </Prerequisites>
  <Resources>
    <Resource Language="en-us" />
  </Resources>
  <Applications>
    <Application Id="App" Executable="puzzlemetro.exe" EntryPoint="PuzzleMetro.App">
      <VisualElements DisplayName="Metro Puzzle" Logo="Images\Logo.png" SmallLogo="Images\SmallLogo.png" Description="Metro Puzzle" ForegroundText="light" BackgroundColor="#222222" InitialRotationPreference="portrait" ToastCapable="true">
        <LockScreen Notification="tileText" />
        <DefaultTile WideLogo="Images\WideLogo.png" />
        <SplashScreen Image="Images\SplashScreen.png" BackgroundColor="#FFfaaa" />
      </VisualElements>
    </Application>
  </Applications>
  <Capabilities>
    <Capability Name="privateNetworkClientServer" />
  </Capabilities>
</Package>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)


Written By
Architect Sela
Israel Israel
Shai Raiten is VS ALM MVP, currently working for Sela Group as a ALM senior consultant and trainer specializes in Microsoft technologies especially Team System and .NET technology. He is currently consulting in various enterprises in Israel, planning and analysis Load and performance problems using Team System, building Team System customizations and adjusts ALM processes for enterprises. Shai is known as one of the top Team System experts in Israel. He conducts lectures and workshops for developers\QA and enterprises who want to specialize in Team System.

My Blog: http://blogs.microsoft.co.il/blogs/shair/

Comments and Discussions