Development Videos

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

Please do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.

This forum is for discussing mojoPortal development

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

You can monitor commits to the repository from this page. We also recommend developers to subscribe to email notifications in the developer forum as occasionally important things are announced.

Before posting questions here you might want to review the developer documentation.

Do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.
This thread is closed to new posts. You must sign in to post in the forums.
4/30/2014 7:31:56 PM
Gravatar
Total Posts 9

Development Videos

I asked a question a few weeks ago trying to figure out a work around for using MojoPortal with existing asp pages.
I gave up on that and decided to dive into MojoPortal with both feet.

I haven't touched a VB solution since 2001 and now throw in C# plus the newer or latest Visual Studios and I am on a steep learning curve. The videos provided are GREAT but ran into a small snag. In video 4 and at the very end of the video I followed along and did the post build event.

I refreshed the solution but the solution folder for GuestBook will not show up.
If I go into the windows directory, that folder exists with the code behind.

Before I go any farther, did I miss something or can I just copy the folder into the solution?
I am trying to be a purist with the videos so I can understand what is going on and when.

Thanks in advance.




 

5/1/2014 9:35:12 AM
Gravatar
Total Posts 1203
Proud member of the mojoPortal team

Help support mojoPortal!
Add-on modules

Re: Development Videos

When you build or rebuild the solution, there is a log of the build output, including the post build events. If you look at the output from the xcopy commands, it may help you troubleshoot your commands.

It's been quite a while since I looked at the Guestbook demo setup, but I think the copy commands should look something like this:

xcopy /s /y "$(ProjectDir)bin\Guestbook.UI.dll" "$(SolutionDir)Web\bin\"
xcopy /s /y "$(ProjectDir)bin\Guestbook.Business.dll" "$(SolutionDir)Web\bin\"
xcopy /s /y "$(ProjectDir)bin\Guestbook.Data.dll" "$(SolutionDir)Web\bin\"
xcopy /s /y "$(ProjectDir)Guestbook\*.as?x" "$(SolutionDir)Web\Guestbook\"

I hope that helps,

Jamie

 

You must sign in to post in the forums. This thread is closed to new posts.