在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用$pwd:
quartz-unit-test-lock-recovery
// Recover from CS2012 DLL lock failures when running Quartz unit tests
$ git log --oneline --stat
stars:7,043
forks:1,717
updated:2026年3月1日 08:57
SKILL.md
// Recover from CS2012 DLL lock failures when running Quartz unit tests
| name | quartz-unit-test-lock-recovery |
| description | Recover from CS2012 DLL lock failures when running Quartz unit tests |
| domain | testing |
| confidence | high |
| source | manual |
On Windows, dotnet test src\Quartz.Tests.Unit\Quartz.Tests.Unit.csproj may fail with CS2012 before tests run because artifacts\obj\Quartz.Tests.Unit\debug\Quartz.Tests.Unit.dll is locked by a lingering VBCSCompiler process.
Stop-Process -Id <PID> -Force).dotnet test src\Quartz.Tests.Unit\Quartz.Tests.Unit.csproj -m:1 /p:UseSharedCompilation=falseBuild succeeds and tests execute normally; if failures remain, then they are likely real test/product failures.