Add this to .csproj
:
<Target Name="CopyDLL" AfterTargets="Build">
<Message Text="Copying DLL" Importance="High" />
<Copy
SourceFiles="$(TargetDir)$(ProjectName).dll"
DestinationFolder="$(MSBuildProjectDirectory)\relative_target_folder_path_here\"
/>
</Target>