2
votes
Prevent third party DLLs from being checked out in VSS
Why do you have the bin folder checked into SourceSafe? On projects I've worked on, the third party dlls were checked into a separate folder (maybe called ExternalLibraries or ThirdParty) at the s …
0
votes
Getting a Signature Mismatch Error when Compiling Even though it Matches in VS.NET 2005
Are the compiled dll, its respective project, and the user project all referencing the same version of the Infragistics assemblies? From what I've seen, any time you have a signature that appears …
1
vote
Managing complex Web.Config files between deployment environments.
I like to use a build task to automate changing the config file for the desired …
0
votes
“Open in visual studio” link in an ASP.net exception default page
Why not have VisualStudio already attached to IIS and have it configured to break on thrown exceptions?
…
1
vote
Using Studio’s “Custom Tool” in MSBuild
When you specify your custom tool from within VisualStudio, what does it add to your project or solution files? Since they are just msbuild files, you might be able to use the added xml as a templ …
0
votes
Need help moving nUnit tests into separate project
Is the problem with it not finding the application itself, or one of the application's dependencies? You might try using either FileMon or the Fusion Log Viewer to see what exactly is failing. It …
1
vote
VS2005: Assembly ‘<assembly>’ is incorrectly specified as a file.
It sounds like VisualStudio is assuming you have a file reference (like a .txt or .bmp) instead of an assembly reference. In the File Type property of your reference, does it show "Assembly" or so …
1
vote
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 …
3
votes
Visual Studio: ContextSwitchDeadlock
The ContextSwitchDeadlock doesn't necessarily mean your code has an issue, just that there is a potential. If you go to Debug > Exceptions in the menu and expand the "Managed Debugging Assistants" …
1
vote
How to associate external files with an assembly
What if you create a merge module containing the library plus its dependencies? Your installer will th …
0
votes
Getting Visual Studio to ignore source control bindings in a solution
Try opening the Options dialog (under Tools > Options.) From there you have a Source Control section, with Plug-in Selection as the first sub-item. If you set the "Current source control plug-in" …
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 …
1
vote
Adding a tab to the “Add Reference” dialog in VS?
I'm not sure about extending the existing dialog, but you might consider creating your own. Here is …
1
vote
Test Projects Won’t Load in VS08
As SLaks already asked, can you create new Test projects on the computer having issues? If you are able to create new ones without issue, try running a diff between the good project file and a bad …
0
votes
Medium/Large solution - Visual Studio Build process - Advice needed
One thing that jumps out is the copying of output files to build/bin. Do you have separate sub-folders for Release and Debug builds? I've worked on a large project that used a similar setup to you …
