Armstrongest
Armstrongest

Reputation: 15409

What is the minimum required to Run a .Net 3.5 Site WITHOUT compiling

Please note. Before anyone tells me about how I should compile the code for performance etc... this is just for a personal project and I want to be able to edit the code in a regular text editor and then it just works.

I usually code in C#, but this would be VB:

I have three files in a Virtual Directory

test.aspx
test.aspx.vb
web.config

I have copied the .Net 3.5 web.config line for line from a File > New Project.

It's not recognizing the XDocument class. Says, it's not defined Since this is a .Net 3.5 class, I figure it has to do with .Net 3.5

So, here's the question: Is this even possible to run a single page without compiling? Asp.Net should compile on the fly. It works with 2.0. Is there something I'm missing?

Upvotes: 1

Views: 158

Answers (1)

leppie
leppie

Reputation: 117220

Just add the assemblies to the web.config file (sorry cant recall the exact place to put it, but a normal VS generated one should have a few entries already).

Upvotes: 1

Related Questions