|
3 | 3 | <TargetFramework>net9.0</TargetFramework> |
4 | 4 | <Nullable>enable</Nullable> |
5 | 5 | <ImplicitUsings>enable</ImplicitUsings> <GeneratePackageOnBuild>true</GeneratePackageOnBuild> <!-- Package Metadata --> <PackageId>NLWebNet</PackageId> |
6 | | - <PackageVersion Condition="'$(PackageVersion)' == ''">0.1.0-alpha.1</PackageVersion> |
| 6 | + <Title>NLWebNet - .NET NLWeb Protocol Library</Title> |
| 7 | + <PackageVersion Condition="'$(PackageVersion)' == ''">0.1.0-alpha.3</PackageVersion> |
7 | 8 | <Version>$(PackageVersion)</Version> |
8 | 9 | <AssemblyVersion Condition="'$(AssemblyVersion)' == ''">0.1.0.0</AssemblyVersion> |
9 | 10 | <FileVersion Condition="'$(FileVersion)' == ''">0.1.0.0</FileVersion> |
10 | 11 | <Authors>Jon Galloway</Authors> |
| 12 | + <Copyright>Copyright (c) Jon Galloway 2025</Copyright> |
11 | 13 | <Description>A .NET library implementing the NLWeb protocol for natural language web interfaces. Provides minimal API endpoints, Model Context Protocol (MCP) integration, and streaming support for building conversational AI applications.</Description> |
12 | | - <PackageProjectUrl>https://github.com/jongalloway/NLWebNet</PackageProjectUrl> |
13 | | - <RepositoryUrl>https://github.com/jongalloway/NLWebNet</RepositoryUrl> |
| 14 | + <PackageProjectUrl>https://github.com/jongalloway/NLWebNet</PackageProjectUrl> <RepositoryUrl>https://github.com/jongalloway/NLWebNet</RepositoryUrl> |
| 15 | + <RepositoryType>git</RepositoryType> |
14 | 16 | <PackageLicenseExpression>MIT</PackageLicenseExpression> |
15 | 17 | <PackageReadmeFile>README.md</PackageReadmeFile> |
16 | 18 | <PackageTags>nlweb;ai;conversation;minimal-api;mcp;streaming;rag;search;llm;dotnet9;alpha;prerelease</PackageTags> |
17 | | - <PackageReleaseNotes>Alpha release: Complete NLWeb protocol implementation with Minimal API endpoints, MCP integration, streaming support, and comprehensive testing. Early prerelease version for initial feedback and testing.</PackageReleaseNotes> |
| 19 | + <PackageReleaseNotes>Alpha release 0.1.0-alpha.3: Enhanced NuGet package metadata with copyright notice, repository type, and improved package title for better Package Manager display. Complete NLWeb protocol implementation with Minimal API endpoints (/ask, /mcp), Model Context Protocol integration, streaming support, and comprehensive testing. This is a proof-of-concept prerelease for testing and evaluation purposes only - not recommended for production use.</PackageReleaseNotes> |
18 | 20 | <!-- Symbol and Deterministic Build Configuration --> |
19 | 21 | <IncludeSymbols>true</IncludeSymbols> |
20 | 22 | <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
|
42 | 44 |
|
43 | 45 | <ItemGroup> |
44 | 46 | <FrameworkReference Include="Microsoft.AspNetCore.App" /> |
45 | | - </ItemGroup> |
46 | | - |
47 | | - <ItemGroup> |
| 47 | + </ItemGroup> <ItemGroup> |
48 | 48 | <None Include="..\..\README.md" Pack="true" PackagePath="\" /> |
49 | 49 | </ItemGroup> |
50 | 50 |
|
|
0 commit comments