Agent-Core.csprojxml

Documentation

Agent-Core (Version 1)

Shared library for Genesis agents: logging, Ollama client, and chat history.

Each .cs file lives in its own folder with a README.md (same layout as the Lilith agent tree). Entry point: Core/Core.cs.

Build via the Version 1 solution or python ../Build-v1.py.

<Project Sdk="Microsoft.NET.Sdk">  <PropertyGroup>    <TargetFramework>net8.0</TargetFramework>    <ImplicitUsings>enable</ImplicitUsings>    <Nullable>enable</Nullable>    <RootNamespace>Agent.Core</RootNamespace>  </PropertyGroup></Project>