Problem: generics, XMTA and VS SP1
After installing Visual Studio SP1 a project cannot be compiled when compiling, for example, the following code and there is an XMTA file in the project:
publicclassTest1<T1>where T1 : System.Windows.Forms.Control
{
}
publicclassTest2 :Test1<System.Windows.Forms.Control>
{
}

