feat: add NuGet packaging metadata for v1.0.0

This commit is contained in:
Svrnty 2025-10-22 21:07:44 -04:00
parent 19ef79362e
commit 7fe275f348

View File

@ -4,6 +4,27 @@
<TargetFramework>net8.0</TargetFramework> <TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<!-- NuGet Package Metadata -->
<PackageId>Svrnty.MCP.Gateway.Core</PackageId>
<Version>1.0.0</Version>
<Authors>Svrnty</Authors>
<Company>Svrnty</Company>
<Product>Svrnty MCP Gateway</Product>
<Description>Core library for building Model Context Protocol (MCP) gateways in .NET. Provides routing, authentication, and proxy infrastructure for managing MCP traffic between clients and servers.</Description>
<PackageTags>mcp;model-context-protocol;ai;anthropic;claude;llm;dotnet;gateway;proxy</PackageTags>
<PackageProjectUrl>https://github.com/svrnty/svrnty-mcp-gateway</PackageProjectUrl>
<RepositoryUrl>https://github.com/svrnty/svrnty-mcp-gateway</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup> </PropertyGroup>
<ItemGroup>
<None Include="../../README.md" Pack="true" PackagePath="/" />
</ItemGroup>
</Project> </Project>