Click here to Skip to main content
15,889,909 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
With continue to my previous post,

We have,
Two project used same function,
that is if i have project ABC and PQR
using
IsNumeric() function so still date we need two copy of function one in ABC and one in PQR .
instead of that i need IsNumeric() as microsoft visual studio function that can used by both ABC and PQR

thanks and regard
santosh
Posted

We use SourceSafe's "share" feature to place a shared copy of the common file(s) into both (or several) projects. SourceSafe maintains a single copy of the module but both projects have a copy. A SourceSafe "Get Latest" command synchronizes them.

I'm sure other code management tools provide similar features but I can't be specific because I only use SourceSafe.
 
Share this answer
 
Alternatively you can put the function in a library project, that is shared by both target projects.

Libraries are one standard method for creating shared code bases for projects.
 
Share this answer
 
Shared libraries are used for this kind of situation:
Shared Libraries[^]
http://wfrakes.wordpress.com/category/reusable-assets/[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900