Hi community!
I have some troubles with source control of solutions, which you might be able to help me solving.
So what we do is this:
We use the solutionpacker for version control our solutions. We got three languages in our solutions (german, english and norwegian). The solutionpacker works fine for us, but one thing is realy driving me crazy:
Depending on which of our developers is exporting his solution (even if unchanged) the language order changes in the .xml export files. This looks like this:
1. Export:
<LocalizedCollectionNames>
<LocalizedCollectionName description="..." languagecode="1031" />
<LocalizedCollectionName description="..." languagecode="1044" />
<LocalizedCollectionName description="..." languagecode="1033" />
</LocalizedCollectionNames>
2. Export
<LocalizedCollectionNames>
<LocalizedCollectionName description="..." languagecode="1031" />
<LocalizedCollectionName description="..." languagecode="1033" />
<LocalizedCollectionName description="..." languagecode="1044" />
</LocalizedCollectionNames>
This is Happening with all localized strings. So what happens when we want to check in, we have like "changes" in nearly every file and it seems impossible to recognize the real changes.
Does anyone know how to get those strings being exported in the same order on every system?
Best Regards,
Thanks in advance!
Eric
// By the way: the order of the language strings are not fixed for one soluation. The are very different combinations, where every possible order might get exported.