I can't find what's new in Razor 3. It seems like a silly question, but I can easily find what's new in MVC 5, in EF 6, etc. - but I tried to google it, I tried asp.net, I tried Scott's blog - nothing. So I'm curious, does anyone actually know what's new in Razor 3? Thanks!
Asked
Active
Viewed 6,460 times
19
-
https://www.nuget.org/packages/Microsoft.AspNet.Razor/ – Robert Goldwein Oct 26 '13 at 23:30
-
4What's wrong with this question that it was downvoted? – Robert Goldwein Oct 26 '13 at 23:44
-
@scartag MVC 5 requires Razor 3.0 and Web Pages 3.0. See the notes for upgrading from MVC4 to MVC5 here: http://www.asp.net/mvc/tutorials/mvc-5/how-to-upgrade-an-aspnet-mvc-4-and-web-api-project-to-aspnet-mvc-5-and-web-api-2 – Mike Brind Oct 27 '13 at 08:19
2 Answers
9
Here is a list of all the bugs fixed in Razor 3.
The three highlights are:
- Support for editing with tabs in VS2013.
- Support for URL rewrite
- Removing of the security transparent attribute.
The official release notes are coming out shortly.

Sklivvz
- 30,601
- 24
- 116
- 172

Yishai Galatzer
- 8,791
- 2
- 32
- 41
-
5Release notes are now officially out: http://www.asp.net/visual-studio/overview/2013/release-notes#TOC14 – Yishai Galatzer Oct 31 '13 at 16:11
4
There are no new features added in Razor 3 or Web Pages 3 - just some bug fixes. Given that, I have no idea why Microsoft haven't publicised any release notes specific to these two products. I have reached out to them on that. I shall update the answer when I get a response.
UPDATE
Yishai has kindly come back to me and provided details below as well.

Mike Brind
- 28,238
- 6
- 56
- 88
-
Thanks, I tried to write them too before I posted this question - just out of the curiosity - so no response, so I just understand that once we want to switch to MVC5, we need to switch to Razor 3 as well. Or maybe in some long Winter nights I'll just check the source code... :) – Robert Goldwein Oct 28 '13 at 08:32
-
I also considered getting Code Compare out, but in the meantime I am optimistic that I will get some kind of response. I know of one fix though - in relation to Web Pages validation controls not working in RenderPage scenarios in Web Pages 2. They do in version 3. – Mike Brind Oct 28 '13 at 09:56