Skip to content

Commit 5b5ad83

Browse files
Do not sign dotnet-suggest when not building from the VMR (#2694)
Co-authored-by: Matt Mitchell <[email protected]>
1 parent 604f5e6 commit 5b5ad83

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

eng/Signing.props

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<Project>
22
<ItemGroup>
33
<!-- Ensure that MacOS dotnet-suggest shims get signed properly -->
4-
<FileSignInfo Include="dotnet-suggest" CertificateName="MacDeveloperHarden" ExecutableType="MachO" />
4+
<!-- Avoid using this when not building from the VMR, since this is only supported in 10.0 arcade -->
5+
<FileSignInfo Include="dotnet-suggest" CertificateName="MacDeveloperHarden" ExecutableType="MachO" Condition="'$(DotNetBuildFromVMR)' == 'true'" />
56
</ItemGroup>
67

78
</Project>

0 commit comments

Comments
 (0)