For all those who have ASP.Net sites, all versions included, please pay special attention to this security issue: details on this entry from ScottGu.
Free eBook: Moving to Microsoft Visual Studio 2010
Thanks to Éric for publishing the news. A free book of over 300 pages, it’s not every day you get that!
Windows Phone 7 Developer Tools Available
The tools for developing for Windows Phone 7 are now available in the final version. You can download them here. For more information, read Scott’s excellent article.
Microsoft Ribbon in WPF now available
The WPF team recently released a new Ribbon completely in WPF (no wrapper around native code). So you can play with your XAML to give it the look and contextual menus you want!
See Pete Brown’s article
WPF Team Blog: Introducing the Microsoft Ribbon for WPF
LightSwitch Beta 1 now available
I previously talked to you about LightSwitch, now you can download the Beta 1 version.
Go ahead, have fun!
Orchard Project Beta
The 0.5 beta version of the Orchard project has just been released. Here are 4 points that I really like about this engine:
- ASP.Net MVC
- Allows multiple Wikis under the same site
- Management of static pages
- AND ABOVE ALL, the ability to translate posts and pages into different languages!! Which is quite rare in this field.
You can download the source code or simply install it with WebPI
Unveiling Microsoft LightSwitch
Microsoft has just unveiled LightSwitch, a tool for developing business applications without having to touch the code. Jason Zander provides an excellent introduction on his site.
There will be a template for C# and VB. At first glance, the generated application seems to run on WPF for the Desktop version, and probably Silverlight or XBAP for the web version.
The beta will be available on August 23rd.
Stay tuned
How to Create Your StyleCop Rules
StyleCop is a free tool from Microsoft that allows you to check the style of your code (or others’). Additionally, StyleCop is now available as Open Source (on Codeplex), so I strongly recommend looking at the default rule implementations to help you create your own.
Create Your Rules
Here are some steps to create your custom StyleCop rules:
- Install the latest version of StyleCop
- Download the SDK of StyleCop (documentation .chm file)
- Start Visual Studio
- Create a new project of type “Class Library”
- Add the following references - Microsoft.StyleCop - Microsoft.StyleCop.CSharp - Microsoft.StyleCop.CSharp.Rules
The updated Visual Studio 2010 keyboard shortcuts posters.
The Visual Studio 2010 keyboard shortcuts posters (in English only) have been updated (C++, C#, F#, and VB).
Customization of DataGridView
I have uploaded two source files that allow you to add a “Progress Bar” type column to a DataGridView.