Hi,
Are the following references required for VS 2008 users as well? Or only required for VB 2005 Express Edition users?
Please do help.
Hi,
Are the following references required for VS 2008 users as well? Or only required for VB 2005 Express Edition users?
Please do help.
As raised and began to answer, the practical question is less "which IDE version needs which DLLs" and more "how do I safely tell whether a reference is required and remove the ones I do not need." The short, safe workflow below makes that determination repeatable and low risk.
Common cautions: web-site projects, the VB "My" infrastructure, and designer-generated code sometimes require references that are not obvious from your source files. Tools such as ReSharper or other analyzers can help clean up truly unused references automatically. Removing unused references reduces deployment size and lowers the risk of version conflicts, but always validate with a full build and tests before committing the change.
Jump to Post— kvprajapati 1,826References of these DLL are added when you select a project template other than Empty project.
>Are the following references required for VS 2008 users as well
Depends upon the usage of classes.
References of these DLL are added when you select a project template other than Empty project.
>Are the following references required for VS 2008 users as well
Depends upon the usage of classes.
Suppose if I create references unknowingly whether it requires or not but actually it doesn't require .... then will it make any problem/error for me.
Thanks.
Suppose if I create references unknowingly whether it requires or not but actually it doesn't require .... then will it make any problem/error for me.
Thanks.
It won't create a problem. C# compiler—ignores assemblies which are not actually used by the application.
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.