5e452b8e
| 1 | <Project Sdk="Microsoft.NET.Sdk"> |
| 2 | |
| 3 | <PropertyGroup> |
| 4 | <OutputType>Exe</OutputType> |
| 5 | <TargetFramework>net10.0</TargetFramework> |
| 6 | <RuntimeIdentifiers>win-x64;linux-x64;osx-x64;osx-arm64</RuntimeIdentifiers> |
| 7 | <SelfContained>true</SelfContained> |
| 8 | <LangVersion>14</LangVersion> |
| 9 | <Nullable>enable</Nullable> |
| 10 | <ImplicitUsings>enable</ImplicitUsings> |
| 11 | <RootNamespace>DotnetDebugMcp</RootNamespace> |
| 12 | <AssemblyName>DotnetDebugMcp</AssemblyName> |
| 13 | </PropertyGroup> |
| 14 | |
| 15 | <ItemGroup> |
| 16 | <Compile Remove="tools\**\*.cs" /> |
| 17 | <Compile Remove="DotnetDebugMcp.Tests\**\*.cs" /> |
| 18 | <None Remove="DotnetDebugMcp.Tests\**\*" /> |
| 19 | </ItemGroup> |
| 20 | |
| 21 | <ItemGroup> |
| 22 | <AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> |
| 23 | <_Parameter1>DotnetDebugMcp.Tests</_Parameter1> |
| 24 | </AssemblyAttribute> |
| 25 | <AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> |
| 26 | <_Parameter1>ExportMcpManifest</_Parameter1> |
| 27 | </AssemblyAttribute> |
| 28 | </ItemGroup> |
| 29 | |
| 30 | <ItemGroup> |
| 31 | <PackageReference Include="AIGuiders.DotnetDebugMCP.Core" Version="0.1.0" /> |
| 32 | <PackageReference Include="ModelContextProtocol" Version="1.3.0" /> |
| 33 | </ItemGroup> |
| 34 | |
| 35 | </Project> |
| 36 | |