Installation
This page will show the steps to install Eiger for each operating system
Windows
Go to the Github page's releases page and download the eiger-win.zip
of the latest release.
If there are no stable releases of the language yet, please refer to building from source.
Adding environment variable (Windows)
setx PATH "%PATH%;C:\path\to\eiger-win"
macOS
please refer to building from source.
Linux
please refer to building from source.
Building from Source
Using Visual Studio
Requirements
- Visual Studio with the C# development workload installed
Steps
- Clone the repository:
git clone https://github.com/eigerproject/eigerlang.git
- Open the solution file
eiger.sln
in Visual Studio. - Build and run the project.
Using the .NET CLI
Requirements
- .NET SDK (includes the .NET CLI)
Steps
- Clone the repository:
git clone https://github.com/eigerproject/eigerlang.git
- Navigate to the
/eiger
directory. - Run the project:
dotnet run
Running Unit Tests
Using Visual Studio
Requirements
- Visual Studio with the C# development workload installed
Steps
- Open the solution
eiger.sln
. - Use the Test Explorer to discover and run all tests.
Using the .NET CLI
Requirements
- .NET SDK (includes the .NET CLI)
Steps
- Clone the repository:
git clone https://github.com/eigerproject/eigerlang.git
- Navigate to the
/eiger.Tests
directory. - Run the tests:
dotnet test