Skip to content

Commit 16b8f1c

Browse files
committed
Skip copying when output binary is unchanged
1 parent 6440fbf commit 16b8f1c

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

LibSass.NET.Tests/LibSass.NET.Tests.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@
118118
<Target Name="AfterBuild">
119119
<Copy
120120
SourceFiles="$(LibSassPath)libsass32.dll;$(LibSassPath)libsass64.dll"
121-
DestinationFolder="$(OutputPath)" />
121+
DestinationFolder="$(OutputPath)"
122+
SkipUnchangedFiles="true" />
122123
</Target>
123124
</Project>

contrib/LibSass.NET.Console/LibSass.NET.Console.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
<Target Name="AfterBuild">
5353
<Copy
5454
SourceFiles="$(LibSassPath)libsass32.dll;$(LibSassPath)libsass64.dll"
55-
DestinationFolder="$(OutputPath)" />
55+
DestinationFolder="$(OutputPath)"
56+
SkipUnchangedFiles="true" />
5657
</Target>
5758
</Project>

contrib/LibSass.NET.Web/LibSass.NET.Web.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@
5959
<Target Name="AfterBuild">
6060
<Copy
6161
SourceFiles="$(LibSassPath)libsass32.dll;$(LibSassPath)libsass64.dll"
62-
DestinationFolder="$(OutputPath)" />
62+
DestinationFolder="$(OutputPath)"
63+
SkipUnchangedFiles="true" />
6364
</Target>
6465
</Project>

0 commit comments

Comments
 (0)