45 lines
577 B
PowerShell
45 lines
577 B
PowerShell
$ErrorActionPreference = "Inquire"
|
|
|
|
wt @(
|
|
"nt",
|
|
"-d",
|
|
".",
|
|
"--title",
|
|
"Angular",
|
|
"pwsh",
|
|
"-NoExit",
|
|
"-File",
|
|
".\scripts\angular.ps1",
|
|
";",
|
|
|
|
"nt",
|
|
"-d",
|
|
".",
|
|
"--title",
|
|
"API TS",
|
|
"pwsh",
|
|
"-NoExit",
|
|
"-File",
|
|
".\scripts\api-ts.ps1",
|
|
";",
|
|
|
|
"nt",
|
|
"-d",
|
|
".",
|
|
"--title",
|
|
"Docker",
|
|
"pwsh",
|
|
"-NoExit",
|
|
"-File",
|
|
".\scripts\docker.ps1",
|
|
";",
|
|
|
|
"nt",
|
|
"-d",
|
|
".",
|
|
"--title",
|
|
"API Gen",
|
|
"pwsh",
|
|
"-File",
|
|
".\scripts\apigen.ps1")
|