Skip to content

Instantly share code, notes, and snippets.

@mayuki
Created October 10, 2012 11:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mayuki/3864931 to your computer and use it in GitHub Desktop.
Save mayuki/3864931 to your computer and use it in GitHub Desktop.
リソースファイルをひねり出す。
dir -r *.resx | %{ $xmldoc = [xml](Get-Content $_); $xmldoc.root.data | ?{ -not [System.String]::IsNullOrWhiteSpace($_.name)} | %{ $_.value = ("[EN]" + $_.value + "[/EN]") }; $xmldoc.Save($_.FullName.Substring(0,$_.FullName.Length-4)+"en.resx") }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment