Site binaries in an asp.net site project?

I hate to ask such a stupid question, but I could not find an answer on Google. I can successfully build a large site project with a lot of asp.net code, but I don’t know where the binary files are stored, so I can upload it to the development server.

I checked the bin folder, but they seem to contain DLLs.

+3
source share
1 answer

you need to do a “publish website” to make all the code in a dll file.

By the way, you publish your site, all binary names change .. so you will need to copy your entire website to the server again ...

: Visual Studio .

+3

Source: https://habr.com/ru/post/1714639/


All Articles