Open
Description
<Project DefaultTargets="Build">
<PropertyGroup>
<Destination>dest</Destination>
</PropertyGroup>
<ItemGroup>
<File Include="1.proj" />
<File Include="2.proj" />
</ItemGroup>
<Target Name="Delete">
<!--<RemoveDir Directories="$(Destination)\Contents" />-->
</Target>
<Target Name="Build" DependsOnTargets="Delete" Inputs="@(File)" Outputs="@(File->$(Destination)\Contents\%(Filename)%(Extension))">
<Copy SourceFiles="@(File)" DestinationFolder="$(Destination)\Contents\" SkipUnchangedFiles="true" />
</Target>
</Project>
This behaves not in the expected way. Wondering if we should show a warning? (Probably an error would be a breaking change??)