Skip to content

Commit 077626e

Browse files
committed
improve indentation
1 parent 70d7ba4 commit 077626e

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

docs/msbuild/when-element-msbuild.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -94,22 +94,22 @@ Specifies a possible block of code for the `Choose` element to select.
9494
<DefineConstants>DEBUG;TRACE</DefineConstants>
9595
</PropertyGroup>
9696
<Choose>
97-
<When Condition="$(Platform)=='x86' Or $(Platform) == 'ARM32'">
98-
<PropertyGroup>
97+
<When Condition="$(Platform)=='x86' Or $(Platform) == 'ARM32'">
98+
<PropertyGroup>
9999
<OutputPath>.\bin\Test\32-bit\</OutputPath>
100-
</PropertyGroup>
101-
</When>
102-
<When Condition="$(Platform)=='x64' Or $(Platform) == 'ARM64'">
103-
<PropertyGroup>
100+
</PropertyGroup>
101+
</When>
102+
<When Condition="$(Platform)=='x64' Or $(Platform) == 'ARM64'">
103+
<PropertyGroup>
104104
<OutputPath>.\bin\Test\64-bit\</OutputPath>
105-
</PropertyGroup>
106-
</When>
107-
<!-- For any other platform, use the platform name -->
108-
<Otherwise>
105+
</PropertyGroup>
106+
</When>
107+
<!-- For any other platform, use the platform name -->
108+
<Otherwise>
109109
<PropertyGroup>
110110
<OutputPath>.\bin\Test\$(Platform)\</OutputPath>
111111
</PropertyGroup>
112-
</Otherwise>
112+
</Otherwise>
113113
</Choose>
114114
</When>
115115
<When Condition="$(Configuration)=='Retail' Or $(Configuration)=='Release'">
@@ -134,7 +134,7 @@ Specifies a possible block of code for the `Choose` element to select.
134134
<PropertyGroup>
135135
<OutputPath>.\bin\Release\$(Platform)\</OutputPath>
136136
</PropertyGroup>
137-
</Otherwise>
137+
</Otherwise>
138138
</Choose>
139139
</When>
140140
<!-- For any other configuration, use debug properties-->

0 commit comments

Comments
 (0)