Skip to content

Commit bd31b44

Browse files
Raymond ChenRaymond Chen
Raymond Chen
authored and
Raymond Chen
committed
Windows 11 Version 22H2 - October 2023 Samples Update
* WebAuthenticationBroker: Remove Google support (issue #1376) * New: MobileHotspot, LampArray
1 parent 7d37b03 commit bd31b44

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+4578
-313
lines changed

README.md

+11-7
Original file line numberDiff line numberDiff line change
@@ -304,11 +304,11 @@ For additional Windows samples, see [Windows on GitHub](http://microsoft.github.
304304
<tr>
305305
<td><a href="Samples/IoT-GPIO">General Purpose Input/Output (GPIO)</a></td>
306306
<td><a href="Samples/Gyrometer">Gyrometer</a></td>
307-
<td><a href="Samples/PresenceSensor">Presence sensor</a></td>
307+
<td><a href="Samples/Inclinometer">Inclinometer</a></td>
308308
</tr>
309309
<tr>
310-
<td><a href="Samples/Inclinometer">Inclinometer</a></td>
311310
<td><a href="Samples/IoT-I2C">Inter-Integrated Circuit (I2C)</a></td>
311+
<td><a href="Samples/LampArray">Lamp array</a></td>
312312
<td><a href="Samples/LampDevice">Lamp device</a></td>
313313
</tr>
314314
<tr>
@@ -327,13 +327,16 @@ For additional Windows samples, see [Windows on GitHub](http://microsoft.github.
327327
<td><a href="Samples/PosPrinter">POS printer</a></td>
328328
</tr>
329329
<tr>
330+
<td><a href="Samples/PresenceSensor">Presence sensor</a></td>
330331
<td><a href="Samples/ProximitySensor">Proximity sensor</a></td>
331332
<td><a href="Samples/RadialController">Radial controller</a></td>
332-
<td><a href="Samples/RelativeInclinometer">Relative inclinometer</a></td>
333333
</tr>
334334
<tr>
335+
<td><a href="Samples/RelativeInclinometer">Relative inclinometer</a></td>
335336
<td><a href="Samples/SerialArduino">Serial Arduino</a></td>
336337
<td><a href="Samples/IoT-SPI">Serial Peripheral Interface (SPI)</a></td>
338+
</tr>
339+
<tr>
337340
<td><a href="Samples/SimpleOrientationSensor">Simple orientation sensor</a></td>
338341
</tr>
339342
</table>
@@ -509,24 +512,25 @@ For additional Windows samples, see [Windows on GitHub](http://microsoft.github.
509512
<tr>
510513
<td><a href="Samples/Json">JSON</a></td>
511514
<td><a href="Samples/MobileBroadband">Mobile broadband</a></td>
512-
<td><a href="Samples/NetworkConnectivity">Network connectivity</a></td>
515+
<td><a href="Samples/MobileHotspot">Mobile hotspot</a></td>
513516
</tr>
514517
<tr>
518+
<td><a href="Samples/NetworkConnectivity">Network connectivity</a></td>
515519
<td><a href="Samples/OnDemandHotspot">On-Demand Wi-Fi hotspot</a></td>
516520
<td><a href="Samples/RadioManager">Radios</a></td>
517-
<td><a href="Samples/SocketActivityStreamSocket">Socket activity trigger stream socket</a></td>
518521
</tr>
519522
<tr>
523+
<td><a href="Samples/SocketActivityStreamSocket">Socket activity trigger stream socket</a></td>
520524
<td><a href="Samples/StreamSocket">StreamSocket</a></td>
521525
<td><a href="Samples/Syndication">Syndication</a></td>
522-
<td><a href="Samples/UssdProtcol">USSD protocol</a></td>
523526
</tr>
524527
<tr>
528+
<td><a href="Samples/UssdProtcol">USSD protocol</a></td>
525529
<td><a href="Samples/WebSocket">WebSocket</a></td>
526530
<td><a href="Samples/WiFiDirect">Wi-Fi Direct</a></td>
527-
<td><a href="Samples/WiFiDirectServices">Wi-Fi Direct services</a></td>
528531
</tr>
529532
<tr>
533+
<td><a href="Samples/WiFiDirectServices">Wi-Fi Direct services</a></td>
530534
<td><a href="Samples/HotspotAuthentication">Wi-Fi hotspot authentication</a></td>
531535
<td><a href="Samples/WiFiScan">Wi-Fi scanning</a></td>
532536
</tr>

Samples/LampArray/README.md

+85
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
---
2+
page_type: sample
3+
languages:
4+
- csharp
5+
- cppwinrt
6+
- cpp
7+
products:
8+
- windows
9+
- windows-uwp
10+
urlFragment: LampArray
11+
extendedZipContent:
12+
- path: SharedContent
13+
target: SharedContent
14+
- path: LICENSE
15+
target: LICENSE
16+
description: "Shows how to control RGB lighting of compatible peripheral devices."
17+
---
18+
19+
<!---
20+
category: DevicesSensorsAndPower
21+
22+
-->
23+
24+
# LampArray sample
25+
26+
This sample shows how to control RGB lighting of peripheral devices using the [Windows.Devices.Lights](https://learn.microsoft.com/en-us/uwp/api/windows.devices.lights) and [Windows.Devices.Lights.Effects](https://learn.microsoft.com/en-us/uwp/api/windows.devices.lights.effects) APIs.
27+
28+
Supported devices conform to the [HID Lighting and Illumination Standard](https://www.usb.org/sites/default/files/hutrr84_-_lighting_and_illumination_page.pdf).
29+
30+
Specifically, this sample shows how to:
31+
32+
- Use [Windows.Devices.Enumeration.DeviceWatcher](https://learn.microsoft.com/en-us/uwp/api/windows.devices.enumeration.devicewatcher) with an AQS filter to register for LampArray attach and removal events.
33+
34+
- Obtain instances of [Windows.Devices.Lights.LampArray](https://learn.microsoft.com/en-us/uwp/api/windows.devices.lights.lamparray) and use them to query device properties and change RGB lighting colors and brightness.
35+
36+
- Create compelling RGB lighting effects using the [Windows.Devices.Lights.Effects](https://learn.microsoft.com/en-us/uwp/api/windows.devices.lights.effects) APIs.
37+
38+
- Create an app package with the "com.microsoft.windows.lighting" AppExtension. The sample will assume control of lighting when in the foreground. Declaring the "com.microsoft.windows.lighting" AppExtension will allow the sample to appear in the Dynamic Lighting page of Windows Settings, where it can be prioritized for lighting control when not in the foreground (supported on Windows build 23466 and above).
39+
40+
**Note** The Windows universal samples require Visual Studio to build and Windows 10 to execute.
41+
42+
To obtain information about Windows 10 development, go to the [Windows Dev Center](http://go.microsoft.com/fwlink/?LinkID=532421).
43+
44+
To obtain information about Microsoft Visual Studio and the tools for developing Windows apps, go to [Visual Studio](http://go.microsoft.com/fwlink/?LinkID=532422).
45+
46+
### Reference
47+
48+
[Windows.Devices.Lights](https://learn.microsoft.com/en-us/uwp/api/windows.devices.lights)
49+
50+
[Windows.Devices.Lights.Effects](https://learn.microsoft.com/en-us/uwp/api/windows.devices.lights.effects)
51+
52+
[Windows.Devices.Enumeration.DeviceWatcher](https://learn.microsoft.com/en-us/uwp/api/windows.devices.enumeration.devicewatcher)
53+
54+
### Conceptual
55+
56+
[HID Lighting and Illumination Standard](https://www.usb.org/sites/default/files/hutrr84_-_lighting_and_illumination_page.pdf)
57+
58+
[Dynamic Lighting](https://learn.microsoft.com/en-us/windows/uwp/devices-sensors/lighting-dynamic-lamparray) - This page also describes how to declare the "com.microsoft.windows.lighting" AppExtension for background (ambient) lighting control.
59+
60+
[Dynamic lighting devices](https://learn.microsoft.com/en-us/windows-hardware/design/component-guidelines/dynamic-lighting-devices) - This page contains a list of devices known to be compatible with the above HID Lighting standard.
61+
62+
## System requirements
63+
64+
**Client:** Windows 10, version 17763 or above.
65+
66+
**Server:** Not supported.
67+
68+
## Build the sample
69+
70+
1. If you download the samples ZIP, be sure to unzip the entire archive, not just the folder with the sample you want to build.
71+
2. Start Microsoft Visual Studio and select **File** \> **Open** \> **Project/Solution**.
72+
3. Starting in the folder where you unzipped the samples, go to the Samples subfolder, then the subfolder for this specific sample, then the subfolder for your preferred language (C++ or C#). Double-click the Visual Studio Solution (.sln) file.
73+
4. Press Ctrl+Shift+B, or select **Build** \> **Build Solution**.
74+
75+
## Run the sample
76+
77+
The next steps depend on whether you just want to deploy the sample or you want to both deploy and run it.
78+
79+
### Deploying the sample
80+
81+
- Select Build > Deploy Solution.
82+
83+
### Deploying and running the sample
84+
85+
- To debug the sample and then run it, press F5 or select Debug > Start Debugging. To run the sample without debugging, press Ctrl+F5 or select Debug > Start Without Debugging.
+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.6.33723.286
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LampArray", "LampArray.vcxproj", "{6619AD8E-72C9-492A-BC8A-2AF1995E226E}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|ARM = Debug|ARM
11+
Debug|x64 = Debug|x64
12+
Debug|x86 = Debug|x86
13+
Release|ARM = Release|ARM
14+
Release|x64 = Release|x64
15+
Release|x86 = Release|x86
16+
EndGlobalSection
17+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
18+
{6619AD8E-72C9-492A-BC8A-2AF1995E226E}.Debug|ARM.ActiveCfg = Debug|ARM
19+
{6619AD8E-72C9-492A-BC8A-2AF1995E226E}.Debug|ARM.Build.0 = Debug|ARM
20+
{6619AD8E-72C9-492A-BC8A-2AF1995E226E}.Debug|ARM.Deploy.0 = Debug|ARM
21+
{6619AD8E-72C9-492A-BC8A-2AF1995E226E}.Debug|x64.ActiveCfg = Debug|x64
22+
{6619AD8E-72C9-492A-BC8A-2AF1995E226E}.Debug|x64.Build.0 = Debug|x64
23+
{6619AD8E-72C9-492A-BC8A-2AF1995E226E}.Debug|x64.Deploy.0 = Debug|x64
24+
{6619AD8E-72C9-492A-BC8A-2AF1995E226E}.Debug|x86.ActiveCfg = Debug|Win32
25+
{6619AD8E-72C9-492A-BC8A-2AF1995E226E}.Debug|x86.Build.0 = Debug|Win32
26+
{6619AD8E-72C9-492A-BC8A-2AF1995E226E}.Debug|x86.Deploy.0 = Debug|Win32
27+
{6619AD8E-72C9-492A-BC8A-2AF1995E226E}.Release|ARM.ActiveCfg = Release|ARM
28+
{6619AD8E-72C9-492A-BC8A-2AF1995E226E}.Release|ARM.Build.0 = Release|ARM
29+
{6619AD8E-72C9-492A-BC8A-2AF1995E226E}.Release|ARM.Deploy.0 = Release|ARM
30+
{6619AD8E-72C9-492A-BC8A-2AF1995E226E}.Release|x64.ActiveCfg = Release|x64
31+
{6619AD8E-72C9-492A-BC8A-2AF1995E226E}.Release|x64.Build.0 = Release|x64
32+
{6619AD8E-72C9-492A-BC8A-2AF1995E226E}.Release|x64.Deploy.0 = Release|x64
33+
{6619AD8E-72C9-492A-BC8A-2AF1995E226E}.Release|x86.ActiveCfg = Release|Win32
34+
{6619AD8E-72C9-492A-BC8A-2AF1995E226E}.Release|x86.Build.0 = Release|Win32
35+
{6619AD8E-72C9-492A-BC8A-2AF1995E226E}.Release|x86.Deploy.0 = Release|Win32
36+
EndGlobalSection
37+
GlobalSection(SolutionProperties) = preSolution
38+
HideSolutionNode = FALSE
39+
EndGlobalSection
40+
GlobalSection(ExtensibilityGlobals) = postSolution
41+
SolutionGuid = {9FD4241E-48DF-497E-B1AD-92AA02ED08AD}
42+
EndGlobalSection
43+
EndGlobal
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,193 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="packages\Microsoft.Windows.CppWinRT.2.0.210922.5\build\native\Microsoft.Windows.CppWinRT.props" Condition="Exists('packages\Microsoft.Windows.CppWinRT.2.0.210922.5\build\native\Microsoft.Windows.CppWinRT.props')" />
4+
<PropertyGroup>
5+
<SharedContentDir>$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), LICENSE))\SharedContent</SharedContentDir>
6+
</PropertyGroup>
7+
<PropertyGroup Label="Globals">
8+
<MinimalCoreWin>true</MinimalCoreWin>
9+
<ProjectGuid>{6619AD8E-72C9-492A-BC8A-2AF1995E226E}</ProjectGuid>
10+
<ProjectName>LampArray</ProjectName>
11+
<RootNamespace>SDKTemplate</RootNamespace>
12+
<DefaultLanguage>en-US</DefaultLanguage>
13+
<MinimumVisualStudioVersion>15.0</MinimumVisualStudioVersion>
14+
<AppContainerApplication>true</AppContainerApplication>
15+
<ApplicationType>Windows Store</ApplicationType>
16+
<ApplicationTypeRevision>10.0</ApplicationTypeRevision>
17+
<WindowsTargetPlatformVersion>10.0.22621.0</WindowsTargetPlatformVersion>
18+
<WindowsTargetPlatformMinVersion>$(WindowsTargetPlatformVersion)</WindowsTargetPlatformMinVersion>
19+
</PropertyGroup>
20+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
21+
<ItemGroup Label="ProjectConfigurations">
22+
<ProjectConfiguration Include="Debug|ARM">
23+
<Configuration>Debug</Configuration>
24+
<Platform>ARM</Platform>
25+
</ProjectConfiguration>
26+
<ProjectConfiguration Include="Debug|Win32">
27+
<Configuration>Debug</Configuration>
28+
<Platform>Win32</Platform>
29+
</ProjectConfiguration>
30+
<ProjectConfiguration Include="Debug|x64">
31+
<Configuration>Debug</Configuration>
32+
<Platform>x64</Platform>
33+
</ProjectConfiguration>
34+
<ProjectConfiguration Include="Release|ARM">
35+
<Configuration>Release</Configuration>
36+
<Platform>ARM</Platform>
37+
</ProjectConfiguration>
38+
<ProjectConfiguration Include="Release|Win32">
39+
<Configuration>Release</Configuration>
40+
<Platform>Win32</Platform>
41+
</ProjectConfiguration>
42+
<ProjectConfiguration Include="Release|x64">
43+
<Configuration>Release</Configuration>
44+
<Platform>x64</Platform>
45+
</ProjectConfiguration>
46+
</ItemGroup>
47+
<PropertyGroup Label="Configuration">
48+
<ConfigurationType>Application</ConfigurationType>
49+
<CharacterSet>Unicode</CharacterSet>
50+
</PropertyGroup>
51+
<PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration">
52+
<UseDebugLibraries>true</UseDebugLibraries>
53+
<LinkIncremental>true</LinkIncremental>
54+
</PropertyGroup>
55+
<PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration">
56+
<UseDebugLibraries>false</UseDebugLibraries>
57+
<WholeProgramOptimization>true</WholeProgramOptimization>
58+
<LinkIncremental>false</LinkIncremental>
59+
</PropertyGroup>
60+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
61+
<ImportGroup Label="PropertySheets">
62+
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
63+
</ImportGroup>
64+
<PropertyGroup Label="UserMacros" />
65+
<PropertyGroup>
66+
<IncludePath>$(VC_IncludePath);$(UniversalCRT_IncludePath);$(WindowsSDK_IncludePath);$(SharedContentDir)\cppwinrt</IncludePath>
67+
<CppWinRTOptimized>true</CppWinRTOptimized>
68+
</PropertyGroup>
69+
<ItemDefinitionGroup>
70+
<ClCompile>
71+
<PrecompiledHeader>Use</PrecompiledHeader>
72+
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
73+
<PrecompiledHeaderOutputFile>$(IntDir)pch.pch</PrecompiledHeaderOutputFile>
74+
<WarningLevel>Level4</WarningLevel>
75+
<AdditionalOptions>%(AdditionalOptions) /bigobj</AdditionalOptions>
76+
<DisableSpecificWarnings>4453;28204</DisableSpecificWarnings>
77+
</ClCompile>
78+
</ItemDefinitionGroup>
79+
<ItemDefinitionGroup Condition="'$(Configuration)'=='Debug'">
80+
<ClCompile>
81+
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
82+
</ClCompile>
83+
</ItemDefinitionGroup>
84+
<ItemDefinitionGroup Condition="'$(Configuration)'=='Release'">
85+
<ClCompile>
86+
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
87+
</ClCompile>
88+
</ItemDefinitionGroup>
89+
<ItemGroup>
90+
<ClInclude Include="$(SharedContentDir)\cppwinrt\App.h">
91+
<DependentUpon>$(SharedContentDir)\xaml\App.xaml</DependentUpon>
92+
</ClInclude>
93+
<ClInclude Include="$(SharedContentDir)\cppwinrt\MainPage.h">
94+
<DependentUpon>$(SharedContentDir)\xaml\MainPage.xaml</DependentUpon>
95+
</ClInclude>
96+
<ClInclude Include="SampleConfiguration.h" />
97+
<ClInclude Include="Scenario1_Basics.h">
98+
<DependentUpon>..\shared\Scenario1_Basics.xaml</DependentUpon>
99+
</ClInclude>
100+
<ClInclude Include="Scenario2_Effects.h">
101+
<DependentUpon>..\shared\Scenario2_Effects.xaml</DependentUpon>
102+
</ClInclude>
103+
<ClInclude Include="pch.h" />
104+
</ItemGroup>
105+
<ItemGroup>
106+
<ApplicationDefinition Include="$(SharedContentDir)\xaml\App.xaml">
107+
<SubType>Designer</SubType>
108+
</ApplicationDefinition>
109+
<Page Include="$(SharedContentDir)\xaml\MainPage.xaml">
110+
<SubType>Designer</SubType>
111+
</Page>
112+
<Page Include="..\shared\Scenario1_Basics.xaml" />
113+
<Page Include="..\shared\Scenario2_Effects.xaml" />
114+
<Page Include="$(SharedContentDir)\xaml\Styles.xaml">
115+
<Link>Styles\Styles.xaml</Link>
116+
</Page>
117+
</ItemGroup>
118+
<ItemGroup>
119+
<ClCompile Include="$(SharedContentDir)\cppwinrt\App.cpp">
120+
<DependentUpon>$(SharedContentDir)\xaml\App.xaml</DependentUpon>
121+
</ClCompile>
122+
<ClCompile Include="$(SharedContentDir)\cppwinrt\MainPage.cpp">
123+
<DependentUpon>$(SharedContentDir)\xaml\MainPage.xaml</DependentUpon>
124+
</ClCompile>
125+
<ClCompile Include="SampleConfiguration.cpp">
126+
<DependentUpon>SampleConfiguration.h</DependentUpon>
127+
</ClCompile>
128+
<ClCompile Include="Scenario1_Basics.cpp">
129+
<DependentUpon>..\shared\Scenario1_Basics.xaml</DependentUpon>
130+
</ClCompile>
131+
<ClCompile Include="Scenario2_Effects.cpp">
132+
<DependentUpon>..\shared\Scenario2_Effects.xaml</DependentUpon>
133+
</ClCompile>
134+
<ClCompile Include="pch.cpp">
135+
<PrecompiledHeader>Create</PrecompiledHeader>
136+
<DependentUpon>pch.h</DependentUpon>
137+
</ClCompile>
138+
<ClCompile Include="$(GeneratedFilesDir)module.g.cpp">
139+
<DependentUpon>Project.idl</DependentUpon>
140+
</ClCompile>
141+
</ItemGroup>
142+
<ItemGroup>
143+
<Midl Include="$(SharedContentDir)\cppwinrt\MainPage.idl">
144+
<DependentUpon>$(SharedContentDir)\xaml\MainPage.xaml</DependentUpon>
145+
</Midl>
146+
<Midl Include="Project.idl" />
147+
</ItemGroup>
148+
<ItemGroup>
149+
<AppxManifest Include="Package.appxmanifest">
150+
<SubType>Designer</SubType>
151+
</AppxManifest>
152+
<None Include="packages.config" />
153+
</ItemGroup>
154+
<ItemGroup>
155+
<Image Include="$(SharedContentDir)\media\microsoft-sdk.png">
156+
<Link>Assets\microsoft-sdk.png</Link>
157+
</Image>
158+
<Image Include="$(SharedContentDir)\media\smalltile-sdk.png">
159+
<Link>Assets\smallTile-sdk.png</Link>
160+
</Image>
161+
<Image Include="$(SharedContentDir)\media\splash-sdk.png">
162+
<Link>Assets\splash-sdk.png</Link>
163+
</Image>
164+
<Image Include="$(SharedContentDir)\media\squaretile-sdk.png">
165+
<Link>Assets\squareTile-sdk.png</Link>
166+
</Image>
167+
<Image Include="$(SharedContentDir)\media\storelogo-sdk.png">
168+
<Link>Assets\storeLogo-sdk.png</Link>
169+
</Image>
170+
<Image Include="$(SharedContentDir)\media\tile-sdk.png">
171+
<Link>Assets\tile-sdk.png</Link>
172+
</Image>
173+
<Image Include="$(SharedContentDir)\media\windows-sdk.png">
174+
<Link>Assets\windows-sdk.png</Link>
175+
</Image>
176+
<Image Include="$(SharedContentDir)\media\Samples\grapes.jpg">
177+
<Link>Assets\grapes.jpg</Link>
178+
</Image>
179+
</ItemGroup>
180+
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
181+
<ImportGroup Label="ExtensionTargets">
182+
<Import Project="packages\Microsoft.Windows.CppWinRT.2.0.210922.5\build\native\Microsoft.Windows.CppWinRT.targets" Condition="Exists('packages\Microsoft.Windows.CppWinRT.2.0.210922.5\build\native\Microsoft.Windows.CppWinRT.targets')" />
183+
<Import Project="packages\Win2D.uwp.1.26.0\build\native\Win2D.uwp.targets" Condition="Exists('packages\Win2D.uwp.1.26.0\build\native\Win2D.uwp.targets')" />
184+
</ImportGroup>
185+
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
186+
<PropertyGroup>
187+
<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>
188+
</PropertyGroup>
189+
<Error Condition="!Exists('packages\Microsoft.Windows.CppWinRT.2.0.210922.5\build\native\Microsoft.Windows.CppWinRT.props')" Text="$([System.String]::Format('$(ErrorText)', 'packages\Microsoft.Windows.CppWinRT.2.0.210922.5\build\native\Microsoft.Windows.CppWinRT.props'))" />
190+
<Error Condition="!Exists('packages\Microsoft.Windows.CppWinRT.2.0.210922.5\build\native\Microsoft.Windows.CppWinRT.targets')" Text="$([System.String]::Format('$(ErrorText)', 'packages\Microsoft.Windows.CppWinRT.2.0.210922.5\build\native\Microsoft.Windows.CppWinRT.targets'))" />
191+
<Error Condition="!Exists('packages\Win2D.uwp.1.26.0\build\native\Win2D.uwp.targets')" Text="$([System.String]::Format('$(ErrorText)', 'packages\Win2D.uwp.1.26.0\build\native\Win2D.uwp.targets'))" />
192+
</Target>
193+
</Project>

0 commit comments

Comments
 (0)