Is there full documentation on csproj format for major .net projects?
I was looking for a way to copy files before creating. After some searching, I found a solution, but I can not find the documentation for this. Does it overwrite files? Are there any additional options ...
<Target Name="CopyMyFiles" BeforeTargets="Build">
<Copy SourceFiles="../../someFile.js" DestinationFolder="dest/" />
</Target>
I found add-ons for the .net kernel here , but nothing is said about copying.
Does this mean that the copy is something from msbuild?
The target element is documented here.
But I did not find anything about copying. Is there a list of possible tasks somewhere?
source
share