Click here to Skip to main content
15,887,944 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
Generalchecking values in datagrid rows Pin
Rekha Patel4-Feb-05 14:03
Rekha Patel4-Feb-05 14:03 
GeneralRe: checking values in datagrid rows Pin
Bhoot Girish D4-Feb-05 18:30
sussBhoot Girish D4-Feb-05 18:30 
GeneralRe: checking values in datagrid rows Pin
Thang T.4-Feb-05 22:54
Thang T.4-Feb-05 22:54 
Generaldeploying .net apps with nsis Pin
fire.fox3-Feb-05 19:44
fire.fox3-Feb-05 19:44 
GeneralRe: deploying .net apps with nsis Pin
Charlie Williams4-Feb-05 6:20
Charlie Williams4-Feb-05 6:20 
GeneralRe: deploying .net apps with nsis Pin
Steve Maier4-Feb-05 10:09
professionalSteve Maier4-Feb-05 10:09 
GeneralRe: deploying .net apps with nsis Pin
fire.fox4-Feb-05 22:09
fire.fox4-Feb-05 22:09 
Generalbuild problem Pin
Ajek3-Feb-05 0:15
Ajek3-Feb-05 0:15 
Hello,

I have a problem when building my project. Everything build fine, but I just have to build way too much. I'm sure that there is an 'easy' solution, but I don't know where to look.

I have a project that consist out of maybe 50 seperate dll's (probably around 40 are self developed and the others are bought from other vendors). The dll's are all strong named and offcourse there are dependencies between them.

Suppose I have following structure

Model.dll (-> classes used in every program I use (like customer, adress, ...)
Data.dll (depends on Model.dll -> classes to connect to mssql, access)
Diary.dll (depends on Model.dll and Data.dll -> program that represents a diary)
Statistics.dll (depends on Model.dll and Data.dll -> program that represents a statistical program)

Suppose that in the data.dll I have a method like the following (It's just an example)
public int GetSomeData (int _Test)
{
if (Test == 0)
return 1;
return -1;
}

Now I want to make the function like this
public int GetSomeData (int _Test)
{
if (Test == 0)
return 1;
else if (Test == 1)
return 0;
return -1;
}

I need to rebuild the data.dll offcourse. But because of the strongnaming I also have to recompile the Diary.dll and the Statistics.dll
This is somehow cumbersome and nothing changed in the code for these dll's.

My question now is: How can I rebuild the data.dll and not recompile it's depending dll's without breaking the dependency and knowing that all dll's are strong named? Or where should I be looking to solve this problem?

Thanks in advance,

Best regards,
Ike Casteleyn
icasteleyn@hotmail.com
GeneralDeploying Assemblys to the GAC Pin
JohnARyan2-Feb-05 6:46
JohnARyan2-Feb-05 6:46 
GeneralRe: Deploying Assemblys to the GAC Pin
Charlie Williams3-Feb-05 12:40
Charlie Williams3-Feb-05 12:40 
GeneralEncryption keys Pin
Ray Cassick1-Feb-05 18:41
Ray Cassick1-Feb-05 18:41 
GeneralRe: Encryption keys Pin
Robert Rohde1-Feb-05 21:42
Robert Rohde1-Feb-05 21:42 
GeneralRe: Encryption keys Pin
S. Senthil Kumar8-Feb-05 10:23
S. Senthil Kumar8-Feb-05 10:23 
Questionwhere did InstMsiW.Exe and InstMsiA.Exe go? Pin
Galen_21-Feb-05 12:22
Galen_21-Feb-05 12:22 
AnswerRe: where did InstMsiW.Exe and InstMsiA.Exe go? Pin
rwestgraham1-Feb-05 20:27
rwestgraham1-Feb-05 20:27 
Generalsubject : programming with .NET Framework to browsing my bank account, buy and sell stock shares Pin
Close Network1-Feb-05 5:47
Close Network1-Feb-05 5:47 
GeneralRemoting channels Pin
neeru26197631-Jan-05 22:33
neeru26197631-Jan-05 22:33 
GeneralRe: Remoting channels Pin
Charlie Williams1-Feb-05 4:51
Charlie Williams1-Feb-05 4:51 
GeneralInstaller woes Pin
Arun Bhalla31-Jan-05 19:29
Arun Bhalla31-Jan-05 19:29 
GeneralRe: Installer woes Pin
rwestgraham1-Feb-05 15:27
rwestgraham1-Feb-05 15:27 
GeneralRe: Installer woes Pin
Arun Bhalla2-Feb-05 8:46
Arun Bhalla2-Feb-05 8:46 
GeneralRe: Installer woes Pin
Arun Bhalla2-Feb-05 9:27
Arun Bhalla2-Feb-05 9:27 
GeneralRe: Installer woes Pin
rwestgraham2-Feb-05 11:57
rwestgraham2-Feb-05 11:57 
GeneralRe: Installer woes Pin
Arun Bhalla2-Feb-05 13:13
Arun Bhalla2-Feb-05 13:13 
GeneralRe: Installer woes Pin
rwestgraham2-Feb-05 13:29
rwestgraham2-Feb-05 13:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.