Repository: incubator-reef Updated Branches: refs/heads/master afa3a3c60 -> 722d8c43c
[REEF-208] Add Rebuild target to Org.Apache.REEF.Bridge.JAR This adds the `Rebuild` target to `Org.Apache.REEF.Bridge.JAR`. JIRA: [REEF-208](https://issues.apache.org/jira/browse/REEF-208) Pull Request: This closes 116 Project: http://git-wip-us.apache.org/repos/asf/incubator-reef/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-reef/commit/722d8c43 Tree: http://git-wip-us.apache.org/repos/asf/incubator-reef/tree/722d8c43 Diff: http://git-wip-us.apache.org/repos/asf/incubator-reef/diff/722d8c43 Branch: refs/heads/master Commit: 722d8c43c995f839ea85d83aab168024e4af022e Parents: afa3a3c Author: Markus Weimer <[email protected]> Authored: Tue Mar 17 11:00:03 2015 -0700 Committer: Beysim Sezgin <[email protected]> Committed: Tue Mar 17 11:22:02 2015 -0700 ---------------------------------------------------------------------- .../Org.Apache.REEF.Bridge.JAR/Org.Apache.REEF.Bridge.JAR.csproj | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/722d8c43/lang/cs/Org.Apache.REEF.Bridge.JAR/Org.Apache.REEF.Bridge.JAR.csproj ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Bridge.JAR/Org.Apache.REEF.Bridge.JAR.csproj b/lang/cs/Org.Apache.REEF.Bridge.JAR/Org.Apache.REEF.Bridge.JAR.csproj index ca6217d..4623ddc 100644 --- a/lang/cs/Org.Apache.REEF.Bridge.JAR/Org.Apache.REEF.Bridge.JAR.csproj +++ b/lang/cs/Org.Apache.REEF.Bridge.JAR/Org.Apache.REEF.Bridge.JAR.csproj @@ -55,4 +55,8 @@ under the License. <Exec Command="$(M2_HOME)\bin\mvn -TC1 -DskipTests clean" Condition="Exists('$(Bridge_JAR)')" WorkingDirectory="$(REEF_Source_Folder)" /> <Delete Files="$(OutputPath)\$(Bridge_JAR_Name)" /> </Target> + <!-- + Standard Rebuild target: Clean, then build + --> + <Target Name="Rebuild" DependsOnTargets="Clean;Build"/> </Project>
