ReShaper 5.1 Early Access Program is Open
May 20th, 2010 by Jura GorohovskyA couple of weeks ago we posted a blog entry on known issues in ReSharper 5.0 and workarounds, and today we’re taking the next logical step by opening a new Early Access Program for ReSharper 5.1 to fix them. If you’ve having issues with ReSharper 5.0, please start downloading ReSharper 5.1 nightly builds: it should feel much better.
Here’s a quick list of fixes that the Early Access Program presumably brings:
- Typing latency in ASP.NET Web Forms and MVC is considerably reduced.
- Code-behind files in ASP.NET projects don’t disappear when saving files anymore.
- Splitting Visual Studio text editor tabs does not result in ReSharper features disappearing from one or both tabs.
- Silverlight 4 support is fixed: no more error highlighting when referencing Silverlight 4 code from a regular .NET assembly.
- Encoding issues when working with XAML files are resolved.
If something goes wrong, please report issues to our YouTrack project.
Tags: eap, ReSharper, ReSharper 5.1

May 21st, 2010 at 1:43 pm
How about a rss feed of the builds ?
May 22nd, 2010 at 4:51 pm
@Aaorn
Not sure about that really.
If you’re registered in our Confluence installation, you can subscribe to watch updates to the Nightly Builds page.
May 25th, 2010 at 10:21 am
Is there any performance improvement? the 5.0 is totally a disaster.
May 26th, 2010 at 5:57 pm
@Kevin,
The easiest way to know is to just try and see.
What’s your scenario in which you experience low performance?
May 27th, 2010 at 11:34 am
@Kevin
R# 5.0’s performance is really good, compared with earlier versions. Especially when using lots of lambda expressions. I have to defend jetbrains here, they’ve done a wonderful job.
May 27th, 2010 at 2:32 pm
I’ll add my vote for a real RSS feed for nightly builds. RSS updates are easy and convenient, they don’t require registration (and yet one more password to remember), they’re grouped together with all the other sorts of things I watch via RSS, and (since I assume watching in Confluence means getting the updates via e-mail instead of in a feed reader) RSS updates never have to worry about getting lost by e-mail spam filters.
May 27th, 2010 at 2:41 pm
@Aaorn, @Kevin
Added a request about an RSS feed: http://youtrack.jetbrains.net/issue/RSRP-180339
Vote for it if you like.
June 1st, 2010 at 6:15 pm
When will there be new builds? All I can see is from May 20. and that build didn’t work for me (I couldn’t make it see the references to the System.Linq namespace, which made it pretty much unusable for me).
June 1st, 2010 at 6:19 pm
@Kenneth
A new build is expected to be available today (really soon according to our QA engineer). Subsequent builds will come out more frequently than this time.
July 6th, 2010 at 1:00 pm
Hi, I get an exception in resharper 4.5 when I create a test fixture across partial classes (a cheap way to create a shared fixture). The exception browser isn’t submitting the bug, vhich is why I’m posting here, but that fault is more than likely at my end.
Here is an example, hope the code posts ok.
——————————————————————
using System.Data;
using MbUnit.Framework;
namespace PartialClassesCheapSharedFixture
{
[TestFixture]
public partial class DataLayerTests
{
public DataTable TestData = new DataTable(”name”);
}
}
——————————————————————-
using MbUnit.Framework;
namespace PartialClassesCheapSharedFixture
{
public partial class DataLayerTests
{
[Test]
[Category("Employee DAL Tests")]
public void EmployeeSavesOk()
{
Assert.IsNotNull(this.TestData);
}
}
}