Skip to content

jais-system/AppTemplate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Jais App Template

Templates to use when creating an application for the JAIS system.

Installation

Add GitHub registry

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

Install the template

dotnet new --install Jais.App.Templates

Start a new project

dotnet new jaisapp -n <app-name>