Files
Sharepoint-Toolbox/.planning/milestones/v1.0-phases/05-distribution-and-hardening/05-03-PLAN.md
Dev 655bb79a99
All checks were successful
Release zip package / release (push) Successful in 10s
chore: complete v1.0 milestone
Archive 5 phases (36 plans) to milestones/v1.0-phases/.
Archive roadmap, requirements, and audit to milestones/.
Evolve PROJECT.md with shipped state and validated requirements.
Collapse ROADMAP.md to one-line milestone summary.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-07 09:15:14 +02:00

4.5 KiB

phase, plan, type, wave, depends_on, files_modified, autonomous, requirements, must_haves
phase plan type wave depends_on files_modified autonomous requirements must_haves
05-distribution-and-hardening 03 execute 2
05-01
05-02
false
FOUND-11
truths artifacts key_links
All unit tests pass including new helper tests and locale completeness tests
Published EXE exists as a single self-contained file
Application is ready for clean-machine smoke test
Run the full test suite (including Plan 01's new tests and Plan 02's diacritic fixes), verify the publish output, and checkpoint for human smoke test on a clean machine.

Purpose: Final gate before shipping. Verifies all three workstreams integrate correctly and the published artifact is ready for distribution. Output: Confirmed green test suite, verified publish artifact, human sign-off.

<execution_context> @C:/Users/dev/.claude/get-shit-done/workflows/execute-plan.md @C:/Users/dev/.claude/get-shit-done/templates/summary.md </execution_context>

@.planning/PROJECT.md @.planning/ROADMAP.md @.planning/STATE.md @.planning/phases/05-distribution-and-hardening/05-RESEARCH.md @.planning/phases/05-distribution-and-hardening/05-01-SUMMARY.md @.planning/phases/05-distribution-and-hardening/05-02-SUMMARY.md Task 1: Run full test suite and verify publish artifact 1. Run the full test suite to confirm all tests pass (including the new ExecuteQueryRetryHelper, SharePointPagination, and LocaleCompleteness tests from Plan 01, which should now pass thanks to Plan 02's diacritic fixes):
dotnet test SharepointToolbox.Tests/SharepointToolbox.Tests.csproj -v quiet

All tests must pass (except known Skip tests for interactive MSAL login). If the diacritic spot-check test (FrStrings_ContainExpectedDiacritics) fails, identify which strings still need fixing and fix them in Strings.fr.resx.

  1. Run the publish command and verify the output:
dotnet publish SharepointToolbox/SharepointToolbox.csproj -c Release -p:PublishSingleFile=true -o ./publish
  1. Verify single-file output:

    • Count DLL files in ./publish/ — expect 0
    • Confirm SharepointToolbox.exe exists and is > 150 MB (self-contained)
    • Note the exact file size for the checkpoint
  2. If any test fails or publish produces loose DLLs, diagnose and fix before proceeding. dotnet test SharepointToolbox.Tests/SharepointToolbox.Tests.csproj -v quiet && dotnet publish SharepointToolbox/SharepointToolbox.csproj -c Release -p:PublishSingleFile=true -o ./publish 2>&1 | tail -3 && ls ./publish/*.dll 2>/dev/null | wc -l Full test suite green (all new + existing tests pass). Publish produces single SharepointToolbox.exe with 0 loose DLLs.

Task 2: Human smoke test — EXE launch and French locale verification Present the published EXE to the user for manual verification. The automated work (test suite, publish) is complete in Task 1. This checkpoint verifies visual and runtime behavior that cannot be automated.

The published EXE is at ./publish/SharepointToolbox.exe (~200 MB self-contained).

Verification checklist for the user:

  1. Single-file: ./publish/ contains only SharepointToolbox.exe (+ optional .pdb), no .dll files
  2. Clean-machine launch: Copy EXE to a machine without .NET 10 runtime, double-click, verify main window renders
  3. French locale: Switch to French in Settings, navigate all tabs, verify accented characters display correctly
  4. Tab health: Click through all 10 tabs and confirm no crashes User confirms "approved" after visual and functional verification. Human confirms: EXE launches on clean machine, French locale displays correct diacritics, all tabs render without crashes.
Full test suite: `dotnet test SharepointToolbox.Tests/SharepointToolbox.Tests.csproj -v quiet` Publish artifact: `ls ./publish/SharepointToolbox.exe` exists, `ls ./publish/*.dll 2>/dev/null | wc -l` returns 0

<success_criteria>

  • All unit tests pass (including new helper + locale tests)
  • Published EXE is a single self-contained file (~200 MB)
  • No loose DLL files in publish output
  • Human confirms app launches and French locale is correct </success_criteria>
After completion, create `.planning/phases/05-distribution-and-hardening/05-03-SUMMARY.md`