I'm trying to migrate a 2k csproj solution to <UseArtifactsOutput>true</UseArtifactsOutput> with a <ArtifactsPath>$(MSBuildThisFileDirectory)target/artifacts</ArtifactsPath>.
One of the first things I ran into is that it seems the RobocopyFiles target doesn't run. It's using Condition="'$(EnableArtifacts)' != 'false'". Is there a way to keep RobocopyFiles enabled? We have about 600 instances of it being used. It's doing things like:
I'm trying to migrate a 2k csproj solution to
<UseArtifactsOutput>true</UseArtifactsOutput>
with a<ArtifactsPath>$(MSBuildThisFileDirectory)target/artifacts</ArtifactsPath>
.One of the first things I ran into is that it seems the RobocopyFiles target doesn't run. It's using
Condition="'$(EnableArtifacts)' != 'false'"
. Is there a way to keep RobocopyFiles enabled? We have about 600 instances of it being used. It's doing things like:We also use some of the other MSBuildSdks like CopyOnWrite.