I'm hoping you can help me solve this development workflow annoyance.
I'm a front-end dev working on a project where most of the other developers use MS Visual Studio, and I don't. We've got TFS set up, and I'm able to check out code and make edits locally.
After making edits, I check in my code to a local Git repo via git add
and git commit
, then push to TFS via git tf checkin
.
The Problem is that our developers using Visual Studio aren't able to see the files I've added after updating their workspaces from TFS. We've tracked down the cause of this issue to the .csproj files—any files I add to the repo (e.g. JavaScript, CSS) have to be manually added to the project in Visual Studio, because my workflow doesn't use VS and doesn't update the .csproj file.
- Has anyone faced a similar situation and found a solution?
- Is there maybe a tool that can notice added files and update the .csproj file to match?
- Maybe there's a setting in Visual Studio so that it notices new files in its directories and adds them to the project automatically?
Thanks in advance for any suggestions.