Skip to content

Commit 5b3ad7d

Browse files
Apply suggestions from code review
Co-authored-by: Rainer Sigwald <[email protected]>
1 parent 6f41504 commit 5b3ad7d

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

docs/msbuild/walkthrough-creating-an-msbuild-project-file-from-scratch.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -385,8 +385,7 @@ The following example shows a project file that compiles a C# application and lo
385385
### Code
386386

387387
```xml
388-
<Project DefaultTargets = "Compile"
389-
>
388+
<Project DefaultTargets = "Compile">
390389

391390
<!-- Set the application name as a property -->
392391
<PropertyGroup>
@@ -398,7 +397,7 @@ The following example shows a project file that compiles a C# application and lo
398397
<CSFile Include = "*.cs"/>
399398
</ItemGroup>
400399

401-
<Target Name = "Compile">
400+
<Target Name="Compile">
402401
<!-- Run the C# compilation using input files of type CSFile -->
403402
<CSC
404403
Sources = "@(CSFile)"
@@ -422,7 +421,7 @@ The following example shows a project file that compiles a Visual Basic applicat
422421
### Code
423422

424423
```xml
425-
<Project DefaultTargets = "Compile"
424+
<Project DefaultTargets = "Compile">
426425
>
427426

428427
<!-- Set the application name as a property -->

0 commit comments

Comments
 (0)