tags:

views:

97

answers:

2

Is there such a thing as a step-by-step guide to create a custom framework in .NET?

I am trying to create one myself, have been reading the materials on the MS website about assemblies and GAC etc. but am getting more and more confused.

I am not trying to do anything particular at this point. I am just trying to learn how to develop a custom framework. By framework I meant something like the .NET Framework, or http://en.wikipedia.org/wiki/Software_framework. I know I have to do something with the GAC first, and then make sure that it is strong-named etc.

+11  A: 

You should to read this book: Framework Design Guidelines: Conventions, Idioms, and Patterns for Reusable .NET Libraries (2nd Edition)

alt text

Rubens Farias
+1 to take this question out of the unanswered list
Ciwee
+3  A: 

The first task is to decide if a framework is appropriate, in most cases it is not.

Paul Creasey