├── .gitignore ├── LICENSE ├── README.md ├── src ├── Legislator.psd1 ├── Legislator.psm1 ├── Private │ ├── Assert-Legislator.ps1 │ └── New-AssemblyBuilder.ps1 └── Public │ ├── event.ps1 │ ├── interface.ps1 │ ├── method.ps1 │ └── property.ps1 └── test └── Legislator.Tests.ps1 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IISResetMe/Legislator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IISResetMe/Legislator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IISResetMe/Legislator/HEAD/README.md -------------------------------------------------------------------------------- /src/Legislator.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IISResetMe/Legislator/HEAD/src/Legislator.psd1 -------------------------------------------------------------------------------- /src/Legislator.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IISResetMe/Legislator/HEAD/src/Legislator.psm1 -------------------------------------------------------------------------------- /src/Private/Assert-Legislator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IISResetMe/Legislator/HEAD/src/Private/Assert-Legislator.ps1 -------------------------------------------------------------------------------- /src/Private/New-AssemblyBuilder.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IISResetMe/Legislator/HEAD/src/Private/New-AssemblyBuilder.ps1 -------------------------------------------------------------------------------- /src/Public/event.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IISResetMe/Legislator/HEAD/src/Public/event.ps1 -------------------------------------------------------------------------------- /src/Public/interface.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IISResetMe/Legislator/HEAD/src/Public/interface.ps1 -------------------------------------------------------------------------------- /src/Public/method.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IISResetMe/Legislator/HEAD/src/Public/method.ps1 -------------------------------------------------------------------------------- /src/Public/property.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IISResetMe/Legislator/HEAD/src/Public/property.ps1 -------------------------------------------------------------------------------- /test/Legislator.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IISResetMe/Legislator/HEAD/test/Legislator.Tests.ps1 --------------------------------------------------------------------------------