Reputation: 27
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
Reputation: 157
C# is not a script, you can't just run the source code without compiling (or publishing) it.
Upvotes: 2