Repository: reef Updated Branches: refs/heads/master 7d121dc5d -> dfc3f1e5b
[REEF-1041] Fix CopyJarFiles in build.props This PR prevents `CopyJarFiles` from redundant copying by specifying the source directory narrowly. JIRA: [REEF-1041](https://issues.apache.org/jira/browse/REEF-1041) Pull request: This closes #705 Project: http://git-wip-us.apache.org/repos/asf/reef/repo Commit: http://git-wip-us.apache.org/repos/asf/reef/commit/dfc3f1e5 Tree: http://git-wip-us.apache.org/repos/asf/reef/tree/dfc3f1e5 Diff: http://git-wip-us.apache.org/repos/asf/reef/diff/dfc3f1e5 Branch: refs/heads/master Commit: dfc3f1e5baf3cb3779f0cd8892d1637fb22f3082 Parents: 7d121dc Author: Dongjoon Hyun <[email protected]> Authored: Sat Dec 5 05:04:43 2015 +0900 Committer: Julia Wang <[email protected]> Committed: Wed Dec 9 14:52:15 2015 -0800 ---------------------------------------------------------------------- lang/cs/build.props | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/reef/blob/dfc3f1e5/lang/cs/build.props ---------------------------------------------------------------------- diff --git a/lang/cs/build.props b/lang/cs/build.props index d0d2ecf..4ec19a6 100644 --- a/lang/cs/build.props +++ b/lang/cs/build.props @@ -133,7 +133,7 @@ under the License. <Target Name="CopyJarFiles" DependsOnTargets="BuildJarProject"> <MSBuild Targets="Build" BuildInParallel="$(BuildInParallel)" Properties="Chip=$(Chip);Lang=$(Lang)" Projects="@(ProjectFile)" /> <ItemGroup> - <MySourceFiles Include="$(Bindir)\**\*.jar"/> + <MySourceFiles Include="$(Bindir)\**\Org.Apache.REEF.Bridge.JAR\*.jar"/> </ItemGroup> <Copy SourceFiles="@(MySourceFiles)" @@ -147,4 +147,4 @@ under the License. <RemoveDir Directories="@(DirectoriesToRemove)" Condition="!Exists('$(IntermediateOutputPath)\$(RootNamespace).log')"/> <RemoveDir Directories="$(OutputPath)" /> </Target> -</Project> \ No newline at end of file +</Project>
