| 1 | <Project Sdk="Microsoft.NET.Sdk"> |
| 2 | |
| 3 | <PropertyGroup> |
| 4 | <TargetFramework>net10.0</TargetFramework> |
| 5 | <ImplicitUsings>enable</ImplicitUsings> |
| 6 | <Nullable>enable</Nullable> |
| 7 | <LangVersion>preview</LangVersion> |
| 8 | <RootNamespace>AgentNotes.Core</RootNamespace> |
| 9 | <AssemblyName>AgentNotes.Core</AssemblyName> |
| 10 | <!-- NuGet: https://github.com/KarataevDmitry/AIGuiders.AgentNotes.Core --> |
| 11 | <PackageId>AIGuiders.AgentNotes.Core</PackageId> |
| 12 | <Version>2.1.2</Version> |
| 13 | <Authors>Dmitry Karataev; AIGuiders</Authors> |
| 14 | <Company>AIGuiders</Company> |
| 15 | <Description>Shared storage, hot-context routing, and embedded defaults for Agent Notes (MCP host and Cascade IDE).</Description> |
| 16 | <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 17 | <PackageProjectUrl>https://github.com/KarataevDmitry/AIGuiders.AgentNotes.Core</PackageProjectUrl> |
| 18 | <RepositoryUrl>https://github.com/KarataevDmitry/AIGuiders.AgentNotes.Core.git</RepositoryUrl> |
| 19 | <RepositoryType>git</RepositoryType> |
| 20 | <PackageTags>agent-notes;mcp;modelcontextprotocol;cascade-ide</PackageTags> |
| 21 | <PackageReadmeFile>README.md</PackageReadmeFile> |
| 22 | <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 23 | <EmbedUntrackedSources>true</EmbedUntrackedSources> |
| 24 | <IncludeSymbols>true</IncludeSymbols> |
| 25 | <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 26 | </PropertyGroup> |
| 27 | |
| 28 | <ItemGroup> |
| 29 | <AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> |
| 30 | <_Parameter1>AgentNotesMcp.Tests</_Parameter1> |
| 31 | </AssemblyAttribute> |
| 32 | </ItemGroup> |
| 33 | |
| 34 | <ItemGroup> |
| 35 | <PackageReference Include="Tomlyn" Version="2.3.0" /> |
| 36 | </ItemGroup> |
| 37 | |
| 38 | <ItemGroup> |
| 39 | <EmbeddedResource Include="Resources\hot-context-defaults.json" /> |
| 40 | <EmbeddedResource Include="Resources\mcp-resolve-paths-defaults.json" /> |
| 41 | <EmbeddedResource Include="Resources\agent-notes-mcp.defaults.toml" /> |
| 42 | </ItemGroup> |
| 43 | |
| 44 | <ItemGroup> |
| 45 | <None Include="README.md" Pack="true" PackagePath="\" /> |
| 46 | </ItemGroup> |
| 47 | |
| 48 | </Project> |
| 49 | |