You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered: