0

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?

Ryan Mann
  • 5,178
  • 32
  • 42

1 Answers1

0

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).
Community
  • 1
  • 1
Rune
  • 8,340
  • 3
  • 34
  • 47