Skip to content

Commit 3cb1ad2

Browse files
committed
Replace SkipUnchangedFiles with a Condition
1 parent e266e72 commit 3cb1ad2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Target Name="XunitVSTestCopyAbstractions" AfterTargets="Build">
4-
<Copy SourceFiles="$(MSBuildThisFileDirectory)xunit.abstractions.dll" DestinationFolder="$(OutputPath)" SkipUnchangedFiles="true" />
4+
<Copy Condition="!Exists('$(OutputPath)xunit.abstractions.dll')" SourceFiles="$(MSBuildThisFileDirectory)xunit.abstractions.dll" DestinationFolder="$(OutputPath)" />
55
</Target>
66
</Project>

0 commit comments

Comments
 (0)