blob: ee7e86248330af9d0cd6cd9e769e944dcd7bc647 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<Project>
<Target Name="SignAppHost" AfterTargets="_CreateAppHost"
Condition="'$(AppHostIntermediatePath)' != ''
and ($(RuntimeIdentifier.StartsWith('osx')) or $(AppHostRuntimeIdentifier.StartsWith('osx')))">
<Exec Command='@codesign@ -f -s - "$(AppHostIntermediatePath)" 2>&1'/>
</Target>
<Target Name="UnsignBundle" BeforeTargets="GenerateSingleFileBundle"
Condition="'$(PublishedSingleFileName)' != ''
and ($(RuntimeIdentifier.StartsWith('osx')) or $(AppHostRuntimeIdentifier.StartsWith('osx')))">
<Exec Command='@codesign@ --remove-signature "@(FilesToBundle)" 2>&1' Condition="'%(FilesToBundle.RelativePath)' == '$(PublishedSingleFileName)'"/>
</Target>
<Target Name="SignBundle" AfterTargets="GenerateSingleFileBundle"
Condition="'$(PublishedSingleFilePath)' != ''
and ($(RuntimeIdentifier.StartsWith('osx')) or $(AppHostRuntimeIdentifier.StartsWith('osx')))">
<Exec Command='@codesign@ -f -s - "$(PublishedSingleFilePath)" 2>&1'/>
</Target>
</Project>
|