Search Results

0
votes

Document load is being skipped - what document is causing this?

I can't say I've seen this particular error, but I'm wondering if that might be stored in the .suo file associated with your solution. The .suo is where VS tracks which files you had open previous …
1
vote

Error Compiling Program in Visual Studio 2008

So it creates the dll but doesn't like to use it afterward? If that's the case, have you tried to open the dlls in Reflector to see what differences there might be between the first and second com …
5
votes

Link to all Visual Studio $ variables

Try this MSDN page: Macros for Build Commands and Properties …
0
votes

NUnit tests in a separate project, same solution

Instead of setting up NUnit as an External Tool, I set the unit test project as the StartUp project. In the project's Properties screen, set the Start Action to "Start external program" and point …
2
votes

Managing .NET assembly dependencies by dll reference rather than by project reference in VS.

Is there any reason why you want to allow for arbitrary solutions? It seems like it would be easier to create a single solution and put all of the projects in that solution. I try to avoid multip …