hvanbakel / CsprojToVs2017

Tooling for converting pre 2017 project to the new Visual Studio 2017 format.
MIT License
1.08k stars 120 forks source link

Convert all file writes to output as UTF-8 #180

Closed laurencee closed 6 years ago

laurencee commented 6 years ago

A while back in PR #17 the files were written out as UTF-8 which is the default.

The file writing process was changed from a streamwriter with UTF-8 encoding over to File.WriteAllText but UTF-8 seems to have been dropped so this PR adds it back.

hvanbakel commented 6 years ago

That seems like an omission, thanks for fixing that!

mungojam commented 6 years ago

Thanks @laurencee I think I introduced that error. I've now learnt some new things!