@@ -153,7 +153,7 @@ graph TB
153153
154154``` csharp
155155// Program.cs
156- using NLWebNet . Extensions ;
156+ using NLWebNet ;
157157
158158// Add NLWebNet services
159159builder .Services .AddNLWebNet (options =>
@@ -221,6 +221,8 @@ Configure in your ASP.NET Core application:
221221
222222``` csharp
223223// Program.cs
224+ using NLWebNet ;
225+
224226builder .Services .AddNLWebNet (options =>
225227{
226228 options .DefaultMode = QueryMode .List ;
@@ -354,6 +356,8 @@ Access configuration in your application:
354356
355357``` csharp
356358// Program.cs
359+ using NLWebNet ;
360+
357361builder .Services .AddNLWebNet (options =>
358362{
359363 // Bind from configuration
@@ -371,9 +375,9 @@ builder.Services.Configure<AzureSearchOptions>(
371375
372376## 🛠️ Development Status
373377
374- This is a ** fully functional implementation** of the NLWeb protocol, ready for production use.
378+ This is a ** fully functional implementation** of the NLWeb protocol, ready for production use as a prerelease package .
375379
376- ** ✅ Completed (Phases 1-10):**
380+ ** ✅ Completed (Phases 1-10.5 ):**
377381
378382- [x] ** Core Library** : Complete NLWeb protocol implementation with Minimal API endpoints
379383- [x] ** Data Models** : Request/response models with validation and JSON serialization
@@ -384,17 +388,14 @@ This is a **fully functional implementation** of the NLWeb protocol, ready for p
384388- [x] ** Configuration** : CORS, AI services, and multi-environment support
385389- [x] ** Documentation** : XML documentation, README, and API usage examples
386390- [x] ** CI/CD** : GitHub Actions workflow for build, test, and validation
387- - [x] ** Packaging** : NuGet package creation and metadata (API exposure issue identified)
388-
389- ** 🚧 In Progress (Phase 11):**
390-
391- - [x] Comprehensive API usage demonstrations in README and demo app
392- - [x] NuGet package creation and production metadata
393- - [ ] NuGet package API surface area fixes
394- - [ ] Production deployment guides
391+ - [x] ** NuGet Package** : Fully functional package with working extension methods (1.0.0-beta.1)
392+ - [x] ** API Exposure** : Extension methods accessible via ` using NLWebNet; ` (Microsoft pattern)
393+ - [x] ** End-to-End Validation** : Complete package installation and functionality testing
395394
396- ** 📋 Planned (Phase 11):**
395+ ** 📋 Next Steps (Phase 11):**
397396
397+ - [ ] Final package validation before NuGet.org publication
398+ - [ ] Update documentation with confirmed usage patterns
398399- [ ] Health check integration
399400- [ ] Performance monitoring hooks
400401- [ ] Rate limiting support
@@ -421,4 +422,4 @@ This project is licensed under the [MIT License](LICENSE).
421422
422423## 🏷️ Version
423424
424- Current version: ` 1.0.0-alpha ` (Pre-release )
425+ Current version: ` 1.0.0-beta.1 ` (Prerelease - fully functional, marked as beta due to ModelContextProtocol dependency )
0 commit comments