├── .ci ├── ci.yml ├── ci_auto.yml ├── ci_release.yml ├── release.yml └── test.yml ├── .config └── tsaoptions.json ├── .github ├── CODE_OF_CONDUCT.md ├── SECURITY.md ├── dependabot.yml └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── .pipelines └── threadjobs-official.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── ThirdPartyNotices.txt ├── doBuild.ps1 ├── global.json ├── help ├── Start-ThreadJob.md └── en-us │ └── Microsoft.PowerShell.ThreadJob.dll-Help.xml ├── nuget.config ├── package.config.json ├── src ├── Microsoft.PowerShell.ThreadJob.psd1 ├── ThreadJob │ ├── ThreadJob.psd1 │ └── ThreadJob.psm1 └── code │ ├── Microsoft.PowerShell.ThreadJob.cs │ ├── Microsoft.PowerShell.ThreadJob.csproj │ └── images │ └── PowerShell_64.png └── test ├── Microsoft.PowerShell.ThreadJob.CL.Tests.ps1 └── Microsoft.PowerShell.ThreadJob.Tests.ps1 /.ci/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/ThreadJob/HEAD/.ci/ci.yml -------------------------------------------------------------------------------- /.ci/ci_auto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/ThreadJob/HEAD/.ci/ci_auto.yml -------------------------------------------------------------------------------- /.ci/ci_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/ThreadJob/HEAD/.ci/ci_release.yml -------------------------------------------------------------------------------- /.ci/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/ThreadJob/HEAD/.ci/release.yml -------------------------------------------------------------------------------- /.ci/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/ThreadJob/HEAD/.ci/test.yml -------------------------------------------------------------------------------- /.config/tsaoptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/ThreadJob/HEAD/.config/tsaoptions.json -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/ThreadJob/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/ThreadJob/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/ThreadJob/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/ThreadJob/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/ThreadJob/HEAD/.gitignore -------------------------------------------------------------------------------- /.pipelines/threadjobs-official.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/ThreadJob/HEAD/.pipelines/threadjobs-official.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/ThreadJob/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/ThreadJob/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/ThreadJob/HEAD/README.md -------------------------------------------------------------------------------- /ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/ThreadJob/HEAD/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /doBuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/ThreadJob/HEAD/doBuild.ps1 -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/ThreadJob/HEAD/global.json -------------------------------------------------------------------------------- /help/Start-ThreadJob.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/ThreadJob/HEAD/help/Start-ThreadJob.md -------------------------------------------------------------------------------- /help/en-us/Microsoft.PowerShell.ThreadJob.dll-Help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/ThreadJob/HEAD/help/en-us/Microsoft.PowerShell.ThreadJob.dll-Help.xml -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/ThreadJob/HEAD/nuget.config -------------------------------------------------------------------------------- /package.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/ThreadJob/HEAD/package.config.json -------------------------------------------------------------------------------- /src/Microsoft.PowerShell.ThreadJob.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/ThreadJob/HEAD/src/Microsoft.PowerShell.ThreadJob.psd1 -------------------------------------------------------------------------------- /src/ThreadJob/ThreadJob.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/ThreadJob/HEAD/src/ThreadJob/ThreadJob.psd1 -------------------------------------------------------------------------------- /src/ThreadJob/ThreadJob.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/ThreadJob/HEAD/src/ThreadJob/ThreadJob.psm1 -------------------------------------------------------------------------------- /src/code/Microsoft.PowerShell.ThreadJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/ThreadJob/HEAD/src/code/Microsoft.PowerShell.ThreadJob.cs -------------------------------------------------------------------------------- /src/code/Microsoft.PowerShell.ThreadJob.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/ThreadJob/HEAD/src/code/Microsoft.PowerShell.ThreadJob.csproj -------------------------------------------------------------------------------- /src/code/images/PowerShell_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/ThreadJob/HEAD/src/code/images/PowerShell_64.png -------------------------------------------------------------------------------- /test/Microsoft.PowerShell.ThreadJob.CL.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/ThreadJob/HEAD/test/Microsoft.PowerShell.ThreadJob.CL.Tests.ps1 -------------------------------------------------------------------------------- /test/Microsoft.PowerShell.ThreadJob.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/ThreadJob/HEAD/test/Microsoft.PowerShell.ThreadJob.Tests.ps1 --------------------------------------------------------------------------------