15d33a96
| 1 | <Project Sdk="Microsoft.NET.Sdk"> |
| 2 | |
| 3 | <PropertyGroup> |
| 4 | <TargetFramework>net10.0</TargetFramework> |
| 5 | <ImplicitUsings>enable</ImplicitUsings> |
| 6 | <Nullable>enable</Nullable> |
| 7 | <LangVersion>14</LangVersion> |
| 8 | <RootNamespace>GitMcp.Core</RootNamespace> |
| 9 | <AssemblyName>GitMcp.Core</AssemblyName> |
| 10 | <!-- NuGet package id; Trusted Publishing привязывай к репо https://github.com/KarataevDmitry/git-mcp-core --> |
| 11 | <PackageId>AIGuiders.GitMcp.Core</PackageId> |
| 12 | <Version>1.0.1</Version> |
| 13 | <Authors>Dmitry Karataev; AIGuiders</Authors> |
| 14 | <Company>AIGuiders</Company> |
| 15 | <Description>Shared git CLI argv builders for git-mcp and Cascade IDE (ADR 0019). No MCP/Avalonia dependency.</Description> |
| 16 | <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 17 | <PackageProjectUrl>https://github.com/KarataevDmitry/git-mcp-core</PackageProjectUrl> |
| 18 | <RepositoryUrl>https://github.com/KarataevDmitry/git-mcp-core.git</RepositoryUrl> |
| 19 | <RepositoryType>git</RepositoryType> |
| 20 | <PackageTags>git;mcp;modelcontextprotocol;cascade-ide;git-mcp</PackageTags> |
| 21 | <PackageReadmeFile>PACKAGE_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>GitMcp.Tests</_Parameter1> |
| 31 | </AssemblyAttribute> |
| 32 | </ItemGroup> |
| 33 | |
| 34 | <ItemGroup> |
| 35 | <None Include="PACKAGE_README.md" Pack="true" PackagePath="\" /> |
| 36 | </ItemGroup> |
| 37 | |
| 38 | </Project> |
| 39 | |