Exclude folders and files from assembly

I have a mercury repository and some visual studio files (I use TypeScript) that I do not want to include in my XDK assembly, but should still be in the project directory. Is there a way to get Intel XDK to ignore them? I tried using the ignore option, but that didn't work.

Thank.

+4
source share
1 answer

On the Projects tab, there are two directories that define your project: Project Path and Source Directory. The project path should always point to the "root" directory containing the "project.xdk" file (it represents the top level of your project). The Source Directory can point to a subdirectory in the project that contains only those files that are related to the assembly (it should contain the "source" files that actually represent your project).

" ", " " - , . * wild card . , (.git,.GIT,.svn,.SVN,.cvs,.hg,.HG,.CVS,.ignore,.IGNORE,.DS_Store) . , , .hg . , , , , - *.py.

+7

Source: https://habr.com/ru/post/1543083/


All Articles