I need some help writing a post build event that would work cross platform. The following in my csproj file will work on windows but not Unix. Thanks.
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="copy /Y "$(TargetDir)bin\*.dll" "$(TargetDir)*.dll"" />
</Target>