Publish Project to Web Server, Include folders/files in Local Bin

1k views Asked by At

I have a Visual Studio 2013 Web Project with Umbraco and UCommerce imported into the project and a site built out.

The issue is that uCommerce adds a folder called uCommerce in the build directory with all of it's dependency dll's and Publish doesn't include it in the destination.

Is there a way I can set the project file to include all contents in the Bin folder for the publish?

1

There are 1 answers

0
Rune On BEST ANSWER

You need to include the uCommerce-stuff as Content in your project. To do this, either

  • Go through each and every file in the uCommerce folder and add it to your project using "Add -> Existing item...", or, if that's way too many files,
  • Include the uCommerce folder via a wildcard. You will need to edit your project file manually for this. This SO question has the details (make sure to check out the highest-ranked answer, not just the accepted answer).