File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,9 @@ regsvr32 C:\ProgramData\Microsoft\VisualStudio\Setup\x64\Microsoft.VisualStudio.
1818# Kill the regsvr process
1919Get-Process - Name regsvr32 | ForEach-Object { Stop-Process - Id $_.Id - Force }
2020
21+ # Install Visual C++ 2013 Redistributables
22+ . " c:\steps\install_vcredist13.ps1"
23+
2124# Setup Git Credentials
2225. " c:\steps\set_gitcredential.ps1"
2326
Original file line number Diff line number Diff line change 1+ # For some reason, Unity is failing in github actions windows runners
2+ # due to missing Visual C++ 2013 redistributables.
3+ # This script downloads and installs the required redistributables.
4+ Write-Output " "
5+ Write-Output " #########################################################"
6+ Write-Output " # Installing Visual C++ Redistributables (2013) #"
7+ Write-Output " #########################################################"
8+ Write-Output " "
9+
10+
11+ choco install vcredist2013 - y -- no- progress
You can’t perform that action at this time.
0 commit comments