More debug prints
parent
44d4fb4e08
commit
d74bb9d4ad
|
@ -1,24 +1,37 @@
|
|||
Get-Process
|
||||
|
||||
# Import any necessary registry keys, ie: location of windows 10 sdk
|
||||
# No guarantee that there will be any necessary registry keys, ie: tvOS
|
||||
Get-ChildItem -Path c:\regkeys -File | Foreach {reg import $_.fullname}
|
||||
Start-Sleep 3
|
||||
Get-Process
|
||||
|
||||
# Register the Visual Studio installation so Unity can find it
|
||||
regsvr32 C:\ProgramData\Microsoft\VisualStudio\Setup\x64\Microsoft.VisualStudio.Setup.Configuration.Native.dll
|
||||
Start-Sleep 3
|
||||
Get-Process
|
||||
|
||||
# Setup Git Credentials
|
||||
& "c:\steps\set_gitcredential.ps1"
|
||||
Start-Sleep 3
|
||||
Get-Process
|
||||
|
||||
# Activate Unity
|
||||
& "c:\steps\activate.ps1"
|
||||
Start-Sleep 3
|
||||
Get-Process
|
||||
|
||||
# Build the project
|
||||
& "c:\steps\build.ps1"
|
||||
Start-Sleep 3
|
||||
Get-Process
|
||||
|
||||
# Free the seat for the activated license
|
||||
& "c:\steps\return_license.ps1"
|
||||
Start-Sleep 3
|
||||
Get-Process
|
||||
|
||||
# Kill the regsvr process
|
||||
Get-Process -Name regsvr32 | ForEach-Object { Stop-Process -Id $_.Id -Force }
|
||||
|
||||
Start-Sleep 3
|
||||
Get-Process
|
||||
|
|
Loading…
Reference in New Issue