Ekta
Ekta

Reputation: 27

ASP.Net - Hosting Web API source code without publishing

Is there any way I can host a C#-based ASP.Net Web API project without publishing it? It's a new project and I wish to be able to host the C# source code files directly. That way every time there's an update, I can replace just the necessary C# code files instead of publishing the project and posting the dll file.

Note that I'm also using Entity Framework, in case that matters.

Upvotes: 0

Views: 550

Answers (1)

changsiang
changsiang

Reputation: 157

C# is not a script, you can't just run the source code without compiling (or publishing) it.

Upvotes: 2

Related Questions