Skip to content

Commit

Permalink
Windows 10 Version 2004 - September 2021 Samples Update
Browse files Browse the repository at this point in the history
* Json: Add deletion support, improve error handling
* Printing: Force printDocument to null to ensure it is not kept alive by
  the XAML navigation cache (not a problem in this sample since it doesn't
  enable the navigation cache, but fixed for completeness)
* New C++/WinRT samples: AppServices, Json
* Archived C++/CX samples: AppServices
  • Loading branch information
oldnewthing committed Sep 23, 2021
1 parent ca74baf commit 29d2965
Show file tree
Hide file tree
Showing 110 changed files with 3,169 additions and 324 deletions.
6 changes: 3 additions & 3 deletions Samples/AppServices/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ page_type: sample
languages:
- csharp
- cpp
- cppcx
- vb
- cppwinrt
products:
- windows
- windows-uwp
Expand Down Expand Up @@ -53,7 +52,8 @@ To obtain an insider copy of Windows 10, go to [Windows 10](http://insider.windo

## Samples

[RemoteSystems](/Samples/RemoteSystems)
* [RemoteSystems](/Samples/RemoteSystems)
* [AppServices sample](/archived/AppServices/) for C++/CX and Visual Basic (archived)

## Reference

Expand Down
87 changes: 87 additions & 0 deletions Samples/AppServices/cppwinrt/AppServices.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30907.101
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppServicesClient", "AppServicesClient\AppServicesClient.vcxproj", "{7EA21D00-8F97-4EBE-A57D-36950A536284}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppServicesProvider", "AppServicesProvider\AppServicesProvider.vcxproj", "{53A047C9-2530-4D9F-B676-4BD007539B7A}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "RandomNumberService", "RandomNumberService\RandomNumberService.vcxproj", "{870E7A43-40CB-4682-942B-D4BB6AF27C4A}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|ARM = Debug|ARM
Debug|ARM64 = Debug|ARM64
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|ARM = Release|ARM
Release|ARM64 = Release|ARM64
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{7EA21D00-8F97-4EBE-A57D-36950A536284}.Debug|ARM.ActiveCfg = Debug|ARM
{7EA21D00-8F97-4EBE-A57D-36950A536284}.Debug|ARM.Build.0 = Debug|ARM
{7EA21D00-8F97-4EBE-A57D-36950A536284}.Debug|ARM.Deploy.0 = Debug|ARM
{7EA21D00-8F97-4EBE-A57D-36950A536284}.Debug|ARM64.ActiveCfg = Debug|Win32
{7EA21D00-8F97-4EBE-A57D-36950A536284}.Debug|x64.ActiveCfg = Debug|x64
{7EA21D00-8F97-4EBE-A57D-36950A536284}.Debug|x64.Build.0 = Debug|x64
{7EA21D00-8F97-4EBE-A57D-36950A536284}.Debug|x64.Deploy.0 = Debug|x64
{7EA21D00-8F97-4EBE-A57D-36950A536284}.Debug|x86.ActiveCfg = Debug|Win32
{7EA21D00-8F97-4EBE-A57D-36950A536284}.Debug|x86.Build.0 = Debug|Win32
{7EA21D00-8F97-4EBE-A57D-36950A536284}.Debug|x86.Deploy.0 = Debug|Win32
{7EA21D00-8F97-4EBE-A57D-36950A536284}.Release|ARM.ActiveCfg = Release|ARM
{7EA21D00-8F97-4EBE-A57D-36950A536284}.Release|ARM.Build.0 = Release|ARM
{7EA21D00-8F97-4EBE-A57D-36950A536284}.Release|ARM.Deploy.0 = Release|ARM
{7EA21D00-8F97-4EBE-A57D-36950A536284}.Release|ARM64.ActiveCfg = Release|Win32
{7EA21D00-8F97-4EBE-A57D-36950A536284}.Release|x64.ActiveCfg = Release|x64
{7EA21D00-8F97-4EBE-A57D-36950A536284}.Release|x64.Build.0 = Release|x64
{7EA21D00-8F97-4EBE-A57D-36950A536284}.Release|x64.Deploy.0 = Release|x64
{7EA21D00-8F97-4EBE-A57D-36950A536284}.Release|x86.ActiveCfg = Release|Win32
{7EA21D00-8F97-4EBE-A57D-36950A536284}.Release|x86.Build.0 = Release|Win32
{7EA21D00-8F97-4EBE-A57D-36950A536284}.Release|x86.Deploy.0 = Release|Win32
{53A047C9-2530-4D9F-B676-4BD007539B7A}.Debug|ARM.ActiveCfg = Debug|ARM
{53A047C9-2530-4D9F-B676-4BD007539B7A}.Debug|ARM.Build.0 = Debug|ARM
{53A047C9-2530-4D9F-B676-4BD007539B7A}.Debug|ARM.Deploy.0 = Debug|ARM
{53A047C9-2530-4D9F-B676-4BD007539B7A}.Debug|ARM64.ActiveCfg = Debug|Win32
{53A047C9-2530-4D9F-B676-4BD007539B7A}.Debug|x64.ActiveCfg = Debug|x64
{53A047C9-2530-4D9F-B676-4BD007539B7A}.Debug|x64.Build.0 = Debug|x64
{53A047C9-2530-4D9F-B676-4BD007539B7A}.Debug|x64.Deploy.0 = Debug|x64
{53A047C9-2530-4D9F-B676-4BD007539B7A}.Debug|x86.ActiveCfg = Debug|Win32
{53A047C9-2530-4D9F-B676-4BD007539B7A}.Debug|x86.Build.0 = Debug|Win32
{53A047C9-2530-4D9F-B676-4BD007539B7A}.Debug|x86.Deploy.0 = Debug|Win32
{53A047C9-2530-4D9F-B676-4BD007539B7A}.Release|ARM.ActiveCfg = Release|ARM
{53A047C9-2530-4D9F-B676-4BD007539B7A}.Release|ARM.Build.0 = Release|ARM
{53A047C9-2530-4D9F-B676-4BD007539B7A}.Release|ARM.Deploy.0 = Release|ARM
{53A047C9-2530-4D9F-B676-4BD007539B7A}.Release|ARM64.ActiveCfg = Release|Win32
{53A047C9-2530-4D9F-B676-4BD007539B7A}.Release|x64.ActiveCfg = Release|x64
{53A047C9-2530-4D9F-B676-4BD007539B7A}.Release|x64.Build.0 = Release|x64
{53A047C9-2530-4D9F-B676-4BD007539B7A}.Release|x64.Deploy.0 = Release|x64
{53A047C9-2530-4D9F-B676-4BD007539B7A}.Release|x86.ActiveCfg = Release|Win32
{53A047C9-2530-4D9F-B676-4BD007539B7A}.Release|x86.Build.0 = Release|Win32
{53A047C9-2530-4D9F-B676-4BD007539B7A}.Release|x86.Deploy.0 = Release|Win32
{870E7A43-40CB-4682-942B-D4BB6AF27C4A}.Debug|ARM.ActiveCfg = Debug|ARM
{870E7A43-40CB-4682-942B-D4BB6AF27C4A}.Debug|ARM.Build.0 = Debug|ARM
{870E7A43-40CB-4682-942B-D4BB6AF27C4A}.Debug|ARM64.ActiveCfg = Debug|ARM64
{870E7A43-40CB-4682-942B-D4BB6AF27C4A}.Debug|ARM64.Build.0 = Debug|ARM64
{870E7A43-40CB-4682-942B-D4BB6AF27C4A}.Debug|x64.ActiveCfg = Debug|x64
{870E7A43-40CB-4682-942B-D4BB6AF27C4A}.Debug|x64.Build.0 = Debug|x64
{870E7A43-40CB-4682-942B-D4BB6AF27C4A}.Debug|x86.ActiveCfg = Debug|Win32
{870E7A43-40CB-4682-942B-D4BB6AF27C4A}.Debug|x86.Build.0 = Debug|Win32
{870E7A43-40CB-4682-942B-D4BB6AF27C4A}.Release|ARM.ActiveCfg = Release|ARM
{870E7A43-40CB-4682-942B-D4BB6AF27C4A}.Release|ARM.Build.0 = Release|ARM
{870E7A43-40CB-4682-942B-D4BB6AF27C4A}.Release|ARM64.ActiveCfg = Release|ARM64
{870E7A43-40CB-4682-942B-D4BB6AF27C4A}.Release|ARM64.Build.0 = Release|ARM64
{870E7A43-40CB-4682-942B-D4BB6AF27C4A}.Release|x64.ActiveCfg = Release|x64
{870E7A43-40CB-4682-942B-D4BB6AF27C4A}.Release|x64.Build.0 = Release|x64
{870E7A43-40CB-4682-942B-D4BB6AF27C4A}.Release|x86.ActiveCfg = Release|Win32
{870E7A43-40CB-4682-942B-D4BB6AF27C4A}.Release|x86.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {DB57874E-C791-4057-AB5E-B44B38711B59}
EndGlobalSection
EndGlobal
Original file line number Diff line number Diff line change
@@ -0,0 +1,188 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\packages\Microsoft.Windows.CppWinRT.2.0.210309.3\build\native\Microsoft.Windows.CppWinRT.props" Condition="Exists('..\packages\Microsoft.Windows.CppWinRT.2.0.210309.3\build\native\Microsoft.Windows.CppWinRT.props')" />
<PropertyGroup>
<SharedContentDir>$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), LICENSE))\SharedContent</SharedContentDir>
</PropertyGroup>
<PropertyGroup Label="Globals">
<MinimalCoreWin>true</MinimalCoreWin>
<ProjectGuid>{7EA21D00-8F97-4EBE-A57D-36950A536284}</ProjectGuid>
<ProjectName>AppServicesClient</ProjectName>
<RootNamespace>SDKTemplate</RootNamespace>
<DefaultLanguage>en-US</DefaultLanguage>
<MinimumVisualStudioVersion>15.0</MinimumVisualStudioVersion>
<AppContainerApplication>true</AppContainerApplication>
<ApplicationType>Windows Store</ApplicationType>
<ApplicationTypeRevision>10.0</ApplicationTypeRevision>
<WindowsTargetPlatformVersion>10.0.19041.0</WindowsTargetPlatformVersion>
<WindowsTargetPlatformMinVersion>$(WindowsTargetPlatformVersion)</WindowsTargetPlatformMinVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|ARM">
<Configuration>Debug</Configuration>
<Platform>ARM</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|ARM">
<Configuration>Release</Configuration>
<Platform>ARM</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration">
<UseDebugLibraries>true</UseDebugLibraries>
<LinkIncremental>true</LinkIncremental>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration">
<UseDebugLibraries>false</UseDebugLibraries>
<WholeProgramOptimization>true</WholeProgramOptimization>
<LinkIncremental>false</LinkIncremental>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup>
<IncludePath>$(VC_IncludePath);$(UniversalCRT_IncludePath);$(WindowsSDK_IncludePath);$(SharedContentDir)\cppwinrt</IncludePath>
<CppWinRTOptimized>true</CppWinRTOptimized>
</PropertyGroup>
<ItemDefinitionGroup>
<ClCompile>
<PrecompiledHeader>Use</PrecompiledHeader>
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
<PrecompiledHeaderOutputFile>$(IntDir)pch.pch</PrecompiledHeaderOutputFile>
<WarningLevel>Level4</WarningLevel>
<AdditionalOptions>%(AdditionalOptions) /bigobj</AdditionalOptions>
<DisableSpecificWarnings>4453;28204</DisableSpecificWarnings>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)'=='Debug'">
<ClCompile>
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)'=='Release'">
<ClCompile>
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
</ItemDefinitionGroup>
<ItemGroup>
<ClInclude Include="$(SharedContentDir)\cppwinrt\App.h">
<DependentUpon>$(SharedContentDir)\xaml\App.xaml</DependentUpon>
</ClInclude>
<ClInclude Include="$(SharedContentDir)\cppwinrt\MainPage.h">
<DependentUpon>$(SharedContentDir)\xaml\MainPage.xaml</DependentUpon>
</ClInclude>
<ClInclude Include="SampleConfiguration.h" />
<ClInclude Include="OpenCloseConnectionScenario.h">
<DependentUpon>OpenCloseConnectionScenario.xaml</DependentUpon>
</ClInclude>
<ClInclude Include="KeepConnectionOpenScenario.h">
<DependentUpon>KeepConnectionOpenScenario.xaml</DependentUpon>
</ClInclude>
<ClInclude Include="pch.h" />
</ItemGroup>
<ItemGroup>
<ApplicationDefinition Include="$(SharedContentDir)\xaml\App.xaml">
<SubType>Designer</SubType>
</ApplicationDefinition>
<Page Include="$(SharedContentDir)\xaml\MainPage.xaml">
<SubType>Designer</SubType>
</Page>
<Page Include="OpenCloseConnectionScenario.xaml" />
<Page Include="KeepConnectionOpenScenario.xaml" />
<Page Include="$(SharedContentDir)\xaml\Styles.xaml">
<Link>Styles\Styles.xaml</Link>
</Page>
</ItemGroup>
<ItemGroup>
<ClCompile Include="$(SharedContentDir)\cppwinrt\App.cpp">
<DependentUpon>$(SharedContentDir)\xaml\App.xaml</DependentUpon>
</ClCompile>
<ClCompile Include="$(SharedContentDir)\cppwinrt\MainPage.cpp">
<DependentUpon>$(SharedContentDir)\xaml\MainPage.xaml</DependentUpon>
</ClCompile>
<ClCompile Include="SampleConfiguration.cpp">
<DependentUpon>SampleConfiguration.h</DependentUpon>
</ClCompile>
<ClCompile Include="OpenCloseConnectionScenario.cpp">
<DependentUpon>OpenCloseConnectionScenario.xaml</DependentUpon>
</ClCompile>
<ClCompile Include="KeepConnectionOpenScenario.cpp">
<DependentUpon>KeepConnectionOpenScenario.xaml</DependentUpon>
</ClCompile>
<ClCompile Include="pch.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
<DependentUpon>pch.h</DependentUpon>
</ClCompile>
<ClCompile Include="$(GeneratedFilesDir)module.g.cpp">
<DependentUpon>Project.idl</DependentUpon>
</ClCompile>
</ItemGroup>
<ItemGroup>
<Midl Include="$(SharedContentDir)\cppwinrt\MainPage.idl">
<DependentUpon>$(SharedContentDir)\xaml\MainPage.xaml</DependentUpon>
</Midl>
<Midl Include="Project.idl" />
</ItemGroup>
<ItemGroup>
<AppxManifest Include="Package.appxmanifest">
<SubType>Designer</SubType>
</AppxManifest>
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<Image Include="$(SharedContentDir)\media\microsoft-sdk.png">
<Link>Assets\microsoft-sdk.png</Link>
</Image>
<Image Include="$(SharedContentDir)\media\smalltile-sdk.png">
<Link>Assets\smallTile-sdk.png</Link>
</Image>
<Image Include="$(SharedContentDir)\media\splash-sdk.png">
<Link>Assets\splash-sdk.png</Link>
</Image>
<Image Include="$(SharedContentDir)\media\squaretile-sdk.png">
<Link>Assets\squareTile-sdk.png</Link>
</Image>
<Image Include="$(SharedContentDir)\media\storelogo-sdk.png">
<Link>Assets\storeLogo-sdk.png</Link>
</Image>
<Image Include="$(SharedContentDir)\media\tile-sdk.png">
<Link>Assets\tile-sdk.png</Link>
</Image>
<Image Include="$(SharedContentDir)\media\windows-sdk.png">
<Link>Assets\windows-sdk.png</Link>
</Image>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
<Import Project="..\packages\Microsoft.Windows.CppWinRT.2.0.210309.3\build\native\Microsoft.Windows.CppWinRT.targets" Condition="Exists('..\packages\Microsoft.Windows.CppWinRT.2.0.210309.3\build\native\Microsoft.Windows.CppWinRT.targets')" />
</ImportGroup>
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
<Error Condition="!Exists('..\packages\Microsoft.Windows.CppWinRT.2.0.210309.3\build\native\Microsoft.Windows.CppWinRT.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.Windows.CppWinRT.2.0.210309.3\build\native\Microsoft.Windows.CppWinRT.props'))" />
<Error Condition="!Exists('..\packages\Microsoft.Windows.CppWinRT.2.0.210309.3\build\native\Microsoft.Windows.CppWinRT.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.Windows.CppWinRT.2.0.210309.3\build\native\Microsoft.Windows.CppWinRT.targets'))" />
</Target>
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Filter Include="Assets">
<UniqueIdentifier>4416d50a-7676-4d0a-9b2c-91ff70c6047f</UniqueIdentifier>
<Extensions>bmp;fbx;gif;jpg;jpeg;tga;tiff;tif;png</Extensions>
</Filter>
</ItemGroup>
<ItemGroup>
<Page Include="$(SharedContentDir)\xaml\MainPage.xaml" />
<Page Include="$(SharedContentDir)\xaml\Styles.xaml" />
<Page Include="OpenCloseConnectionScenario.xaml" />
<Page Include="KeepConnectionOpenScenario.xaml" />
</ItemGroup>
<ItemGroup>
<Midl Include="Project.idl" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="pch.cpp" />
<ClCompile Include="Scenario1_ShortName.cpp" />
<ClCompile Include="Scenario2_ShortName.cpp" />
<ClCompile Include="$(GeneratedFilesDir)module.g.cpp" />
<ClCompile Include="SampleConfiguration.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="pch.h" />
<ClInclude Include="Scenario1_ShortName.h" />
<ClInclude Include="Scenario2_ShortName.h" />
<ClInclude Include="SampleConfiguration.h" />
</ItemGroup>
<ItemGroup>
<AppxManifest Include="Package.appxmanifest" />
</ItemGroup>
<ItemGroup>
<Image Include="$(SharedContentDir)\media\microsoft-sdk.png">
<Filter>Assets</Filter>
</Image>
<Image Include="$(SharedContentDir)\media\smalltile-sdk.png">
<Filter>Assets</Filter>
</Image>
<Image Include="$(SharedContentDir)\media\splash-sdk.png">
<Filter>Assets</Filter>
</Image>
<Image Include="$(SharedContentDir)\media\squaretile-sdk.png">
<Filter>Assets</Filter>
</Image>
<Image Include="$(SharedContentDir)\media\storelogo-sdk.png">
<Filter>Assets</Filter>
</Image>
<Image Include="$(SharedContentDir)\media\tile-sdk.png">
<Filter>Assets</Filter>
</Image>
<Image Include="$(SharedContentDir)\media\windows-sdk.png">
<Filter>Assets</Filter>
</Image>
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<ApplicationDefinition Include="$(SharedContentDir)\xaml\App.xaml" />
</ItemGroup>
</Project>
Loading

0 comments on commit 29d2965

Please sign in to comment.