torsdag, januari 21, 2010

 

Deploying applications to Windows and Windows Phones which supports dynamic modules

Many .Net applications being developed today are leveraging the greatness of dependency injection using some sort of inversion of control-container. So do we at RemoteX when we develop the product called RemoteX Applications. The product has two client applications which roughly adresses the same use cases. One is targeting desktop computers and the other one is targeting Windows Phone (you can read more here and here).

As you can tell by the name, the product consists of several applications (or rather modules). Using frameworks like Prism or Caliburn we can, in code, easily manage each part of the product. And the deployment is taken care of using ClickOnce technology using mage.exe (the MAnifest GEnerator).
But that's for the desktop client targeting WPF.

So the big question is, how are we going mobile with this?

What regards an inversion of control-container we are "almost there". We have a home-grown container in place which have been around for a while now, even though it lacks some basic features you would expect an ioc container of year MMX to have.
Speaking of deployment to the Windows Phone you probably know you are kind of locked to using CABinet files. If you are using the tools Microsoft brought to us, you probably also use their Device Setup projects in Visual Studio.
They are good, but you must use Visual Studio to choose the contents of and create/build your CAB file.
What this basically means is that we need to use devenv.exe to build each customer's customized CAB file.
So up til now we have not had per customer customized CAB files.

All I wanted was ClickOnce technology and a manifest generator for the Windows Phone. So what's the solution on that?
Say hello to the PowerShell script New-CabWizInf.ps1:

.\New-CabWizInf.ps1 -path .\myapp.inf -appName "My Application" -manufacturer "RemoteX" -fromDirectory .\MyApplication\bin\Release

It works like mage.exe with its -fromDirectory switch and creates the necessary .inf-file (like an Visual Studio Device Setup project would). All needed from that point is to call CABWIZ.exe and Set-AuthenticodeSignature in PowerShell to create and sign the CAB file.
The real power is the -fromDirectory switch which allows us to create custom CAB files on the fly.

So here is a peek of what our setup package scripts now looks like:

Setup Package for Windows using ClickOnce
mage -new deployment -tofile MyApp.application -fromdirectory bin\Release -name "My App" -publisher "RemoteX"
mage -sign

Setup Package for Windows Phones using CAB files
.\New-CabWizInf.ps1 -path MyApp.inf -fromDirectory bin\Release -appName "My App" -manufacturer "RemoteX"
cabwiz MyApp.inf /dest .\
Set-AuthenticodeSignature .\MyApp.CAB

So right now I'm a very happy camper since our packaging tools for Windows AND Windows Phone have equal capabilities which allows us to use dependency injection with dynamic module selection.

Next stop, Prism and Silverlight for the Windows Phone?

Etiketter: , , , , , ,


torsdag, maj 07, 2009

 

CodeSaga - The version control repository story teller


Just installed CodeSaga on our internal TFS server and I must say I'm impressed!
For a long time I wanted an application like FishEye for our TFS source code repository, but unfortunately, FishEye only works with Perforce, CVS and Subversion...

CodeSaga was quite easy to set up, even though an MSI package would have been nice.
But I guess that is something Torkel might be working on in a near future.
One feature CodeSaga doesn't have yet is the charts of FishEye. But there is a tab already for it in the application, but the page behind it only displays this message:

"Interactive Silverlight charts coming soon to a theather near you!"

Very nice! I'm looking forward to get them into our installation.. :)

Torkel Ödegaard is a consultant at Avega and as far as I understand he created this application as a demo/sample application that shows what you can do with ASP.Net MVC. The application also utilizes some of the nice frameworks I also like very much (Castle Windsor, Rhino Tools) and Boo.

I will definitely look into the code when I get some time for it.
But hey, good for me: I will attend to a talk next tuesday where Torkel is going to speak about ASP.Net MVC. I guess I will ask one or two questions about CodeSaga :)

Etiketter: , , , , , ,


tisdag, oktober 14, 2008

 

Helping young hackers understand the importance of software testing?

I recently saw this fun picture over here:


(and I thought it would be fun for others as well - yes, I know this would probably be classified as nerd humor)

Etiketter: , ,


Prenumerera på Inlägg [Atom]