Skip to content

Commit

Permalink
Fix build script for code signing (indentation now causes build break) (
Browse files Browse the repository at this point in the history
  • Loading branch information
tellarin authored Mar 19, 2019
1 parent 9390de8 commit bdbc82a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .NET/buildtools/updateAssemblyInfo.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function UpdateAssemblyInfo()
function AddCodeSign()
{

$csAppend = "`r`n[assembly: AssemblyKeyFileAttribute(@`"" + ($PSScriptRoot + "\35MSSharedLib1024.snk") + "`")] `r`n [assembly: AssemblyDelaySignAttribute(true)]"
$csAppend = "`r`n[assembly: AssemblyKeyFileAttribute(@`"" + ($PSScriptRoot + "\35MSSharedLib1024.snk") + "`")]`r`n[assembly: AssemblyDelaySignAttribute(true)]"
#Write-Host ("CSAppend:" + $csAppend)
$fileContent = $fileContent + $csAppend
return $fileContent
Expand Down

0 comments on commit bdbc82a

Please # to comment.