Update 'kickstart.ps1'

some powershell commands
This commit is contained in:
2021-03-29 09:03:59 +00:00
parent b5e33778b4
commit 59a82c5463

View File

@@ -1,5 +1,7 @@
$AppName = Read-Host -Prompt 'Input your project (folder) name' $AppName = Read-Host -Prompt 'Input your project (folder) name'
$TargetFolder="../$AppName" $TargetFolder="../$AppName"
#$path = Get-Location
#$newPath = Join-Path -Path $path -ChildPath $TargetFolder
Write-Host "Creating a new project '$AppName' in '$TargetFolder'" Write-Host "Creating a new project '$AppName' in '$TargetFolder'"
$confirmation = Read-Host "Are you sure you want to proceed? [y/N]" $confirmation = Read-Host "Are you sure you want to proceed? [y/N]"
if ($confirmation -ne 'y') { if ($confirmation -ne 'y') {