From e3ec0bafac23bd1d81594311b87176d9098d418c Mon Sep 17 00:00:00 2001 From: Sam Xu Date: Fri, 24 Jan 2020 12:53:26 -0800 Subject: [PATCH] Modify the skip strong name script --- build.ps1 | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/build.ps1 b/build.ps1 index 4b78a3b..1becaff 100644 --- a/build.ps1 +++ b/build.ps1 @@ -131,20 +131,17 @@ Function GetDlls Function SkipStrongName { - $SnLog = $LOGDIR + "\SkipStrongName.log" - Out-File $SnLog - Write-Host 'Skip strong name validations for Microsoft.OpenApi.OData assemblies...' $dlls = GetDlls ForEach ($dll in $dlls) { - & $SN /Vr $dll | Out-File $SnLog -Append + & $SN /Vr $dll } ForEach ($dll in $dlls) { - & $SNx64 /Vr $dll | Out-File $SnLog -Append + & $SNx64 /Vr $dll } Write-Host "SkipStrongName Done" -ForegroundColor $Success