Templates to use when creating an application for the JAIS system.
Add the GitHub package registry to your NuGet config.
~/.nuget/NuGet/NuGet.Config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
<add key="github" value="https://nuget.pkg.github.com/carsten-computer-club/index.json" />
</packageSources>
<packageSourceCredentials>
<github>
<add key="Username" value="USERNAME" />
<add key="ClearTextPassword" value="PAT_TOKEN" />
</github>
</packageSourceCredentials>
</configuration>
For more information check this documentation
dotnet new --install Jais.App.Templates
dotnet new jaisapp -n <app-name>