Repository: incubator-reef Updated Branches: refs/heads/master c02c80dac -> f44a6599b
[REEF-242] update project file for console projects and clean up solution file for platform We added cleaning up for output folder in the build script. However, sometimes it cannot remove vshost.exe files which are auto generated for console projects because they are still running. This PR is to take out the auto generation for vshost file in console projects including Org.Apache.REEF.Client and Org.Apache.REEF.Examples.HelloREEF. VS automatically brought Any CPU and mixed platform back to .Net solution. This PR also cleaned it up to leave x64 only. JIRA: [REEF-242](https://issues.apache.org/jira/browse/REEF-242) [REEF-243](https://issues.apache.org/jira/browse/REEF-243) Pull Request: This closes #140 Project: http://git-wip-us.apache.org/repos/asf/incubator-reef/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-reef/commit/f44a6599 Tree: http://git-wip-us.apache.org/repos/asf/incubator-reef/tree/f44a6599 Diff: http://git-wip-us.apache.org/repos/asf/incubator-reef/diff/f44a6599 Branch: refs/heads/master Commit: f44a6599b0ba26c3f1327160e424c3026f4275bd Parents: c02c80d Author: Julia Wang <[email protected]> Authored: Thu Apr 9 12:20:40 2015 -0700 Committer: Markus Weimer <[email protected]> Committed: Thu Apr 9 14:33:10 2015 -0700 ---------------------------------------------------------------------- .../Org.Apache.REEF.Client.csproj | 1 + .../Org.Apache.REEF.Examples.HelloREEF.csproj | 4 ++++ lang/cs/Org.Apache.REEF.sln | Bin 40556 -> 20908 bytes 3 files changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/f44a6599/lang/cs/Org.Apache.REEF.Client/Org.Apache.REEF.Client.csproj ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Client/Org.Apache.REEF.Client.csproj b/lang/cs/Org.Apache.REEF.Client/Org.Apache.REEF.Client.csproj index f86e0dc..b7173c3 100644 --- a/lang/cs/Org.Apache.REEF.Client/Org.Apache.REEF.Client.csproj +++ b/lang/cs/Org.Apache.REEF.Client/Org.Apache.REEF.Client.csproj @@ -31,6 +31,7 @@ under the License. <Import Project="$(SolutionDir)\build.props" /> <PropertyGroup> <BuildPackage>false</BuildPackage> + <UseVSHostingProcess>false</UseVSHostingProcess> </PropertyGroup> <ItemGroup> <Reference Include="System" /> http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/f44a6599/lang/cs/Org.Apache.REEF.Examples.HelloREEF/Org.Apache.REEF.Examples.HelloREEF.csproj ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Examples.HelloREEF/Org.Apache.REEF.Examples.HelloREEF.csproj b/lang/cs/Org.Apache.REEF.Examples.HelloREEF/Org.Apache.REEF.Examples.HelloREEF.csproj index 46330a9..5f687d1 100644 --- a/lang/cs/Org.Apache.REEF.Examples.HelloREEF/Org.Apache.REEF.Examples.HelloREEF.csproj +++ b/lang/cs/Org.Apache.REEF.Examples.HelloREEF/Org.Apache.REEF.Examples.HelloREEF.csproj @@ -10,6 +10,10 @@ <TargetFrameworkVersion>v4.5</TargetFrameworkVersion> <FileAlignment>512</FileAlignment> </PropertyGroup> + <PropertyGroup> + <BuildPackage>false</BuildPackage> + <UseVSHostingProcess>false</UseVSHostingProcess> + </PropertyGroup> <Import Project="$(SolutionDir)\build.props" /> <ItemGroup> <Reference Include="System" /> http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/f44a6599/lang/cs/Org.Apache.REEF.sln ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.sln b/lang/cs/Org.Apache.REEF.sln index e0f89e9..8616032 100644 Binary files a/lang/cs/Org.Apache.REEF.sln and b/lang/cs/Org.Apache.REEF.sln differ
