Skip to content

Typo "MsBuild.exe"→"MSBuild.exe" #8043

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 25, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ To automate building your project, add code that calls MSBuild to `New-WebDeploy
#Write a function to build and package your web application
```

To build your web application, use MsBuild.exe. For help, see [MSBuild Command-Line Reference](../msbuild/msbuild-command-line-reference.md)
To build your web application, use MSBuild.exe. For help, see [MSBuild Command-Line Reference](../msbuild/msbuild-command-line-reference.md)

```powershell
Write-VerboseWithTime 'Build-WebDeployPackage: Start'
Expand All @@ -260,7 +260,7 @@ To automate building your project, add code that calls MSBuild to `New-WebDeploy
$job = Start-Process cmd.exe -ArgumentList('/C "' + $msbuildCmd + '"') -WindowStyle Normal -Wait -PassThru

if ($job.ExitCode -ne 0) {
throw('MsBuild exited with an error. ExitCode:' + $job.ExitCode)
throw('MSBuild exited with an error. ExitCode:' + $job.ExitCode)
}

#Obtain the project name
Expand Down Expand Up @@ -342,4 +342,4 @@ To get help for functions you can use at the Windows PowerShell command prompt,
| Test-WebApplication |This function isn't implemented. You can add commands in this function to test your application. |

## Next steps
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/).
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/).