Skip to content

Commit

Permalink
Replace ** and Recursivedir for FastestCP test
Browse files Browse the repository at this point in the history
When building on windows via commandline (both cmd and pwsh), it woudl
fail to find the Manialinks, and could also accidentally create a bunch
of recursive folders while trying to copy said files
  • Loading branch information
flaeri committed Sep 29, 2024
1 parent be7b74e commit 52b51b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Modules/FastestCp.Tests/FastestCp.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@
</ItemGroup>

<ItemGroup>
<ContentWithTargetPath Include="**\*.xml">
<ContentWithTargetPath Include="Manialinks\*.xml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<TargetPath>%(RecursiveDir)\%(Filename)%(Extension)</TargetPath>
<TargetPath>Manialinks\%(Filename)%(Extension)</TargetPath>
</ContentWithTargetPath>
</ItemGroup>

Expand Down

0 comments on commit 52b51b8

Please sign in to comment.