User191828807 posted
I'm doing a project in ASP.NET and doing things on the ASP.NET development server in Visual Studio 2008. I can run and debug "hello world" website well using the asp.net development server. However, I want to use NUnit on my
C# assemblies for unit testing. When I build and deploy the asp.net application, I can't figure out for the asp.net development server where the .dll or .exe generated by the website build process is placed in the filesystem with the defaults
for debug. Apparently for example, it says the development server is using \Visual Studio 2008\WebSite1\ as the local path; but there does not seem to be a .dll or .exe generated under that path--the only things in [bin] are the assemblies
for NUnit that I put there, and the source files is the only thing in the [app code] direcdotry. If i deploy to my hosting provider, i see their are dll's generated.
Does the Development Server generate DLL's? anyone know a work around for unit testing with NUnit on my C# code locally with the development server? Does the development server just interperet the files and not have a dll? I can't find a
description with any technical details of how the process is different deploy to iis vs. the development server itself.
I generated a work around that involves basically making a local "class" project in the site; but its super clumsy so there should be a better way. thanks!