Microsoft’s upcoming “Oslo” modeling initiative is about tools and languages. MGraph is the piece within the language “M” that defines values, while MSchema is for schemas, functions and constraints and MGrammar is for textual DSLs. “Oslo” is still CTP and it will take some time until all concepts are available for production use.
By then, Microsoft [...]
Archive for December, 2008
Microsoft “Oslo” MGraph – the next XML?
Posted in dotnet, mdsd, oslo, tagged labeled directed graph, M, mdsd, MGraph, Microsoft "M", Microsoft Oslo, oslo on December 10, 2008 | 19 Comments »
Retrieving the base definition for a PropertyInfo – .NET reflection mess
Posted in Uncategorized on December 10, 2008 | 2 Comments »
The Problem
Lets say you got a ClassA with SomeProperty and SomeMethod, plus a ClassB implementing ClassA and overriding both members.
public class ClassA
{
public virtual bool SomeProperty
//..
public virtual bool SomeMethod()
//..
}
public class ClassB : ClassA
{
public override bool SomeProperty
[...]
Run R# tests without switching to the mouse
Posted in Just Drops, dotnet, tagged hotkeys, R#, TDD, tipps on December 8, 2008 | 3 Comments »
As I do test-driven development, I find it annoying to switch over to the Mouse every time I want to run my tests.
So I just hooked up a hotkey for running unit tests.
CTRL+ALT+T usually shows the Test Session pane – I’ve never used it, so I assigned it to:
ReSharper.UnitTest_ContextRun
Context_Run runs the test method your cursor [...]