Visual Studio Project dependencies in svn -


i imported existing project in our solution. afterwards changed references "external dll" project reference. (delete reference / add reference).

i built project , worked. later day co worker updated solution via svn , tried build solution. got different errors in build. reason was, new project build @ last. every project refernce new project got error.

i checked project dependencies , there wasn't dependencies on new project. checked project dependencies , correct. qquestion is, project dependencies saved? *.sln , *.proj files commited , date. in file find project dependencies , how like?

i looked .sln file (it's solution 2 projects 1 depending on other) , here section found:

project("{fae04ec0-301f-11d3-bf4b-00c04f79efbc}") = "gspservice", "gspservice\gspservice.csproj", "{7d9d9f3a-9405-43e9-900f-a00df28019a5}" endproject project("{fae04ec0-301f-11d3-bf4b-00c04f79efbc}") = "gsptest", "wcftestapp\gsptest.csproj", "{430f45e5-a6c6-4b0f-8d48-dc99f6d082da}"     projectsection(projectdependencies) = postproject         {7d9d9f3a-9405-43e9-900f-a00df28019a5} = {7d9d9f3a-9405-43e9-900f-a00df28019a5}     endprojectsection endproject 

you can see section

projectsection(projectdependencies) = postproject         {7d9d9f3a-9405-43e9-900f-a00df28019a5} = {7d9d9f3a-9405-43e9-900f-a00df28019a5} endprojectsection 

references gspservice project, hope helps


Comments

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -