Skip to content

Instantly share code, notes, and snippets.

@dpr-dev
Created January 11, 2018 07:57
Show Gist options
  • Save dpr-dev/9e61cb9d677fcc63a518feddcbf929eb to your computer and use it in GitHub Desktop.
Save dpr-dev/9e61cb9d677fcc63a518feddcbf929eb to your computer and use it in GitHub Desktop.

Revisions

  1. @akishanin akishanin created this gist Jan 11, 2018.
    12 changes: 12 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,12 @@

    =>
    Add `AppxBundlePlatforms` section to .csproj
    ```xml
    <?xml version="1.0" encoding="utf-8"?>
    <Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
    <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
    <PropertyGroup>
    ...
    <AppxBundlePlatforms>x86|x64|arm</AppxBundlePlatforms>
    </PropertyGroup>
    ```