It must be a somewhat common event to change the name of a property and expect the Rename functionality in Visual Studio to take care of all the necessary renaming, except f
You should check out this blog post. It gives you the ability to do this:
string propertyName = TypeHelper.GetPropertyName(u => u.LastProjectCode);
PropertyInfo property1 = TypeHelper.GetProperty((SomeClass o) => o.InstanceProperty.Length);
PropertyInfo property2 = TypeHelper.GetProperty(() => SomeClass.StaticProperty.Length);
Renames in Visual Studio/Resharper/Refactor Pro should work for you then.