[dotnet] Compile entitlements before signing the merged app bundle.

This commit is contained in:
Rolf Bjarne Kvinge 2021-06-22 17:28:18 +02:00
Родитель 70d0f86099
Коммит 889cf99b74
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -183,6 +183,7 @@
<!-- outer build for multi-rid build --> <!-- outer build for multi-rid build -->
<BuildDependsOn Condition="'$(RuntimeIdentifiers)' != ''"> <BuildDependsOn Condition="'$(RuntimeIdentifiers)' != ''">
_RunRidSpecificBuild; _RunRidSpecificBuild;
_CompileEntitlements;
_CreateMergedAppBundle; _CreateMergedAppBundle;
Codesign; Codesign;
</BuildDependsOn> </BuildDependsOn>
@ -223,6 +224,7 @@
<!-- outer build for multi-rid build --> <!-- outer build for multi-rid build -->
<CreateAppBundleDependsOn Condition="'$(RuntimeIdentifiers)' != ''"> <CreateAppBundleDependsOn Condition="'$(RuntimeIdentifiers)' != ''">
_CompileEntitlements;
_CreateMergedAppBundle; _CreateMergedAppBundle;
</CreateAppBundleDependsOn> </CreateAppBundleDependsOn>
</PropertyGroup> </PropertyGroup>