5 lines
263 B
PowerShell
5 lines
263 B
PowerShell
$file = "dxc_2023_08_14.zip"
|
|
Invoke-WebRequest -Uri https://github.com/microsoft/DirectXShaderCompiler/releases/download/v1.7.2308/$file -OutFile contrib\$file
|
|
Expand-Archive -LiteralPath contrib\$file -DestinationPath contrib\dxc
|
|
Remove-Item -Path contrib\$file
|