-
Notifications
You must be signed in to change notification settings - Fork 64
Install yuniql
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
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
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 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
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
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
Help us improve further please create an issue.