File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -139,7 +139,6 @@ jobs:
139139 else
140140 echo "✅ No vulnerable packages found."
141141 fi
142-
143142 package-validation :
144143 runs-on : ubuntu-latest
145144 needs : build
@@ -158,6 +157,9 @@ jobs:
158157 - name : Restore dependencies
159158 run : dotnet restore
160159
160+ - name : Build (Release) for packaging
161+ run : dotnet build src/NLWebNet --configuration Release --no-restore --verbosity minimal
162+
161163 - name : Pack NuGet package
162164 run : dotnet pack src/NLWebNet --configuration Release --no-build --output ./packages
163165
Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ The demo application is now fully functional with a modern .NET 9 Blazor Web App
4848- ✅ ** Core Data Models** : Complete implementation of NLWeb protocol request/response models with validation and JSON serialization
4949- ✅ ** Build Fixes** : Resolved App.razor build warnings by adding proper @using directives and removing duplicate files
5050- ✅ ** CI/CD Testing Fix** : Updated GitHub Actions workflow to gracefully handle missing test projects and prevent build failures
51+ - ✅ ** CI/CD Packaging Fix** : Added Release build step to package-validation job to ensure NuGet DLL is available for packaging
5152
5253The next phase focuses on implementing the core NLWeb library functionality.
5354
You can’t perform that action at this time.
0 commit comments