VS keep asking for a deleted folder? Reference problem

So i was cleaning up my solution a bit, and here i deletede a folder called “CharacterBuilder” because i wanted to make a class with that name. The classes in that folder was moved to another folder, but visual studio keeps asking me to add CharacterBuilder folder to my usings when im trying to use said classes, as if it cant find them in their new location? I tried rebuilding in hope it would fix it, but didnt work. Any tips would be greatly appreciated :slight_smile:

Nvm fixed it, had made a spelling mistake somewhere, akward…

Note that usings refer to namespaces, not physical location of files. So if you just move a file it will be in the same namespace and your imports don’t change (unless you use your IDE to refactor, it might automatically change the namespace in that case).

But it’s good practice to name your folders the same as the namespaces.