Lilith.csprojxml

Documentation

Lilith (Version 1)

Main entry type and credentials for the Lilith agent. Partial classes live in subfolders (Boot, Chat, Ollama, SystemPrompt).

  • Lilith.cs — constructor, LilithCredentials, and shared Logger.
  • Lilith.csproj — references Agent-Core and compiles all .cs files under this tree.
<Project Sdk="Microsoft.NET.Sdk">  <PropertyGroup>    <TargetFramework>net8.0</TargetFramework>    <ImplicitUsings>enable</ImplicitUsings>    <Nullable>enable</Nullable>    <RootNamespace>Lilith.Agent</RootNamespace>  </PropertyGroup>  <ItemGroup>    <ProjectReference Include="..\Agent-Core\Agent-Core.csproj" />  </ItemGroup></Project>