Hi
If you watch and follow the 2 video's on this page:
www.mojoportal.com/settingupasolutionforcustomdevelopment.aspx
you will see that correctly adding your module in your own projects will result in path independence as well as future mojoportal upgrade independence.
This text below will also help you with post build file copies which is outlined middle of the second video.
xcopy /s /y "$(ProjectDir)Membership\*.ascx" "$(SolutionDir)Web\Membership\"
xcopy /s /y "$(ProjectDir)Membership\*.aspx" "$(SolutionDir)Web\Membership\"
xcopy /s /y "$(TargetPath)" "$(SolutionDir)Web\bin\"
xcopy /s /y "$(ProjectDir)App_GlobalResources\*.resx" "$(SolutionDir)Web\App_GlobalResources\"
xcopy /s /y "$(ProjectDir)bin\Membership.Business.dll" "$(SolutionDir)Web\bin\"
xcopy /s /y "$(ProjectDir)bin\Membership.Data.dll" "$(SolutionDir)Web\bin\"
My Module was called Membership. Just replace my name with your module name above
Hope this helps.
Rick Hubka