SlideShare a Scribd company logo
1 of 26
DECEMBER 12, 2011 | SLIDE 1
www.realdolmen.com




                              FUN WITH ASP.NET MVC 3,
                                  MEF AND NUGET




DECEMBER 12, 2011 | SLIDE 2
WHO AM I?
        Maarten Balliauw
        Antwerp, Belgium
                                       Me, looking
        www.realdolmen.com            intelligent with
        Focus on web                  glasses
          ASP.NET MVC, PHP, Azure, SignalR, …
          MVP Windows Azure (formerly ASP.NET)
        Co-founder of AZUG
        http://blog.maartenballiauw.be
        @maartenballiauw




DECEMBER 12, 2011 | SLIDE 4
AGENDA
        Technologies & techniques used
          ASP.NET MVC 3
          Managed Extensibility Framework (MEF)
          NuGet
        Creating application components
        Building an application
        Conclusion
        Further information
        Q&A




DECEMBER 12, 2011 | SLIDE 5
ASP.NET MVC 3
        All the new stuff:
            Razor view engine
            Global Action Filters
            Unobtrusive Ajax & Client Validation
            Better Visual Studio tooling


        And a very interesting one for doing LEGO
         development:
          Better support for Dependency Injection




DECEMBER 12, 2011 | SLIDE 6
DEPENDENCY INJECTION?


               I need a
                              var partA =
              “Part B” !      new PartA(new PartB())
                                                   Coming
                                                     up!




                                 Me on a
                                 typical
                                 work day




DECEMBER 12, 2011 | SLIDE 7
DEPENDENCY INJECTION?


               I need a
                                   Let me
                                    There
              “Part B” !
                                   you go!
                                    see...
                              Container




DECEMBER 12, 2011 | SLIDE 8
WHAT ABOUT ASP.NET MVC 3?
        ASP.NET MVC 3 uses DependencyResolver

        : IDependencyResolver
          GetService()
          GetServices()


        Register it on application start




DECEMBER 12, 2011 | SLIDE 9
WHAT ABOUT ASP.NET MVC 3?
       ASP.NET MVC will / can query the
        IDependencyResolver for
            Controllers                        Value providers
            View engines & view pages          Model binders
            Filters                            Controller activator
            Model validators                   View page activator
            Model metadata


       Check Brad Wilson’s blog for examples on all of
        these
          http://bradwilson.typepad.com/blog/2010/07/service-
           location-pt1-introduction.html




DECEMBER 12, 2011 | SLIDE 10
in ASP.NET MVC 3

     DEPENDENCY INJECTION


DECEMBER 12, 2011 | SLIDE 11
MANAGED EXTENSIBILITY
 FRAMEWORK (MEF)
  Cool as ICE: Import, Compose, Export


           [Import]IRule rule;

                                           MEF catalog
                                    [Export(typeof(IRule)]

                                 Let me
                                  There
                                 you go!
                                  see...




DECEMBER 12, 2011 | SLIDE 12
MEF IN ASP.NET MVC 3


       Build an IDependencyResolver
          based on MEF container


       Use
            has a built-in IDependencyResolver
            has a “Convention” model
            is available on NuGet
            mefcontrib.codeplex.com




DECEMBER 12, 2011 | SLIDE 13
NUGET

        “NuGet is a Visual Studio extension that makes it easy to install
        and update open source libraries and tools in Visual Studio.”
                 Publish your own packages
            +    Create & use your own feed




DECEMBER 12, 2011 | SLIDE 14
and finding it on NuGet

     USING MEFCONTRIB


DECEMBER 12, 2011 | SLIDE 15
MEFCONTRIB.MVC3
       Optional addition for
       Adds some things to your application:
            AppStart code that does the wiring
            A CompositionDependencyResolver
            Will check all assemblies in /bin
            Will export everything : IController by convention




DECEMBER 12, 2011 | SLIDE 16
CONVENTIONS BASED MODEL
 public class MvcApplicationRegistry : PartRegistry {
   public MvcApplicationRegistry() {
     Scan(x => {
       x.Assembly(Assembly.GetExecutingAssembly());
       x.Directory(AppDomain.CurrentDomain.BaseDirectory + "bin");
     });

         Part()
           .ForTypesAssignableFrom<IController>()
           .MakeNonShared()
           .ExportTypeAs<IController>()
           .ExportType()
           .Imports(
             // ...
           );
     }
 }




DECEMBER 12, 2011 | SLIDE 17
THIS ALL MAKES ME THINK...

  Package company components using
   NuGet?
  Distribute them in a custom feed?
  Use ASP.NET MVC 3?
  Wire everything with MEF & MefContrib?
  Pure application Lego!
                               Me, thinking




DECEMBER 12, 2011 | SLIDE 18
CREATING APPLICATION
     COMPONENTS

DECEMBER 12, 2011 | SLIDE 19
WHAT’S NEXT?
       Building it
          MSBuild (or whatever! Nuget.exe is all that matters)
       Hosting it                 Install-Package NuGet.Server
          Create a NuGet server
          Drop everything in a folder
          Use a NaaS solution: www.myget.org
       Using it
          Reference the feed
          Download & install components needed
          Assemble using MEF (or another IoC)




DECEMBER 12, 2011 | SLIDE 20
A QUICK COMMERCIAL PLUG
       Create your own NuGet feed
       Packages from official feed
       Uploaded/pushed packages
       No need to setup & maintain your own NuGet Server
       Free! www.myget.org




DECEMBER 12, 2011 | SLIDE 21
CREATING A PRIVATE NUGET
     FEED

DECEMBER 12, 2011 | SLIDE 22
LET’S SEE IF WE CAN BUILD THIS...


         TPS Reports Cover Sheet Generator
                 (ASP.NET MVC 3)                                    Wired
  Domain layer                 Authentication         Theme
                                                                    with MEF

Domain.TpsReports              AccountController    Default theme




                                   Contracts
                                                                    Packaged
                                                                    as .nupkg
                                   And their
                               implementations...


DECEMBER 12, 2011 | SLIDE 23
Cover Sheet Generator

     BUILDING AN APPLICATION


DECEMBER 12, 2011 | SLIDE 24
CONCLUSION
       You can build an app like a Lego set
          Requires “bricks” (NuGet packages)
          Requires “glue” (MEF / MefContrib / IoC)


       Requires you to think in terms of components
          Structure is key!


       Not a best-practice architecture
          Just something we toyed with on a project
          Proved to work (for the customer)




DECEMBER 12, 2011 | SLIDE 25
FURTHER INFORMATION
       On the Internet:
          www.nuget.org
          www.myget.org
          mefcontrib.codeplex.com




DECEMBER 12, 2011 | SLIDE 26
THANK YOU FOR JOINING



                               Me, having
                               a question
DECEMBER 12, 2011 | SLIDE 27

More Related Content

Similar to Fun with ASP.NET MVC3, MEF and NuGet

Fun with ASP.NET MVC 3, MEF and NuGet (#comdaybe)
Fun with ASP.NET MVC 3, MEF and NuGet (#comdaybe)Fun with ASP.NET MVC 3, MEF and NuGet (#comdaybe)
Fun with ASP.NET MVC 3, MEF and NuGet (#comdaybe)
Maarten Balliauw
 
Architectural Patterns for the Cloud
Architectural Patterns for the CloudArchitectural Patterns for the Cloud
Architectural Patterns for the Cloud
Maarten Balliauw
 
Vb net xp_05
Vb net xp_05Vb net xp_05
Vb net xp_05
Niit Care
 
SDC Sweden - Organize your chickens - NuGet for the Enterprise
SDC Sweden - Organize your chickens - NuGet for the EnterpriseSDC Sweden - Organize your chickens - NuGet for the Enterprise
SDC Sweden - Organize your chickens - NuGet for the Enterprise
Maarten Balliauw
 

Similar to Fun with ASP.NET MVC3, MEF and NuGet (20)

Fun with ASP.NET MVC 3, MEF and NuGet
Fun with ASP.NET MVC 3, MEF and NuGetFun with ASP.NET MVC 3, MEF and NuGet
Fun with ASP.NET MVC 3, MEF and NuGet
 
Fun with ASP.NET MVC 3, MEF and NuGet (#comdaybe)
Fun with ASP.NET MVC 3, MEF and NuGet (#comdaybe)Fun with ASP.NET MVC 3, MEF and NuGet (#comdaybe)
Fun with ASP.NET MVC 3, MEF and NuGet (#comdaybe)
 
Architecting for a cost effective Windows Azure solution
Architecting for a cost effective Windows Azure solutionArchitecting for a cost effective Windows Azure solution
Architecting for a cost effective Windows Azure solution
 
Windows Azure and the cloud - What it’s all about
Windows Azure and the cloud - What it’s all aboutWindows Azure and the cloud - What it’s all about
Windows Azure and the cloud - What it’s all about
 
iOS Design Patterns
iOS Design PatternsiOS Design Patterns
iOS Design Patterns
 
Oracle EBS 12.1.3 : Integrate OA Framework BC4J components within java concur...
Oracle EBS 12.1.3 : Integrate OA Framework BC4J components within java concur...Oracle EBS 12.1.3 : Integrate OA Framework BC4J components within java concur...
Oracle EBS 12.1.3 : Integrate OA Framework BC4J components within java concur...
 
Mobile ECM: Using the Nuxeo Platform from mobile devices
Mobile ECM: Using the Nuxeo Platform from mobile devicesMobile ECM: Using the Nuxeo Platform from mobile devices
Mobile ECM: Using the Nuxeo Platform from mobile devices
 
MSDN Live - CI using TFS11 & NuGet
MSDN Live - CI using TFS11 & NuGetMSDN Live - CI using TFS11 & NuGet
MSDN Live - CI using TFS11 & NuGet
 
Architectural Patterns for the Cloud
Architectural Patterns for the CloudArchitectural Patterns for the Cloud
Architectural Patterns for the Cloud
 
NInject - DI Container
NInject - DI ContainerNInject - DI Container
NInject - DI Container
 
HTML5: A complete overview
HTML5: A complete overviewHTML5: A complete overview
HTML5: A complete overview
 
Polymer / WebComponents
Polymer / WebComponentsPolymer / WebComponents
Polymer / WebComponents
 
BUILDING WEB APPS WITH ASP.NET MVC AND NOSQL
BUILDING WEB APPS WITH ASP.NET MVC AND NOSQLBUILDING WEB APPS WITH ASP.NET MVC AND NOSQL
BUILDING WEB APPS WITH ASP.NET MVC AND NOSQL
 
Vb net xp_05
Vb net xp_05Vb net xp_05
Vb net xp_05
 
MV(C, mvvm) in iOS and ReactiveCocoa
MV(C, mvvm) in iOS and ReactiveCocoaMV(C, mvvm) in iOS and ReactiveCocoa
MV(C, mvvm) in iOS and ReactiveCocoa
 
SDC Sweden - Organize your chickens - NuGet for the Enterprise
SDC Sweden - Organize your chickens - NuGet for the EnterpriseSDC Sweden - Organize your chickens - NuGet for the Enterprise
SDC Sweden - Organize your chickens - NuGet for the Enterprise
 
Zero-downtime deployment of Micro-services with Kubernetes
Zero-downtime deployment of Micro-services with KubernetesZero-downtime deployment of Micro-services with Kubernetes
Zero-downtime deployment of Micro-services with Kubernetes
 
Programming with JavaFX
Programming with JavaFXProgramming with JavaFX
Programming with JavaFX
 
Planbox Backbone MVC
Planbox Backbone MVCPlanbox Backbone MVC
Planbox Backbone MVC
 
Getting started vmware apps
Getting started vmware appsGetting started vmware apps
Getting started vmware apps
 

More from Maarten Balliauw

More from Maarten Balliauw (20)

Bringing nullability into existing code - dammit is not the answer.pptx
Bringing nullability into existing code - dammit is not the answer.pptxBringing nullability into existing code - dammit is not the answer.pptx
Bringing nullability into existing code - dammit is not the answer.pptx
 
Nerd sniping myself into a rabbit hole... Streaming online audio to a Sonos s...
Nerd sniping myself into a rabbit hole... Streaming online audio to a Sonos s...Nerd sniping myself into a rabbit hole... Streaming online audio to a Sonos s...
Nerd sniping myself into a rabbit hole... Streaming online audio to a Sonos s...
 
Building a friendly .NET SDK to connect to Space
Building a friendly .NET SDK to connect to SpaceBuilding a friendly .NET SDK to connect to Space
Building a friendly .NET SDK to connect to Space
 
Microservices for building an IDE - The innards of JetBrains Rider - NDC Oslo...
Microservices for building an IDE - The innards of JetBrains Rider - NDC Oslo...Microservices for building an IDE - The innards of JetBrains Rider - NDC Oslo...
Microservices for building an IDE - The innards of JetBrains Rider - NDC Oslo...
 
Indexing and searching NuGet.org with Azure Functions and Search - .NET fwday...
Indexing and searching NuGet.org with Azure Functions and Search - .NET fwday...Indexing and searching NuGet.org with Azure Functions and Search - .NET fwday...
Indexing and searching NuGet.org with Azure Functions and Search - .NET fwday...
 
NDC Sydney 2019 - Microservices for building an IDE – The innards of JetBrain...
NDC Sydney 2019 - Microservices for building an IDE – The innards of JetBrain...NDC Sydney 2019 - Microservices for building an IDE – The innards of JetBrain...
NDC Sydney 2019 - Microservices for building an IDE – The innards of JetBrain...
 
JetBrains Australia 2019 - Exploring .NET’s memory management – a trip down m...
JetBrains Australia 2019 - Exploring .NET’s memory management – a trip down m...JetBrains Australia 2019 - Exploring .NET’s memory management – a trip down m...
JetBrains Australia 2019 - Exploring .NET’s memory management – a trip down m...
 
.NET Conf 2019 - Indexing and searching NuGet.org with Azure Functions and Se...
.NET Conf 2019 - Indexing and searching NuGet.org with Azure Functions and Se....NET Conf 2019 - Indexing and searching NuGet.org with Azure Functions and Se...
.NET Conf 2019 - Indexing and searching NuGet.org with Azure Functions and Se...
 
CloudBurst 2019 - Indexing and searching NuGet.org with Azure Functions and S...
CloudBurst 2019 - Indexing and searching NuGet.org with Azure Functions and S...CloudBurst 2019 - Indexing and searching NuGet.org with Azure Functions and S...
CloudBurst 2019 - Indexing and searching NuGet.org with Azure Functions and S...
 
NDC Oslo 2019 - Indexing and searching NuGet.org with Azure Functions and Search
NDC Oslo 2019 - Indexing and searching NuGet.org with Azure Functions and SearchNDC Oslo 2019 - Indexing and searching NuGet.org with Azure Functions and Search
NDC Oslo 2019 - Indexing and searching NuGet.org with Azure Functions and Search
 
Approaches for application request throttling - Cloud Developer Days Poland
Approaches for application request throttling - Cloud Developer Days PolandApproaches for application request throttling - Cloud Developer Days Poland
Approaches for application request throttling - Cloud Developer Days Poland
 
Indexing and searching NuGet.org with Azure Functions and Search - Cloud Deve...
Indexing and searching NuGet.org with Azure Functions and Search - Cloud Deve...Indexing and searching NuGet.org with Azure Functions and Search - Cloud Deve...
Indexing and searching NuGet.org with Azure Functions and Search - Cloud Deve...
 
Approaches for application request throttling - dotNetCologne
Approaches for application request throttling - dotNetCologneApproaches for application request throttling - dotNetCologne
Approaches for application request throttling - dotNetCologne
 
CodeStock - Exploring .NET memory management - a trip down memory lane
CodeStock - Exploring .NET memory management - a trip down memory laneCodeStock - Exploring .NET memory management - a trip down memory lane
CodeStock - Exploring .NET memory management - a trip down memory lane
 
ConFoo Montreal - Microservices for building an IDE - The innards of JetBrain...
ConFoo Montreal - Microservices for building an IDE - The innards of JetBrain...ConFoo Montreal - Microservices for building an IDE - The innards of JetBrain...
ConFoo Montreal - Microservices for building an IDE - The innards of JetBrain...
 
ConFoo Montreal - Approaches for application request throttling
ConFoo Montreal - Approaches for application request throttlingConFoo Montreal - Approaches for application request throttling
ConFoo Montreal - Approaches for application request throttling
 
Microservices for building an IDE – The innards of JetBrains Rider - TechDays...
Microservices for building an IDE – The innards of JetBrains Rider - TechDays...Microservices for building an IDE – The innards of JetBrains Rider - TechDays...
Microservices for building an IDE – The innards of JetBrains Rider - TechDays...
 
JetBrains Day Seoul - Exploring .NET’s memory management – a trip down memory...
JetBrains Day Seoul - Exploring .NET’s memory management – a trip down memory...JetBrains Day Seoul - Exploring .NET’s memory management – a trip down memory...
JetBrains Day Seoul - Exploring .NET’s memory management – a trip down memory...
 
DotNetFest - Let’s refresh our memory! Memory management in .NET
DotNetFest - Let’s refresh our memory! Memory management in .NETDotNetFest - Let’s refresh our memory! Memory management in .NET
DotNetFest - Let’s refresh our memory! Memory management in .NET
 
VISUG - Approaches for application request throttling
VISUG - Approaches for application request throttlingVISUG - Approaches for application request throttling
VISUG - Approaches for application request throttling
 

Recently uploaded

Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Victor Rentea
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 

Recently uploaded (20)

Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptx
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 

Fun with ASP.NET MVC3, MEF and NuGet

  • 1. DECEMBER 12, 2011 | SLIDE 1
  • 2. www.realdolmen.com FUN WITH ASP.NET MVC 3, MEF AND NUGET DECEMBER 12, 2011 | SLIDE 2
  • 3. WHO AM I?  Maarten Balliauw  Antwerp, Belgium Me, looking  www.realdolmen.com intelligent with  Focus on web glasses  ASP.NET MVC, PHP, Azure, SignalR, …  MVP Windows Azure (formerly ASP.NET)  Co-founder of AZUG  http://blog.maartenballiauw.be  @maartenballiauw DECEMBER 12, 2011 | SLIDE 4
  • 4. AGENDA  Technologies & techniques used  ASP.NET MVC 3  Managed Extensibility Framework (MEF)  NuGet  Creating application components  Building an application  Conclusion  Further information  Q&A DECEMBER 12, 2011 | SLIDE 5
  • 5. ASP.NET MVC 3  All the new stuff:  Razor view engine  Global Action Filters  Unobtrusive Ajax & Client Validation  Better Visual Studio tooling  And a very interesting one for doing LEGO development:  Better support for Dependency Injection DECEMBER 12, 2011 | SLIDE 6
  • 6. DEPENDENCY INJECTION? I need a var partA = “Part B” ! new PartA(new PartB()) Coming up! Me on a typical work day DECEMBER 12, 2011 | SLIDE 7
  • 7. DEPENDENCY INJECTION? I need a Let me There “Part B” ! you go! see... Container DECEMBER 12, 2011 | SLIDE 8
  • 8. WHAT ABOUT ASP.NET MVC 3?  ASP.NET MVC 3 uses DependencyResolver  : IDependencyResolver  GetService()  GetServices()  Register it on application start DECEMBER 12, 2011 | SLIDE 9
  • 9. WHAT ABOUT ASP.NET MVC 3?  ASP.NET MVC will / can query the IDependencyResolver for  Controllers  Value providers  View engines & view pages  Model binders  Filters  Controller activator  Model validators  View page activator  Model metadata  Check Brad Wilson’s blog for examples on all of these  http://bradwilson.typepad.com/blog/2010/07/service- location-pt1-introduction.html DECEMBER 12, 2011 | SLIDE 10
  • 10. in ASP.NET MVC 3 DEPENDENCY INJECTION DECEMBER 12, 2011 | SLIDE 11
  • 11. MANAGED EXTENSIBILITY FRAMEWORK (MEF)  Cool as ICE: Import, Compose, Export [Import]IRule rule; MEF catalog [Export(typeof(IRule)] Let me There you go! see... DECEMBER 12, 2011 | SLIDE 12
  • 12. MEF IN ASP.NET MVC 3  Build an IDependencyResolver  based on MEF container  Use  has a built-in IDependencyResolver  has a “Convention” model  is available on NuGet  mefcontrib.codeplex.com DECEMBER 12, 2011 | SLIDE 13
  • 13. NUGET “NuGet is a Visual Studio extension that makes it easy to install and update open source libraries and tools in Visual Studio.” Publish your own packages + Create & use your own feed DECEMBER 12, 2011 | SLIDE 14
  • 14. and finding it on NuGet USING MEFCONTRIB DECEMBER 12, 2011 | SLIDE 15
  • 15. MEFCONTRIB.MVC3  Optional addition for  Adds some things to your application:  AppStart code that does the wiring  A CompositionDependencyResolver  Will check all assemblies in /bin  Will export everything : IController by convention DECEMBER 12, 2011 | SLIDE 16
  • 16. CONVENTIONS BASED MODEL public class MvcApplicationRegistry : PartRegistry { public MvcApplicationRegistry() { Scan(x => { x.Assembly(Assembly.GetExecutingAssembly()); x.Directory(AppDomain.CurrentDomain.BaseDirectory + "bin"); }); Part() .ForTypesAssignableFrom<IController>() .MakeNonShared() .ExportTypeAs<IController>() .ExportType() .Imports( // ... ); } } DECEMBER 12, 2011 | SLIDE 17
  • 17. THIS ALL MAKES ME THINK...  Package company components using NuGet?  Distribute them in a custom feed?  Use ASP.NET MVC 3?  Wire everything with MEF & MefContrib?  Pure application Lego! Me, thinking DECEMBER 12, 2011 | SLIDE 18
  • 18. CREATING APPLICATION COMPONENTS DECEMBER 12, 2011 | SLIDE 19
  • 19. WHAT’S NEXT?  Building it  MSBuild (or whatever! Nuget.exe is all that matters)  Hosting it Install-Package NuGet.Server  Create a NuGet server  Drop everything in a folder  Use a NaaS solution: www.myget.org  Using it  Reference the feed  Download & install components needed  Assemble using MEF (or another IoC) DECEMBER 12, 2011 | SLIDE 20
  • 20. A QUICK COMMERCIAL PLUG  Create your own NuGet feed  Packages from official feed  Uploaded/pushed packages  No need to setup & maintain your own NuGet Server  Free! www.myget.org DECEMBER 12, 2011 | SLIDE 21
  • 21. CREATING A PRIVATE NUGET FEED DECEMBER 12, 2011 | SLIDE 22
  • 22. LET’S SEE IF WE CAN BUILD THIS... TPS Reports Cover Sheet Generator (ASP.NET MVC 3) Wired Domain layer Authentication Theme with MEF Domain.TpsReports AccountController Default theme Contracts Packaged as .nupkg And their implementations... DECEMBER 12, 2011 | SLIDE 23
  • 23. Cover Sheet Generator BUILDING AN APPLICATION DECEMBER 12, 2011 | SLIDE 24
  • 24. CONCLUSION  You can build an app like a Lego set  Requires “bricks” (NuGet packages)  Requires “glue” (MEF / MefContrib / IoC)  Requires you to think in terms of components  Structure is key!  Not a best-practice architecture  Just something we toyed with on a project  Proved to work (for the customer) DECEMBER 12, 2011 | SLIDE 25
  • 25. FURTHER INFORMATION  On the Internet:  www.nuget.org  www.myget.org  mefcontrib.codeplex.com DECEMBER 12, 2011 | SLIDE 26
  • 26. THANK YOU FOR JOINING Me, having a question DECEMBER 12, 2011 | SLIDE 27

Editor's Notes

  1. Demo01_MVC_DependencyResolverAdd a property to the HomeController for specifying the welcome messageAdd a class “SimpleDependencyResolver.cs”Implement IdependencyResolver (use snippets for some parts)    public class SimpleDependencyResolver        : IDependencyResolver    {        public object GetService(Type serviceType)        {            if (serviceType == typeof(Controllers.HomeController))            {                var controller = Activator.CreateInstance(serviceType) as Controllers.HomeController;                controller.MessageText = &quot;Welcome, this text has been injected!&quot;;                return controller;            }            if (serviceType.IsInterface)            {                if (serviceType == typeof(IControllerFactory)) return new DefaultControllerFactory();                if (serviceType == typeof(IControllerActivator)) return null;                if (serviceType == typeof(IFilterProvider)) return GlobalFilters.Filters;                if (serviceType == typeof(IViewEngine)) return new RazorViewEngine();                if (serviceType == typeof(IViewPageActivator)) return null;            }            return Activator.CreateInstance(serviceType);        }        public IEnumerable&lt;object&gt; GetServices(Type serviceType)        {            return new object[] { GetService(serviceType) };        }    } Register dependencyresolver in App_Start:DependencyResolver.SetResolver(new SimpleDependencyResolver());
  2. Maarten
  3. Demo02_MefContribCreate a new MVC application (application template)Add an IHelloWorldService    public interface IHelloWorldService    {        string Hello();    } Add a HelloWorldService    [Export(typeof(IHelloWorldService))]    public class HelloWorldService        : IHelloWorldService    {        public string Hello()        {            return &quot;Hello from HelloWorldService!&quot;;        }    } Change HomeController     public class HomeController : Controller    {        private IHelloWorldService service;         [ImportingConstructor]        public HomeController(IHelloWorldService helloWorldService)        {            this.service = helloWorldService;        }         public ActionResult Index()        {            ViewBag.Message = this.service.Hello();             return View();        }         public ActionResult About()        {            return View();        }    } Run and fail…NuGet the MefContrib.MVC packageExplain the fact that it uses the /bin folder for part discoveryExplain the use of conventions
  4. Initech.Components.Theming.DefaultThemeOpen solutionShow it’s nothing but a “plain old” MVC applicationRun the projectDemonstrate it does nothing, it’s just a template…Show the NuGet folder in Windows ExplorerOpen package.nuspec using NuGet Package ExplorerShow people around:Show the “Content” folder, this is where package contents will go. In this case, it will contain the Views, CSS and scripts.Show “lib”: it will contain assemblies (if appropriate for the package)Package.proj is the MSBUILD script that does the packagingOpen itSpecify some settings about what to copy and packageUpdate version number in nuspec fileRun nuget.exe on the nuspec fileAwesomeness!
  5. Tonen aparte directoryTonen NuGet.ServerTonen MyGet.org
  6. IniTech.TpsCoverSheetGeneratorCreate an empty MVC applicationAdd a library package reference to InitechThemeDefaultThemeUpdate _ViewStart.cshtml to use _InitechLayout.cshtmlAdd a HomeControllerAdd a viewRun the application to show off the templateRemove the view: we’ll generate that later onAdd library package reference (from command line?) to InitechDomainTpsReportsModify Index() action method:        public ActionResult Index()        {            return View(new TpsReportCoverSheet());        } Add POST action        [HttpPost]        public ActionResult Index(TpsReportCoverSheet model)        {            if (ModelState.IsValid)            {                return View(&quot;TpsReportCoverSheet&quot;, model);            }             return View(model);        } Add [Authorize] attributeAdd library package reference to InitechWebMvcAuthenticationDemonstrate it adds dependencies from NuGet as well as from Initech package repositoryWe need an implementation for the contracts… InitechAuthenticationMembershipDummy &amp; InitechAuthenticationFormsShow the app: almost no code, we just combined some building blocks…