Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
/ corefx Public archive

Commit

Permalink
Fix TestILC copy for uapaot
Browse files Browse the repository at this point in the history
  • Loading branch information
ViktorHofer committed Dec 3, 2018
1 parent a1a67e3 commit 33440b2
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions external/test-runtime/XUnit.Runtime.depproj
Original file line number Diff line number Diff line change
Expand Up @@ -172,11 +172,15 @@
<TestILCFolder Condition="'$(TestILCFolder)' == ''">$(PackagesDir)$(TestILCToolsPackageName)\$(ProjectNTfsTestILCPackageVersion)\TestILC</TestILCFolder>
</PropertyGroup>

<Warning Text="Could not find the TestILC Tools at '$(TestILCFolder)'. Please run sync." Condition="('$(TestILCFolder)' == '' or !Exists('$(TestILCFolder)')) AND '$(BuildAllConfigurations)' != 'true'" />
<Warning Text="Could not find the TestILC Tools at '$(TestILCFolder)'. Please run sync." Condition="('$(TestILCFolder)' == '' OR !Exists('$(TestILCFolder)')) AND '$(BuildAllConfigurations)' != 'true'" />

<Copy Condition="'$(TestILCFolder)' != ''"
SourceFiles="$(TestILCFolder)"
DestinationFolder="$(InternalTestILCFolder)"
<ItemGroup Condition="Exists('$(TestILCFolder)')">
<TestILCFolderContents Include="$(TestILCFolder)\**\*" />
</ItemGroup>

<Copy Condition="Exists('$(TestILCFolder)')"
SourceFiles="@(TestILCFolderContents)"
DestinationFolder="$(InternalTestILCFolder)\%(RecursiveDir)"
SkipUnchangedFiles="true" />

</Target>
Expand Down

0 comments on commit 33440b2

Please sign in to comment.