Skip to content

Commit 6566b58

Browse files
authored
Update iOS builds to disable code signing again (#4902)
Disable codesigning using new parameter for iOS app builds by replacing _RequireCodeSigning with EnableCodeSigning.
1 parent c6edc20 commit 6566b58

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/scenarios/mauiblazorios/pre.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141
# Build the IPA
4242
# NuGet.config file cannot be in the build directory due same cause as to https://github.com/dotnet/aspnetcore/issues/41397
43-
precommands.execute(['/p:_RequireCodeSigning=false', '/p:ApplicationId=net.dot.mauiblazortesting'])
43+
precommands.execute(['/p:EnableCodeSigning=false', '/p:ApplicationId=net.dot.mauiblazortesting'])
4444

4545
output_dir = const.PUBDIR
4646
if precommands.output:

src/scenarios/mauiios/pre.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
no_restore=False)
2727

2828
# Build the APK
29-
precommands.execute(['/p:_RequireCodeSigning=false', '/p:ApplicationId=net.dot.mauitesting'])
29+
precommands.execute(['/p:EnableCodeSigning=false', '/p:ApplicationId=net.dot.mauitesting'])
3030

3131
# Remove the aab files as we don't need them, this saves space
3232
output_dir = const.PUBDIR

src/scenarios/netios/pre.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
no_restore=False)
2626

2727
# Build the APK
28-
precommands.execute(['/p:_RequireCodeSigning=false', '/p:ApplicationId=net.dot.xamarintesting'])
28+
precommands.execute(['/p:EnableCodeSigning=false', '/p:ApplicationId=net.dot.xamarintesting'])
2929

3030
# Remove the aab files as we don't need them, this saves space
3131
output_dir = const.PUBDIR

0 commit comments

Comments
 (0)