Building Lucene.NET

  • open command line or terminal
  • $ cd path/to/lucene.net
  • Windows
    • $ build “Default” is implied
    • $ build Restore restores packages from nuget
  • Linux
    • $ sh build.sh “Default” is implied
    • $ sh build.sh Restore restores the packages from nuget.

List of Targets

  • Build:Core builds the project found in ./src/Lucene.Net.Core/
  • Build:TestingFramework builds the project found in ./test/Lucene.Net.TestingFramework/
  • Build:Core:Tests builds the project found in ./test/Lucene.Net.Core.Tests/
  • Clean create/cleans the build directory.
  • Default runs the default build pipeline.
  • Restore pulls / restores packages from nuget.
  • Test:Core runs the tests found in ./test/Lucene.Net.Core.Tests

Back