Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Excluding files
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire de projet
Titre:
Divers
Thread ID:
00634163
Message ID:
00634515
Vues:
19
Hi Paul.

>So I pull in a couple of class libraries, and then when I try to build my new web connection project I get a boat load files that I don't need added to my new project. I also get tons of errors.

Sounds like you have some dependencies between those files. For example, if one the classes does a DO FORM X, then not only will X.SCX be added to the project, so will every file X depends on, and every file those files depend on, and so on.

You could mark those additional files as excluded so the Project Manager won't compile them into the DLL/EXE (assuming they aren't actually needed at runtime), but maybe it'd be worth revisiting and eliminating the dependencies. One simple way to do that is to change hard-coded DO, DO FORM, REPORT, etc. statements to named expressions, such as:
DO FORM ('X')
That way, the Project Manager won't see them. Or you could use Wayne's suggestion and package your components in a more graular fashion.

Doug
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform