Have you tried simply adding it as a "Project Reference" to your project website ? Right-click the website project, select "Add Link ..." and click on the "Projects" tab.
A quick test showed that by doing this, the console application project (.exe) was copied to the / bin folder on the website when I built the solution.
You can then use standard deployment mechanisms to ensure that this is copied to the server at the same time as other libraries.
Sorry, you're right, this does not work with the WebSite project, only with Web Applciation .
"Post Build" , -.
"" , "".
"Build Events" " " :
xcopy "$(TargetDir)$(TargetFileName)" "c:\users\[UserName]\Documents\Visual Studio 2010\Websites\[ProjectName]\bin\" /D /S /I /Y
PDB , :
xcopy "$(TargetDir)$(TargetName).*" "c:\users\[UserName]\Documents\Visual Studio 2010\Websites\[ProjectName]\bin\" /D /S /I /Y