Does changing the "Include In" attributes in the IDE control if that function gets included in the built app?

If a method/computed property setter (on a custom class) is set to NOT be included in a console application, are they stripped from the console application (smaller file size) or just simply ignored?

If they are in fact stripped (which is what I expect) I’ll go through each class as it’ll be worth my time if I get a smaller console executable, if not, then I’ll simply not waste my time.

They are not included in the built app.

Excellent, then I’ll take the time to unselect all the unneeded functions :slight_smile: