managing information/functionality on shared common project classes
Posted
by
ilansch
on Programmers
See other posts from Programmers
or by ilansch
Published on 2013-07-12T06:15:04Z
Indexed on
2013/11/09
10:15 UTC
Read the original article
Hit count: 367
In my company, we have a common solution the contains common projects (2 projects so far, one for .net 3.5 and one for .net 4.5).
My main problem is that during time, a lot of code is added, for example hosting a process as windows service is a class called ServiceManagement, But no one but the developer knows it, and if someone wants to use this shared class, he does not know it exist.
So i am looking for a way to document and manage all the classes with tags, a 3rd party util/web util, that i can search for tags and maybe find common classes that i can use (if we keep all our code well-documented).
Does anyone familiar with sort of tools ?
© Programmers or respective owner