c# - Avoiding merge conflicts in resx files -
c# - Avoiding merge conflicts in resx files -
in our c# mvc project storing our localizable strings in .resx files. every time add together new string, visual studio puts @ bottom of file, means if 2 strings added in different branches merge conflict, because 2 different blocks of code beingness added same place.
how can cut down our merge conflicts? sorting strings alphabetically might help, can't see how this. or maybe tell git treat each <data>...</data>
tag independent block?
we're using git, had same problem tfs/tfvc.
c# resx
Comments
Post a Comment