This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
OutlookAddin/.gitignore
T
chaim cf10db00a3 chore: scaffold Outlook VSTO Add-in for EspoCRM
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>
2026-05-11 09:05:07 +00:00

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/