post build events in your webstore.ui sample

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.
8/8/2008 10:35:31 PM
Gravatar
Total Posts 3

post build events in your webstore.ui sample

I noticed in the documentation to add post build event to copy to the web bin directory

the following two lines:

xcopy /s /y "$(ProjectDir)bin\GCheckout.dll" "$(SolutionDir)Web\bin\"
xcopy /s /y "$(ProjectDir)bin\*Gateway*.dll" "$(SolutionDir)Web\bin\"
 

what are they?

I added my entity, logic and data access layers (all class library projects), and then added my web application project and was following your documentation...

btw - I appreciate the structure you have setup and am working on a site with it as we speak :)

8/10/2008 6:32:17 AM
Gravatar
Total Posts 18439

Re: post build events in your webstore.ui sample

Hi,

Those 2 lines are no longer needed. I will remove them soon.

In the early days of the WebStore project it was the only project with a dependency on GCheckout.dll, so it needed to be copied from the WebStore bin to the Web bin, but now a lot of the commerce stuff is in the core to make it re-usable across features so this dll will alreay be in Web/bin and doesn't need to be copied.

The second line is also a line of legacy code. At an earleier stage I was making separate dll for AuthorizeNETPaymentGateway.dll and planned to do the same for other payment gateways but this also changed after some re-factoring so this line isn't needed anymore either.

Best,

Joe

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