I am trying to customize my build process template in VS2010. I have added an argument called "temp", of type "Dictionary < String, String >". I want the default value to be: "new Dictionary < String, String > ()"
When I enter the default value, VS complains: "Compiler error encountered process expression [...] . expected"
我在违约值方面尝试了几种不同的差异(末期的血清;末期的半分辨率;强硬体;等等),但仓促工作。 任何想法?
最新资料:
我将违约价值改为:
new Dictionary(Of String, String)
这似乎行之有效。 然而,我仍然无法开始这样说:
new Dictionary(Of String, String) { {"cat", "dog"} }
任何想法?