Skip to content

Commit f3e36d1

Browse files
committed
Update comments in project files
- Format comments - Adjust whitespace
1 parent 354f3ee commit f3e36d1

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

Microsoft.Toolkit.Uwp.Notifications/Microsoft.Toolkit.Uwp.Notifications.csproj

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</PropertyGroup>
1313

1414
<PropertyGroup Condition="'$(TargetFramework)' == 'net461' or '$(TargetFramework)' == 'netcoreapp3.1' or '$(TargetFramework)' == 'net5.0-windows10.0.17763.0'">
15-
<!-- Define the WINDOWS_UWP conditional symbol, since the Windows.Data.Xml and the Windows.UI.Notification namespaces are available -->
15+
<!-- Define the WINDOWS_UWP conditional symbol, since the 'Windows.Data.Xml' and the 'Windows.UI.Notification' namespaces are available -->
1616
<DefineConstants>$(DefineConstants);WINDOWS_UWP;WIN32</DefineConstants>
1717
</PropertyGroup>
1818

@@ -42,18 +42,17 @@
4242
<None Include="Microsoft.Toolkit.Uwp.Notifications.targets" Pack="true" PackagePath="build\native" />
4343
</ItemGroup>
4444

45-
<!-- In order to support .NET Native, we need to include an appropriate .rd.xml for UWP (remove from everything else) -->
45+
<!-- In order to support .NET Native, we need to include an appropriate '.rd.xml' for UWP (remove from everything else) -->
4646
<ItemGroup Condition="'$(TargetFramework)' != 'uap10.0.19041' and '$(TargetFramework)' != 'native'">
4747
<EmbeddedResource Remove="Properties\Microsoft.Toolkit.Uwp.Notifications.rd.xml" />
4848
</ItemGroup>
4949

50-
<!-- Desktop Win32 apps -->
50+
<!-- For Desktop Win32 apps' WinRT APIs support -->
5151
<ItemGroup Condition="'$(TargetFramework)' == 'net461' or '$(TargetFramework)' == 'netcoreapp3.1'">
52-
<!-- Reference Windows SDK NuGet of correct target platform version -->
5352
<PackageReference Include="Microsoft.Windows.SDK.Contracts" Version="10.0.19041.1" />
5453
</ItemGroup>
5554

56-
<!-- The .NET Core desktop apps also need the Registry NuGet package and System.Reflection.Emit for generating COM class dynamically -->
55+
<!-- The .NET Core desktop apps also need the Registry NuGet package and 'System.Reflection.Emit' for generating COM class dynamically -->
5756
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1' or '$(TargetFramework)' == 'net5.0-windows10.0.17763.0'">
5857
<PackageReference Include="Microsoft.Win32.Registry" Version="4.7.0" />
5958
<PackageReference Include="System.Reflection.Emit" Version="4.7.0" />
@@ -64,12 +63,15 @@
6463
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform" Version="$(ExtrasUwpMetaPackageVersion)" PrivateAssets="All" IsImplicitlyDefined="true" />
6564
</ItemGroup>
6665

67-
<!-- Native (C++) doesn't need 'System.ValueTuple' (plus it's incompatible with this package) -->
66+
<!-- Native (C++) does not need 'System.ValueTuple' (plus it is incompatible with this package) -->
6867
<ItemGroup Condition="'$(TargetFramework)' != 'native'">
6968
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
7069
</ItemGroup>
7170

72-
<!-- Set the nuspec properties. Dependent on version which isn't updated till after 'GetBuildVersion'. Condition ensures we only set once since this runs multiple times for each target. -->
71+
<!--
72+
Set the nuspec properties. Dependent on version which is not updated till after 'GetBuildVersion'.
73+
Condition ensures we only set once since this runs multiple times for each target.
74+
-->
7375
<Target Name="SetNuspecProperties" AfterTargets="GetBuildVersion">
7476
<PropertyGroup Condition="'$(NuspecProperties)' == ''">
7577
<NuspecProperties>buildOutput=bin\$(Configuration);version=$(Version)</NuspecProperties>

Microsoft.Toolkit.Uwp.SampleApp/Microsoft.Toolkit.Uwp.SampleApp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,6 @@
127127
</PackageReference>
128128
</ItemGroup>
129129
<ItemGroup>
130-
<!-- A reference to the entire .Net Framework and Windows SDK are automatically included -->
131130
<Content Include="Assets\BrushAssets\TileTexture.png" />
132131
<Content Include="Assets\BrushAssets\NoiseTexture.png" />
133132
<Content Include="Assets\checker.png" />
@@ -1493,6 +1492,7 @@
14931492
</ProjectReference>
14941493
</ItemGroup>
14951494
<ItemGroup>
1495+
<!-- A reference to the entire .NET Framework and Windows SDK are automatically included -->
14961496
<SDKReference Include="Microsoft.Services.Store.Engagement, Version=10.0">
14971497
<Name>Microsoft Engagement Framework</Name>
14981498
</SDKReference>

0 commit comments

Comments
 (0)