Reputation: 362
I'm building an ASP.NET web portal for a project for school.
I use a three tier architecture and I'm trying to publish it using FTP. The web project is published successfully but the other two projects aren't published on the IIS.
How can I tell visual studio that I want these projects published alongside the web project?
here is an image to make it a bit more clear
https://i.sstatic.net/CXPl5.png
Thanks in advance
Upvotes: 0
Views: 1984
Reputation: 970
No need to publish other projects separately.
Upvotes: 1
Reputation: 2237
You don't need to publish the class library projects. All you have to do is to add references of your class library projects in your web application and publish it. It'll add your class library projects dll in bin folder of your published folder.
Upvotes: 0