How does Eclipse handle excluding Java files in the project??
In C# the list of files in the project is handled in the sln file – There seems nothing similar in Eclipse!!
Any ideas?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In Visual Studio files for C# projects are stored in the .csproj files. Solutions are just containers for projects (which can be C#/C++/VB/… projects).
The last time I worked with Eclipse all files beneath the project’s root were automatically included. When one was excluded from the build the project’s
.classpathfile was modified:You can exclude a file in Eclipse by right-clicking it in the
Package Explorerand then choosingBuild Path -> Exclude.