Skip to content

Commit 4ea646b

Browse files
authored
Update walkthrough-creating-an-msbuild-project-file-from-scratch.md
Fix typo, == to =
1 parent 7117c5c commit 4ea646b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,13 +233,13 @@ Your project file should now resemble the following code:
233233
>
234234
> `<OutputPath>Bin\</OutputPath>`
235235
>
236-
> `OutputAssembly=="$(OutputPath)$(AssemblyName).exe" />`
236+
> `OutputAssembly="$(OutputPath)$(AssemblyName).exe" />`
237237
>
238238
> is better than
239239
>
240240
> `<OutputPath>Bin</OutputPath>`
241241
>
242-
> `OutputAssembly=="$(OutputPath)\$(AssemblyName).exe" />`
242+
> `OutputAssembly="$(OutputPath)\$(AssemblyName).exe" />`
243243

244244
## Test the build properties
245245

0 commit comments

Comments
 (0)