Skip to content

Commit 2ea9102

Browse files
committed
Add Labels to some Property groups
Some property groups have conditions that also self-explain their purpose. So, Add labels to bare property groups only to differentiate among themselves. Then, when contributors add any additional properties, they'll know where to put them.
1 parent 4b567ec commit 2ea9102

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

eng/Toolkit.Common.props

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<Project>
22

3-
<PropertyGroup>
3+
<PropertyGroup Label="Build">
44
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
55
<ContinuousIntegrationBuild>$(TF_BUILD)</ContinuousIntegrationBuild>
66
<SourceLinkEnabled>$(ContinuousIntegrationBuild)</SourceLinkEnabled>
77
</PropertyGroup>
88

9-
<PropertyGroup>
9+
<PropertyGroup Label="Compile">
1010
<Nullable>Enable</Nullable>
1111
<LangVersion>11.0</LangVersion>
1212
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
@@ -21,7 +21,7 @@
2121
<NoWarn>$(NoWarn);CS8500</NoWarn>
2222
</PropertyGroup>
2323

24-
<PropertyGroup>
24+
<PropertyGroup Label="Assembly">
2525
<SignAssembly>true</SignAssembly>
2626
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)toolkit.snk</AssemblyOriginatorKeyFile>
2727
<AssemblySignPublicKeyFile>$(MSBuildThisFileDirectory)toolkit.spk</AssemblySignPublicKeyFile>

src/Directory.Build.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="..\$(MSBuildThisFile)" />
44

55
<!-- Common properties for all projects under src folder -->
6-
<PropertyGroup>
6+
<PropertyGroup Label="Build">
77
<IsPackable>true</IsPackable>
88
<IsPublishable>true</IsPublishable>
99
<GenerateDocumentationFile>true</GenerateDocumentationFile>

tests/Directory.Build.props

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
This also includes non-test projects as well. But if it's required then
88
override the following properties only within those projects.
99
-->
10-
<PropertyGroup>
10+
<PropertyGroup Label="Build">
1111
<IsPackable>false</IsPackable>
1212
<IsPublishable>false</IsPublishable>
1313
<NoWarn>$(NoWarn);CS8002;SA0001</NoWarn>
1414
</PropertyGroup>
1515

16-
<PropertyGroup>
16+
<PropertyGroup Label="Project">
1717
<IsTestProject>true</IsTestProject>
1818
<!-- The MVVM Toolkit unit tests use `Mvvm.ExternalAssembly` project as a `ProjectReference` for testing -->
1919
<IsTestProject Condition="$(MSBuildProjectName.Contains('Mvvm.ExternalAssembly'))">false</IsTestProject>

0 commit comments

Comments
 (0)