Teamwork problem writing the code with colleagues in bitbucket

58 Views Asked by At

I am writing the code with my team by usin0 the Bitbucket service. The problem is the following:

Since yesterday, when I downloaded the last commit from our public repository I see all projects (folders) but in visual studio where I want to run the application the compiler tells me that some libraries, projects or references are missing. At the same time I see only one of four projects in visual studio(while it must be four). I've tried to rebuild the solution but this does not help.

Folder structure

Project open in VS Error messages

When I asked one of my colleagues about the problem, he told me that this is a standard procedure and he will give me the access to all libraries and projects when the work will be finished.

My question is: Can I do something to got the access to all missing files?

P.S. I am the owner of Bitbucket repository

1

There are 1 best solutions below

0
AudioBubble On

Check with your colleague their solution build before pushing new changes and all the dependencies / changes to packages.config and project files are pushed in.

Usually a clean and rebuild and a compare between project files will tell you what are the differences.

P.S. if you have a .gitignore file check that too, in case someone added something that is required to your project.