Skip to content

Commit

Permalink
Signing change
Browse files Browse the repository at this point in the history
PolFileEditor.dll is signed in source control and doesn't change.  I've modified the build script so that after the next release, deployment scripts can be written to just check the hash of module files and only overwrite the ones that it needs to.

(This is coming up due to "file in use" errors when trying to delete or overwrite the DLL file, since the LCM still has it loaded sometimes.)
  • Loading branch information
dlwyatt committed Apr 1, 2015
1 parent b38b55b commit 53c2e27
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified PolFileEditor.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion build.psake.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ Task Sign {

if ($signerTimestampUrl) { $splat['TimestampServer'] = $signerTimestampUrl }

Get-ChildItem -Path $buildTarget -Recurse -File -Include *.ps1, *.psm1, *.psd1, *.dll |
Get-ChildItem -Path $buildTarget -Recurse -File -Include *.ps1, *.psm1, *.psd1 |
Set-AuthenticodeSignature @splat -ErrorAction Stop |
Format-Table -Property $properties -AutoSize
}

0 comments on commit 53c2e27

Please sign in to comment.