vote up 5 vote down star
1

I came across an issue that makes me think there is bug in the 3.0 framework. When I try to use extension methods I get the following error: Missing compiler required member 'System.Runtime.CompilerServices.ExtensionAttribute..ctor'

When using this simple code:

  public static class StringUtils
    {
        static void TestExtension(this String targetString) {

        }
    }

The only way to make this compile error go away is to add the following code:

namespace System.Runtime.CompilerServices
{
    public class ExtensionAttribute : Attribute { }
}

It's been a few months since I have used extensions methods, but I'm pretty sure I didn't have to do this. Has anyone else come across this issue?

flag

78% accept rate

15 Answers

vote up 2 vote down check

I just ran into this problem myself. In my case, it was because I converted a VS 2005/.Net 2.0 project to a VS 2008/.Net 3.5 project. The conversion tool kept references to System.Core 2.0, and I couldn't find an easy way to change the references to System.Core 3.5.

I ended up re-creating the project in VS 2008 from scratch, and it was created with proper references to System.Core 3.5

link|flag
+1 Merry Christmas – Corin Dec 25 '08 at 18:17
vote up 1 vote down

Your framework isn't high enough for Extension Methods.
That's a hack for making extension methods work without being in 3.5

link|flag
vote up 1 vote down

What version of .NET are you targetting? The ExtensionAttribute class is shipped in System.Core.dll (.NET 3.5), but you can re-declare it yourself if you want to use extension methods in .NET 2.0/3.0 (with C# 3.0, obviously). In fact, LINQBridge does this.

[update] However, I'm slightly confused, because the error you should see is:

Error 1 Cannot define a new extension method because the compiler required type 'System.Runtime.CompilerServices.ExtensionAttribute' cannot be found. Are you missing a reference to System.Core.dll? [snipped some path stuff]

link|flag
vote up 0 vote down

Extensions are introduced in C# 3.0, which on the other hand was introduced in .NET 3.5 so you can't really use them in .NET 3.0 directly.

link|flag
vote up 0 vote down

I have the target framework set to 3.5 in the project properties.

link|flag
In which case, I wonder if one of the assemblies you reference also declare this attribute (courtesy of being upgraded from .NET 2.0 with C# 3.0), and the compiler is having a hard time picking which one to use? Do you get this problem in a vanilla (clean) project with just the StringUtils etc? – Marc Gravell Oct 15 '08 at 17:44
(meaning: not System.Core.dll, and perhaps with an internal constructor) – Marc Gravell Oct 15 '08 at 17:45
vote up 0 vote down

Are you sure you are referencing the correct version of System.Core.dll?

link|flag
vote up 0 vote down

Yup. When I look under references an right click on System.Core and go to properties, it says "3.5.0.0" in the version column.

link|flag
vote up 0 vote down

Is this a web site project, by chance? Try changing the target framework from .NET 3.5 to an earlier version, and then back to .NET 3.5.

link|flag
vote up 0 vote down

Yeah I tried that, but here is the interesting thing. I just created the same static class with the extension method in the web project and no compile errors. It only fails to compile in a MS Unit Test project.

I'm gonna try the same test in a standard class project using MbUnit to see if this is a limitation of the MS Unit Tests Project.

link|flag
vote up 0 vote down

Are you able to reference any other .NET 3.5 types? Can you call Enumerable.Range, for example?

Can you compile short but complete programs from the command line and introduce extension methods there?

link|flag
vote up 0 vote down

A missing System.Core reference will give these symptoms.

link|flag
vote up 2 vote down

in VS, click Project (next to File,Edit,View), select Properties

then in Application tab (you'll notice you're already in 3.5), select the Target Framework to 2.0, then compile (it will error). then put it back again to 3.5, then compile again, the error will disappear

i think it is just a small glitch in Visual Studio, just fool the IDE :-)

link|flag
I had this problem and this was the only solution that worked for me (inside VS). – Mario Sep 4 at 7:21
Definitely strange, but it worked for me as well! Can't argue with that, thank you! – billb Nov 23 at 17:03
vote up 0 vote down

Try: Project, Add Reference, find System Core 3.5.0.0 in the list, and OK to add it.

link|flag
vote up 0 vote down

Thank you Michael. This was the problem in my case :)

link|flag
vote up 1 vote down

This problem is indeed caused by an incorrect reference to version 2 of System.Core . This is normally caused when upgrading from an earlier version of .NET to .NET 3.5 . If it is a website that you are experiencing this problem in then it can be remedied by following the steps below:

1) In web.config add a reference to System.Core v3.5:

<assemblies>
   <add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
</assemblies>

2) In web.config add the following as a child of configuration:

<configuration>
   <!--Some other config-->
   <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
         <assemblyIdentity name="System.Core" publicKeyToken="B77A5C561934E089"/>
         <bindingRedirect oldVersion="2.0.0.0-2.1.0.0" newVersion="3.5.0.0"/>
      </dependentAssembly>
   </assemblyBinding>
</configuration>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.