Skip to content
Rodel E. Dagumampan edited this page Feb 12, 2020 · 21 revisions

Install Yuniql CLI

Install with Chocolatey

Downloads latest yuniql CLI with Chocolatey package manager. See further instructions here https://chocolatey.org/install.

choco install yuniql --version 0.350.0
yuniql version

Install with .NET Core Global Tool

Installs latest yuniql CLI with .NET Core Global Tool. Requires .NET Core 3.0 SDK installed. See SDK here https://dotnet.microsoft.com/download/dotnet-core/3.1

dotnet tool install -g yuniql.cli
yuniql version

Install with Powershell

Downloads latest yuniql CLI and append into PATH environment variable.

Invoke-WebRequest -Uri https://github.com/rdagumampan/yuniql/releases/download/latest/yuniql-cli-win-x64-latest.zip -OutFile  "c:\temp\yuniql-win-x64-latest.zip"
Expand-Archive "c:\temp\yuniql-win-x64-latest.zip" -DestinationPath "c:\temp\yuniql-cli"
$Env:Path += ";c:\temp\yuniql-cli"

yuniql version

Download yuniql.exe direct from source

Download zipped paclage containing yuniql.exe file and extract to your workspace directory. https://github.com/rdagumampan/yuniql/releases/download/latest/yuniql-cli-win-x64-latest.zip

Install Nuget Package

Install on ASP.NET Core project

Use this for .NET Core WebApp and Worker App. Works only for .NET Core 3.0 and later. See how-to guide here https://github.com/rdagumampan/yuniql/wiki/How-to-run-migration-from-ASP.NET-Core.

dotnet add package Yuniql.AspNetCore

Install on .NET Core project

Use this for .NET Core Console App. Also usable for WebApp and Worker App but we recommend Yuniql.AspNetCore for that. Works only for .NET Core 3.0 and later. See how-to guide here https://github.com/rdagumampan/yuniql/wiki/How-to-run-migration-from-.NET-Core-Console-Application.

dotnet add package Yuniql.Core

Found bugs?

Help us improve further please create an issue.