.refresh .
script ( , , cmd, NAnt, Rake, psake...), :
Or you can edit the .csproj file and add something like:
<ProjectExtensions>
<PropertyGroup>
<PreBuildEvent>copy c:\path\to\dll\files $(ProjectDir)$(OutDir)</PreBuildEvent>
</PropertyGroup>
</ProjectExtensions>
This will add a preliminary action that will copy your dll files to the output directory of your asp.net application. You will need to create it using MsBuild
source
share