在powershell脚本

时间:2017-04-05 13:52:38

标签: visual-studio powershell

我有一个NuGet包,其中有一个powershell脚本,每次安装包时都会自动执行。在包中,添加了.resx文件。在powershell脚本中,我想将.resx文件的自定义工具属性设置为ResXFileCodeGenerator,以便自动创建设计器文件。我怎样才能以最好的方式实现这个目标?

1 个答案:

答案 0 :(得分:0)

好的,我开始工作了。

显然,我只需要资源文件的projectitem,然后设置如下属性:

$projectItemImages.Properties.Item("CustomTool").Value = $customToolSetting;

$ projectItemImages是.resx文件的projectItem对象

$ customToolSetting是我想要设置的值,即ResXFileCodeGenerator

之后,我只需运行这样的自定义工具:

$projectItemImages.Object.RunCustomTool();