add a windows store packaging project.

This commit is contained in:
Dan Walmsley 2020-06-15 16:38:49 -03:00
parent 66a91093cd
commit 76380db782
11 changed files with 190 additions and 1 deletions

View File

@ -0,0 +1,80 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' &lt; '15.0'">
<VisualStudioVersion>15.0</VisualStudioVersion>
</PropertyGroup>
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|x86">
<Configuration>Debug</Configuration>
<Platform>x86</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x86">
<Configuration>Release</Configuration>
<Platform>x86</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|ARM">
<Configuration>Debug</Configuration>
<Platform>ARM</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|ARM">
<Configuration>Release</Configuration>
<Platform>ARM</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|ARM64">
<Configuration>Debug</Configuration>
<Platform>ARM64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|ARM64">
<Configuration>Release</Configuration>
<Platform>ARM64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|AnyCPU">
<Configuration>Debug</Configuration>
<Platform>AnyCPU</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|AnyCPU">
<Configuration>Release</Configuration>
<Platform>AnyCPU</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup>
<WapProjPath Condition="'$(WapProjPath)'==''">$(MSBuildExtensionsPath)\Microsoft\DesktopBridge\</WapProjPath>
</PropertyGroup>
<Import Project="$(WapProjPath)\Microsoft.DesktopBridge.props" />
<PropertyGroup>
<ProjectGuid>2e5ad405-a55d-45ee-b125-b236ab5d4fce</ProjectGuid>
<TargetPlatformVersion>10.0.18362.0</TargetPlatformVersion>
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
<DefaultLanguage>en-US</DefaultLanguage>
<AppxPackageSigningEnabled>false</AppxPackageSigningEnabled>
<EntryPointProjectUniqueName>..\XamlControlsGallery\XamlControlsGallery.csproj</EntryPointProjectUniqueName>
</PropertyGroup>
<ItemGroup>
<AppxManifest Include="Package.appxmanifest">
<SubType>Designer</SubType>
</AppxManifest>
</ItemGroup>
<ItemGroup>
<Content Include="Images\SplashScreen.scale-200.png" />
<Content Include="Images\LockScreenLogo.scale-200.png" />
<Content Include="Images\Square150x150Logo.scale-200.png" />
<Content Include="Images\Square44x44Logo.scale-200.png" />
<Content Include="Images\Square44x44Logo.targetsize-24_altform-unplated.png" />
<Content Include="Images\StoreLogo.png" />
<Content Include="Images\Wide310x150Logo.scale-200.png" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\XamlControlsGallery\XamlControlsGallery.csproj">
<SkipGetTargetFrameworkProperties>True</SkipGetTargetFrameworkProperties>
</ProjectReference>
</ItemGroup>
<Import Project="$(WapProjPath)\Microsoft.DesktopBridge.targets" />
</Project>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -0,0 +1,49 @@
<?xml version="1.0" encoding="utf-8"?>
<Package
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
IgnorableNamespaces="uap rescap">
<Identity
Name="c4a8d098-01df-4dda-a432-7b1f44f81792"
Publisher="CN=danwa"
Version="1.0.0.0" />
<Properties>
<DisplayName>WindowsStorePackage</DisplayName>
<PublisherDisplayName>danwa</PublisherDisplayName>
<Logo>Images\StoreLogo.png</Logo>
</Properties>
<Dependencies>
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" />
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.14393.0" MaxVersionTested="10.0.14393.0" />
</Dependencies>
<Resources>
<Resource Language="x-generate"/>
</Resources>
<Applications>
<Application Id="App"
Executable="$targetnametoken$.exe"
EntryPoint="$targetentrypoint$">
<uap:VisualElements
DisplayName="WindowsStorePackage"
Description="WindowsStorePackage"
BackgroundColor="transparent"
Square150x150Logo="Images\Square150x150Logo.png"
Square44x44Logo="Images\Square44x44Logo.png">
<uap:DefaultTile Wide310x150Logo="Images\Wide310x150Logo.png" />
<uap:SplashScreen Image="Images\SplashScreen.png" />
</uap:VisualElements>
</Application>
</Applications>
<Capabilities>
<Capability Name="internetClient" />
<rescap:Capability Name="runFullTrust" />
</Capabilities>
</Package>

View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup />
</Project>

View File

@ -3,18 +3,74 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30104.148
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XamlControlsGallery", "XamlControlsGallery\XamlControlsGallery.csproj", "{E1D9A41A-8F10-4ECA-AAFF-B87A169DE287}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "XamlControlsGallery", "XamlControlsGallery\XamlControlsGallery.csproj", "{E1D9A41A-8F10-4ECA-AAFF-B87A169DE287}"
EndProject
Project("{C7167F0D-BC9F-4E6E-AFE1-012C56B48DB5}") = "AvaloniaControlsGallery", "WindowsStorePackage\AvaloniaControlsGallery.wapproj", "{2E5AD405-A55D-45EE-B125-B236AB5D4FCE}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|ARM = Debug|ARM
Debug|ARM64 = Debug|ARM64
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|ARM = Release|ARM
Release|ARM64 = Release|ARM64
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{E1D9A41A-8F10-4ECA-AAFF-B87A169DE287}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E1D9A41A-8F10-4ECA-AAFF-B87A169DE287}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E1D9A41A-8F10-4ECA-AAFF-B87A169DE287}.Debug|ARM.ActiveCfg = Debug|Any CPU
{E1D9A41A-8F10-4ECA-AAFF-B87A169DE287}.Debug|ARM.Build.0 = Debug|Any CPU
{E1D9A41A-8F10-4ECA-AAFF-B87A169DE287}.Debug|ARM64.ActiveCfg = Debug|Any CPU
{E1D9A41A-8F10-4ECA-AAFF-B87A169DE287}.Debug|ARM64.Build.0 = Debug|Any CPU
{E1D9A41A-8F10-4ECA-AAFF-B87A169DE287}.Debug|x64.ActiveCfg = Debug|Any CPU
{E1D9A41A-8F10-4ECA-AAFF-B87A169DE287}.Debug|x64.Build.0 = Debug|Any CPU
{E1D9A41A-8F10-4ECA-AAFF-B87A169DE287}.Debug|x86.ActiveCfg = Debug|Any CPU
{E1D9A41A-8F10-4ECA-AAFF-B87A169DE287}.Debug|x86.Build.0 = Debug|Any CPU
{E1D9A41A-8F10-4ECA-AAFF-B87A169DE287}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E1D9A41A-8F10-4ECA-AAFF-B87A169DE287}.Release|Any CPU.Build.0 = Release|Any CPU
{E1D9A41A-8F10-4ECA-AAFF-B87A169DE287}.Release|ARM.ActiveCfg = Release|Any CPU
{E1D9A41A-8F10-4ECA-AAFF-B87A169DE287}.Release|ARM.Build.0 = Release|Any CPU
{E1D9A41A-8F10-4ECA-AAFF-B87A169DE287}.Release|ARM64.ActiveCfg = Release|Any CPU
{E1D9A41A-8F10-4ECA-AAFF-B87A169DE287}.Release|ARM64.Build.0 = Release|Any CPU
{E1D9A41A-8F10-4ECA-AAFF-B87A169DE287}.Release|x64.ActiveCfg = Release|Any CPU
{E1D9A41A-8F10-4ECA-AAFF-B87A169DE287}.Release|x64.Build.0 = Release|Any CPU
{E1D9A41A-8F10-4ECA-AAFF-B87A169DE287}.Release|x86.ActiveCfg = Release|Any CPU
{E1D9A41A-8F10-4ECA-AAFF-B87A169DE287}.Release|x86.Build.0 = Release|Any CPU
{2E5AD405-A55D-45EE-B125-B236AB5D4FCE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2E5AD405-A55D-45EE-B125-B236AB5D4FCE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2E5AD405-A55D-45EE-B125-B236AB5D4FCE}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{2E5AD405-A55D-45EE-B125-B236AB5D4FCE}.Debug|ARM.ActiveCfg = Debug|ARM
{2E5AD405-A55D-45EE-B125-B236AB5D4FCE}.Debug|ARM.Build.0 = Debug|ARM
{2E5AD405-A55D-45EE-B125-B236AB5D4FCE}.Debug|ARM.Deploy.0 = Debug|ARM
{2E5AD405-A55D-45EE-B125-B236AB5D4FCE}.Debug|ARM64.ActiveCfg = Debug|ARM64
{2E5AD405-A55D-45EE-B125-B236AB5D4FCE}.Debug|ARM64.Build.0 = Debug|ARM64
{2E5AD405-A55D-45EE-B125-B236AB5D4FCE}.Debug|ARM64.Deploy.0 = Debug|ARM64
{2E5AD405-A55D-45EE-B125-B236AB5D4FCE}.Debug|x64.ActiveCfg = Debug|x64
{2E5AD405-A55D-45EE-B125-B236AB5D4FCE}.Debug|x64.Build.0 = Debug|x64
{2E5AD405-A55D-45EE-B125-B236AB5D4FCE}.Debug|x64.Deploy.0 = Debug|x64
{2E5AD405-A55D-45EE-B125-B236AB5D4FCE}.Debug|x86.ActiveCfg = Debug|x86
{2E5AD405-A55D-45EE-B125-B236AB5D4FCE}.Debug|x86.Build.0 = Debug|x86
{2E5AD405-A55D-45EE-B125-B236AB5D4FCE}.Debug|x86.Deploy.0 = Debug|x86
{2E5AD405-A55D-45EE-B125-B236AB5D4FCE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2E5AD405-A55D-45EE-B125-B236AB5D4FCE}.Release|Any CPU.Build.0 = Release|Any CPU
{2E5AD405-A55D-45EE-B125-B236AB5D4FCE}.Release|Any CPU.Deploy.0 = Release|Any CPU
{2E5AD405-A55D-45EE-B125-B236AB5D4FCE}.Release|ARM.ActiveCfg = Release|ARM
{2E5AD405-A55D-45EE-B125-B236AB5D4FCE}.Release|ARM.Build.0 = Release|ARM
{2E5AD405-A55D-45EE-B125-B236AB5D4FCE}.Release|ARM.Deploy.0 = Release|ARM
{2E5AD405-A55D-45EE-B125-B236AB5D4FCE}.Release|ARM64.ActiveCfg = Release|ARM64
{2E5AD405-A55D-45EE-B125-B236AB5D4FCE}.Release|ARM64.Build.0 = Release|ARM64
{2E5AD405-A55D-45EE-B125-B236AB5D4FCE}.Release|ARM64.Deploy.0 = Release|ARM64
{2E5AD405-A55D-45EE-B125-B236AB5D4FCE}.Release|x64.ActiveCfg = Release|x64
{2E5AD405-A55D-45EE-B125-B236AB5D4FCE}.Release|x64.Build.0 = Release|x64
{2E5AD405-A55D-45EE-B125-B236AB5D4FCE}.Release|x64.Deploy.0 = Release|x64
{2E5AD405-A55D-45EE-B125-B236AB5D4FCE}.Release|x86.ActiveCfg = Release|x86
{2E5AD405-A55D-45EE-B125-B236AB5D4FCE}.Release|x86.Build.0 = Release|x86
{2E5AD405-A55D-45EE-B125-B236AB5D4FCE}.Release|x86.Deploy.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE