├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ ├── feature-request.yml │ └── other-request.yml ├── Changelog.md ├── LICENSE.txt ├── PSTeachingTools.psd1 ├── PSTeachingTools.psm1 ├── README.md ├── assets ├── get-vegetable.jpg ├── mkformat.ps1 └── set-vegetable.jpg ├── code ├── Get-Vegetable.ps1 ├── New-Vegetable.ps1 ├── Remove-Vegetable.ps1 ├── Set-Vegetable.ps1 ├── Start-TypedDemo.ps1 ├── Vegetables.ps1 ├── plu.csv ├── psteachingtools.cs ├── rawveggies.json └── vegetable-class.ps1 ├── docs ├── Get-Vegetable.md ├── New-Vegetable.md ├── Remove-Vegetable.md ├── Set-Vegetable.md ├── Start-TypedDemo.md └── about_PSTeachingTools.md ├── en-us ├── about_PSTeachingTools.help.txt └── psteachingtools-help.xml ├── formats └── vegetable.format.ps1xml ├── samples ├── sampledemo.txt └── sampledemo2.txt └── tests └── PSTeachingTools.tests.ps1 /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/.github/ISSUE_TEMPLATE/other-request.yml -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/Changelog.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PSTeachingTools.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/PSTeachingTools.psd1 -------------------------------------------------------------------------------- /PSTeachingTools.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/PSTeachingTools.psm1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/README.md -------------------------------------------------------------------------------- /assets/get-vegetable.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/assets/get-vegetable.jpg -------------------------------------------------------------------------------- /assets/mkformat.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/assets/mkformat.ps1 -------------------------------------------------------------------------------- /assets/set-vegetable.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/assets/set-vegetable.jpg -------------------------------------------------------------------------------- /code/Get-Vegetable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/code/Get-Vegetable.ps1 -------------------------------------------------------------------------------- /code/New-Vegetable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/code/New-Vegetable.ps1 -------------------------------------------------------------------------------- /code/Remove-Vegetable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/code/Remove-Vegetable.ps1 -------------------------------------------------------------------------------- /code/Set-Vegetable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/code/Set-Vegetable.ps1 -------------------------------------------------------------------------------- /code/Start-TypedDemo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/code/Start-TypedDemo.ps1 -------------------------------------------------------------------------------- /code/Vegetables.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/code/Vegetables.ps1 -------------------------------------------------------------------------------- /code/plu.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/code/plu.csv -------------------------------------------------------------------------------- /code/psteachingtools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/code/psteachingtools.cs -------------------------------------------------------------------------------- /code/rawveggies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/code/rawveggies.json -------------------------------------------------------------------------------- /code/vegetable-class.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/code/vegetable-class.ps1 -------------------------------------------------------------------------------- /docs/Get-Vegetable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/docs/Get-Vegetable.md -------------------------------------------------------------------------------- /docs/New-Vegetable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/docs/New-Vegetable.md -------------------------------------------------------------------------------- /docs/Remove-Vegetable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/docs/Remove-Vegetable.md -------------------------------------------------------------------------------- /docs/Set-Vegetable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/docs/Set-Vegetable.md -------------------------------------------------------------------------------- /docs/Start-TypedDemo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/docs/Start-TypedDemo.md -------------------------------------------------------------------------------- /docs/about_PSTeachingTools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/docs/about_PSTeachingTools.md -------------------------------------------------------------------------------- /en-us/about_PSTeachingTools.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/en-us/about_PSTeachingTools.help.txt -------------------------------------------------------------------------------- /en-us/psteachingtools-help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/en-us/psteachingtools-help.xml -------------------------------------------------------------------------------- /formats/vegetable.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/formats/vegetable.format.ps1xml -------------------------------------------------------------------------------- /samples/sampledemo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/samples/sampledemo.txt -------------------------------------------------------------------------------- /samples/sampledemo2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/samples/sampledemo2.txt -------------------------------------------------------------------------------- /tests/PSTeachingTools.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSTeachingTools/HEAD/tests/PSTeachingTools.tests.ps1 --------------------------------------------------------------------------------