How to set up an ASP.NET * WITHOUT * project using the Visual Studio GUI?

I use Emacs and Mono for Windows to keep the same development environment while I'm on GNU / Linux.

Therefore, I need to know which directory structure of the ASP.NET project and which files are critical for its operation (configuration files, etc.).

+3
source share
4 answers

You will need the web.config file in the root directory, as well as all your aspx files. The only thing you really need is a directory binunder the root to hold your assemblies.

+2
source

Bin web.config, .

- ( ), App_Code , , .

+2

I would just make a template project from the IDE, and then use it every time you create a new project.

+1
source
0
source

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


All Articles