ceb77e624e
feat: 重构 TodoList 架构,新增动态 API 与 MAUI 内嵌 Web 服务 feat:优化交互逻辑,优化发布流程
18 lines
809 B
Plaintext
18 lines
809 B
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<!-- See https://aka.ms/maui-publish-app-store#add-entitlements for more information about adding entitlements.-->
|
|
<dict>
|
|
<!-- App Sandbox must be enabled to distribute a MacCatalyst app through the Mac App Store. -->
|
|
<key>com.apple.security.app-sandbox</key>
|
|
<true/>
|
|
<!-- When App Sandbox is enabled, this value is required to open outgoing network connections. -->
|
|
<key>com.apple.security.network.client</key>
|
|
<true/>
|
|
<!-- Accessibility entitlement for global hotkey support -->
|
|
<key>com.apple.security.automation.apple-events</key>
|
|
<true/>
|
|
</dict>
|
|
</plist>
|
|
|