|
4 | 4 | <TargetFramework>net8.0</TargetFramework> |
5 | 5 | <ImplicitUsings>enable</ImplicitUsings> |
6 | 6 | <Nullable>enable</Nullable> |
| 7 | + <IsPackable>true</IsPackable> |
| 8 | + <PackageOutputPath>./nupkg</PackageOutputPath> |
| 9 | + <PackageId>Microsoft.DataApiBuilder.Mcp</PackageId> |
| 10 | + <Title>Microsoft.DataApiBuilder.Mcp</Title> |
| 11 | + <Authors>Microsoft</Authors> |
| 12 | + <Copyright>© Microsoft Corporation. All rights reserved.</Copyright> |
| 13 | + <PackageLicenseFile>LICENSE.txt</PackageLicenseFile> |
| 14 | + <RepositoryType>git</RepositoryType> |
| 15 | + <PackageProjectUrl>https://go.microsoft.com/fwlink/?linkid=2224253</PackageProjectUrl> |
| 16 | + <PackageTags>microsoft mcp model-context-protocol dab dataApiBuilder azure sql graphql rest sdk internal</PackageTags> |
| 17 | + <AssemblyName>Microsoft.DataApiBuilder.Mcp</AssemblyName> |
| 18 | + <Description>MCP integration library for Data API builder with services and endpoint mapping for exposing DAB tools through Model Context Protocol.</Description> |
| 19 | + <PackageIcon>nuget_icon.png</PackageIcon> |
| 20 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 21 | + <EmbedUntrackedSources>true</EmbedUntrackedSources> |
| 22 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
7 | 23 | <!-- Suppress transitive dependency version mismatch warnings from MCP SDK --> |
8 | 24 | <NoWarn>$(NoWarn);NU1603</NoWarn> |
9 | 25 | </PropertyGroup> |
10 | 26 |
|
| 27 | + <PropertyGroup Condition="'$(TF_BUILD)' == 'true'"> |
| 28 | + <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
| 29 | + </PropertyGroup> |
| 30 | + |
11 | 31 | <ItemGroup> |
12 | 32 | <InternalsVisibleTo Include="Azure.DataApiBuilder.Service.Tests" /> |
13 | 33 | </ItemGroup> |
|
21 | 41 | <ProjectReference Include="..\Core\Azure.DataApiBuilder.Core.csproj" /> |
22 | 42 | </ItemGroup> |
23 | 43 |
|
| 44 | + <ItemGroup> |
| 45 | + <None Include="..\..\nuget\nuget_mcp\README.md" Pack="true" PackagePath="\" /> |
| 46 | + <None Include="..\..\nuget\nuget_icon.png" Pack="true" PackagePath="\" /> |
| 47 | + <None Include="..\..\LICENSE.txt" Pack="true" PackagePath="\" /> |
| 48 | + <None Include="..\..\nuget_mcp\NOTICE.txt" Pack="true" PackagePath="\" Condition="Exists('..\..\nuget_mcp\NOTICE.txt')" /> |
| 49 | + </ItemGroup> |
| 50 | + |
24 | 51 | <ItemGroup> |
25 | 52 | <Folder Include="CustomTools\" /> |
26 | 53 | </ItemGroup> |
|
0 commit comments