我的CustomAction是一个C#DLL文件:DemoDatumErzeugen.CA.dll
。它包含一个修改配置文件的方法DatumEintragen
。我试图以这种方式访问数据:
string path = session.CustomActionData["LOCATION"];
这是引发异常的地方。我只收到了德语错误消息,但它说了一句话:The supplied key was not found in the dictionary
(Der angegebene Schlüssel war nicht im Wörterbuch angegeben.
)。
这是我尝试将属性从setup-script传递到自定义操作的方法:
<Binary Id="DemoDatumEinrichtenCA" SourceFile="DemoDatumErzeugen.CA.dll"/>
<CustomAction Id="DemoDatum.SetProperty" Return="check" Property="DatumEintragen" Value="LOCATION=[INSTALLLOCATION];NAME=StrategieplanConfig.xml;"/>
<CustomAction Id="DemoDatum" BinaryKey="DemoDatumEinrichtenCA" DllEntry="DatumEintragen" Execute="deferred" Return="check" HideTarget="no"/>
<InstallExecuteSequence>
<Custom Action="DemoDatum.SetProperty" After="InstallFiles"/>
<Custom Action="DemoDatum" After="DemoDatum.SetProperty"/>
</InstallExecuteSequence>
我见过许多以相同方式或至少非常相似的例子。我已经尝试了很多东西,但似乎没有什么比在<Custom Action="DemoDatum.SetProperty" After="InstallFiles"/>
之后更改值更有帮助。 CustomActionData始终为零
我检查一下:session.CustomActionData.Count
再一次,我非常感谢任何有关我做错事的帮助或提示。
答案 0 :(得分:17)
Property
的{{1}}属性值应等于延迟操作的DemoDatum.SetProperty
属性值。因此,要么将属性名称更改为Id
,要么将延迟操作的DemoDatum
更改为Id
。