The Solution is to use Post-build events to copy your output dll into your seprate folder.
Steps:
- Open your project properties page.
- Select Build Events tab.
- Write yuor command in the Post-build Events dialouge.
- Click Edit-Post build to use Macros.
- Use the sample command copy "$(TargetPath)" "$(SolutionDir)\Dlls\$(TargetFileName)"
Visual Studio 2008 macros are essentially environment variables contained within parentheses, preceded by the $ symbol—much like Perl.
The Following is a table of all available macros:
No comments:
Post a Comment