Can anyone get WSPBuilder to create a WSP with ResetWebServer=False (in the generated manifest.xml)? I've tried numerous permutations of settings in the WSBBuilder.exe.config file but none seem to result in this value being set to false. I want to be able to deploy non-assembly artefacts without causing any downtime on a public site. The settings I currently have are:
<add key="BuildDDF" value="false" />
<add key="TraceLevel" value="3" />
<add key="Cleanup" value="false"/>
<add key="ResetWebServer" value="false" />
<add key="DeploymentTarget" value="Bin" />
<add key="BuildCAS" value="false" />
<add key="Excludefiletypes" value="dll" />
<add key="IncludeAssemblies" value="false" />
Has anyone got this working?