Skip to content

Quick Start

Scott Hunter edited this page Nov 9, 2020 · 27 revisions

Binaries

.NET

Binary releases are available on NuGet.

Java

Binary releases are available for download on the releases page.

Building from source

.NET

Using Visual Studio 2017 on Windows:

  • Open DotNet\CesiumLanguageWriter.sln
  • Build the solution: Build - Build Solution (Ctrl + Shift + B)
  • Open one of the included test projects using Nunit to run unit tests. See the Contributor's Guide for NUnit setup and usage instructions.

Using MonoDevelop on Linux or Mac:

  • Open DotNet\CesiumLanguageWriter.sln
  • Build the included projects: Build - Build All (F8)
  • Running unit tests: Choose a test project or file from the solution view and select Run - Run Unit Tests (Ctrl + T)

Java:

  • In IntelliJ IDEA:
    • File - Import - General - Existing Projects into Workspace
    • Open the project using directory: \czml-writer\Java
  • Build the projects:
    • Build - Build Project
  • Run the unit tests:
    • In the Project view, right-click the CesiumLanguageWriterTests project and select Run 'All Tests'.

Or using Gradle:

  • gradlew build
Clone this wiki locally