main AIGuiders.DotnetMcp.Templates.csproj f583a481
1 <Project Sdk="Microsoft.NET.Sdk"> 2 3 <PropertyGroup> 4 <PackageId>AIGuiders.DotnetMcp.Templates</PackageId> 5 <PackageVersion>0.1.10</PackageVersion> 6 <Title>AIGuiders dotnet MCP templates</Title> 7 <Authors>AIGuiders</Authors> 8 <Description>Templates for building Model Context Protocol (MCP) servers on .NET (tool catalog + handlers + publish/deploy + manifest/docs automation).</Description> 9 <PackageTags>dotnet-new;templates;mcp;modelcontextprotocol;dotnet</PackageTags> 10 <PackageProjectUrl>https://github.com/KarataevDmitry/dotnet-mcp-templates</PackageProjectUrl> 11 <RepositoryUrl>https://github.com/KarataevDmitry/dotnet-mcp-templates</RepositoryUrl> 12 <PackageReadmeFile>README-NUGET.md</PackageReadmeFile> 13 <PackageLicenseFile>LICENSE</PackageLicenseFile> 14 15 <PackageType>Template</PackageType> 16 <TargetFramework>net8.0</TargetFramework> 17 <LangVersion>latest</LangVersion> 18 <Nullable>enable</Nullable> 19 <ImplicitUsings>enable</ImplicitUsings> 20 21 <IncludeContentInPack>true</IncludeContentInPack> 22 <IncludeBuildOutput>false</IncludeBuildOutput> 23 <ContentTargetFolders>content</ContentTargetFolders> 24 <NoWarn>$(NoWarn);NU5128;NU5110;NU5111</NoWarn> 25 <NoDefaultExcludes>true</NoDefaultExcludes> 26 </PropertyGroup> 27 28 <ItemGroup> 29 <Content Include="templates\**\*" Exclude="templates\**\bin\**;templates\**\obj\**" /> 30 <None Include="README-NUGET.md" Pack="true" PackagePath="" /> 31 <None Include="LICENSE" Pack="true" PackagePath="" /> 32 <Compile Remove="**\*" /> 33 </ItemGroup> 34 35 </Project> 36 37