-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from Difegue/dev
1.5.0
- Loading branch information
Showing
47 changed files
with
1,469 additions
and
312 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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
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
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,122 @@ | ||
<#@ template hostspecific="true" language="C#" #> | ||
<#@ output extension=".appxmanifest" #> | ||
<#@ parameter type="System.String" name="BuildConfiguration" #> | ||
<# | ||
string version = "1.5.0.0"; | ||
|
||
// Get configuration name at Build time | ||
string configName = Host.ResolveParameterValue("-", "-", "BuildConfiguration"); | ||
if (string.IsNullOrWhiteSpace(configName)) | ||
{ | ||
// Default to Debug at Design Time. | ||
configName = "Debug"; | ||
} | ||
#> | ||
<?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:uap5="http://schemas.microsoft.com/appx/manifest/uap/windows10/5" | ||
xmlns:genTemplate="http://schemas.microsoft.com/appx/developer/windowsTemplateStudio" | ||
xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3" | ||
IgnorableNamespaces="uap mp genTemplate uap3"> | ||
|
||
<# | ||
if (configName == "Debug") | ||
{ | ||
#><Identity | ||
Name="StylophoneDebug" | ||
Publisher="CN=B2F6FFCA-07C7-479C-AC33-2C75463C7DCE" | ||
Version="<#=version#>" /> | ||
<# | ||
} | ||
else | ||
{ | ||
#><Identity | ||
Name="13459Difegue.Stylophone" | ||
Publisher="CN=B2F6FFCA-07C7-479C-AC33-2C75463C7DCE" | ||
Version="<#=version#>" /> | ||
<# | ||
} | ||
#> | ||
|
||
<mp:PhoneIdentity PhoneProductId="6aab9ef0-77d1-4922-a9da-497e36a34491" PhonePublisherId="00000000-0000-0000-0000-000000000000"/> | ||
|
||
<Properties> | ||
<# | ||
if (configName == "Debug") | ||
{ | ||
#> <DisplayName>Stylophone (Dev)</DisplayName> | ||
<# | ||
} | ||
else | ||
{ | ||
#> <DisplayName>Stylophone</DisplayName> | ||
<# | ||
} | ||
#> | ||
<PublisherDisplayName>Difegue</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"/> | ||
</Resources> | ||
|
||
<Applications> | ||
<Application Id="App" | ||
Executable="$targetnametoken$.exe" | ||
EntryPoint="FluentMPC.App"> | ||
<uap:VisualElements | ||
<# | ||
if (configName == "Debug") | ||
{ | ||
#> DisplayName="Stylophone (Dev)" | ||
<# | ||
} | ||
else | ||
{ | ||
#> DisplayName="ms-resource:AppDisplayName" | ||
<# | ||
} | ||
#> | ||
Square150x150Logo="Assets\Square150x150Logo.png" | ||
Square44x44Logo="Assets\Square44x44Logo.png" | ||
Description="ms-resource:AppDescription" | ||
BackgroundColor="#404040"> | ||
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png" Square310x310Logo="Assets\LargeTile.png" Square71x71Logo="Assets\SmallTile.png"> | ||
<uap:ShowNameOnTiles> | ||
<uap:ShowOn Tile="wide310x150Logo"/> | ||
<uap:ShowOn Tile="square150x150Logo"/> | ||
<uap:ShowOn Tile="square310x310Logo"/> | ||
</uap:ShowNameOnTiles> | ||
</uap:DefaultTile > | ||
<uap:SplashScreen Image="Assets\SplashScreen.png" uap5:Optional="true"/> | ||
</uap:VisualElements> | ||
|
||
<Extensions> | ||
</Extensions> | ||
</Application> | ||
</Applications> | ||
|
||
<Capabilities> | ||
<Capability Name="internetClient" /> | ||
<Capability Name="privateNetworkClientServer"/> | ||
<uap3:Capability Name="backgroundMediaPlayback"/> | ||
</Capabilities> | ||
|
||
<genTemplate:Metadata> | ||
<genTemplate:Item Name="generator" Value="Windows Template Studio"/> | ||
<genTemplate:Item Name="wizardVersion" Version="v3.6.20139.1" /> | ||
<genTemplate:Item Name="templatesVersion" Version="v3.6.20139.1" /> | ||
<genTemplate:Item Name="projectType" Value="SplitView" /> | ||
<genTemplate:Item Name="framework" Value="MVVMBasic" /> | ||
<genTemplate:Item Name="platform" Value="Uwp" /> | ||
</genTemplate:Metadata> | ||
</Package> |
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
Oops, something went wrong.