@@ -20,6 +20,7 @@ if ($Branch -eq "Preview")
20
20
$xmlDoc.Package.Identity.Name = " FilesPreview"
21
21
$xmlDoc.Package.Properties.DisplayName = " Files - Preview"
22
22
$xmlDoc.Package.Applications.Application.VisualElements.DisplayName = " Files - Preview"
23
+ $xmlDoc.Package.Applications.Application.VisualElements.DefaultTile.ShortName = " Files - Preview"
23
24
$xmlDoc.Save ($PackageManifestPath )
24
25
25
26
Get-ChildItem $WorkingDir - Include * .csproj, * .appxmanifest, * .wapproj, * .xaml - recurse | ForEach-Object - Process `
@@ -34,6 +35,7 @@ elseif ($Branch -eq "Stable")
34
35
$xmlDoc.Package.Identity.Name = " Files"
35
36
$xmlDoc.Package.Properties.DisplayName = " Files"
36
37
$xmlDoc.Package.Applications.Application.VisualElements.DisplayName = " Files"
38
+ $xmlDoc.Package.Applications.Application.VisualElements.DefaultTile.ShortName = " Files"
37
39
$xmlDoc.Save ($PackageManifestPath )
38
40
39
41
Get-ChildItem $WorkingDir - Include * .csproj, * .appxmanifest, * .wapproj, * .xaml - recurse | ForEach-Object - Process `
@@ -46,8 +48,9 @@ elseif ($Branch -eq "Store")
46
48
{
47
49
# Set identities
48
50
$xmlDoc.Package.Identity.Name = " 49306atecsolution.FilesUWP"
49
- $xmlDoc.Package.Properties.DisplayName = " Files"
51
+ $xmlDoc.Package.Properties.DisplayName = " Files App "
50
52
$xmlDoc.Package.Applications.Application.VisualElements.DisplayName = " Files"
53
+ $xmlDoc.Package.Applications.Application.VisualElements.DefaultTile.ShortName = " Files"
51
54
52
55
# Remove an capability that is used for the sideload
53
56
$nsmgr = New-Object System.Xml.XmlNamespaceManager($xmlDoc.NameTable )
0 commit comments