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>
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 |
|
false |
|
|
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.
- Run the publish command and verify the output:
dotnet publish SharepointToolbox/SharepointToolbox.csproj -c Release -p:PublishSingleFile=true -o ./publish
-
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
-
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.
The published EXE is at ./publish/SharepointToolbox.exe (~200 MB self-contained).
Verification checklist for the user:
- Single-file: ./publish/ contains only SharepointToolbox.exe (+ optional .pdb), no .dll files
- Clean-machine launch: Copy EXE to a machine without .NET 10 runtime, double-click, verify main window renders
- French locale: Switch to French in Settings, navigate all tabs, verify accented characters display correctly
- 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.
<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>