LilithConsole.csprojxml

Documentation

LilithConsole (Version 2)

Interactive Lilith chat executable (Lilith.exe) for Version 2 with optional Kokoro TTS after each reply.

Entry point: Program/Program.cs — boots Lilith, attaches TTS when Kokoro loads, and runs the input loop.

Build: python ../Build-v2.py or dotnet publish LilithConsole/LilithConsole.csproj.

<Project Sdk="Microsoft.NET.Sdk">  <PropertyGroup>    <OutputType>Exe</OutputType>    <TargetFramework>net8.0</TargetFramework>    <ImplicitUsings>enable</ImplicitUsings>    <Nullable>enable</Nullable>    <RootNamespace>LilithConsole</RootNamespace>  </PropertyGroup>  <ItemGroup>    <ProjectReference Include="..\..\..\Lilith\Lilith.csproj" />  </ItemGroup></Project>