├── AutoComplete.gif ├── LICENSE ├── README.md └── src ├── .vscode └── launch.json ├── psTrustedHosts.Gherkin ├── Add-TrustedHost.Steps.ps1 ├── Add-TrustedHost.feature ├── Clear-TrustedHost.Steps.ps1 ├── Clear-TrustedHost.feature ├── Common.Steps.ps1 ├── Get-TrustedHost.Steps.ps1 ├── Get-TrustedHost.feature ├── Remove-TrustedHost.Steps.ps1 └── Remove-TrustedHost.feature ├── psTrustedHosts.Tests ├── Add-TrustedHost.Tests.ps1 ├── Clear-TrustedHost.Tests.ps1 ├── Get-TrustedHost.Tests.ps1 └── Remove-TrustedHost.Tests.ps1 └── psTrustedHosts ├── Add-TrustedHost.ps1 ├── Clear-TrustedHost.ps1 ├── Get-TrustedHost.ps1 ├── RegisterArgumentCompleter.ps1 ├── Remove-TrustedHost.ps1 ├── psTrustedHosts.psd1 └── psTrustedHosts.psm1 /AutoComplete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonmcboyd/psTrustedHosts/HEAD/AutoComplete.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonmcboyd/psTrustedHosts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonmcboyd/psTrustedHosts/HEAD/README.md -------------------------------------------------------------------------------- /src/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonmcboyd/psTrustedHosts/HEAD/src/.vscode/launch.json -------------------------------------------------------------------------------- /src/psTrustedHosts.Gherkin/Add-TrustedHost.Steps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonmcboyd/psTrustedHosts/HEAD/src/psTrustedHosts.Gherkin/Add-TrustedHost.Steps.ps1 -------------------------------------------------------------------------------- /src/psTrustedHosts.Gherkin/Add-TrustedHost.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonmcboyd/psTrustedHosts/HEAD/src/psTrustedHosts.Gherkin/Add-TrustedHost.feature -------------------------------------------------------------------------------- /src/psTrustedHosts.Gherkin/Clear-TrustedHost.Steps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonmcboyd/psTrustedHosts/HEAD/src/psTrustedHosts.Gherkin/Clear-TrustedHost.Steps.ps1 -------------------------------------------------------------------------------- /src/psTrustedHosts.Gherkin/Clear-TrustedHost.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonmcboyd/psTrustedHosts/HEAD/src/psTrustedHosts.Gherkin/Clear-TrustedHost.feature -------------------------------------------------------------------------------- /src/psTrustedHosts.Gherkin/Common.Steps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonmcboyd/psTrustedHosts/HEAD/src/psTrustedHosts.Gherkin/Common.Steps.ps1 -------------------------------------------------------------------------------- /src/psTrustedHosts.Gherkin/Get-TrustedHost.Steps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonmcboyd/psTrustedHosts/HEAD/src/psTrustedHosts.Gherkin/Get-TrustedHost.Steps.ps1 -------------------------------------------------------------------------------- /src/psTrustedHosts.Gherkin/Get-TrustedHost.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonmcboyd/psTrustedHosts/HEAD/src/psTrustedHosts.Gherkin/Get-TrustedHost.feature -------------------------------------------------------------------------------- /src/psTrustedHosts.Gherkin/Remove-TrustedHost.Steps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonmcboyd/psTrustedHosts/HEAD/src/psTrustedHosts.Gherkin/Remove-TrustedHost.Steps.ps1 -------------------------------------------------------------------------------- /src/psTrustedHosts.Gherkin/Remove-TrustedHost.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonmcboyd/psTrustedHosts/HEAD/src/psTrustedHosts.Gherkin/Remove-TrustedHost.feature -------------------------------------------------------------------------------- /src/psTrustedHosts.Tests/Add-TrustedHost.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonmcboyd/psTrustedHosts/HEAD/src/psTrustedHosts.Tests/Add-TrustedHost.Tests.ps1 -------------------------------------------------------------------------------- /src/psTrustedHosts.Tests/Clear-TrustedHost.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonmcboyd/psTrustedHosts/HEAD/src/psTrustedHosts.Tests/Clear-TrustedHost.Tests.ps1 -------------------------------------------------------------------------------- /src/psTrustedHosts.Tests/Get-TrustedHost.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonmcboyd/psTrustedHosts/HEAD/src/psTrustedHosts.Tests/Get-TrustedHost.Tests.ps1 -------------------------------------------------------------------------------- /src/psTrustedHosts.Tests/Remove-TrustedHost.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonmcboyd/psTrustedHosts/HEAD/src/psTrustedHosts.Tests/Remove-TrustedHost.Tests.ps1 -------------------------------------------------------------------------------- /src/psTrustedHosts/Add-TrustedHost.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonmcboyd/psTrustedHosts/HEAD/src/psTrustedHosts/Add-TrustedHost.ps1 -------------------------------------------------------------------------------- /src/psTrustedHosts/Clear-TrustedHost.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonmcboyd/psTrustedHosts/HEAD/src/psTrustedHosts/Clear-TrustedHost.ps1 -------------------------------------------------------------------------------- /src/psTrustedHosts/Get-TrustedHost.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonmcboyd/psTrustedHosts/HEAD/src/psTrustedHosts/Get-TrustedHost.ps1 -------------------------------------------------------------------------------- /src/psTrustedHosts/RegisterArgumentCompleter.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonmcboyd/psTrustedHosts/HEAD/src/psTrustedHosts/RegisterArgumentCompleter.ps1 -------------------------------------------------------------------------------- /src/psTrustedHosts/Remove-TrustedHost.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonmcboyd/psTrustedHosts/HEAD/src/psTrustedHosts/Remove-TrustedHost.ps1 -------------------------------------------------------------------------------- /src/psTrustedHosts/psTrustedHosts.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonmcboyd/psTrustedHosts/HEAD/src/psTrustedHosts/psTrustedHosts.psd1 -------------------------------------------------------------------------------- /src/psTrustedHosts/psTrustedHosts.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonmcboyd/psTrustedHosts/HEAD/src/psTrustedHosts/psTrustedHosts.psm1 --------------------------------------------------------------------------------