Reputation: 193
The project description file (.project) for 'AutoClicker' is missing. This file contains important information about the project. The project will not function properly until this file is restored.
I had moved computers in class and moved all my projects on a 1TB hard drive over to the new computer and I had gotten all the projects to work, but one. I have no idea how to fix it, I feel like the path to the file is wrong, but I don't see anything wrong with it. If anyone has any idea on how to fix this error, it would be greatly appreciated.
Upvotes: 1
Views: 13948
Reputation: 37
A thing that worked with me (having tortoise) was deleting the .project file then importing it again
Upvotes: 0
Reputation: 3137
If you are getting this error after stash your changes with checking include untracked files then you have to follow below steps to solve the issue.
git stash list
. You will see your stash changes with given name.git stash apply stash@{0}
where stash@{0} is having your stash changes.Thanks.
Upvotes: 0
Reputation: 31
Delete your .project file in root project and in your subprojects, then right click on project folder -> delete (not deleting it from disk). Reimport your project, then, be happy!
Upvotes: 3
Reputation: 11
1) The solution for me, is to delette projet from eclipse ( important no delette content from disk). 2) Import the project It's OK form me I hope help U
Upvotes: 1
Reputation: 288
If the .project file is in the expected location, try checking the case. On case sensitive systems (not Windows) a difference in case between the project name and the folder name may be the cause.
Upvotes: 0
Reputation: 16364
Most probably you have lost the .project
file during the transaction process.
Not really an elegant solution, but what you could do is create a new project in Eclipse and copy the files from your storage to the newly created project (which would have the .project
file).
Upvotes: 2