Common error when importing project from machine to another may be with encoding:
1 |
File XYZ.dsx can only be imported when the client code page is 1252 - it is currently 1250 |
You can solve it very easily – just open the file you want to import and change CharacterSet attribute to desired encoding:
1 |
CharacterSet="CP1250" |
Simple, huh?