-
Notifications
You must be signed in to change notification settings - Fork 4.1k
ESRP signing for master and fix help check #8193
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
CodeSign.targets
Outdated
| <?xml version="1.0" encoding="utf-8"?> | ||
| <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
|
|
||
| <UsingTask TaskName="ESRPSignTask" AssemblyFile="$(CISignRepoPath)\tools\sdkbuildtools\tasks\MS.Az.Sdk.OnPremise.Build.Tasks.dll" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any reason this file is using tabs instead of spaces?
tools/RemoveCodeSignArtifacts.ps1
Outdated
|
|
||
| Write-Output "Under the'$Path' folder" | ||
|
|
||
| "Signed","Unsigned" | ForEach-Object { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If this script is basically just removing 2 consistently-named folders, please do this instead in the build.proj:
<Exec Command="$(PowerShellCoreCommandPrefix) "Get-ChildItem -Path $(ArtifactsDirectory) -Recurse -Include 'Signed','Unsigned' | Remove-Item -Recurse -Force -Confirm:$false -ErrorAction Ignore"" ContinueOnError="WarnAndContinue" IgnoreExitCode="true" />Then, we don't need to maintain yet another script.
need to move to ESRP ASAP, please file issues or fix later
Description
Checklist
CONTRIBUTING.mdplatyPSmodule