mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-09-14 06:31:27 +00:00
Previously no default principal class was declared in Info.plist for a framework. This commit declares the principal class to be the same as the main framework class created with capp gen -t Framework.
13 lines
401 B
Plaintext
13 lines
401 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">
|
|
<dict>
|
|
<key>CPBundleInfoDictionaryVersion</key>
|
|
<string>6.0</string>
|
|
<key>CPBundlePackageType</key>
|
|
<string>FMWK</string>
|
|
<key>CPPrincipalClass</key>
|
|
<string>__project.nameasidentifier__</string>
|
|
</dict>
|
|
</plist>
|