You guys are quick. I was just about to report the bug that Kevin found and I see that it has already been fixed. But I do have another one. In the source code for the Security project there is a bug in the project that prevents the source from compiling. The post-build event command line does not reference AfterBuild.bat in the correct location.
The current command line is
c:\AfterBuild.bat "$(TargetPath)" "$(TargetDir)$(ProjectName).xml"
Changing it to the following fixes the problem
"$(SolutionDir)AfterBuild.bat" "$(TargetPath)" "$(TargetDir)$(ProjectName).xml"
-Larry