diff --git a/deployment/build-signed.ps1 b/deployment/build-signed.ps1 index b6c57b43..3342c46c 100644 --- a/deployment/build-signed.ps1 +++ b/deployment/build-signed.ps1 @@ -7,7 +7,7 @@ param( # sign and build the project $directory = Split-Path $csprojFilePath; -$signKeyFile = Join-Path $directory "signKey.snk"; +$signKeyFile = [System.IO.Path]::GetFullPath((Join-Path $directory "signKey.snk")) $bytes = [Convert]::FromBase64String($signingKey) [IO.File]::WriteAllBytes($signKeyFile, $bytes)