Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to see how new C# 5.0 asynchronous (CTP) features will work. I also use ReSharper. But because it is only a CTP, ReSharper doesn't support new keywords (asynch/await) and highlights them as errors.

This is how it looks (code from CTP samples)

ReSharper failed to understand async await keywords

Is it possible to make ReSharper just skip these words for now?

UPDATE

I tried Early Access Program ReSharper build 6.0.2151.53 (10 May 2011) with no luck. The issue is still there so if you want it to be resolved give your vote here (following Peter's answer).

share|improve this question
Most of the suggestions I see from ReSharper come with an option to place a comment around the found issue to keep ReSharper from complaining. Maybe this is true for yours, too? Try Alt+Enter and see what options came up in the context menu. – Uwe Keim May 14 '11 at 17:37
1  
@Uwe Keim I have put a screenshot. It seems there is no option for that. – oleksii May 14 '11 at 17:55

3 Answers

up vote 4 down vote accepted

The Early Release of Resharper 6.1 now supports the async CTP.

If you can, it'd probably be worth waiting for the proper release version though.

share|improve this answer

Async is a new language syntax that is not yet RTM, so Resharper has yet to support it. If you feel this is important, the issue is being tracked b Jetbrains and you can vote for it here: http://youtrack.jetbrains.net/issue/RSRP-196518?projectKey=RSRP

share|improve this answer
Thanks for the answer. Following your advice I have just voted there – oleksii May 15 '11 at 14:53

As you can read from the comments made on the issue you mentioned yourself, 5.1.3 has no support for them yet and from what I understand there are no plans to release a fix for this any time soon.

But ReSharper 6 is just around the corner and it's already available through the Early Access Program. Have you tried that? I cannot try it myself right now, but I would assume it might already support the new keywords.

share|improve this answer
To expand on this answer you can find the MEAP nightly builds at confluence.jetbrains.net/display/ReSharper/… . – Mike May 14 '11 at 21:09
@Mike Thanks for the answer, I will give it a try and let you know. – oleksii May 15 '11 at 9:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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