VS2008 and .Net 3.5 SP1 Beta - Should You Fear This Release?
The Beta of .NET 3.5 and VS2008 SP1 is out. I'm sure everyone is blogging the heck out of it, so I'll try to add my own specific kind of value. There's fixes, many improvements (some subtle, some dramatic), and some new technology.
Should You Fear This (Beta) Release?
Maybe a little bit. Don't be afraid of the new assemblies or the bug fixes, I have found them to be very good and have no stability problems, but this Service Pack Installer might cause you some trouble in this beta, especially if you already have beta stuff installed over the top of VS2008RTM (the original version). It'll be correct when it releases later this summer.
Now, if you're going to decide to install a Beta of a Service Pack, do read the ReadMe and ScottGu's post. Go ahead, I'll wait here. OK, if you're already running some beta stuff, like the Silverlight Tools for Visual Studio, you'll want to uninstall that FIRST, otherwise you'll get an error and be upset. This will also be figured out when the SP actually releases, but be warned.
In this release, I have found the Progress Bar is wonky on XP and 2k3. It might say failed, and then succeed. Watch for the final message, not the bar. This will be fixed. Be aware also that it can be a long-ass install so get a coffee and pillow.
On the developer side, this is much more than just a "tightening of the screws" release, as it also kind of breaks a few rules and introduces some new stuff I've been personally waiting for.
What's New?
ASP.NET Dynamic Data, ADO.NET Data Services ("Astoria"), ADO.NET Entity Framework (LINQ to Entities) are all additive. ScottGu has an extensive post detailing all the interesting bits.
Here's my explanation on ASP.NET Dynamic Data and why you might care. I've been doing talks around on ADO.NET Data Services, sharing my thoughts on how its RESTfulness relates to ASMX/SCF Web Services and WS-*.*, and I'm going to dig deeper into it this year because I think it's pretty sweet, especially if Ayende and I (mostly him) get it running over NHibernate. The ADO.NET Entity Framework can be plugged in underneath both ASP.NET Dynamic Data and ADO.NET Data Services, so taken as a whole, the data story is starting to be a lot clearer and more useful and I'm continuing to work/push for all this stuff over POCO (Plain ol' CLR Objects) whenever possible and/or appropriate.
For this release I've personally recorded seven (whew!) How-To Videos on ASP.NET Dynamic Data and the Dynamic Data Samples can be downloaded here. They videos and samples are short, sweet and to the point. I'm also hoping to do more integration-style videos showing all this stuff working together in something of a larger context.
There's also a bunch of fixes like VS2008 starts faster and the IDE is snappier in spots, the WPF Designers are beefed up, and a bunch of editor/designer bugs have been squashed.
Don't Mess With My GAC, Dude!
UPDATE: Patrick Smacchia, who certainly knows his product better than I, has posted a follow up with more detailed information about what's changed in .NET 3.5 SP1.
On the .NET 3.5 side of things, since this is an SP (Service Pack), yes, some stuff goes in your GAC and gets changed. However, the changes are completely additive. That means if an API's method signature has changed, that's a bug that we need to fix. It will be a fully compatible service pack release. It shouldn't break any of your existing code.
There's roughly 50 new or modified types throughout or about 80 to 100 if you count Dynamic Data. On the WPF side, there's a bunch of new stuff in System.Windows.Effects that will make WPF people happy. There's a new WebBrowserControl in System.Windows.Controls that's like "whew! about time!" as well as new DataBinding support in System.Windows.Data.
When folks tell me that things have changed, I personally don't always take their word for it, and would rather dig in and find out for myself what's changed in what assemblies.
As far as I know there are four major tools for doing Assembly Differences (some have been added since I blogged about Assembly Differences last year):
- Libcheck - Over three years old, obscure, command-line, confusing, but still useful. I used this when diffing .NET 2.0 and 3.5 a while back.
- Framework Design Studio - A recent tool by Krzysztof Cwalina, a personal hero of mine, along with his helpers Hongping Lim and David Fowler, it has both a GUI and a command-line option.
- BitDiffer - This new tool from Greg Ennis is very polished and includes both a GUI and Command Line version. If it supported drag-and-drop it'd be even better. Unfortunately it crashed while I was trying to diff these assemblies.
- NDepend - Last, but not least, a favorite tool of mine that I've blogged about and podcast about has been dramatically updated to do Assembly Diffs as well in a very cool way. The tool is very polished and lets you compare projects, dlls, supports drag and drop and is generally polished and wonderful, so I ended up using this tool.
So, Libcheck is frustrating, FDS is close, but only creates a text-based report on what's changed, BitDiffer crashed, and while NDepend does have some weird painting issues, but I was able to create this diagram with NDepend:
Here's a close up (you can get the whole picture by clicking on it). In this example I was hovering over a method that was blue, and got a tooltip indicating that a method has changed in that type.
I created the graphic by getting the DLLs from the GAC on a .NET 3.5 machine and the DLLs from a .NET 3.5 SP1 machine. Then I put them in two different folders on a machine that *did not have .NET 3.5 on it* to avoid any wackiness. Then I ran this Code Query Language (CQL) query:
SELECT METHODS WHERE CodeWasChanged
The results of that query were displayed in a number of ways, the most interesting one being the Metrics View. I set the metric to show the # of methods. In this example, 1 method = 104 pixels. Blue methods are CHANGED methods. Then I took 2 screenshots while scrolling horizontally and stitched them together in Paint.NET.
You'll see when you look at the diagram that there's some fixes here and there, but from a visual 20,000 foot view, perspective, nothing major that looks like more than bug fixes or smells of a systemic issue. Focusing on the Bug Fixes, it's onesy-twosy, bug fixes within a method here and there. The complete list of fixes is here and here.
BTW: I'm a huge NDepend fan, but I'm not associated with company at all, other than being a fanboy.
My Conclusion
Now that you've been both educated and warned, if you're not willing to wait a bit, you can download the VS2008 SP1 BETA here. Remember, this is a BETA of a Service Pack, so I'm personally continuing to install only on Virtual Machines that have VS2008 RTM.
If you have anything Beta that's layered on top of VS2008, like the Silverlight Tools, or something like that, back those off first, before installing this SP, and again, read the readme, as most known to-be-fixed issues are called out there already.
As ScottGu says:
"It will be a fully compatible service pack release. We plan to ship the final release of both .NET 3.5 SP1 and VS 2008 SP1 this summer as free updates. "
So I'm feeling good about the final release later this year. But, for this beta, I don't want to take any chances with installer issues so it just seems prudent that I keep my primary machine on the initial version of VS2008/.NET3.5 until this SP1 is released. Have fun!
Related Links
- VS2008 and .NET Framework 3.5 SP1 (Beta) COMBINED
- Exiting the Zone of Pain with NDepend and my Podcast on NDepend
About Scott
Scott Hanselman is a former professor, former Chief Architect in finance, now speaker, consultant, father, diabetic, and Microsoft employee. He is a failed stand-up comic, a cornrower, and a book author.
About Newsletter
http://haacked.com/archive/2008/05/12/sp1-beta-and-its-effect-on-mvc.aspx
thanks
Most importantly I can see people thinking "it's just a service pack, I'll deal with it later, it works perfectly now". A better name would be to call it 3.6 or 3.55 or something that makes people really get that there are A LOT of improvements and additions to .NET 3.5 SP1 (which I hope you will not call it).
Best regards.
Just wanted to let you guys know about my tool to compare Assembly Differences. It's not as fancy and polished as the others, but it's free. Just looks at the exposed API and shows a Tree view of differences. This tool uses reflection to inspect the libraries. I built it a while back when I could not find one, and libcheck is too much a chore to use. If it gets more popular, I would invest more time on it.
http://www.schneidersoft.com/API-Diff/GUI//setup.exe
Thanks,
Schneider
Mojtaba - Nope, I think that the date won't slip, but I'm guessing. I'm not on the team.
James - I would tend to agree, but how else do we get feedback and bugs unless folks try the beta? We can't be the only ones who test.
Well if it is a SP, I don't understand why they release a beta SP with know issues. The whole Idea is to fix problems, not create more...
Why don't they fix them first?
Thats why I won't try it...
Actually there is an option in NDepend to take 'poster snapshot':
Tools -> Snapshot -> Create a Snapshot of the Metric View
This let you create a poster of the metric view, up to 9999 x 9999 pixels.
The same with:
Tools -> Snapshot -> Create a Boxes and Arriws Dependencies graph
Tools -> Snapshot -> Create a Snapshot of the Dependencies Matrix
A copy is available here:
C:\Windows\Microsoft.NET\Framework\v2.0.50727
C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\v3.0
C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\v3.5
But of course, not stored side by side.
I'm just a bit sad because there's no many to many support in LINQ to SQL and the whole ASP.NET Ajax product is developing sloooooow when compared to other javascript toolkits.
Thanks for post Scott. This gives us a good heads up.
I just have one question, when and how do you get the time to try all this out? Are you outsourcing all this? ;)
Great post on the new SP. Also I really enjoyed the screen casts on Dynamic Data. I remember playing around with an early release of this when MVC first showed it's face. I think it has been largely overlooked because of MVC and the dynamic data seems very powerful an quite a time saver. My question for you though is considering the template architecture do you have any advice on Unit Testing a site that uses Dynamic Data technologies.....More screencasts on this topic would be wonderful :)
Comments are closed.