Skip to content

Commit 91b52e7

Browse files
authored
Merge pull request #8043 from hyoshioka0128/patch-21
Typo "MsBuild.exe"→"MSBuild.exe"
2 parents bfc592c + 0b8d596 commit 91b52e7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/azure/vs-azure-tools-publishing-using-powershell-scripts.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ To automate building your project, add code that calls MSBuild to `New-WebDeploy
244244
#Write a function to build and package your web application
245245
```
246246
247-
To build your web application, use MsBuild.exe. For help, see [MSBuild Command-Line Reference](../msbuild/msbuild-command-line-reference.md)
247+
To build your web application, use MSBuild.exe. For help, see [MSBuild Command-Line Reference](../msbuild/msbuild-command-line-reference.md)
248248
249249
```powershell
250250
Write-VerboseWithTime 'Build-WebDeployPackage: Start'
@@ -260,7 +260,7 @@ To automate building your project, add code that calls MSBuild to `New-WebDeploy
260260
$job = Start-Process cmd.exe -ArgumentList('/C "' + $msbuildCmd + '"') -WindowStyle Normal -Wait -PassThru
261261
262262
if ($job.ExitCode -ne 0) {
263-
throw('MsBuild exited with an error. ExitCode:' + $job.ExitCode)
263+
throw('MSBuild exited with an error. ExitCode:' + $job.ExitCode)
264264
}
265265
266266
#Obtain the project name
@@ -342,4 +342,4 @@ To get help for functions you can use at the Windows PowerShell command prompt,
342342
| Test-WebApplication |This function isn't implemented. You can add commands in this function to test your application. |
343343
344344
## Next steps
345-
Learn more about PowerShell scripting by reading [Scripting with Windows PowerShell](/powershell/scripting/overview) and see other Azure PowerShell scripts at the [Script Center](https://azure.microsoft.com/documentation/scripts/).
345+
Learn more about PowerShell scripting by reading [Scripting with Windows PowerShell](/powershell/scripting/overview) and see other Azure PowerShell scripts at the [Script Center](https://azure.microsoft.com/documentation/scripts/).

0 commit comments

Comments
 (0)