Add show-ant-manual.ps1 and show-msbuild-manual.ps1

This commit is contained in:
Markus Fleschutz
2021-12-04 16:22:16 +01:00
parent e7588e7b8c
commit 3e72ee7e3c
3 changed files with 31 additions and 1 deletions

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Shows the Ant manual
.DESCRIPTION
This script launches the Web browser with the Apache Ant manual.
.EXAMPLE
PS> ./show-ant-manual
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://ant.apache.org/manual/index.html"
exit 0 # success

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Shows the MSBuild manual
.DESCRIPTION
This script launches the Web browser with the MSBuild manual.
.EXAMPLE
PS> ./show-msbuild-manual
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://docs.microsoft.com/de-de/visualstudio/msbuild/msbuild"
exit 0 # success