从 CSV 生成卫星程序集时出现问题(使用 LocBaml)
我一直在尝试使用从 这里,但还没有成功。我正在使用“WPF 4 Unleashed”一书中提供的代码。这是我正在做的事情:
我首先创建了一个 CSV 文件:
LocBaml /parse ProjectName.g.en-US.resources /out:en-US.csv
这一步成功了。
接下来我修改了文件并将其另存为 nb-NO.csv
现在当我尝试使用生成 dll 文件时
LocBaml /generate ProjectName.resources.dll /trans:nb-NO.csv /cul:nb-NO
该工具运行,但没有生成资源文件(没有例外)。
我做错了什么吗?上面的命令不正确吗?
I've been trying to generate a satellite assembly using the LocBaml tool downloaded from here, but haven't been successful. I'm using the code present in the book "WPF 4 Unleashed". Here is what I'm doing :
I first created a CSV file:
LocBaml /parse ProjectName.g.en-US.resources /out:en-US.csv
This step was successful.
Next I modified the file and saved it as nb-NO.csv
Now when I try to generate the dll file using
LocBaml /generate ProjectName.resources.dll /trans:nb-NO.csv /cul:nb-NO
The tool runs, but no resource file is generated (There is no exception).
Am I doing anything wrong? Is the above command not correct?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您缺少
out
参数。 MSDN 帮助。You are missing the
out
parameter. MSDN help.