about summary refs log tree commit diff
path: root/pkgs/development/compilers/dotnet/sign-apphost.proj
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/dotnet/sign-apphost.proj')
-rw-r--r--pkgs/development/compilers/dotnet/sign-apphost.proj11
1 files changed, 0 insertions, 11 deletions
diff --git a/pkgs/development/compilers/dotnet/sign-apphost.proj b/pkgs/development/compilers/dotnet/sign-apphost.proj
deleted file mode 100644
index e401739bdd70..000000000000
--- a/pkgs/development/compilers/dotnet/sign-apphost.proj
+++ /dev/null
@@ -1,11 +0,0 @@
-<Project>
-  <Target Name="SignAppHost" AfterTargets="_CreateAppHost" Condition="'$(AppHostIntermediatePath)' != ''">
-    <Exec Command='@codesign@ -f -s - "$(AppHostIntermediatePath)" 2>&amp;1'/>
-  </Target>
-  <Target Name="UnsignBundle" BeforeTargets="GenerateSingleFileBundle" Condition="'$(PublishedSingleFileName)' != ''">
-    <Exec Command='@codesign@ --remove-signature "@(FilesToBundle)" 2>&amp;1' Condition="'%(FilesToBundle.RelativePath)' == '$(PublishedSingleFileName)'"/>
-  </Target>
-  <Target Name="SignBundle" AfterTargets="GenerateSingleFileBundle" Condition="'$(PublishedSingleFilePath)' != ''">
-    <Exec Command='@codesign@ -f -s - "$(PublishedSingleFilePath)" 2>&amp;1'/>
-  </Target>
-</Project>