Search Results

7
votes

What is the purpose of “remove unused references”

It prevents the CLR from loading the referenced module at runtime. This will reduce startup time (since it takes time to load each module). Depending on the size of the module it might noticeabl …
0
votes

Split old .NET code into designer partial class

AFAIK there isn't anything built in to do this automatically. I could definitely use an automated way to do this. …
0
votes

Advantages and usefulness of adding an XML file to a Visual Studio 2008 project

If your app needs to load the XML it can be copied to the output directory. Also simplifies use of Setup/Deployment projects... …
0
votes

Do you have performance problems when you work on Visual Studio projects via a network share?

When working on Windows based projects I've always worked locally. Once at a unix shop (AIX iirc) developers would work via NFS mount and checkin/checkout via RCS... …
1
vote

Visual Studio - Programmatically configure solution for source control.

Can you handle this through the Visual Studio extensibility framework? EnvDTE basically provides access to anything you can do interactively... …
0
votes

A project with output type of class library cannot be started directly - with a startup exe

I had this problem with projects that were created as "Windows Control Library" that somehow forget their status. Unloading and reloading the project usually did the trick. If it was creat …
2
votes

Visual Studio 2008 Unnecessary Project Building

We had a similar problem at work. In post-build events we were manually embedding manifests into the outputs in the bin directory. Visual Studio was copying project references from the obj dir (w …
0
votes

Visual studio recursive Copy local

If Lib.dll is an interop dll then its underlying dll won't be copied. Other than that I'd say there's probably operator error because you definitely don't need to manually reference dependent mana …
0
votes

App to read form document (scantron-ish)

You want OCR software. There are a few free libraries out there for personal use (I believe google sponsors one). You may want to play around with the layout to make sure OCR clearly identifies t …
1
vote

error PRJ0019: A tool returned an error code from “Copying DLL…”

Turn up the build output with Tools -> Options -> Projects and Solutions -> Build and Run Set MSBuild project build output verbosity to something higher than the default. I'd step it up on …
0
votes

Managing multiple configuration files in Visual Studio for a C# project

One way to handle this is to create 3 projects and put the environment in the name of the new projects. Then use a post-build event to copy the correct files based on the project name. Ins …
1
vote

Full-screen window sizing in screen (pixel) units with VS6 C++ GUI editor, MFC?

Dialog Units are based on properties of the font used by the dialog. A horizontal dialog unit is equal to 1/4th the average width of the current font. A vertical dialog unit is equal to 1/ …