Hi Jordan, Don't know if you've worked this one out. But I figured I'll answer, as I had the same issues some time back.
To build the entire solution, simply type "build" from a command line to execute the build.cmd file. To build only the Silverlight 2 version type: "build platform-silverlight20" If you've installed Silverlight 2 RC0 this will yield the following message: "*[echo] Silverlight v2.0 is not available. Skipping platform.*" The problem is how the NAnt Silverlight Build tasks detects if Silverlight is installed or not. It looks for a hard-coded path at C:\program files\Microsoft Silverlight\*2.0.30523.8* - Which is the location of Beta 2.0. If you've upgraded you don't have this path anymore. The easiest fix is to create this folder, and copy the content from the RC0 folder (*2.0.30923.0*) into the Beta 2 folder (*2.0.30523.8)*. That way you can "trick" the NAnt build task and get it to build against RC0. The "real" fix off course is to re-build NAnt with this fix, and update the compiled version of NAnt under your Ninject folder structure. Hope this solves your problem :) Cheers, Jonas On Fri, Oct 3, 2008 at 3:46 PM, Jordan Knight <[EMAIL PROTECTED]>wrote: > Hi Guys, > > > > I need to build Ninject to get the latest updates (against SL). I have the > SVN repo checked out, just wondering how to actually build the SL > assemblies. > > > > Cheers, > > > > Jordan. > > > ------------------------------------------------------------------- OzSilverlight.com - to unsubscribe from this list, send a message back to the list with 'unsubscribe' as the subject. Powered by mailenable.com - List managed by www.readify.net
