When I build a solution with the following, I get no [AppName].exe.config in my bin dir, any clues? I know I can add code to the build file to handle the copy, but shouldn’t the solution task do this?
<target name="Build" depends="VSS"> <solution configuration="release" solutionfile="Application.sln"> </solution> </target> |