diff options
author | marcinzelent <marcin@zelent.net> | 2017-06-04 18:45:43 +0200 |
---|---|---|
committer | marcinzelent <marcin@zelent.net> | 2017-06-04 18:45:43 +0200 |
commit | 8383e93cff394bc0beb6aafdb2670f012d0a49e8 (patch) | |
tree | de2239edf561e7f46afe9399939609cb84ad9221 | |
parent | 12c45750173b7ad18213aded76b8c9ec935a94ef (diff) |
Changed app manifest and signed it.
-rw-r--r-- | ApartmentManager/ApartmentManager/Package.appxmanifest | 41 |
1 files changed, 10 insertions, 31 deletions
diff --git a/ApartmentManager/ApartmentManager/Package.appxmanifest b/ApartmentManager/ApartmentManager/Package.appxmanifest index a9692e8..52867e6 100644 --- a/ApartmentManager/ApartmentManager/Package.appxmanifest +++ b/ApartmentManager/ApartmentManager/Package.appxmanifest @@ -1,48 +1,27 @@ <?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" - IgnorableNamespaces="uap mp"> - - <Identity - Name="29294205-2e39-4ca5-bf9c-930cba3a4dc8" - Publisher="CN=Danix" - Version="1.0.0.0" /> - - <mp:PhoneIdentity PhoneProductId="29294205-2e39-4ca5-bf9c-930cba3a4dc8" PhonePublisherId="00000000-0000-0000-0000-000000000000"/> - +<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" IgnorableNamespaces="uap mp"> + <Identity Name="TeamDelta.ApartmentManager" Publisher="CN=Team Delta" Version="1.0.0.0" /> + <mp:PhoneIdentity PhoneProductId="29294205-2e39-4ca5-bf9c-930cba3a4dc8" PhonePublisherId="00000000-0000-0000-0000-000000000000" /> <Properties> - <DisplayName>ApartmentManager</DisplayName> - <PublisherDisplayName>Danix</PublisherDisplayName> + <DisplayName>Apartment Manager</DisplayName> + <PublisherDisplayName>Team Delta</PublisherDisplayName> <Logo>Assets\StoreLogo.png</Logo> </Properties> - <Dependencies> <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" /> </Dependencies> - <Resources> - <Resource Language="x-generate"/> + <Resource Language="x-generate" /> </Resources> - <Applications> - <Application Id="App" - Executable="$targetnametoken$.exe" - EntryPoint="ApartmentManager.App"> - <uap:VisualElements - DisplayName="ApartmentManager" - Square150x150Logo="Assets\Square150x150Logo.png" - Square44x44Logo="Assets\Square44x44Logo.png" - Description="ApartmentManager" - BackgroundColor="transparent"> - <uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png"/> + <Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="ApartmentManager.App"> + <uap:VisualElements DisplayName="Apartment Manager" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" Description="Apartment Manager" BackgroundColor="transparent"> + <uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png"> + </uap:DefaultTile> <uap:SplashScreen Image="Assets\SplashScreen.png" /> </uap:VisualElements> </Application> </Applications> - <Capabilities> <Capability Name="internetClient" /> </Capabilities> |