cf10db00a3
Initial repo scaffold for a Windows VSTO/COM Outlook Add-in (C#/.NET FW 4.8) that integrates Outlook desktop with EspoCRM via the existing MailRouter v1.2.0 endpoint (POST /api/v1/MailRouter/file). Includes: - Solution + 4 csproj projects (host, Core, UI, Tests) under src/ - VSTO host project stub (ThisAddIn.cs, requires VS 2022 + Office workload to fully resolve) - Core/UI/Tests as SDK-style net48 projects (NuGet: Polly, System.Text.Json, Serilog, CommunityToolkit.Mvvm, xUnit, Moq, FluentAssertions) - .gitea/workflows/build.yml for Windows runner CI (publish/sign placeholders) - docs/ARCHITECTURE.md (component diagram, threading model, per-feature flow) - docs/ONBOARDING.md (Hebrew lawyer-facing install guide) Server-side already in place: MailRouter v1.2.0 — see plan ~/.claude/plans/resilient-sauteeing-feather.md for the 6-week implementation plan. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
57 lines
710 B
Plaintext
57 lines
710 B
Plaintext
# Build output
|
|
[Bb]in/
|
|
[Oo]bj/
|
|
[Dd]ebug/
|
|
[Rr]elease/
|
|
x64/
|
|
x86/
|
|
*.user
|
|
*.suo
|
|
*.userprefs
|
|
*.sln.docstates
|
|
|
|
# VS / Rider / VSCode
|
|
.vs/
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
|
|
# NuGet
|
|
packages/
|
|
*.nupkg
|
|
*.snupkg
|
|
project.lock.json
|
|
project.fragment.lock.json
|
|
|
|
# Publish output (ClickOnce / MSIX)
|
|
publish/
|
|
PublishProfiles/
|
|
*.pubxml.user
|
|
|
|
# VSTO build output
|
|
*_TemporaryKey.pfx
|
|
*.vsto
|
|
*.application
|
|
*.deploy
|
|
*.manifest
|
|
|
|
# Code signing — NEVER commit private keys
|
|
*.pfx
|
|
*.snk
|
|
|
|
# Settings / logs that should never be committed
|
|
appsettings.local.json
|
|
*.log
|
|
logs/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# Task Master (config may contain API keys)
|
|
.taskmaster/config.json
|
|
.taskmaster/state.json
|
|
.taskmaster/reports/
|
|
.taskmaster/templates/
|