Where does XCode Console App Build Go?

console, macos, xcode

Solution

If you right-click on the target application under the 'products' folder you should be given a context menu. Select 'Show in Finder'.

The 'target' application is the application which you're targeting to build. As you can see, right clicking on this displays the 'Show in Finder' option

Problem

Where does the build output go for a console app? I can run the app from within XCode, but I want to try and run it form the console.

Original source