Functions/Add-AngleSharp.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
[CmdletBinding()] param ( ) Add-Type -Path ('{0}\..\lib\System.Text.Encoding.CodePages.4.5.0\lib\netstandard2.0\System.Text.Encoding.CodePages.dll' -f $script:MyInvocation.MyCommand.Path) Add-Type -Path ('{0}\..\lib\AngleSharp.0.13.0\lib\netstandard2.0\AngleSharp.dll' -f $script:MyInvocation.MyCommand.Path) <# .SYNOPSIS AngleSharpのアセンブリを読み込んで利用可能にします。 .DESCRIPTION AngleSharpのアセンブリを読み込んで利用可能にします。 .INPUTS なし .OUTPUTS なし .LINK https://anglesharp.github.io/docs.html .LINK https://github.com/AngleSharp/AngleSharp #> |