Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Update MS tests

...

Code Block
languagepowershell
titleCompiling REEF Java and .NET
msbuild $REEFSourcePath\lang\cs\Org.Apache.REEF.sln /p:Configuration="Release" /p:Platform="x64"

Where $REEFSourcePath is the root folder after you clone the REEF source code from GIT.

You can run .Net tests from Visual Studio. To do it, just open $REEFSourcePath\lang\cs\Org.Apache.REEF.sln in Visual Studio, build it, then run all tests from the left pane.

To run tests in debug modecommand line, go to folder $REEFSourcePath\lang\cs\ and build the projects with the command line:

Code Block
languagecpp
titleBuild .Net in debug mode
msbuild

to run tests, go then go to folder $REEFSourcePath\lang\cs\bin\x64\debug\Org.Apache.REEF.Tests, run command:

...