c0b81713
| 1 | <Project Sdk="Microsoft.NET.Sdk"> |
| 2 | |
| 3 | <PropertyGroup> |
| 4 | <OutputType>Exe</OutputType> |
| 5 | <TargetFramework>net10.0</TargetFramework> |
| 6 | <!-- Без одиночного RuntimeIdentifier: при build/run SDK берёт RID хоста. Публикация: dotnet publish -r win-x64|linux-x64 --> |
| 7 | <RuntimeIdentifiers>win-x64;linux-x64;osx-x64;osx-arm64</RuntimeIdentifiers> |
| 8 | <SelfContained>true</SelfContained> |
| 9 | <LangVersion>14</LangVersion> |
| 10 | <Nullable>enable</Nullable> |
| 11 | <ImplicitUsings>enable</ImplicitUsings> |
| 12 | <RootNamespace>AgentNotesMcp</RootNamespace> |
| 13 | <AssemblyName>AgentNotesMcp</AssemblyName> |
| 14 | <Version>2.1.1</Version> |
| 15 | </PropertyGroup> |
| 16 | |
| 17 | <ItemGroup> |
| 18 | <FrameworkReference Include="Microsoft.AspNetCore.App" /> |
| 19 | <PackageReference Include="AIGuiders.AgentNotes.Core" Version="2.1.2" Condition="'$(UseProjectReference)' != 'true'" /> |
| 20 | <PackageReference Include="ModelContextProtocol" Version="1.3.0" /> |
| 21 | </ItemGroup> |
| 22 | |
| 23 | <!-- Local Core work: dotnet build -p:UseProjectReference=true --> |
| 24 | <ItemGroup Condition="'$(UseProjectReference)' == 'true'"> |
| 25 | <ProjectReference Include="..\agent-notes-core\AgentNotes.Core.csproj" /> |
| 26 | </ItemGroup> |
| 27 | |
| 28 | <ItemGroup> |
| 29 | <Compile Remove="AgentNotesMcp.Tests\**\*.cs" /> |
| 30 | <None Remove="AgentNotesMcp.Tests\**\*" /> |
| 31 | <Compile Remove="tools\**\*.cs" /> |
| 32 | </ItemGroup> |
| 33 | |
| 34 | <ItemGroup> |
| 35 | <AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> |
| 36 | <_Parameter1>AgentNotesMcp.Tests</_Parameter1> |
| 37 | </AssemblyAttribute> |
| 38 | <AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> |
| 39 | <_Parameter1>ExportMcpManifest</_Parameter1> |
| 40 | </AssemblyAttribute> |
| 41 | </ItemGroup> |
| 42 | |
| 43 | </Project> |
| 44 | |