Skip to content

Commit

Permalink
updating for 19h1
Browse files Browse the repository at this point in the history
  • Loading branch information
stevewhims committed Apr 20, 2019
1 parent 0b08138 commit 3b6c1ba
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
4 changes: 3 additions & 1 deletion README.md
Expand Up @@ -11,6 +11,8 @@ statusNotificationTargets:

# XAML Hosting API sample

> Note - This sample is targeted and tested for Windows 10, version 1903 (10.0; Build 18362), and Visual Studio 2019. If you prefer, you can use project properties to retarget the project(s) to Windows 10, version 1809 (10.0; Build 17763), and/or open the sample with Visual Studio 2017.
The XAML Hosting API sample is a Win32 Desktop application that demonstrates assorted scenarios using the UWP XAML Hosting API (also known as XAML Islands).

![XAML Hosted API sample showing the layout architecture](Images/XamlInking.JPG)
Expand All @@ -35,7 +37,7 @@ The XAML Hosting API sample is a Win32 Desktop application that demonstrates ass
You can optionally install the [C++/WinRT Visual Studio Extension (VSIX)](https://aka.ms/cppwinrt/vsix). When you open the project, it will install the [Microsoft.Windows.CppWinRT NuGet package](https://www.nuget.org/packages/Microsoft.Windows.CppWinRT/).

> [!NOTE]
> This sample is primarily targeted at Windows 10, version 1809 (10.0; Build 17763), also known as the Windows 10 October 2018 Update. However, we did some testing on the Windows 10, version 1903 (10.0; Build 18343) [Insider Preview](https://www.microsoft.com/software-download/windowsinsiderpreviewiso), and it worked after we added the `maxversiontested` element in the application manifest. But there were issues with the Reveal effects. As a workaround, the transparency effects were disabled in the OS Settings; meanwhile the Product Feature team is finishing the work.
> When we tested this sample on Windows 10, version 1903, it worked after we added the `maxversiontested` element in the application manifest. But there were issues with the Reveal effects. As a workaround, the transparency effects were disabled in the OS Settings; meanwhile the Product Feature team is finishing the work.
# App architecture

Expand Down
2 changes: 1 addition & 1 deletion XamlHostingSample/XamlHostingSample.exe.manifest
Expand Up @@ -7,7 +7,7 @@
</application>
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<maxversiontested Id="10.0.18343.0"/>
<maxversiontested Id="10.0.18362.0"/>
</application>
</compatibility>
</assembly>
10 changes: 5 additions & 5 deletions XamlHostingSample/XamlHostingSample.vcxproj
Expand Up @@ -24,34 +24,34 @@
<ProjectGuid>{A8AF5D7C-F240-4350-ADF6-D6BB1C0126C8}</ProjectGuid>
<Keyword>Win32Proj</Keyword>
<RootNamespace>XamlHostingSample</RootNamespace>
<WindowsTargetPlatformVersion>10.0.17763.0</WindowsTargetPlatformVersion>
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
<CppWinRTEnabled>true</CppWinRTEnabled>
<ProjectName>XamlHostingSample</ProjectName>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v141</PlatformToolset>
<PlatformToolset>v142</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v141</PlatformToolset>
<PlatformToolset>v142</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v141</PlatformToolset>
<PlatformToolset>v142</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v141</PlatformToolset>
<PlatformToolset>v142</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
Expand Down

0 comments on commit 3b6c1ba

Please sign in to comment.