File tree Expand file tree Collapse file tree 1 file changed +3
-16
lines changed
Expand file tree Collapse file tree 1 file changed +3
-16
lines changed Original file line number Diff line number Diff line change 9999 </ItemGroup >
100100
101101 <!-- NOTE: only works for fast-path code changes -->
102- <PropertyGroup >
103- <CollectUpToDateCheckBuiltDesignTimeDependsOn >$(CollectUpToDateCheckBuiltDesignTimeDependsOn);PrepareCopyToRedistFastPath</CollectUpToDateCheckBuiltDesignTimeDependsOn >
104- </PropertyGroup >
105- <ItemGroup >
106- <_CopyToRedistFastPathFile Include =" $(TargetPath)" />
107- <_CopyToRedistFastPathFile Include =" $(ArtifactsBinDir)Microsoft.DotNet.ProjectTools\$(Configuration)\$(SdkTargetFramework)\Microsoft.DotNet.ProjectTools.dll" />
108- <_CopyToRedistFastPathFile Include =" $(ArtifactsBinDir)Tests\Microsoft.DotNet.Cli.Utils\$(Configuration)\$(SdkTargetFramework)\Microsoft.DotNet.Cli.Utils.dll" />
109- </ItemGroup >
110- <Target Name =" PrepareCopyToRedistFastPath" >
102+ <Target Name =" CopyToRedistFastPath" AfterTargets =" AfterBuild" >
111103 <PropertyGroup >
112- <_RedistDestinationFolder >$([System.IO.Path]::Combine($(TestHostDotNetRoot), "sdk", $(Version)))</_RedistDestinationFolder >
104+ <DestinationPath >$([System.IO.Path]::Combine($(TestHostDotNetRoot), "sdk", $(Version)))</DestinationPath >
113105 </PropertyGroup >
114- <ItemGroup >
115- <UpToDateCheckBuilt Include =" @(_CopyToRedistFastPathFile->'$(_RedistDestinationFolder)\%(FileName)%(Extension)')" Original =" %(Identity)" />
116- </ItemGroup >
117- </Target >
118- <Target Name =" CopyToRedistFastPath" DependsOnTargets =" PrepareCopyToRedistFastPath" AfterTargets =" AfterBuild" >
119- <Copy SourceFiles =" @(_CopyToRedistFastPathFile)" DestinationFolder =" $(_RedistDestinationFolder)" SkipUnchangedFiles =" true" OverwriteReadOnlyFiles =" true" />
106+ <Copy SourceFiles =" $(TargetPath)" DestinationFolder =" $(DestinationPath)" SkipUnchangedFiles =" true" OverwriteReadOnlyFiles =" true" />
120107 </Target >
121108</Project >
You can’t perform that action at this time.
0 commit comments