So I need to create a LaunchAgent plist file for my program to run on startup. I have the following text for my plist file but when I try to open the plist file it xCode tells me that the files data isn't in the correct format. Also my program doesn't run on startup and I would assume that the incorrect data format is the problem.
I have looked at everything and it follows my file follows Apples documentation on LaunchAgents.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.coremanager.webhelper</string>
<key>KeepAlive</key>
<true/>
<key>RunAtLoad</key>
<true/>
<key>Program</key>
<string>/Users/schmidt73/Library/Developer/Xcode/DerivedData/Linux-dfoidphusbtywcgykdsujjvymczr/Build/Products/Debug/Linux</string>
</dict>
</plist>
What could I be doing wrong?