Or, change the build script and add the define there. Either directly:
<define name="SVN_EXPERIMENTAL" />
or via a NAnt target and property:
<target name="experimental">
<description>
builds svn experimental features
</description>
<property name="experimental" value="true" />
</target>
and then
<define name="SVN_EXPERIMENTAL" if="${experimental==true}"/>
but defining it directly in stdafx.h is ok as well.
Stefan