Skip to content

Commit b19503e

Browse files
authored
Merge pull request #5880 from drryder/patch-2
Update walkthrough-creating-an-msbuild-project-file-from-scratch.md
2 parents 4e27eec + 4ea646b commit b19503e

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)