Skip to content

Commit

Permalink
Replace SkipUnchangedFiles with a Condition
Browse files Browse the repository at this point in the history
  • Loading branch information
bradwilson committed Jan 15, 2024
1 parent e266e72 commit 3cb1ad2
Showing 1 changed file with 1 addition and 1 deletion.
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Target Name="XunitVSTestCopyAbstractions" AfterTargets="Build">
<Copy SourceFiles="$(MSBuildThisFileDirectory)xunit.abstractions.dll" DestinationFolder="$(OutputPath)" SkipUnchangedFiles="true" />
<Copy Condition="!Exists('$(OutputPath)xunit.abstractions.dll')" SourceFiles="$(MSBuildThisFileDirectory)xunit.abstractions.dll" DestinationFolder="$(OutputPath)" />
</Target>
</Project>

0 comments on commit 3cb1ad2

Please sign in to comment.