I followed the instructions in the link you provided: Exporting a Developer ID Network Extension: https://developer.apple.com/forums/thread/737894
However, when I try to open the application, I receive a popup error: "The application can’t be opened."
When I check the macOS console log, I see the error:
"Unsatisfied entitlements"
Specifically:
error 12:01:34.578205+0700 taskgated-helper com.xxx.xxx: Unsatisfied entitlements: com.apple.developer.system-extension.install, com.apple.developer.networking.networkextension, com.apple.developer.team-identifier
However, when I inspect the application using the terminal command:
codesign -d --entitlements
I see that my application is signed and contains all the necessary entitlements, including:
com.apple.developer.system-extension.install
com.apple.developer.networking.networkextension with the value "content-filter-provider-systemextension"
com.apple.developer.team-identifier = 63D4662568
Can you please help me resolve this issue?