I have the following Copy action defined in my .csproj ``` <Target Name="CopyCustomContent" AfterTargets="AfterBuild"> <Copy SourceFiles="@(files)" DestinationFolder="$(OutDir)" /> </Target> ``` When I try to run BenchmarkDotNet it does not copy the files to the \bin\release\<Guid>\... folder but just the default output folder. What is the correct configuration to make this work?