Opening Salvo: Planning your SCM for a Silverlight project

One of the easiest decisions to make when embarking on a Silverlight development adventure, is to decide to use a Source Code Manager (SCM) to keep the myriad projects and files organized. I shall leave it up to you to decide which SCM to use. As far as setting up the SCM environment, there are … Continue reading Opening Salvo: Planning your SCM for a Silverlight project

Different versions of Silverlight 3?

Yes! In fact, it turns out that the subtle difference between the four different versions of Silverlight 3 have caused me several hours of frustration. To see which version you have, go to C:\Program Files\Microsoft Silverlight.  There have been several: Build 3.0.50106.00 Released January 19, 2010 Build 3.0.40818.0 Released September 1, 2009 Build 3.0.40723.0 Released … Continue reading Different versions of Silverlight 3?

Pre-Generating Entity Framework Views with Embedded Metadata

Problem: When you are using embedded metadata in your Entity Framework project, the MSDN topic for How to: Pre-Generate Views to Improve Query Performance (Entity Framework) comes up short. Solution: This posting shows a simple (if tedious) technique for working with both embedded metadata and the pre-generated views. Step 1: Edit the XML of your … Continue reading Pre-Generating Entity Framework Views with Embedded Metadata

Maven2 Log4J and JMX dependencies

Aarg!  What a nightmare.  I finally -- fine, call me stupid -- figured out where to/how to get the JMX dependencies for Log4J. I am using Commons Logging, which in turn, likes to use Log4J.  So, I added this to my Maven project file (pom.xml): <dependency>   <groupId>log4j</groupId>   <artifactId>log4j</artifactId>   <version>1.2.15</version> </dependency> However, log4j … Continue reading Maven2 Log4J and JMX dependencies