TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Using Frequently Built Assemblies in Other Applications (.Net)
Shweta Lodha
Feb 07, 2014
3.5
k
0
2
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
This blog discusses how to use the frequently built assemblies in other applications.
Assume that you are creating a strong named MyAssembly that will be used in several applications. The assembly will be rebuilt frequently during the development cycle. But one must ensure that every time MyAssembly is rebuilt, it works properly with all the applications that are using it. So, in order to obtain this, we are required to configure the computer on which we will develop the assembly, such that each application uses the latest build of MyAssembly. To accomplish the above task, the following actions will help:
To point to the build output directory for the strong named assembly, create a DEVPATH environment variable.
Add the following element to the machine configuration file:
<developmentMode developerInstallation="true">
. This element tells the CLR to use the DEVPATH to locate the assembly.
Next Recommended Reading
How To Add Pictures Or Images In Excel Sheet Using EPPlus .NET Application (C#) - Part Five