Skip to content

Commit

Permalink
Adding Microsoft.Azure.AppService.Proxy for re-cert. (#3312)
Browse files Browse the repository at this point in the history
  • Loading branch information
khkh-ms authored Mar 16, 2023
1 parent fabf989 commit 981aa2b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build/BuildSteps.cs
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,9 @@ public static void CopyBinariesToSign()

// These assemblies are currently signed, but with an invalid root cert.
// Until that is resolved, we are explicity signing the AppService.Middleware packages
unSignedBinaries = unSignedBinaries.Concat(allFiles.Where(f => f.Contains("Microsoft.Azure.AppService.Middleware"))).ToList();

unSignedBinaries = unSignedBinaries.Concat(allFiles
.Where(f => f.Contains("Microsoft.Azure.AppService.Middleware") || f.Contains("Microsoft.Azure.AppService.Proxy"))).ToList();

// remove all entries for binaries that are actually unsigned (checked via sigcheck.exe)
unSignedBinaries.ForEach(f => allFiles.RemoveAll(n => n.Equals(f, StringComparison.OrdinalIgnoreCase)));
Expand Down

0 comments on commit 981aa2b

Please sign in to comment.