[NAK_CVR_Mods] Strip properties.

This commit is contained in:
NotAKidoS 2023-07-28 22:29:46 -05:00
parent d67c45023f
commit eef6f1bf51
2 changed files with 1 additions and 49 deletions

View file

@ -147,7 +147,7 @@ else {
# Loop through each DLL file to strip and call NStrip.exe
foreach($dllFile in $dllsToStrip) {
$dllPath = Join-Path -Path $managedLibsFolder -ChildPath $dllFile
& $nStripPath -p -n $dllPath $dllPath
& $nStripPath -p -n -cg --cg-exclude-events $dllPath $dllPath
}
Write-Host ""