среда, 2 ноября 2011 г.

Visual Studio Feeds English

Visual Studio Feeds English


Review – InRule: A Business Rules Management System for .NET

Posted: 02 Nov 2011 01:25 PM PDT

I don't usually do a product profile unless I either really like the product and use it myself, or I'm genuinely curious about

Working with LiveTiles in Metro Applications

Posted: 02 Nov 2011 01:10 PM PDT

Live Tiles are not new from Microsoft. We already have Live Tiles introduced in Windows Mobile 7 interfaces. Live tiles in Metro applications

Psychowalkman app Review

Posted: 02 Nov 2011 12:09 PM PDT

Psychowalkman for Windows Phone 7 is a new app that uses rhythmic sound and flashing light to alter the brainwave frequency of the

MegaVideo For WP7 Review

Posted: 02 Nov 2011 12:09 PM PDT

by Kate Brown "MegaVideo For WP7" will give you the chance to watch your favorites MegaVideo series and movies on your WP7 (also in

Using FluentValidation with FubuMvc

Posted: 02 Nov 2011 11:54 AM PDT

 Create the validation behavior     public class ValidationBehaviour : BasicBehavior where T : class     {         private readonly IContinuationDirector continuationDirector;         private readonly BehaviorGraph behaviorGraph;         private readonly IFubuRequest fubuRequest;         private readonly IValidator validator;         public ValidationBehaviour(IContinuationDirector continuationDirector, BehaviorGraph behaviorGraph, IFubuRequest fubuRequest, IValidator validator)             : base(PartialBehavior.Ignored)         {             this.continuationDirector = continuationDirector;             this.behaviorGraph = behaviorGraph;             this.fubuRequest = fubuRequest;             this.validator = validator;         }         protected override DoNext performInvoke()         {             var inputModel = fubuRequest.Get();             var validationResult = validator.Validate(inputModel);             if (validationResult.IsValid)             {                 return DoNext.Continue;             }             fubuRequest.Set(validationResult);             var actionCall = GetActionCallFromBehaviorGraph();             continuationDirector.TransferToCall(actionCall);             return DoNext.Stop;         }         private ActionCall GetActionCallFromBehaviorGraph()         {             return behaviorGraph                 .Behaviors                 .Where(chain => chain.FirstCall().HandlerType.Namespace == typeof(T).Namespace && chain.Route.AllowedHttpMethods.Contains(WebRequestMethods.Http.Get))                 .Select(chain => chain.FirstCall())                 .First();         }     } Tell FubuMvc when to use the validation behavior public class ValidationConfiguration IConfigurationAction public void Configure(BehaviorGraph

Using the Microsoft Codename “Social Analytics” API with Excel PowerPivot and Visual Studio 2010

Posted: 02 Nov 2011 11:39 AM PDT

The SQL Azure Labs team announced the availability of a new Microsoft Codename "Social Analytics" program on 10/25/2011. See my SQL Azure

Windows Azure SDK Error when launching compute emulator - Encountered an unexpected error ...

Posted: 02 Nov 2011 11:23 AM PDT

What if you launch Windows Azure Computer Emulator in your Windows machines and return the following error: C:\Program Files\Windows Azure SDK\v1.5>csrun

Getting started with the Azure Hosted TFS (aka TFSPreview): Creating a New Team Project

Posted: 02 Nov 2011 10:36 AM PDT

Once you have successfully signed in to your environment, you are at the welcome screen, from here we will need to go to

The Peter-Principled Pointy-Haired Bureaucrat

Posted: 02 Nov 2011 09:51 AM PDT

The phrase that most annoys me in the office is:   "but that's just the way it is. Anyway..." or "but we can't change that"   Blind allegience to

Episode 14 of Visual Studio Toolbox (Analyzing Your Code) is now live

Posted: 02 Nov 2011 09:36 AM PDT

In this episode (http://channel9.msdn.com/Shows/Visual-Studio-Toolbox/Visual-Studio-Toolbox-Analyzing-Your-Code), I look at how you can analyze your code to see if it meets coding standards. Standards are made

Комментариев нет:

Отправить комментарий