简体   繁体   中英

How do I setup an ASP.NET project *WITHOUT* using the Visual Studio GUI?

I'm using Emacs and Mono on Windows so that I can retain the same development environment while I'm in GNU/Linux.

So I need to know what the directory structure of an ASP.NET project and which files are critical to its operation (config files, etc.).

You will need a web.config in the root dir as well as all of your aspx files. The only other thing you really need will be a bin dir under the root to hold your assemblies.

You only really need the Bin folder and web.config as someone mentioned already.

But if you are not using a web project (compiled site) then you'll need the App_Code folder to place your code files in so the site knows what to compile at runtime.

我只想从IDE中创建一个模板化项目,然后在每次创建新项目时使用它。

使用MonoDevelop

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM