Chatr can be built from source using the following methods:
- Visual Studio 2019 with .NET Core SDK 3.0 or higher
- .NET Core SDK 3.0 or higher command-line interface (CLI)
- Docker
- Open
src\Chatr.sln
with Visual Studio. - Choose Release from the Solution Configurations list on the toolbar.
- Build > Rebuild Solution
- Find the built binaries in the
ChatrConsole\bin\Release\netcoreapp3.0\
directory.
- Open a console and navigate to the Chatr
src
directory. dotnet publish -c release -o out --self-contained false
- Find the built binaries in the
out
directory.
- Open PowerShell and navigate to the Chatr
src
directory. docker run --rm -v ${pwd}:/app -w /app mcr.microsoft.com/dotnet/core/sdk:3.0 dotnet publish -c release -o out --self-contained false -r win-x64
- Find the built binaries in the
out
directory.
- Open PowerShell and navigate to the Chatr
src
directory. docker run --rm -v ${pwd}:/app -w /app mcr.microsoft.com/dotnet/core/sdk:3.0 dotnet publish -c release -o out --self-contained false
- Find the built binaries in the
out
directory.
- Open a console and navigate to the Chatr
src
directory. docker run --rm -v $(pwd):/app -w /app mcr.microsoft.com/dotnet/core/sdk:3.0 dotnet publish -c release -o out --self-contained false
- Find the built binaries in the
out
directory.
- Open a console and navigate to the Chatr
src
directory. docker run --rm -v $(pwd):/app -w /app mcr.microsoft.com/dotnet/core/sdk:3.0 dotnet publish -c release -o out --self-contained false -r osx-x64
- Find the built binaries in the
out
directory.