From 68b29a4fd9fc4f8b257a5975a26f9393f965ec9f Mon Sep 17 00:00:00 2001 From: alexweininger Date: Fri, 23 Aug 2024 15:21:43 -0400 Subject: [PATCH] Try moving csproj --- azure-pipelines/templates/sign.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines/templates/sign.yml b/azure-pipelines/templates/sign.yml index 0432c69f0e..a49bf32b8c 100644 --- a/azure-pipelines/templates/sign.yml +++ b/azure-pipelines/templates/sign.yml @@ -2,7 +2,7 @@ steps: # Check if the SignExtension.signproj file exists and set a variable using PowerShell # All other steps in this template will only run if the file exists - powershell: | - $fileExists = Test-Path -Path "$(Build.SourcesDirectory)/SignExtension.signproj" + $fileExists = Test-Path -Path "$(Build.SourcesDirectory)/.azure-pipelines/SignExtension.signproj" Write-Output "##vso[task.setvariable variable=signprojExists]$fileExists" if ($fileExists) { @@ -29,4 +29,4 @@ steps: displayName: "\U0001F449 Sign with MSBuild" inputs: command: 'build' - projects: 'SignExtension.signproj' + projects: $(Build.SourcesDirectory)/.azure-pipelines/SignExtension.signproj