Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Earlier today we shipped a public beta of our upcoming .NET 3.5 SP1 and VS 2008 SP1 releases.  These servicing updates provide a roll-up of bug fixes and performance improvements for issues reported since we released the products last November.  They also contain a number of feature additions and enhancements that make building .NET applications better (see below for details on some of them).

We plan to ship the final release of both .NET 3.5 SP1 and VS 2008 SP1 this summer as free updates.  You can download and install the beta here.

Important: SP1 Beta Installation Notes

The SP1 beta released today is still in beta form - so you should be careful about installing it on critical machines.  There are a few important SP1 Beta installation notes to be aware of:

1) If you are running Windows Vista you should make sure you have Vista SP1 installed before trying to install .NET 3.5 SP1 Beta.  There are some setup issues with .NET 3.5 SP1 when running on the Vista RTM release.  These issues will be fixed for the final .NET 3.5 SP1 release - until then please make sure to have Vista SP1 installed before trying to install .NET 3.5 SP1 beta.

2) If you have installed the VS 2008 Tools for Silverlight 2 Beta1 package on your machine, you must uninstall it - as well as uninstall the KB949325 update for VS 2008 - before installing VS 2008 SP1 Beta (otherwise you will get a setup failure).  You can find more details on the exact steps to follow here (note: you must uninstall two separate things).  It is fine to have the Silverlight 2 runtime on your machine with .NET 3.5 SP1 - the component that needs to be uninstalled is the VS 2008 Tools for Silverlight 2 package.  We will release an updated VS 2008 Tools for Silverlight package in a few weeks that works with the VS 2008 SP1 beta.

3) There is a change in behavior in the .NET 3.5 SP1 beta that causes a problem with the shipping versions of Expression Blend.  This behavior change is being reverted for the final .NET 3.5 SP1 release, at which time all versions of Blend will have no problems running.  Until then, you need to download this recently updated version of Blend 2.5 to work around this issue.

Important Update: If you previously installed a VS 2008 Hotfix, you must run the HotFix Cleanup Utility before installing the VS 2008 SP1 Beta.  Click here to download and run this.

Improvements for Web Development

.NET 3.5 SP1 and VS 2008 SP1 contain a bunch of feature improvements targeted at web application development. 

The VS Web Dev Tools team has more details (including specific bug fix details) on some of the VS specific work here.  Below are more details on some of the work in the web-space:

ASP.NET Data Scaffolding Support (ASP.NET Dynamic Data)

.NET 3.5 SP1 adds support for a rich ASP.NET data "scaffolding" framework that enables you to quickly build functional data-driven web application. With the ASP.NET Dynamic Data feature you can automatically build web UI (with full CRUD - create, read, update, delete - support) against a variety of data object models (including LINQ to SQL, LINQ to Entities, REST Services, and any other ORM or object model with a dynamic data provider).

SP1 adds this new functionality to the existing GridView, ListView, DetailsView and FormView controls in ASP.NET, and enables smart validation and flexible data templating options.  It also delivers new smart filtering server controls, as well as adds support for automatically traversing primary-key/foreign-key relationships and displaying friendly foreign key names - all of which saves you from having to write a ton of code.

You can learn more more about this feature from Scott Hanselman's videos and tutorials here.

ASP.NET Routing Engine (System.Web.Routing)

.NET 3.5 SP1 includes a flexible new URL routing engine that allows you to map incoming URLs to route handlers.  It includes support for both parsing parameters from clean URLs (for example: /Products/Browse/Beverages), as well as support to dynamically calculate and generate new URLs from route registrations.

This new routing engine is used by both ASP.NET Dynamic Data as well as the new ASP.NET MVC framework.  It will support both WebForms and MVC based requests. 

ASP.NET AJAX Back/Forward Button History Support

.NET 3.5 SP1 adds new APIs to ASP.NET AJAX to allow you to better control the history list of a browser (enabling you to control the behavior of the back/forward button of the browser).

You can learn more about this feature in the article here and the screencast here.

ASP.NET AJAX Script Combining Support

.NET 3.5 SP1 introduces a new <CompositeScript> element on the <asp:ScriptManager> server control, which allows you to declaratively define multiple script references within it.  All the script references within the CompositeScript element are combined together on the server and served as a single script to the client, reducing the number of requests to the server and improving page load time for ASP.NET AJAX applications.

The script combining feature supports both path based scripts and assembly resource based scripts, and dynamically serves up the combined scripts using the ScriptResources.axd handler.

Visual Studio 2008 Performance Improvements HTML Designer and HTML Source Editor

In February we released a HotFix roll-up that included a number of performance improvements and bug fixes for the VS 2008 Web Designer.  VS 2008 SP1 includes all of these fixes, as well as a number of additional performance improvements.

Visual Studio 2008 JavaScript Script Formatting and Code Preferences

Visual Studio has for several releases supported rich source code formatting options for VB and C# (spacing, line breaks, brace positions, etc).

VS 2008 SP1 adds richer source code formatting support for JavaScript as well (both inline <script> blocks and .js files).  You can now set your Javascript coding preferences using the Tools->Options dialog:

These preferences will be automatically used as you type new Javascript code in the source editor.  You can also select existing code, right-click, and choose the "Format Selection" option to apply your style preferences to existing JavaScript code.  You can learn more about this new feature here.

Better Visual Studio Javascript Intellisense for Multiple Javascript/AJAX Frameworks

VS 2008 includes Javascript Intellisense support in source view.  The intellisense support with the initial VS 2008 release works well with vanilla JavaScript as well as code written using the ASP.NET AJAX JavaScript type patterns.  JavaScript is a very flexible language, though, and many JavaScript libraries use this flexibility to full advantage to implement their features - sometimes in ways that prevented the intellisense engine from providing completion support.

VS 2008 SP1 adds much better intellisense support for popular Javascript libraries (we specifically did work to support JQuery, Prototype, Scriptaculous, ExtJS, and other popular libraries).  You will get better default intellisense when you reference these libraries.  We are also looking at whether we can maintain additional intellisense hint files that you can download to get even better intellisense and documentation support for some of the more popular libraries.

Below is an example of using a JQuery startup function with the VS 2008 SP1 JavaScript intellisense engine:

Notice below how VS 2008 SP1 can now provide method argument completion even on chained JQuery selectors:

Visual Studio Refactoring Support for WCF Services in ASP.NET Projects

VS 2008 SP1 adds better refactoring support for WCF services included within both ASP.NET Web Site and ASP.NET Web Application Projects.

If you use the refactoring support to rename the class name, interface contract, or namespace of a WCF service, VS 2008 SP1 will now automatically fix up the web.config and SVC file references to it.

Visual Studio Support for Classic ASP Intellisense and Debugging

Previous versions of Visual Studio included support for intellisense and debugging within classic ASP (.asp) pages.  The file and project templates to create classic ASP pages/projects hasn't been in VS for a few releases, though, and with the initial VS 2008 we incorrectly assumed this meant that people weren't still using the classic ASP support.  We heard feedback after we shipped that indeed they were. 

With VS 2008 SP1 this support for classic ASP intellisense and debugging is back:

 

Visual Web Developer Express Edition support for Class Library and Web Application Projects

The Visual Web Developer 2008 Express edition (which is free) is being updated in SP1 to add support for both class library and ASP.NET Web Application project types.  Previous versions of Visual Web Developer Express only supported ASP.NET web-site projects.

Among other benefits, the support of class library and web application projects will enable ASP.NET MVC and Silverlight projects to be built with the free Visual Web Developer 2008 Express.  All of the above JavaScript, Dynamic Data, Classic ASP, and AJAX improvements work with Visual Web Developer Express as well.

Improvements for Client Development

.NET 3.5 SP1 and VS 2008 SP1 contain major performance, deployment, and feature improvements for building client applications. 

Tim Sneath has a great blog post that talks about some of the client improvements here.  Below are more details on them:

Application Startup and Working Set Performance Improvements

.NET 3.5 SP1 includes significant performance improvements to the CLR that enable much faster application startup times - in particular with "cold start" scenarios (where no .NET application is already running).  Much of these gains were achieved by changing the layout of blocks within CLR NGEN images, and by significantly optimizing disk IO access patterns.  We also made some nice optimizations to our JIT code generator that allow much better inlining of methods that utilize structs.

We are today measuring up to 40% faster application startup improvements for large .NET client applications with SP1 installed.  These optimizations also have the nice side-effect of improving ASP.NET application request per second throughput by up to 10% in some cases.

New .NET Framework Client Profile Setup Package

.NET 3.5 SP1 introduces a new setup package option for developers building .NET client applications called the ".NET Framework Client Profile".  This provides a new setup installer that enables a smaller, faster, and simpler installation experience for .NET client applications on machines that do not already have the .NET Framework installed.

The .NET Framework Client Profile setup contains just those assemblies and files in the .NET Framework that are typically used for client application scenarios.  For example: it includes Windows Forms, WPF, and WCF.  It does not include ASP.NET and those libraries and components used primarily for server scenarios.  We expect this setup package to be about 26MB in size, and it can be downloaded and installed much quicker than the full .NET Framework setup package.

The assemblies and APIs in the .NET Framework Client setup package are 100% identical to those in the full .NET Framework setup package (they are literally the same binaries).  This means that applications can target both the client profile and full profile of .NET 3.5 SP1 (no recompilation required).  All .NET applications that work using the .NET Client Profile setup automatically work with the full .NET Framework.

A developer can indicate that the client application they are building supports both the .NET Framework Client Profile and the full .NET Framework by pulling up the project properties page for a client application within VS 2008 SP1.  Within the project properties page they can select a new checkbox that indicates it only requires those assemblies included in the .NET Framework Client Profile:

VS 2008 will then ensure that the project can only reference those assemblies shipped in the client profile setup package (and it will generate a compile error if you try and use a type in an assembly not included in the client redist).  The compiled client application will then run on machines that have both the full .NET Framework installed, as well as machines that only have the .NET Framework Client Profile installed.

If you have a machine that only has the .NET Framework Client Profile installed, and you try and run a .NET application on it that did not mark itself as supporting the .NET Framework Client Profile, then the CLR will refuse to run the application - and will instead prompt the end-user to upgrade to the full .NET Framework package.  This ensures that applications always run correctly - and that developers do not need to worry about missing assembly exceptions at runtime if a user tries to run an application that requires the full .NET Framework on a machine that only has the .NET Framework Client Profile installed.

We believe that a large class of .NET client applications will be able to use this new .NET Client Profile setup to significantly speed up their installation, and enable a much more consumer friendly experience.

New .NET Framework Setup Bootstrapper for Client Applications

.NET 3.5 SP1 introduces a new "bootstrapper" component that you can use with client applications to help automate making sure that the right version of the .NET Framework is installed. 

The bootstrapper component can handle automatically downloading and installing either the .NET Framework Client Profile or the full .NET Framework Setup Package from the Internet if your machine doesn't have either of them installed.  The boostrapper can also automatically handle upgrading machines that have a previous version of the .NET Framework installed.  For example, if your machine already has .NET 3.0 installed, and your application requires .NET 3.5, the bootstrapper can optionally download just the update files needed to upgrade it to .NET 3.5 (and avoid having to download the full .NET Framework setup download).

The setup bootstrapper component can be used with both ClickOnce based setup packages, as well as with third party installer products (like Installshield).  The boostrapper optionally enables fully customized setup branding experiences (splash screens, custom setup wizard steps, etc) and should make it much easier to build optimized client setup experiences.

ClickOnce Client Application Deployment Improvements

.NET 3.5 SP1 includes several improvements for ClickOnce deployment of both Windows Forms and WPF applications.  Some of these improvements include:

  • Support for the .NET Framework Client Profile (all ClickOnce features are supported with it)
  • ClickOnce applications can now be programmatically installed through a ‘Setup.exe’ while displaying a customized, branded install UX
  • ClickOnce improvements for generating MSI + ClickOnce application packages
  • ClickOnce error dialog boxes now support links to application specific support sites on the Web
  • ClickOnce now has design-time support for setting up file associations
  • ClickOnce application publishers can now decide to opt out of signing and hashing the ClickOnce manifests as they see appropriate for their scenarios.
  • Enterprises can now choose to run only Clickonce Applications Authenticode signed by ‘Known Publishers’ and block anything else from running
  • FireFox browser extension to support Clickonce installations using FireFox browsers

Windows Forms Controls

SP1 adds several new Windows Forms controls - including new vector shape, Printing, and DataRepeater controls:

 

WPF Performance Improvements

.NET 3.5 SP1 includes several significant performance optimizations and improvements to WPF.  Some of the specific graphics improvements include:

  • Smoother animations
  • Hardware accelerated rendering of Blur and DropShadow Bitmap Effects
  • Text Rendering speed improvements - especially with VisualBrish and 3D scenes
  • 2D graphics improvements - especially with z-index scenarios
  • A new WriteableBitmap class that enables real-time and tear-free bitmap updates.  This enables custom "paint"-style applications, data visualizations, charts and graphs that optionally bypass the default WPF 2D graphics APIs.
  • Layered window performance improvements

SP1 also adds support for better data scalability in WPF.  The ListView, ListBox and TreeView controls now support "item container recycling" and "virtualization" support which allows you to easily achieve a 40% performance improvement with scrolling scenarios.  These controls also now optionally support a "deferred scrolling" feature which allows you to avoid scrolling in real time and instead wait until a user releases the scroll thumb (the default scrolling mode in Outlook). This can be useful when scrolling over very large data sets quickly. 

WPF Data Improvements

.NET 3.5 SP1 includes several data binding and editing improvements to WPF.  These include:

  • StringFormat support within {{ Binding }} expressions to enable easy formatting of bound values
  • New alternating rows support within controls derived from ItemsControl, which makes it easier to set alternating properties on rows (for example: alternating background colors)
  • Better handling and conversion support for null values in editable controls
  • Item-level validation that applies validation rules to an entire bound item
  • MultiSelector support to handle multi-selection and bulk editing scenarios
  • IEditableCollectionView support to interface data controls to data sources and enable editing/adding/removing items in a transactional way
  • Performance improvements when binding to IEnumerable data sources

WPF also now exposes hooks that enable developers to write custom panels w/ virtualized scrolling.  We'll be using this support together with the above data binding improvements to build the new WPF datagrid that will be shipping later this year.

WPF Extensible Shader Effects

.NET 3.5 SP1 adds support in WPF for a new shader effects architecture and API that allows extremely expressive visual effects to be created and applied to any control or element within WPF.  These shader effects support blending multiple input compositions together.  What makes them particularly powerful is that WPF executes effects (including custom effects you build yourself) using the GPU - giving you fully hardware accelerated graphics performance.  Like almost everything in WPF, you can also use WPF databinding and animation on the properties of an effect (allowing them to be fully integrated into an experience).

Applying an effect onto a Control is super easy - just set a Control's "Effect" property.  For example, to add a hardware accelerated drop-shadow effect on a button you can use the built-in <DropShadowEffect> on it via either code or XAML:

Which will cause the button to render like so:

Because Effects are extensible, developers can create their own custom Effect objects and apply them.  For example, a custom "DirectionalBlurEffect" could be created and added to a ListBox control to change its scroll appearance to use a blur effect if you rapidly scroll across it:

Keep an eye on Greg Schechter's blog to learn more about how the Effects architecture works and to learn how you can both create and apply new effects within your applications (his first set of posts are here). 

Note: In addition to introducing the new Shader Effects API, WPF in SP1 also has updated the existing Blur and DropShadow Bitmap effects already in WPF to be hardware accelerated.

WPF Interoperability with Direct3D

.NET 3.5 SP1 adds support to efficiently integrate Direct3D directly into WPF.  This gives you more direct access to the hardware and to take full advantage of the Direct3D API within WPF applications.  You will be able to treat Direct3D content just like an image within an application, as well as use Direct3D content as textures on WPF controls. 

For example, below are three samples from the Direct3D SDK:

We could either load them in as image surfaces within a WPF application, or map them as textures on WPF controls.  Below is an example of mapping them as textures onto cubes in a WPF 3D application:

Note: the Direct3D integration isn't today's SP1 beta release.  It will appear in the final SP1 release.

VS 2008 for WPF Improvements

VS 2008 SP1 includes several significant improvements for WPF projects and the WPF designer.  These include:

  • Several performance improvements
  • Events tab support within the property browser
  • Ability to sort properties alphabetically in the property browser
  • Margin snaplines which makes form layout much quicker
  • Better designer support for TabControl, Expander, and Grid
  • Code initiated refactoring now updates your XAML (including both control declarations and event declarations in XAML)
  • Go to Definition and Find All References now support things declared in XAML

The debugger has also been updated in SP1 so that runtime errors in XAML markup (for example: referencing styles, datasources and/or other objects that don't exist) will now be better identified within the debugger:

Data Development Improvements

.NET 3.5 SP1 and VS 2008 SP1 include a bunch of improvements for data development. Some of them include:

SQL 2008 Support

VS 2008 and .NET 3.5 are being updated to include support for the upcoming SQL 2008 release.  Visual Studio 2008 data designers, projects and wizards now fully supporting connecting and working against SQL 2008 databases. 

ADO.NET Entity Framework and LINQ to Entities:

.NET 3.5 SP1 includes the new ADO.NET Entity Framework, which allows developers to define a higher-level Entity Data Model over their relational data, and then program in terms of this model.  Concepts like inheritance, complex types and relationships (including M:M support) can be modeled using it.  VS 2008 SP1 now includes built-in designer support to help with this modeling:

The ADO.NET Entity Framework and the VS 2008 Entity Framework Designer both support a pluggable provider model that allows them to be used with any database (including Oracle, DB2, MySql, PostgreSQL, SQLite, VistaDB, Informix, Sybase, and others).

Developers can then use LINQ and LINQ to Entities to query, manipulate, and update these entity objects.

ADO.NET Data Services (formerly code-named "Astoria")

.NET 3.5 SP1 includes a flexible framework that enables the creation of REST-based data services.  Formerly code-named "Astoria", the ADO.NET Data Services framework provides support for publishing data through a standard REST URI syntax and using standard HTTP verbs to operate on the data resources.  Developers can easily expose data models created using the ADO.NET Entity Framework, and/or use a pluggable provider model to expose other data models.

In addition to publishing data sources, the framework also adds a client API for working with remote REST services.  Included with this client API is a LINQ library that allows the remote query of REST services.

WCF Development Improvements

.NET 3.5 SP1 and VS 2008 SP1 include several enhancements for WCF development.  Some of these include:

  • Significant scalability improvements (5-10x) in Web-hosted application scenarios
  • Support for using ADO.NET Entity Framework entities in WCF contracts
  • API usability improvements with DataContract Serializers, and with the UriTemplate and WCF web programming models
  • Enhanced TestClient support within VS 2008 SP1
  • New Hosting Wizard in VS 2008 SP1 for WCF Service Projects
  • Improved debugging support in partial trust scenarios

VB and C# Improvements

The VB and C# teams have also added some nice improvements to VS 2008 SP1:

Visual Basic

You can now add "XML to Schema" items to Visual Basic projects.  On adding these project items a wizard will open that allows you to create a XSD schema set from a variety of XML sources.  This schema set is then added to the project and it enables VB XML intellisense. This support was previously available as a web download - you can learn more about it here.

A XSD browser is also now included with VS 2008 SP1 and allows you to browse XSD schema sets.  With the final SP1 release, developers will be able to right-click on XML element names (either in XML properties or XML literals) in the VB code editor and select “Go To XML Schema Definition” - this will open the XSD browser and display the schema set (and select the current element) for the VB project.

C#

The C# code editor now identifies and displays red squiggle errors for many semantic code issues that previously required an explicit compilation to identify.  For example, if you try to declare and use an unknown type in the C# code-editor today you won't see a compile error until you do a build.  Now with SP1 you'll see live red squiggle errors immediately (no explicit compile required):

The debugger in VS 2008 SP1 has also been improved to provide more debugging support for evaluating LINQ expressions and viewing results at debug time:

LINQ enabled data sources now have a "Results View" node show up within the debugger watch window.  Expanding this node will evaluate a LINQ expression and allow you to examine the materialized objects it returns:

Team Foundation Server Improvements

TFS 2008 SP1 includes a ton of improvements.  Please read Brian Harry's Team Foundation Server 2008 SP1 Preview blog post for more details.

Summary

.NET 3.5 SP1 and VS 2008 SP1 provide a bunch of bug fixes, performance improvements, and additional feature enhancements that make building all types of .NET applications better.  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.  You can download and use the beta now here.

Hope this helps,

Scott

Published Monday, May 12, 2008 9:51 AM by ScottGu

Comments

# Visual Studio 2008 & .NET 3.5 Service Pack 1 יצא בגרסאת beta

Monday, May 12, 2008 12:59 PM by שחר.נט

לפני דקות ספורות, הוכרז על יציאת גרסאת הבטא הראשונה ל Service Pack 1 עבור .NET 3.5 ו- Visual Studio 2008

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 1:13 PM by Ben Hayat

Scott, it's amazing how efficient and successful you guys have become with rolling out new features. It wasn't too long ago when you talked about the new WPF, and here it is.

One question thought. Do you think some of these shading features (software enhancements and not using hardware) can lead to Silverlight? SL can really use some bitmap boost. The shading would be a great step to adding that 3D look&feel to objects!

Thank you for great work and waiting for your announcements on SL beta 2!

..Ben

# Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 1:15 PM by DotNetKicks.com

You've been kicked (a good thing) - Trackback from DotNetKicks.com

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 1:17 PM by Joel Rumerman

Holy Fixes! You guys seem to have been extremely busy! Can't wait to try out some of the new features and fixes.

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 1:18 PM by Satheesh

Excellent improvements!!

Welldone M$ !

# Visual Studio 2008 .NET 3.5 SP1 Beta &laquo; See Joel Program

Pingback from  Visual Studio 2008 .NET 3.5 SP1 Beta &laquo; See Joel Program

# Visual Studio 2008 and .NET 3.5 SP 1 Beta Download

Monday, May 12, 2008 1:24 PM by JohnPapa.net

Soma announced this morning that Visual Studio 2008 and .NET 3.5 SP 1 is now ready and can be downloaded . This includes several updates, includes support for SQL Server 2008, and has a few new products including the Entity Framework, LINQ to Entities

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 1:26 PM by Scott Prugh

Thanks for the info.  Are there any more details around the WCF changes in 3.5 SP1?  I am particularly interested in the DataContract/DataMember changes and changes around DataContractSerializer.  

Also, if you have any details around the perf improvements that would be great.

-Scott

# Elegant Code &raquo; Visual Studio 2008 Service Pack 1 - BETA

Pingback from  Elegant Code &raquo; Visual Studio 2008 Service Pack 1 - BETA

# Visual Studio 2008 and .NET 3.5 SP 1 Beta Download

Monday, May 12, 2008 1:29 PM by John Papa [MVP C#]

Soma announced this morning that Visual Studio 2008 and .NET 3.5 SP 1 is now ready and can be downloaded

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 1:30 PM by Roman Nikitin

Good news, Scott!

But... Is it possible to get full installer, not web downloader?

# Visual Studio 2008 e.NET Framework 3.5 SP1 Beta

Monday, May 12, 2008 1:36 PM by Il blog del team MSDN Italia

E' stata rilasciata la beta 1 della SP1 di .NET 3.5. Oltre alla normale correzione di&#160; bug, questa

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 1:36 PM by Jack M.

Where can we find a list of the namespaces included in the .NET Framework Client Profile (short of downloading and installing the beta)?

# Visual Studio 2008 SP1 Beta

Monday, May 12, 2008 1:39 PM by Paul Mooney

Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 BetaThese servicing updates provide a roll-up...

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 1:39 PM by Rob

So are there any improvements to loading database projects and using dbpro?

# VS 2008 e .NET Framework 3.5 SP1 Beta

Monday, May 12, 2008 1:39 PM by See Sharp

VS 2008 e .NET Framework 3.5 SP1 Beta

# Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta | How-to Build Your Own Home Studio

Pingback from  Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta | How-to Build Your Own Home Studio

# VS 2008 and .NET FX 3.5 SP1 (Beta)

Monday, May 12, 2008 1:40 PM by Keith Barrows - StarPilot

The beta has been released.&#160; Scott Guthrie has a huge list of what to expect . (The image should

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 1:42 PM by Sergey P.

Awesome news, Scott!

# WPF 3.5 & VS 2008 SP1 Beta

Monday, May 12, 2008 1:43 PM by Rob Relyea - Xamlified

Scott Guthrie just did the launch blog post about the .NET Framework 3.5 SP1 beta &amp; VS 2008 SP1 beta

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 1:43 PM by Chyld Medford

Wow!  You guys work like robots.  I can't believe how much you all have accomplished.  Great work.  I can't wait to try it out!!!

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 1:46 PM by gj

One Question

Silverlight?

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 1:54 PM by jesusgarza

"We will release an updated VS 2008 Tools for Silverlight package in a few weeks that works with the VS 2008 SP1 beta." Will it have the Beta 2 of Silverlight 2 or you will release this earlier?

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 1:55 PM by Matt Newman

I just skimmed this so far (lots of stuff to digest there) but something that did catch my eye was the MVC Routing engine is included. Does this mean .NET 3.5 will be the release of MVC or is it just part of it getting included with MVC itself being a seperate release?

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 1:55 PM by kevindente

Kudos for rolling out incremental improvements in the platforms and tools.

One question - we've enountered many bugs in WCF's svcutil.exe tool. Has any work been done on that tooling?

# Visual Studio 2008 and .NET 3.5 SP 1 Beta Download

Monday, May 12, 2008 2:04 PM by Community Blogs

Soma announced this morning that Visual Studio 2008 and .NET 3.5 SP 1 is now ready and can be downloaded

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 2:05 PM by James Hancock

Please tell me it isn't going to be a "few weeks" for us to be able to use silverlight with ADO.net Entities and stuff?!?  That's crazy!!!

Please, even if it's a ctp, give us something...

# Download Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta: ASP.NET Dynamic Data - ADO.NET Entity Framework - ADO.NET Data Services

Download the Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta.

# VS2008 & .Net Framework 3.5 SP1 Beta

Monday, May 12, 2008 2:14 PM by Сергей Лутай

Вышла SP1 Beta для VS2008 и .Net Framework 3.5. Более детально можно прочитать в блоге Scott Guthrie

# Visual Studio 2008 a.NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 2:15 PM by x2develop: Jiří Činčura

Visual Studio 2008 a.NET Framework 3.5 Service Pack 1 Beta je ke stažení na msdn.microsoft.com/.../cc533447.aspx

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 2:15 PM by paul.vencill

Wow.  fantastic work!  There seems to be a lack of Linq to Entities tutorials and the like out there (especially when compared to silverlight or MVC).  Any plans on blogging on it anytime soon?

# Data Services and Entity Framework beta bits available

Monday, May 12, 2008 2:19 PM by Pablo Castro's blog

The news are out. The ADO.NET Data Services Framework (Astoria) and the ADO.NET Entity Framework will

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 2:21 PM by Pavan Podila

After installing SP1, WPF Designer and XAML editing has broken. I keep getting this exception:

---------------------

Loading this assembly would produce a different grant set from other instances. (Exception from HRESULT: 0x80131401)

  at System.RuntimeTypeHandle.CreateInstance(RuntimeType type, Boolean publicOnly, Boolean noCheck, Boolean& canBeCached, RuntimeMethodHandle& ctor, Boolean& bNeedSecurityCheck)

  at System.RuntimeType.CreateInstanceSlow(Boolean publicOnly, Boolean fillCache)

  at System.RuntimeType.CreateInstanceImpl(Boolean publicOnly, Boolean skipVisibilityChecks, Boolean fillCache)

  at System.Activator.CreateInstance(Type type, Boolean nonPublic)

  at System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)

  at System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes)

  at System.Activator.CreateInstance(String assemblyName, String typeName, Boolean ignoreCase, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes, Evidence securityInfo, StackCrawlMark& stackMark)

  at System.Activator.CreateInstance(String assemblyName, String typeName)

  at System.AppDomain.CreateInstance(String assemblyName, String typeName)

  at System.AppDomain.CreateInstanceAndUnwrap(String assemblyName, String typeName)

  at System.AppDomain.CreateInstanceAndUnwrap(String assemblyName, String typeName)

  at MS.Internal.Package.VSIsolationProviderService.CreateIsolationProvider(String identity, AssemblyReferenceProvider assemblyReferences, IEnumerable`1 assemblyFolders)

  at MS.Internal.Providers.VSDesignerContext.GetIsolationProvider(IServiceProvider provider, IVsHierarchy hierarchy, AssemblyReferenceProvider assemblyReferences)

  at MS.Internal.Providers.VSDesignerContext.Initialize(IServiceProvider provider, IVsHierarchy hierarchy, UInt32 itemid, Object docDataObj)

  at MS.Internal.Providers.VSDesignerContext..ctor(IServiceProvider provider, IVsWindowFrame frame, Object docDataObj)

  at MS.Internal.Providers.VSDesignerContext.GetContext(IServiceProvider services, IVsWindowFrame frame, Boolean createIfNotExist)

  at MS.Internal.Designer.DesignerPane.InitializeDesigner()

# Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 2:22 PM by Scenes From A Developer Memory

Στο παρακάτω link, ο Scott Guthrie απαριθμεί τα νέα features που έρχονται με το SP1 για το .NET 3.5,

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 2:23 PM by BringerOD

Great! Some great new tools!

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 2:27 PM by ShaggyGI

Thanks for the update Scott.  Is there any way we could talk you into giving us the SL2 B2 controls list and a more narrow time of release???

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 2:28 PM by ScottGu

Hi Praveen,

>>>>> After installing SP1, WPF Designer and XAML editing has broken. I keep getting this exception

Sorry you are running into this.  Can you send me an email (scottgu@microsoft.com) with three details:

1) Did you install the Silverlight Tools on this machine before?

2) Did you uninstall the Silverlight tools and the separate KB patch that went with them?

3) What operating system are you running?  If you are running Vista have you confirmed that you have Vista SP1 installed?

4) What version of VS are you running?

The error you reported looks like it might be a result of one of #1->#3 which is why I'd like to understand better the status of those on your machine.

Thanks,

Scott

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 2:28 PM by Esbe8

Wow, congratulations on so many new things ! It hard to keep up with all those changes.

Are the APIs and features for ASP.NET "Routes", Data Scaffolding, Entity Framework and other additions frozen, meaning that they won't change until the final release ?

Will the new ASP.NET MVC be included in this SP1, or will it follow afterwards ?

I am also intrigued by the new .NET Framework Client Profile Setup Package. It smells like a multiplatform CLR is in the works (hey, most of it is already done with Silverlight). This feature would kind of be only useful for users without the .Net framework... Anything news coming for the next PDC ?

Thanks ;)

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 2:28 PM by Brian Henderson

Does Visual Web Developer 2008 Express SP1 Beta currently support ASP.NET MVC and Silverlight projects?  In particular wondering if Silverlight 2 Beta 1 SDK and Silverlight Tools Beta 1 for Visual Studio 2008 are supported.

Thanks,

--Brian

# .NET 3.5 SP1 Beta and WPF

Monday, May 12, 2008 2:31 PM by Tales from the Smart Client

Scott's blog has an extensive list of the new stuff: weblogs.asp.net/.../visual-studio-2008-and-net-framework-3-5-service-pack-1-beta.aspx

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 2:32 PM by vbedegi

Is there any hope to have Winforms designer support for generic forms/usercontrols?

# Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 2:34 PM by Rob Zelt - Lighting Up The Web

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 2:35 PM by ScottGu

Hi Brian,

>>>>>>>> Does Visual Web Developer 2008 Express SP1 Beta currently support ASP.NET MVC and Silverlight projects?  In particular wondering if Silverlight 2 Beta 1 SDK and Silverlight Tools Beta 1 for Visual Studio 2008 are supported.

Today's SP1 Beta doesn't support MVC and Silverlight just yet.  But the next MVC release later this month will support Express.  I need to double check the timeframe for when Silverlight tooks are enabled on express.  It is definitly happening, I just need to check to see whether it is with the next refresh drop or the one after that.

Thanks,

Scott

# Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 2:37 PM by Scenes From A Developer Memory

Στο παρακάτω link, ο Scott Guthrie απαριθμεί τα νέα features που έρχονται με το SP1 για το .NET 3.5,

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 2:37 PM by Dimitris-Ilias Gkanatsios

This is great news!!!

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 2:41 PM by ScottGu

Hi Esbe8,

>>>>>> Are the APIs and features for ASP.NET "Routes", Data Scaffolding, Entity Framework and other additions frozen, meaning that they won't change until the final release ?

Yes - the APIs should be pretty frozen.  There might be one or two minor tweaks, but in general everything is pretty locked down (all of the above features have had several CTPs and private betas to get feedback well before today's beta).

>>>>>>> Will the new ASP.NET MVC be included in this SP1, or will it follow afterwards ?

ASP.NET MVC will be a separate download for its first release.  It can use either the .NET 3.5 SP1 routing engine, or alternatively it also ships with a private copy of it - so that it can work on .NET 3.5 (non-SP1).  

>>>>>>>> I am also intrigued by the new .NET Framework Client Profile Setup Package. It smells like a multiplatform CLR is in the works (hey, most of it is already done with Silverlight). This feature would kind of be only useful for users without the .Net framework... Anything news coming for the next PDC ?

The client profile is more focused on Windows desktop applications today.  It gives a much nicer deployment story for Windows Forms and WPF applications.  

Hope this helps,

Scott

# VS2008 and .NET 3.5 Service Pack 1 Beta now available

Monday, May 12, 2008 2:42 PM by Joteke's Blog

See: blogs.msdn.com/.../visual-studio-2008-and-net-fx-3-5-sp1-beta-available-now.aspx

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 2:43 PM by shaggygi

Thanks for the update Scott.  Can we get a SL2 B2 control lists and a more narrowed down time frame.

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 2:45 PM by evanburen

Is that all? :-)

Wow, you guys are amazing.  Nice work.

# Visual Studio 2008 Service Pack 1 Beta download

Monday, May 12, 2008 2:48 PM by guidmaster´s .NET blog

Update: Så er det helt officielt. Læs ScottGu´s annoncering . Så er det ved at være tid til den første

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 2:50 PM by ScottGu

Hi Scott,

>>>>>> Thanks for the info.  Are there any more details around the WCF changes in 3.5 SP1?  I am particularly interested in the DataContract/DataMember changes and changes around DataContractSerializer.  Also, if you have any details around the perf improvements that would be great.

I just sent mail off to the WCF team to try and some URLs that provide more content on this.  I believe one of the improvements is that the DatacontractSerialization now works better for plain old objects, and no longer require explict attributes to be on the objects to use this.

I'll let you know when I hear back more on details.

Thanks,

Scott

# Library &raquo; Blog Archive &raquo; Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Pingback from  Library  &raquo; Blog Archive   &raquo; Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 2:52 PM by ScottGu

Hi Jack,

>>>>>>>> Where can we find a list of the namespaces included in the .NET Framework Client Profile (short of downloading and installing the beta)?

I'm trying to find a blog post that lists the specific assemblies that are included.  I'll post a pointer once I track down a blog post that includes this.

Thanks,

Scott

# Visual Studio 2008, .NET 3.5 SP1 Beta Released | With That Said

Pingback from  Visual Studio 2008, .NET 3.5 SP1 Beta Released | With That Said

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 2:55 PM by bdion

Scott,

Great news.

Are the entity framework providers (oracle, mysql, etc) going to be available out of the box?

Anything new concerning workflow foundation?

# VS2008 / NETFX 3.5 SP1 Beta

Monday, May 12, 2008 2:55 PM by Gold Coast

If you keep up with multiple Microsoft technology bloggers, today is one of those days where you'll see

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 2:55 PM by sawbill

This sounds like excellent news, but ...

Are there any special instructions if you have the MVC interim release installed? Do I need to remove it and reinstall after installing SP1 beta, or will just installing the beta work? Or would it be better to wait for the next MVC preview?

# Not just a service pack (VS 2008 and .NET 3.5 SP 1)

Monday, May 12, 2008 2:56 PM by WF Community Bloggers

Microsoft has rolled out the beta of SP1 for .NET Framework version 3.5 and Visual Studio 2008. Now don't

# They really are listening&#8230; :: designerslove.net

Monday, May 12, 2008 2:56 PM by They really are listening… :: designerslove.net

Pingback from  They really are listening&#8230;  ::  designerslove.net

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 2:58 PM by Daniel Crabtree

Sounds great - lots of new things to take a look at.

# Not just a service pack (VS 2008 and .NET 3.5 SP 1)

Monday, May 12, 2008 3:05 PM by WF Community Bloggers

Microsoft has rolled out the beta of SP1 for .NET Framework version 3.5 and Visual Studio 2008. Now don't

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 3:08 PM by Paul O.

Scott, will SP1 include a WPF-based ribbon UI control or only a MFC-based one? Most folks are seeking the former.

# Visual STudio 2008 / .NET Framework 3.5 SP1 BETA now Available

Monday, May 12, 2008 3:08 PM by Chris Koenig

For those of you looking for it, ScottGu published a blog post earlier today announcing the BETA release

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 3:15 PM by John Papa

Since I installed this, on one PC VS 2008 is crashing as soon as I open it. I need to figure out what the deal is. Perhaps something with Silverlight is still causing an issue. The VS 2008 beta installed OK, but something is amiss.

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 3:19 PM by ScottGu

Hi John,

>>>>>>> Since I installed this, on one PC VS 2008 is crashing as soon as I open it. I need to figure out what the deal is. Perhaps something with Silverlight is still causing an issue. The VS 2008 beta installed OK, but something is amiss.

If you can send me an email (scottgu@microsoft.com) with details on the machine (OS version, what else is installed, etc) I can have someone help investigate to figure out what the issue is.

Thanks,

Scott

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 3:20 PM by Dunross

Great work! You guys must work really hard... :-) It's great to see how big achievements are MS technologies doing these years! Please keep it up! ;-)

I'm really looking forward to using ASP.NET MVC, Entities Framework, Silverlight 2, WPF itself and other of these exciting technologies!

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 3:22 PM by John Papa

Following up ... the Error when VS.NET crashes is

".NET Runtime version 2.0.50727.3031 - Fatal Execution Engine Error (70DEF16D) (80131506)"

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 3:26 PM by Ben Hayat

Hi Scott;

As I was reading Tim's blog I noticed the following line:

"I do not recommend installing this beta release on your main development machine. Due to some complex build timing issues, this release is incompatible with Silverlight 2 Beta 1; it will, however be compatible with Beta 2 when it ships in a few weeks' time."

Are we still "FEW" weeks away from SL beta 2?

Thanks!

..Ben

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 3:27 PM by Alexander Gornik

Scott, will the 1:1 relationship bug (connect.microsoft.com/.../ViewFeedback.aspx) in LINQ to SQL be fixed in this release?

# WCF-related features in .NET 3.5 SP1 &amp; VS 2008 SP1

Monday, May 12, 2008 3:29 PM by Christian Weyer: Smells like service spirit

In addition what Scott has in its extensive article on SP1, lemme show you some more data on what is...

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 3:33 PM by Chicago_Dave

Where is the schema designer I've read about?

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 3:45 PM by Fred Morrison

Nice work.  I hope the folks working on VSeWSS for Visual Studio 2008 take note of the progress made on SP1 for VS 2008/.Net 3.5 and get a version out sooner than the end of July.  To paraphrase the famous lines from the battle of Leyte gulf in WWII: "Where is [VSeWSS for VS 2008]?  The world wonders.".

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 3:48 PM by Mike Bosch

What is that JQuery.Intellisense file?  Does it have to be commented to get the intellisense and where can we download that version?

Also, got a showcase of current "live" asp.net MVC sites on weblogs.asp.net/.../gallery-of-live-asp-net-mvc-sites.aspx

# VS 2008 and .NET FX 3.5 SP1 (Beta)

Monday, May 12, 2008 3:58 PM by Community Blogs

The beta has been released.&#160; Scott Guthrie has a huge list of what to expect . (The image should

# .NET 3.5 SP1 Beta and WPF

Monday, May 12, 2008 4:07 PM by Sparkle bloggers

Scott's blog has an extensive list of the new stuff: weblogs.asp.net/.../visual-studio-2008-and-net-framework-3-5-service-pack-1-beta.aspx

# Service Pack 1 Beta Released for Visual Studio 2008 and the .NET Framework 3.5

Monday, May 12, 2008 4:20 PM by Dan Wahlin's WebLog

Microsoft just released the SP1 beta for Visual Studio 2008 and the .NET Framework 3.5 and it includes

# Visual Studio 2008 / .NET 3.5 SP1 Betas

Monday, May 12, 2008 4:33 PM by GameDevKicks.com

You've been kicked (a good thing) - Trackback from GameDevKicks.com

# Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta - ScottGu's Blog

Monday, May 12, 2008 4:35 PM by I am Dragon, hear me roar!

ScottGu blogs about the new Beta release of VS2008 and .Net 3.5 SP1. I can't wait for the real release. Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta - ScottGu's Blog ...

# SP1 Beta and Its Effect on MVC

Monday, May 12, 2008 4:36 PM by you've been HAACKED

SP1 Beta and Its Effect on MVC

# Scott Guthrie: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 4:43 PM by codebeater

Scott Guthrie: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

# VS2008 and .Net 3.5 SP1 Beta - Should You Fear This Release?

Monday, May 12, 2008 4:53 PM by Scott Hanselman's Computer Zen

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 4:56 PM by istalker2

And what about WPF DateTimePicker control?

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 4:56 PM by Mike C

Has anyone been able to get ADO.NET Data Services working with AdventureWorks 2008?  I can get it to pick up some tables (Person.EmailAddress, Production.Product, etc.), but not others (Person.Person, etc.)  I haven't discovered a pattern yet, but hoping someone out there has an idea what's going on here.  I had assumed before that this was an issue that would be resolved with .NET 3.5 SP1 and VS 2008 SP1.  Any ideas?  Thanks.

# .NET: What's coming down the Pike

Monday, May 12, 2008 4:57 PM by A British Geek in Texas Pontificates

Today there a bunch of new bits to play with that have up until now been a collection of individual CTP's

# VS2008 and .Net 3.5 SP1 Beta - Should You Fear This Release?

Monday, May 12, 2008 5:01 PM by ASPInsiders

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

# TechSheep &raquo; Blog Archive &raquo; Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta (Scott Gu/ScottGu&#8217;s Blog)

Pingback from  TechSheep                &raquo; Blog Archive          &raquo; Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta (Scott Gu/ScottGu&#8217;s Blog)

# News &raquo; Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Pingback from  News &raquo; Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

# Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Pingback from  Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

# Visual Studio 2008 ve .net 3.5 SP1 (beta) &ccedil;??kt?? | Boo! Dergi Resmi Blog

Pingback from  Visual Studio 2008 ve .net 3.5 SP1 (beta) &ccedil;??kt?? | Boo! Dergi Resmi Blog

# ASP.NET 3.5 VS2008 SP1 beta

Monday, May 12, 2008 5:46 PM by CodeClimber

ASP.NET 3.5 VS2008 SP1 beta

# Infragistics NetAdvantage and Dynamic Data

Monday, May 12, 2008 5:48 PM by /dev/null [tony lombardo]

For those of you who keep a close watch on the off cycle ASP.NET projects that Microsoft has been working

# Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 5:49 PM by André Henriksson

OK, jag erk&#228;nner, &#228;ven om jag jobbar p&#229; Microsoft och har tillg&#229;ng till det mesta

# .NET 3.5 SP1 and VS 2008 SP1

Monday, May 12, 2008 5:53 PM by Guy Barrette

Microsoft released today a Beta version of the .NET Framework 3.5 along a Beta version of the Service

# Microsoft on Silverlight, WPF 3.5 SP1 &laquo; Tales from a Trading Desk

Pingback from  Microsoft on Silverlight, WPF 3.5 SP1 &laquo; Tales from a Trading Desk

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 5:58 PM by Simon Hall

Fantastic to see class library and Web App projects supported in Visual Web Developer Express.  Nice work

# Visual Studio 2008 and .NET FX 3.5 SP1 Beta available now

Monday, May 12, 2008 6:04 PM by { The Smoking Code }

Visual Studio 2008 and .NET FX 3.5 SP1 Beta available now

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 6:09 PM by John Gallagher

I found another thing that needed to be uninstalled on my system - KB944899 (Hotfix for VS2008 Team Dveloper Edition). My setup failed and the log indicated this had to be uninstalled.

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 6:11 PM by Deepak

I am really happy to see improvements for WPF. This is one are where Visual Studio has a long way to go. Good on you!

# Visual Studio 2008 and .NET FX 3.5 SP1 Beta available now

Monday, May 12, 2008 6:16 PM by Mighell's Mobile Blog

Rilasciata aggi: Today we released a Beta of Visual Studio 2008 and .NET Framework 3.5 Service Pack 1

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 6:23 PM by Mike

So, no update to LINQ to SQL for many to many support, you need to use entity framework for that?

And what's up with drag and drop in Ajax? I would expect that to be in this release finally, it's been in the futures way too long. Did they stop developing that?

Anyway, it's a long list of updates, but to not see the things I was hoping for most, still makes me disappointed with the release...

Where should I go to 'vote' for new features I want to see?

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 6:30 PM by ThoseBug

Well...nice things, but, whats the difference? what we have now? is still beta, ADO.NET entities still beta, and Silverlight 2 still Beta 1..it suppose that for may we could expect SL2 beta 2 (with the set of visual controls and new improvments) Scott...may be Microsoft is not listening (again) what is needed...please I think you guys must focus on Silverlight, think with me, the development world likes Microsoft, even JAVA has been defeated in some way, what's next?....Browser development, and Silverlight is powerfull enough to beat some other products that we now (flex, javafx, etc) please...somebody needs to see this, thanks Scott, and focus on SL.

# Visual STudio 2008 / .NET Framework 3.5 SP1 BETA now Available

Monday, May 12, 2008 6:39 PM by ChrisKoenig

For those of you looking for it, ScottGu published a blog post earlier today announcing the BETA release

# Visual Studio 2008 Service Pack 1 Beta is now available!

Monday, May 12, 2008 6:48 PM by beqiraj.net

Visual Studio 2008 Service Pack 1 Beta is now available!

# Sense of life &raquo; Visual Studio 2008 SP1 beta

Monday, May 12, 2008 6:49 PM by Sense of life » Visual Studio 2008 SP1 beta

Pingback from  Sense of life &raquo; Visual Studio 2008 SP1 beta

# Visual Studio 2008 Express Edition Service Pack 1 Beta is now available!

Monday, May 12, 2008 6:51 PM by beqiraj.net

Visual Studio 2008 Express Edition Service Pack 1 Beta is now available!

# .NET Framework 3.5 Service Pack 1 Beta is now available!

Monday, May 12, 2008 6:55 PM by beqiraj.net

.NET Framework 3.5 Service Pack 1 Beta is now available!

# ScottGu on Visual Studio 2008 SP1

Monday, May 12, 2008 7:10 PM by ASPInsiders

Scott has a deep and informative post on what's coming in Visual Studio 2008 and .NET Framework 3.5 SP1

# Installing Visual Studio 2008 SP1 Beta.

Monday, May 12, 2008 7:11 PM by Al Pascual

Finally Scott Guthrie released the news, was waiting to post my review. Friday night I installed Visual

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 7:19 PM by Jacek Ciereszko

Nothing for Silverlight? Only uninstallations.. I will wait for tools ;)

# Visual Studio 2008 SP1 and .NET 3.5 SP1 - Go Get It

Monday, May 12, 2008 7:27 PM by Chris Love's Official Blog - Professional ASP.NET

I am not going to even bother talking about what is in it, I am reading it like everyone else! But go

# Visual Studio 2008 & .Net 3.5 Service Pack 1 Beta

Monday, May 12, 2008 7:31 PM by Arturo's Blog

El dia de hoy ha sido liberada la primer beta del Service Pack para Visual Studio 2008 y para el .Net

# Visual Studio 2008 y .Net Framework SP1 Beta

Monday, May 12, 2008 7:32 PM by Daniel "El Pibe" Mazzini

Para los mas osados ya se encuentra el SP1 de Visual Studio 2008, Visual Studio Team System y .Net Framework

# Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 7:38 PM by Sam Gentile

ScottGu makes it official today. There is a whole lot of stuff here, and I think its safe to say that

# WCF features/improvements in .NET 3.5 SP1

Monday, May 12, 2008 7:39 PM by Service Station, by Aaron Skonnard

# Visual Studio 2008 SP1 BETA

Monday, May 12, 2008 7:48 PM by Visual Studio 2008 SP1 BETA

Pingback from  Visual Studio 2008 SP1 BETA

# .NET Framework 3.5 SP1 Beta and Visual Studio 2008 SP1 Beta out in the wild. &laquo; Patrick&#8217;s Bytes

Pingback from  .NET Framework 3.5 SP1 Beta and Visual Studio 2008 SP1 Beta out in the wild. &laquo; Patrick&#8217;s Bytes

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 8:27 PM by ScottGu

Hi Scott,

>>>> >>>>>> Thanks for the info.  Are there any more details around the WCF changes in 3.5 SP1?  I am particularly interested in the DataContract/DataMember changes and changes around DataContractSerializer.  Also, if you have any details around the perf improvements that would be great.

Here are some more updates on the WCF work: blogs.thinktecture.com/.../415145.aspx and www.gazitt.com/.../PermaLink,guid,dd5a7066-d288-48ef-91a8-af895fecbe8c.aspx

Hope this helps,

Scott

# VS 2008 and .Net 3.5 SP1 Beta

Monday, May 12, 2008 8:29 PM by Redwerb

If you haven&#39;t heard the news yet, Microsoft has released a beta of a service pack (SP1) for Visual

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 8:37 PM by Joe

Is there an install to get VS updates without framework updates?  I'm working soley on MS MVC preview 2 and don't care much about 3.5 beta items  :)

The javascript part is where I'm most interested, I do most my development with jQuery and ASP.NET MVC nowdays (good riddance webforms!)

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 8:50 PM by Woodie

Scott,

In your post from weblogs.asp.net/.../net-3-5-client-product-roadmap.aspx you said,

"WPF Control Improvements

Later this year we are also planning to release a number of new controls for WPF.  Included in the list we are working on are DataGrid, Ribbon, and Calendar/DatePicker controls."

They are noticably missing from the beta build of SP1.  Any news on these controls?  Some of us are waiting for them.

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 8:54 PM by Woodie

Nevermind, I just cant read!  Thanks for the info!

" We'll be using this support together with the above data binding improvements to build the new WPF datagrid that will be shipping later this year"

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 9:00 PM by Justin Taylor

Scott,

Are the plans for a nice upgrade path when the final version is RTM'd or will we be stuck uninstalling the beta to install the final bits?

Keep up the fantastic work.

JT

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 9:07 PM by Woodie

Ok, another thing, sorry to be nagging but is the omission of System.Data.Linq from the "Client Only Framework Subset" Intentional?  A bug on my machine?  If it was not included then that is huge.

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 9:36 PM by Nullable

I realize that I'm posting comment number 1 million and 4, but... very nice job dude! I'm seriously blown away (and I knew about most of this stuff anyway), but the "secrety stuff" (things I didn't know about due to not working at MS), amazing.

Scotty-Goo for President!

# From 2 Geeks &raquo; Blog Archive &raquo; Microsoft Data Modeling Tool? Please?

Pingback from  From 2 Geeks  &raquo; Blog Archive   &raquo; Microsoft Data Modeling Tool? Please?

# Infragistics NetAdvantage and Dynamic Data

Monday, May 12, 2008 9:41 PM by Tony Lombardo

For those of you who keep a close watch on the off cycle ASP.NET projects that Microsoft has been working

# Visual Studio SP1 Beta Feedback

Monday, May 12, 2008 9:44 PM by Developer Community Product Feedback

Visual Studio SP1 beta is available for Download, it includes hundreds of bug fixes and customer-reported

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 9:48 PM by guilin_gavin

Thanks a lot.

That would be a great news!

# .NET Framework 3.5 SP1 Beta is Live Now

Monday, May 12, 2008 9:49 PM by Felix Wang | Evangelizing the Next Web

The beta of WPF 3.5 SP1 is now live. This is way more than a service release, even if it's named as such.

# Ya esta el beta de .Net 3.5 Service Pack 1

Monday, May 12, 2008 10:38 PM by IDisposable thoughts...

Ya esta el beta de .Net 3.5 Service Pack 1

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 11:03 PM by zzz

Awesome, many improvement I like!

Need one clarification:

You mentioned better DirectX integration, does this allow for superimposing WPF controls so they look nice on top of the DX content? And if so, will the presumably necessary alphablending of the WPF controls layer/texture be done in hardware? The scenario is to do the 3D with xna and bring in WPF for interface. Performance of the WPF part of the equation isn't as much of a concern as it could just be for rapid prototyping of different mouse driven interfaces for the game.

# Visual Studio 2008 y .NET Framework 3.5 Service Pack 1 (Beta)

Monday, May 12, 2008 11:20 PM by Miguel Saez

El d&#237;a de hoy se lanz&#243; la versi&#243;n Beta de los Service Pack de Visual Studio 2008 y .NET

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 11:23 PM by Kelps Leite de Sousa

That's great news. I was waiting for a new post on Silverlight to ask if it would be supported on the Web Express edition of Visual Studio, but now I have my answer. Now folks anywhere will be able to develop Silverlight apps without the need to pay for the full Visual Studio 2008 RTM or resort to illegal software.

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 11:24 PM by ScottGu

Hi ZZZ,

>>>>>> Awesome, many improvement I like!  Need one clarification:  You mentioned better DirectX integration, does this allow for superimposing WPF controls so they look nice on top of the DX content? And if so, will the presumably necessary alphablending of the WPF controls layer/texture be done in hardware? The scenario is to do the 3D with xna and bring in WPF for interface. Performance of the WPF part of the equation isn't as much of a concern as it could just be for rapid prototyping of different mouse driven interfaces for the game.

I just checked with my team and got back this answer:

- Yes, superimposing WPF controls in an alpha-blended way over DX content is absolutely supported and is a primary motivating scenario.  And it remains fully in hardware, so it’s fast.

- XNA, however, presents some additional challenges, as getting the raw DX surface out of XNA is trickier.  You may be able to craft something yourself to access the DX surface and have it work with DX interop, and this is something on our plate moving forward.

Hope this helps,

Scott

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 11:33 PM by Shiju Varghese

Hi Scott,

Thanks for the info.Have any plan to release a SP with support for ASP.net MVC?

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 11:39 PM by ScottGu

Hi Ben,

>>>>>> One question thought. Do you think some of these shading features (software enhancements and not using hardware) can lead to Silverlight? SL can really use some bitmap boost. The shading would be a great step to adding that 3D look&feel to objects!

The nice thing about having the programming model be the same between Silverlight and the full WPF is that we have much greater flexibility in enabling scenarios like this.  We don't have specific plans just yet to enable that - but it is something that might happen in the future.

Hope this helps,

Scott

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 11:42 PM by ScottGu

Hi Matt,

>>>>>> I just skimmed this so far (lots of stuff to digest there) but something that did catch my eye was the MVC Routing engine is included. Does this mean .NET 3.5 will be the release of MVC or is it just part of it getting included with MVC itself being a seperate release?

ASP.NET MVC will ship as a separate release for its first version (we wanted to be a little more flexible on the schedule so that we didn't have to constrain the feature set to hit a date).  ASP.NET MVC will support running on both .NET 3.5 and 3.5 SP1.  It has its own private copy of the routing assembly and will use that on .NET 3.5.  On .NET 3.5 SP1 it will just use the new routing engine built into that.

Hope this helps,

Scott

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 11:43 PM by ScottGu

Hi Kevin,

>>>>>>> Kudos for rolling out incremental improvements in the platforms and tools. One question - we've enountered many bugs in WCF's svcutil.exe tool. Has any work been done on that tooling?

If you can send me details about the bugs you've run into via email I'd be happy to connect you up with the WCF team to verify they are fixed.

Hope this helps,

Scott

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 11:44 PM by ScottGu

Hi James,

>>>>>>> Please tell me it isn't going to be a "few weeks" for us to be able to use silverlight with ADO.net Entities and stuff?!?  That's crazy!!!  Please, even if it's a ctp, give us something...

We are working on hard on getting the Silverlight tools refresh out that works with SP1.  There are a lot of moving trains at the moment, which is why we don't have that available immediately.  

Sorry!

Scott

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 11:44 PM by ScottGu

Hi Paul,

>>>>>>> Wow.  fantastic work!  There seems to be a lack of Linq to Entities tutorials and the like out there (especially when compared to silverlight or MVC).  Any plans on blogging on it anytime soon?

I think you'll see more tutorials and articles appear on it soon.  I need to dig into it some more myself - and maybe write a post or two myself once I understand it better.

Thanks,

Scott

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 11:45 PM by ScottGu

Hi ShaggyGI,

>>>>>>> Thanks for the update Scott.  Is there any way we could talk you into giving us the SL2 B2 controls list and a more narrow time of release???

I'll start blogging about that soon.  Not far off now. :-)

Thanks,

Scott

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 11:47 PM by ScottGu

Hi BDion,

>>>>>>> Are the entity framework providers (oracle, mysql, etc) going to be available out of the box?

I believe most of these non-MSFT database providers are being done by the actual database vendors (we are partnering with them to help). I think they'll be shipping these themselves.

>>>>>>> Anything new concerning workflow foundation?

Workflow is one of the teams I don't run, so unfortunately I'm not up on all of the work they did in SP1.  Sorry!

Scott

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 11:48 PM by ScottGu

Hi Sawbill,

>>>>>>> Are there any special instructions if you have the MVC interim release installed? Do I need to remove it and reinstall after installing SP1 beta, or will just installing the beta work? Or would it be better to wait for the next MVC preview?

Phil just did a blog post on this here: www.haacked.com/.../sp1-beta-and-its-effect-on-mvc.aspx

Hope this helps,

Scott

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 11:49 PM by ScottGu

Hi Paul,

>>>>>>> Scott, will SP1 include a WPF-based ribbon UI control or only a MFC-based one? Most folks are seeking the former.

We are working on a ribbon control for WPF - but it will ship later this year (and not in SP1).  It will, though, work on top of SP1 (and can be distributed within your application).

Hope this helps,

Scott

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 11:50 PM by ScottGu

Hi Alexander,

>>>>>>> Scott, will the 1:1 relationship bug (connect.microsoft.com/.../ViewFeedback.aspx) in LINQ to SQL be fixed in this release?

I'm not 100% positive, but I believe it is fixed in SP1.  Based on the bug comments it sounds like a fix was identified back in Feb - in which case it should be in SP1.

Hope this helps,

Scott

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 11:52 PM by ScottGu

Hi Mike Bosch,

>>>>>>>> What is that JQuery.Intellisense file?  Does it have to be commented to get the intellisense and where can we download that version?

I'm using the JQuery intellisense hint file that Brad built here: weblogs.asp.net/.../better-jquery-intellisense-in-vs2008.aspx  It includes some additional documentation and code hints that help provide better Intellisense.  You can use this to get better intellisense at design-time, and then use the standard JQuery library at runtime.

Hope this helps,

Scott

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 11:53 PM by ScottGu

Hi IsTalker2,

>>>>>>>> And what about WPF DateTimePicker control?

We don't have a DateTimePicker control built-into SP1 for WPF.  But it is something we are planning on enabling as a web download in the future.

Hope this helps,

Scott

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 11:53 PM by ScottGu

Hi Mike C,

>>>>>>> Has anyone been able to get ADO.NET Data Services working with AdventureWorks 2008?  I can get it to pick up some tables (Person.EmailAddress, Production.Product, etc.), but not others (Person.Person, etc.)  I haven't discovered a pattern yet, but hoping someone out there has an idea what's going on here.  I had assumed before that this was an issue that would be resolved with .NET 3.5 SP1 and VS 2008 SP1.  Any ideas?  Thanks.

I'm not that familiar with this particular issue.  If you send me email (scottgu@microsoft.com), though, I can loop you in with the ADO.NET team to have them help.

Hope this helps,

Scott

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 11:56 PM by ScottGu

Hi Mike,

>>>>>>> So, no update to LINQ to SQL for many to many support, you need to use entity framework for that?  And what's up with drag and drop in Ajax? I would expect that to be in this release finally, it's been in the futures way too long. Did they stop developing that?  Anyway, it's a long list of updates, but to not see the things I was hoping for most, still makes me disappointed with the release...

Unfortunatley we weren't able to get all the new features we'd like into SP1.  Those particular features, though, are on the list to-do and planned for the future.

Hope this helps,

Scott

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 11:57 PM by ScottGu

Hi Joe,

>>>>>>>> Is there an install to get VS updates without framework updates?  I'm working soley on MS MVC preview 2 and don't care much about 3.5 beta items  :)  The javascript part is where I'm most interested, I do most my development with jQuery and ASP.NET MVC nowdays

I believe VS 2008 SP1 requires .NET 3.5 SP1 on the machine - so you can't just install the tools SP without the runtime one.

Sorry!

Scott

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 12, 2008 11:59 PM by ScottGu

Hi Justin,

>>>>>>> Are the plans for a nice upgrade path when the final version is RTM'd or will we be stuck uninstalling the beta to install the final bits?

The plan is for the final SP1 version to support upgrades from the SP1 beta.  So fingers crossed the upgrade will be smooth (I sure hope so - since I upgraded my main machine to it <g>).

Thanks,

Scott

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 12:00 AM by ScottGu

Hi Woodie,

>>>>>>> Ok, another thing, sorry to be nagging but is the omission of System.Data.Linq from the "Client Only Framework Subset" Intentional?  A bug on my machine?  If it was not included then that is huge.

Right now that isn't in the .NET Client Profile (instead we added the support so that the client profile can use web-services to retrieve data from LINQ to SQL or LINQ to Entities and transport it to the client to work with).  

Hope this helps,

Scott

# Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta is now available

Tuesday, May 13, 2008 12:07 AM by Carlos Figueroa

From ScottGu's Blog: "Earlier today we shipped a public beta of our upcoming .NET 3.5 SP1 and VS 2008

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 12:27 AM by TonyB

I have installed .Net 3.5 SP1 and VS2008 SP1 and now my MVC Web Application won't work. I even tried to build a new MVC Web Application and when I try to run it, I get a blank screen. Is there a work around for this?

# Visual Studio 2008 y .NET Framework 3.5 Service Pack 1 Beta están disponibles

Tuesday, May 13, 2008 12:30 AM by Carlos Figueroa

A partir de hoy (Lunes 12 de Mayo) está disponible para la descarga la versión beta de lo que será el

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 12:47 AM by ScottGu

Hi Tony,

>>>>>>> I have installed .Net 3.5 SP1 and VS2008 SP1 and now my MVC Web Application won't work. I even tried to build a new MVC Web Application and when I try to run it, I get a blank screen. Is there a work around for this?

Phil has a post here that might help: www.haacked.com/.../sp1-beta-and-its-effect-on-mvc.aspx

Send me email (scottgu@microsoft.com) if that doesn't work and we can help.

Thanks,

Scott

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 1:14 AM by Adam

Hi Scott,

I get this error when trying to install the express beta. The setup program just exits.

[05/13/08,15:05:57] BWaitForMSI(): Verifying we're the only installation currently in progress.

[05/13/08,15:05:57] BWaitForMSI(): Ready to proceed with installation.  Continuing...

[05/13/08,15:09:37] Microsoft .NET Framework 3.5 SP1 (Beta): C:\DOCUME~1\ADAM~1.SCH\LOCALS~1\Temp\30428.01\1033\wcu\dotnetframework\dotnetfx35setup.exe exited with return value 1603

[05/13/08,15:09:37] InstallReturnValue: GFN_MID NET Framework Setup, 0x643

[05/13/08,15:09:37] Setup.exe: AddGlobalCustomProperty

[05/13/08,15:09:37] Microsoft .NET Framework 3.5 SP1 (Beta): ***ERRORLOG EVENT*** : Error code 1603 for this component means "Fatal error during installation.

"

[05/13/08,15:09:37] Setup.exe: AddGlobalCustomProperty

[05/13/08,15:09:38] Microsoft .NET Framework 3.5 SP1 (Beta): ***ERRORLOG EVENT*** : Setup Failed on component Microsoft .NET Framework 3.5 SP1 (Beta)

[05/13/08,15:09:38] Setup.exe: GetGlobalCustomProperty - Property: {BBE1827C-F2FD-4FDA-A6D6-C83B62FFFDCA} - PropertyName: compfailed - Value: 0

[05/13/08,15:09:38] Microsoft .NET Framework 3.5 SP1 (Beta): CBaseComponent::LaunchWatson() - Obtained CSetupWatson instance

[05/13/08,15:09:38] Microsoft .NET Framework 3.5 SP1 (Beta): ISetupManager::GetGlobalCustomProperty() failed to find global prop in CBaseComponent::GetGlobalCustomProperty()

[05/13/08,15:09:38] Microsoft .NET Framework 3.5 SP1 (Beta): ISetupManager::GetGlobalCustomProperty() failed to find global prop in CBaseComponent::GetGlobalCustomProperty()

[05/13/08,15:09:38] Microsoft .NET Framework 3.5 SP1 (Beta): CBaseComponent::LaunchWatson() - Creating a PreReq Watson report with manifest: C:\DOCUME~1\ADAM~1.SCH\LOCALS~1\Temp\MANF5.tmp

Any reason why?

Anyone else getting this?

# Visual Studio 2008 SP1 Bate版和.Net Framework 3.5 SP1 Beta版提供下载

Tuesday, May 13, 2008 1:35 AM by AppleSeeker

Visual Studio 2008 SP1 Bate版和.Net Framework 3.5 SP1 Beta版提供下载

# Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta | Ajaxus place on the net

Pingback from  Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta  | Ajaxus place on the net

# .NET 3.5 SP1 and Visual Studio 2008 SP1

Tuesday, May 13, 2008 1:48 AM by Willem Meints

Microsoft is working hard on a service pack for .NET 3.5 and visual studio 2008 and it sure does look

# VS 2008 SP1 ベータ版公開

Tuesday, May 13, 2008 1:52 AM by どっとねっとふぁんBlog

Visual Studio 2008 &amp; .NET Framework3.5 SP1 Beta1がリリースされました ということで、SP1のベータ版がリリースされてます。 これにはいろいろな機能拡張が含まれてますね。...

# Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta | Technology Blog

Pingback from  Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta | Technology Blog

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 2:05 AM by Gary Hanson

Scott-

First, I think that this is a great release. I'm surprised at how much you and your team have accomplished in so short a time.

I have been developing client apps using Windows Forms using SQL Server CE for my db and Sql Server Reporting Services for reporting. I switched to WPF (I starting learning it for Silverlight and loved it) and I have been waiting for the Client Profile because I really didn't want to make customers download all of .NET. The whole new install process is awesome by the way. I can live without LINQ (it's nice, but not necessary). But without WindowsFormsIntegration in the Client Profile is there some other way to use Sql Server Reporting Services with WPF without a full .NET download?

Thanks again for a great product.

-Gary

# Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta released at Entwicklerblog

Pingback from  Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta released at  Entwicklerblog

# VS 2008 and .NET Framework 3.5 SP 1(BETA) Released

Tuesday, May 13, 2008 2:19 AM by Murat YILMAZ

VS 2008 and .NET Framework 3.5 SP 1(BETA) Released

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 2:29 AM by zubairdotnet

hey Scott, those are tons of new features bundled in one package, can't wait to try them out.

# Service Pack 1 de Microsoft Visual Studio 2008 y Microsoft .NET Framework 3.5... en versión BETA

Tuesday, May 13, 2008 2:30 AM by Jorge Serrano - MVP Visual Developer - Visual Basic

Todos sabreis a estas alturas que el Service Pack 1 de Microsoft Visual Studio 2008 ha aparecido en versión

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 2:32 AM by Alex

Thank you for this description! It is short and clean and expanded!

# hardcodet.net &raquo; Blog Archive &raquo; Details about upcoming SP1 for VS2008 and .NET 3.5

Pingback from  hardcodet.net  &raquo; Blog Archive   &raquo; Details about upcoming SP1 for VS2008 and .NET 3.5

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 2:45 AM by BlackTiger

In the end of installation (so I'am uninstalled everything "bad"):

"install failed - performing rollback"

   Patch (C:\Users\Alexei\AppData\Local\Temp\Microsoft Visual Studio 2008 SP1 (Beta)\VS90sp1-KB945140-X86-ENU.msp;C:\Users\Alexei\AppData\Local\Temp\Microsoft Visual Studio 2008 SP1 (Beta)\VC90sp1-KB947888-x86-enu.msp;C:\Users\Alexei\AppData\Local\Temp\Microsoft Visual Studio 2008 SP1 (Beta)\VC90sp1-KB948484-x86_x64-enu.msp;C:\Users\Alexei\AppData\Local\Temp\Microsoft Visual Studio 2008 SP1 (Beta)\VC90sp1-KB948560-x86_IA64-enu.msp) install failed on product (Microsoft Visual Studio 2008 Professional Edition - ENU). Msi Log: Microsoft Visual Studio 2008 SP1 (Beta)_20080512_214824875-MSP1.txt

# 2008 Service Pack 1 Beta 给我们带来了什么?

Tuesday, May 13, 2008 2:48 AM by A.Z

记得2008发布已经有一段时间了。

现在MS直接发布了spbeta版本的下载。这位肩负.net开发使命的scottgu已经写了这篇bloghttp://weblogs.asp.net/scott...

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 2:59 AM by duracellko

wow.. it's really long list of new amazing features.. good work guys.

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 3:04 AM by Lars Krog-Jensen

Hello,

Will there be a .Net Fx 2.0 SP2 with the CLR improvements, especially interested in the Client cold startup improvements.

R

# .NET 3.5 SP1 Beta &amp; VS2008 SP1 Beta &laquo; WPF, .NET &amp; Other stuff

Pingback from  .NET 3.5 SP1 Beta &amp; VS2008 SP1 Beta &laquo; WPF, .NET &amp; Other stuff

# Visual Studio 2008 SP1 Beta tillgänglig

Tuesday, May 13, 2008 3:14 AM by Robert Folkesson

Igår gjordes en Beta-version av Service Pack 1 för Visual Studio 2008 och .NET 3.5 tillgänglig som bland

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 3:23 AM by Yonatan Leonov

Great news, as always.

But would you be kind and point me to a document which describe what has been changed in the SP2 for .NET 2.0 which told to be included in this release?

Does it has any red bits? what has been changed?

See my blog to understand why it is so important to have the details on this small piece of the whole release: readcommit.blogspot.com/.../microsoft-net-framework-20-service-pack.html

# Disponibile la Beta 1 del Framework 3.5 SP1

Tuesday, May 13, 2008 3:35 AM by di .NET e di altre Amenit

Disponibile la Beta 1 del Framework 3.5 SP1

# VS 2008 and .NET 3.5 SP 1 Beta &laquo; Dimarzionist&#8217;s Weblog

Pingback from  VS 2008 and .NET 3.5 SP 1 Beta &laquo; Dimarzionist&#8217;s Weblog

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 3:43 AM by Dave C

>> "...we incorrectly assumed this meant that people weren't still using the classic ASP support."

In the UK the hosting prices for ASP.NET are much higher than classic ASP.  I would love to abandon classic ASP in favour of ASP.NET but some of my clients can't see the benefit in paying more money for the 'same' website.  They don't realise that I could build their site ten times quicker and easier in .NET, and make more money!

Please Microsoft, put some pressure on UK webhosts to sort .NET pricing out.  Otherwise we'll never convert all the PHP users... :-)

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 4:11 AM by Jon_w

With so much added functionality, is it not almost considered to be a new version?

# .NET Framework 3.5 Service Pack 1 (SP1) Beta

Tuesday, May 13, 2008 4:23 AM by Zuker On Foundations

Service Pack 1 is here, yippy. Obviously, this is a Beta release, thus you might want to install it on

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 4:24 AM by Ian Pettman

What a timely post - I'm doing a presentation on 2008 this evening in the UK. One thing which I did not see in SP1 (may be its the language barrier, may be I missed it) When you declare a Linq statement the column order does not seem to be maintained: Ie they come back in alphabetical order - so when you bind a grid - declared column order is lost. The SQL model does not have this issue: column order is irrelevant until the final select when it determins the the column order in the results set and so the order when a grid is bound. I've tried asking a couple of sources but no luck getting an answer on this one.

# SP1 beta dla visual studio 2008

Tuesday, May 13, 2008 4:29 AM by SP1 beta dla visual studio 2008

Pingback from  SP1 beta dla visual studio 2008

# Visual Studio 2008/.NET Framework 3.5 서비스팩1 "베타”

Tuesday, May 13, 2008 4:31 AM by bkchung's WebLog

Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 (정보) Visual Studio 2008 and .NET Framework 3.5

# net design patterns

Tuesday, May 13, 2008 4:35 AM by net design patterns

Pingback from  net design patterns

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 4:59 AM by Decatec

Anything for Sharepoint - MOSS??

You Dev-Div guys should really take over Sharepoint (tools) development, the SP devs are a bit slow and  they don't have an open feedback mechanism

# Visual Studio 2008 and .Net Framework 3.5 SP1 Beta

Tuesday, May 13, 2008 5:01 AM by The Curtain Raiser

Everybody seems to be blogging about this!&#160; Let me get you to the essential resources. Official

# NET Framework 3.5 SP1 Now Live

Tuesday, May 13, 2008 5:12 AM by Vinod Kumar's Blog

The best all-up run-down of all the features (WPF, ASP.NET, WinForms, VS etc.) can as ever be found on

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 5:15 AM by JP

this is gonna be a great summer!! good work microsoft!

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 5:17 AM by Cristian Micliuc

Excellent work guys

# What is new in VisualStudio 2008 sp1 &laquo; Xinyustudio

Tuesday, May 13, 2008 5:18 AM by What is new in VisualStudio 2008 sp1 « Xinyustudio

Pingback from  What is new in VisualStudio 2008 sp1 &laquo; Xinyustudio

# New version of WPF Released &laquo; Kok Chiann&#8217;s Blog

Tuesday, May 13, 2008 5:33 AM by New version of WPF Released « Kok Chiann’s Blog

Pingback from  New version of WPF Released &laquo; Kok Chiann&#8217;s Blog

# Visual Studio 2008 and .NET Framework 3.5 SP1 Beta available | DavideZordan.net

Pingback from  Visual Studio 2008 and .NET Framework 3.5 SP1 Beta available | DavideZordan.net

# A VS 2008 / .NET 3.5 SP1-et (Beta) félnetek nem kell...

Tuesday, May 13, 2008 6:00 AM by Gerlei Márton blogja az Architektúra Fórumon

Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta Vanittminden, pár oldalas leírás a tartalmáról

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 6:31 AM by Stilgar

Hi Scott,

My list of questions

1. How will MVC, Dynamic Data and Entities Framework be supported on VS express editions.

2. How will semantic checking affect VS performance. I've always suspected semantic checks to be the reason Java IDEs are considerably slower than VS. Of course I may be wrong because I have no idea how semantic checks work (i suspect it is similar to non stop compilation)

3. Any chance that SQL Server db as a data source for LINQ will be present in C# Express (currently only database files are supported and Web Developer has support for SQL Server db)

4. Are you really planing many to many relationship for LINQ to SQL?

# Visual Studio 2008, .NET Framework 3.5 SP1 beta

Tuesday, May 13, 2008 6:33 AM by Visual Studio 2008, .NET Framework 3.5 SP1 beta

Pingback from  Visual Studio 2008, .NET Framework 3.5 SP1 beta

# links for 2008-05-13 | Lazycoder

Tuesday, May 13, 2008 6:33 AM by links for 2008-05-13 | Lazycoder

Pingback from  links for 2008-05-13 | Lazycoder

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 6:45 AM by zubairdotnet

I just installed the SP1 beta but I don't see Entity Framework in the list, can you explain why is not showing up ?

# VS 2008 Sp1 Beta Links

Tuesday, May 13, 2008 6:54 AM by Mike Taulty's Blog

Just links.... ScottGu Soma Entity Framework Data Services Download

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 7:19 AM by Alvin Ashcraft

Like John G. above, I also had to uninstall KB944899. SP1 setup failed the first time through because this was installed.

Thanks for all the great info, Scott!

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 7:25 AM by John Gooding

I'm curious is there any improvements for 64bit dev boxes, edit and continue, a native ide, or an elegant solution to loading 32 bit com components(we have to force our deployment tool into 32bit mode to install or even read  version numbers from files com parts)

thanks for your time the list of updates looks great.

# .Net Framework 3.5 SP1

Tuesday, May 13, 2008 7:46 AM by Luis Guerrero

.Net Framework 3.5 SP1

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 7:59 AM by Don Burnett

I have noticed that if I create a new wpf browser control and set the source property of the URL, and later change it in code VS 2008 crashes spectacularly (it closes up and there's no proof it was ever even open, in a fraction of a second. I think this might be tied to the new XAML designer.. Should bug reports go to the normal places? VS 2008 and Windows doesn't seem to know the crash happened though. It's like VS2008 was never there.. How best do you report something like this..

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 8:03 AM by John Gooding

I'm curious is there any improvements for 64bit dev boxes, edit and continue, a native ide, or an elegant solution to loading 32 bit com components(we have to force our deployment tool into 32bit mode to install or even read  version numbers from files com parts)

thanks for your time the list of updates looks great.

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 8:08 AM by Dave Schinkel

Thanks Scott.  This is good stuff.

# VS 2008 &amp; .NET 3.5 SP1 Beta &laquo; Programatik - O local do estagi??rio de Inform??tica

Pingback from  VS 2008 &amp; .NET 3.5 SP1 Beta &laquo; Programatik - O local do estagi??rio de Inform??tica

# Growing List of Content about WPF 3.5sp1

Tuesday, May 13, 2008 8:14 AM by Rob Relyea - Xamlified

Yesterday I did a brief post about &quot; WPF 3.5 &amp; VS 2008 SP1 Beta &quot;.&#160; Now I follow it

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 8:15 AM by Dave R.

Whoa! There look to be some outstanding new features and improvements in the pipeline for SP1. Thank you for the extensive update.

I wondered however if you would consider doing a 'minimal' Client Profile Setup for those of us who do not use the Framework 3.5 goodies like WCF and WPF? To be honest, 25-30MB is still a lot of framework to download for simple client side projects that may only be using 2.0-level features (or even for not so simple apps such as Paint.NET). I realise that WCF and WPF are the team's focus at the moment, but many devs are still one generation behind and do not require these extra DLLs on their target machines.

I am amazed at how much is in this update. It's always been difficult keeping up with the latest stuff, but this takes it to a new level! It's good to hear that there will be additional resources available in the future to cover all these extras and I look forward to your future posts, which are always well thought out and informative. Thanks again.

# NooDev &#8216;n&#8217; Tek &raquo; Blog Archive &raquo; Microsoft Visual Studio 2008 / Framework .NET 3.5 : la Beta 1 du SP1 est disponible

Pingback from  NooDev &#8216;n&#8217; Tek  &raquo; Blog Archive   &raquo; Microsoft Visual Studio 2008 / Framework .NET 3.5 : la Beta 1 du SP1 est disponible

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 9:01 AM by Fritz Mack

Hi Scott

another thing is to uninstall: KB944899. Unfortunately this fix is not in the list of installed programs nor in the list of installed updates. How can I uninstall KB944899?

My system: Vista x64 with SP1

Best regards

Fritz

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 9:03 AM by Azamat Bekenov

Could you share the VS color scheme you're using, please?

Thanks.

# Tim Anderson&#8217;s ITWriting - Tech writing blog &raquo; Substantial .NET, Visual Studio update in Service Pack 1

Pingback from  Tim Anderson&#8217;s ITWriting - Tech writing blog &raquo; Substantial .NET, Visual Studio update in Service Pack 1

# Visual Studio 2008 and .NET 3.5 SP1 Beta &laquo; Ramblings of the Sleepy&#8230;

Pingback from  Visual Studio 2008 and .NET 3.5 SP1 Beta &laquo; Ramblings of the Sleepy&#8230;

# Visual Studio Links #27

Tuesday, May 13, 2008 9:11 AM by Visual Studio Hacks

My latest in a series of the weekly, or more often, summary of interesting links I come across related to Visual Studio. Carlos Quintero wrote an article explaining how to open the web browser and navigate to a page from a Visual Studio add-in or macro

# VS 2008 SP1 Beta

Tuesday, May 13, 2008 9:13 AM by XmidPOE

Излезе SP1 Beta за VisualStudio 2008. Да не должам многу повеќе детали и што поточно содржи на следникот линк.

# Dew Drop - May 13, 2008 | Alvin Ashcraft's Morning Dew

Pingback from  Dew Drop - May 13, 2008 | Alvin Ashcraft's Morning Dew

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 9:46 AM by soccerdad

Scott - Does the routing engine work on Windows Server 2003 / IIS6? If so, does it require configuring wildcard URL mapping to do extension-less URLs?

# Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 9:53 AM by MVPs en Latinoamerica

El día de ayer salió al publico el .NET 3.5 SP1 y el VS 2008 SP1, les recomiendo que visiten el blog

# State of the Emerging CIO &raquo; Blog Archive &raquo; VS 2008, .net 3.5, TFS 2008 - Service Pack 1

Pingback from  State of the Emerging CIO  &raquo; Blog Archive   &raquo; VS 2008, .net 3.5, TFS 2008 - Service Pack 1

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 9:59 AM by Mike Pelton

Scott - hi - stunning list of new features. I don't imagine for a second we'll be able to use the new DirectX integration + effects in XBAP, but any comments you have about what will and won't work in XBAP would be gratefully received. Thanks for your hard work!

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 10:01 AM by Esdee

so..can we make changes to the source code of aspx page while debugging, or not yet?

i had the feeling this was craved by many developers...

it would be so much helpful when fixing bugs, even without live recompile & run

# Visual Studio and .Net 3.5 2008 SP 1 &laquo; If only I were . . .

Pingback from  Visual Studio and .Net 3.5 2008 SP 1 &laquo; If only I were . . .

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 10:24 AM by parvel2000

Hi Scott,

I got your last color scheme. But his one seems way cooler. Can you please share it.

Thanks

Parvel

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 10:27 AM by Pete

Cannot wait for "WPF Interoperability with Direct3D". Great news :)

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 10:30 AM by Dustin Brooks

----------------------------------

MSI (s) (88:B8) [09:19:22:396]: Executing op: ComponentRegister(ComponentId={39A436F1-525F-4D9C-95E5-01D682F0FB25},KeyPath=<\Microsoft.VisualStudio.Tools.Applications.AddInAdapter.v9.0,version="9.0.0.0",publicKeyToken="b03f5f7f11d50a3a",processorArchitecture="MSIL",fileVersion="9.0.30428.1",culture="neutral",State=3,ProductKey={8FB53850-246A-3507-8ADE-0060093FFEA6},,SharedDllRefCount=0,BinaryType=0)

MSI (s) (88:B8) [09:19:22:396]: Executing op: End(Checksum=0,ProgressTotalHDWord=0,ProgressTotalLDWord=0)

MSI (s) (88:B8) [09:19:22:396]: Error in rollback skipped. Return: 5

MSI (s) (88:B8) [09:19:22:426]: No System Restore sequence number for this installation.

MSI (s) (88:B8) [09:19:22:426]: Unlocking Server

MSI (s) (88:B8) [09:19:22:426]: PROPERTY CHANGE: Deleting UpdateStarted property. Its current value is '1'.

MSI (s) (88:B8) [09:19:22:426]: Transforming table InstallExecuteSequence.

MSI (s) (88:B8) [09:19:22:426]: Transforming table InstallExecuteSequence.

MSI (s) (88:B8) [09:19:22:426]: Note: 1: 2262 2: InstallExecuteSequence 3: -2147287038

Action ended 9:19:22: InstallFinalize. Return value 3.

Action ended 9:19:22: INSTALL. Return value 3.

Installation failed with error code: (0x80070643), Fatal error during installation.

--------------------------

I have no Silver Light installed. =/

# Visual Studio 2008, .NET Framework 3.5 SP1 beta

Tuesday, May 13, 2008 10:46 AM by Visual Studio 2008, .NET Framework 3.5 SP1 beta

Pingback from  Visual Studio 2008, .NET Framework 3.5 SP1 beta

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 11:03 AM by Keith

Looks like a great service pack, I just tried downloading and installing it myself, but I cannot get it installed because I have some unknown hotfix installed on my machine (KB944899).  The logs say I need to uninstall it, but nowhere can I find it to uninstall.  Anyone else see this problem?

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 11:07 AM by Lars Wilhelmsen

Hi Scott,

I've installed the SP1 beta - but the ADO.NET Entity Framework bits seems to be missing. I had to uninstall the Beta3-preview as well as the Silverlight tools before I was allowed to run the setup.

--larsw

# More and more Interop…NET FX 3.5 SP1 Beta Bits Live!

Tuesday, May 13, 2008 11:21 AM by Inside The Lab

In the last few weeks, we’ve seen Microsoft announce several Interop-related work that the company is

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 11:27 AM by kevindente

One more question. Any progress on the breakpoint limitations in the Javascript debugger?

weblogs.asp.net/.../is-the-visual-studio-2008-javascript-debugger-crippled.aspx

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 11:37 AM by Ricardo

It's sound great. Thanks for the hard work for help us.

# Visual Studio 2008 SP1 and .NET Framework 3.5 Beta 1

Tuesday, May 13, 2008 11:44 AM by public static Shifd {

Visual Studio 2008 SP1 and .NET Framework 3.5 Beta 1

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 11:56 AM by John S.

During install, it says I have KB944899 installed which causes the VS updater to fail, but I can't find where to uninstall that. Any ideas?

# Scroll Assemblers goings on &raquo; Blog Archive &raquo; Fast Tuesday links

Pingback from  Scroll Assemblers goings on  &raquo; Blog Archive   &raquo; Fast Tuesday links

# VS2008 Service Pack 1 beta y .net 3.5 Service Pack 1 beta Liberados!

Tuesday, May 13, 2008 12:38 PM by DotNetMania@GT

El d&#237;a de ayer Scott gu nos sorprendi&#243; con la noticia de que en horas de la ma&#241;ana se

# VS2008 Service Pack 1 beta y .net 3.5 Service Pack 1 beta Liberados! &laquo; Blog de Carlos Lone

Pingback from  VS2008 Service Pack 1 beta y .net 3.5 Service Pack 1 beta Liberados! &laquo; Blog de Carlos Lone

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 12:43 PM by Miguel Madero

Scott:

Is there anything new for Windows Mobile developers?

We are kinda forgotten and out of the plans for the rest of the products.

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 12:43 PM by John Z

Hi,

Is there a changelist of the issues that were fixed for the framework? All I could find on support.microsoft.com was a list of issues fixed in VS2008. Also, .Net Framework 3.0/3.5 are not listed in the developer products section - 1.0 and 2.0 are there, thogh.

Thanks,

--J

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 12:49 PM by Aleksey Fomichenko

Thank you for continually improving the web development tools inside Visual Studio 2008 - especailly the Javascript formatting/intellisense support. I really appreciate it!

# .NET 3.5 SP1 Beta: Changes Overview

Tuesday, May 13, 2008 1:20 PM by Patrick Smacchia [MVP C#]

Scott Hanselman just published a blog post where he used NDepend to see changes in the code of .NET 3

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 1:24 PM by Jeremy T. Fuller

Scott,

If I were to install this beta on my machine and build/deploy a large ASP.NET application to a production system without the .NET 3.5 SP1, will that pose a problem? I obviously don't want beta bits on production systems, but I would like to take advantage of some of the new VS features (JavaScript formatting in particular). I wouldn't be using any of the new features in the framework. Thanks!

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 1:30 PM by Patrick Smacchia

Just wrote a blog post where SP1 changes are listed:

codebetter.com/.../net-3-5-sp1-beta-changes-overview.aspx

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 2:11 PM by Howard Blackmore

Anything for SharePoint, x64 support or Workflow?  Developing workflows for x64 SharePoint (MS preferred platform) is hell and not supported in vs2008.

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 2:15 PM by Peter

"These optimizations also have the nice side-effect of improving ASP.NET application request per second throughput by up to 10% in some cases."

Is that for the first request or all requests?

Thanks.

# New Silverlight 2 Beta on the Horizon?

Tuesday, May 13, 2008 2:15 PM by Page Brooks

New Silverlight 2 Beta on the Horizon?

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 2:22 PM by Andy Mauer

Hi Scott,

you mentioned that the Vista SP 1 will only be a requirement for the VS2008 SP1 Beta right? Once it is released the .NET FX 3.5 SP1 and the VS2008 SP1 will both work on Vista machines without the Vista SP1?

Thanks and regards,

Andy

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 2:25 PM by Manoj Waikar

Hi Scott,

Thanks a lot, specifically for supporting Visual Web Developer Express edition with class library projects apart from just the web application projects. Without that it was almost impossible to use the VWD Express edition for some serious application development work. So this is great news for individual developers or small shops.

Expecting more such goodies from MS :)

Regards,

Manoj.

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 2:32 PM by sxt

Scott, how do we actually use Routing now? Hackeed's tutorial for Forms just doesn't work anymore and there are no tutorials online.

Also is there a tutorial on actually using Entity Frm.?  Making entities with integrated queries for when you need several tables mapped into one entity like when you have Categories for Beverages and need a Categories.Name in place of Beverages.FKCategory, not Categories.CategoryID?

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 2:36 PM by Tarique

Scott,

Any timeline on when the final SP1 is going to be released ?

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 3:10 PM by James McEachern

I too, have the dreaded KB944899 installed, and cannot proceed.

This is not listed under the Windows Updates, but is listed on the INstalled products for Visual Studio 2008.

Installation failed at this point, and did NOT rollback. I checked the readme, and looked under Uninstall, and found that the installation made it as far as

7. Update for WebDesigner 2007 (KB945140)

I uninstalled the rest (8-17) to return to normal.

I am running Vista 32 with VS 2008 Pro from MSDN.

Yahoo! for the classic ASP support. We have a pile of legacy code that we maintain. I really look forward to this feature.

# VS 2008 and .NET 3.5 Service Pack Beta 1 Released &laquo; Rams On It - .NET

Pingback from  VS 2008 and .NET 3.5 Service Pack Beta 1 Released &laquo; Rams On It - .NET

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 3:26 PM by Florin

I couldn't find client-only framework subset option nowhere after I installed the sp1. Where can I find it? and where are the windows forms controls that were supposed to be added to the control library? I can't seem to find them either (not even in the choose items dialog).

Thanks

# VS 2008 SP1 Beta and .Net 3.5 SP1 Beta, what's new for EF?

Tuesday, May 13, 2008 4:45 PM by Matthieu MEZIL

La Beta de VS 2008 SP1 Beta apporte beaucoup de nouveautés ( cf post de Scott Guthrie ) mais quand est-il

# Using Visual Studio 2008 SP1 Beta with Silverlight

Tuesday, May 13, 2008 4:56 PM by .

Beta 1 of SP1 for Visual Studio and .Net Framework is now available for download .&#160; This is a huge

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 5:00 PM by Dominik

will clients without the sp1 be able to run my assembly when i use all these new things?

it would make sense then why you call this just a 'service pack' :)

# Elegant Code &raquo; What I&#8217;m looking forward to in .net 3.5 Service Pack 1

Pingback from  Elegant Code &raquo; What I&#8217;m looking forward to in .net 3.5 Service Pack 1

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 6:28 PM by shaggygi

Scott,

Does/Will there be features to use LINQ to SQL with SQL Report Services?  Is seems this would be a nice to query data and allow results to be printed or converted to XML, Excel, etc.???

# Run.To.The.Hills &raquo; Blog Archive &raquo; WPF Pixel Shaders are HERE!

Pingback from  Run.To.The.Hills  &raquo; Blog Archive   &raquo; WPF Pixel Shaders are HERE!

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 6:57 PM by aL

great stuff as always scott :)

# ASP.NET AJAX Script Combining Support

Tuesday, May 13, 2008 7:10 PM by Murray Gordon's Blog

.NET 3.5 SP1 introduces a new &lt;CompositeScript&gt; element on the &lt;asp:ScriptManager&gt; server

# Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 8:14 PM by Bowie's Blog

Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

# Visual Studio 2008 SP1 Beta and Performance

Tuesday, May 13, 2008 8:50 PM by The ASPx Blog

Last Friday, Microsoft released a beta of the upcoming Visual Studio Service Pack 1. Check out Scott

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 13, 2008 9:42 PM by James

It doesn't look like wpf-winforms interop is included in the client profile. Is this going to be final?

# VS 2008 / .NET 3.5 SP1 (Beta) - Awesome Mega Ultra Super Edition

Tuesday, May 13, 2008 10:19 PM by James Manning's blog

Don't be fooled - despite being tagged Beta, this actually isn't a Google product.&#160; I kid, I kid!

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Wednesday, May 14, 2008 3:00 AM by Danny

Is there some kind of Go Live license with this framework 3.5 SP1 beta?

Do we have to wait for the final SP1 version?

Great stuff coming together, we're very interested in the framework profiling ;)

# .NET 3.5 SP1 Beta,Visual Studio futures and Visual Studio present..

Wednesday, May 14, 2008 3:33 AM by Notes from a dark corner

As ever, Scott Guthrie has the most comprehensive announcement blog about Visual Studio 2008 and .NET

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Wednesday, May 14, 2008 3:51 AM by Andy Mauer

Hi Scott,

you mentioned that the beta 1 of VS2008 SP1 and .NET FX 3.5 SP1 requires vista sp1 on a vista box but that would be changed when the RTM of VS2008 SP1 and .NET FX 3.5 SP1 will be released. That means we can install the VS2008 SP1 and .NET FX 3.5 SP1 bits on a Vista RTM box? Could you confirm this?

Regards,

Andreas

# .NET Framework 3.5 SP1 Beta

Wednesday, May 14, 2008 4:38 AM by Swiss MSDN Team Blog

Nachdem ich letzte Woche &#252;ber das .NET Framework 3.5 Enhancements Training Kit (preview) hier berichtet

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Wednesday, May 14, 2008 5:59 AM by Daniel

Fantastic Scott,

Just wondering with all the new ways of doing similar thing: Dynamic Data vs Data Services, Entity spaces vs Linq2sql what is the best way to move forward. Could you provide a tech selection matrix to help?

# 有何新功能在 VS 2008 及 .NET Framework 3.5 SP1 中?

Wednesday, May 14, 2008 6:12 AM by 邱英瑞's (Jacky Chiou) blog

在 Scott 的部落格中有詳細的說明,有興趣的朋友可以參考: weblogs.asp.net/.../visual-studio-2008-and-net-framework-3-5-service-pack-1-beta.aspx

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Wednesday, May 14, 2008 6:42 AM by Majid Shahabfar

Tnaks Scott,

As you know to make a fast query using LINQ we can use CompiledQuery which provides for compilation and cache of queries for reuse and its Compile method like this:

CompiledQuery.Compile(Targ0, TArg1, TArg2, TArg3, TResult) Generic Method (Expression(Func(TArg0, TArg1, TArg2, TArg3, TResult)))

max numner of parameters for this method is 4 now in one my qureis I need to pass 5 parameters to make my chached query. Is there any changes regarding this in SP1?

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Wednesday, May 14, 2008 7:03 AM by hao.peng

well looking forward to it

# Quoi de neuf pour vos services avec .Net 3.5 SP1 beta ?

Wednesday, May 14, 2008 7:24 AM by SOA & Interop @ Microsoft France

Le Service Pack 1 du framework .Net 3.5, actuellement en beta, apporte un grand nombre de nouveaut&#233;s

# Kai&#8217;s Blog &raquo; Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Pingback from  Kai&#8217;s Blog &raquo;  Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Wednesday, May 14, 2008 7:51 AM by Jules

Why not call it .NET 3.6  ?

Whats with all the AJAX stuff, surely we are all Silverlight/WCF/LINQToSQL Dudes now !

Seriously you guys need to slow down, I can't keep up with all this great technology. So I've popped over to understanding SharePoint portals stuff. They are a bit slow, and still don't have clear and robust Silverlight::SharePoint Integration setup yet. Could your team help those guys out (i.e. rewrite their BluePrints) ?

What is the timeframe for Silverlight 2.0 Release, Will it be before the Olympics ?

Jules

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Wednesday, May 14, 2008 8:26 AM by chhaysambo

Wow, I really love VS 2008 SP1.

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Wednesday, May 14, 2008 10:06 AM by Vlad Bezden

In your previous blogs you mentioned that you will add additional controls to the WPF

"WPF Control Improvements

Later this year we are also planning to release a number of new controls for WPF.  Included in the list we are working on are DataGrid, Ribbon, and Calendar/DatePicker controls."

I have not seen anything about new WPF controls in this post for SP1 beta.  Are you still planing to have them in SP1?

Thanks a lot, Vlad.

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Wednesday, May 14, 2008 11:22 AM by kisomnu

Really interesting especially the direct3D stuff and the shader effect, which simplify making quality interfaces!

# So Cool: GPU Based Effects in WPF &laquo; Diversions in WPF

Wednesday, May 14, 2008 11:35 AM by So Cool: GPU Based Effects in WPF « Diversions in WPF

Pingback from  So Cool: GPU Based Effects in WPF &laquo; Diversions in WPF

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Wednesday, May 14, 2008 12:14 PM by Bas Jansen

Scott,

When I build an Winform app with this new version can I still run it on an clients machine which runs the (old) 3.5 framework?

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Wednesday, May 14, 2008 1:12 PM by Florin

very interesting that all non-topic replies are posted much faster than topic specific replies. makes me wonder

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Wednesday, May 14, 2008 1:31 PM by Barry Nelson

The Client Profile and related bootstrapper sounds very cool, but will there be a Client Profile redistributable about 26 MB in size that we can use as a setup prerequisite and not send users to the internet? Also, is there any documentation on exactly which pieces/assemblies of the Framework the Client Profile contains? Finally, when VS 2008 scans a project to determine whethere it calls assemblies outside the client Profile or not, how deeply does it go? Does it only scan the references in the project, or is it able to follow a call chain further/deeper than that? Thanks!

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Wednesday, May 14, 2008 1:48 PM by Alex

Is a DatePicker/Calendar control going to be added along with the other 3 new controls?  I realize that there are other DatePicker/Calendar controls out there, but it seems very odd that one isn't provided by default as it is a very standard control.

Thanks!

# VS2008 and .Net 3.5 SP1 Beta release: News links &laquo; It&#8217;s Alright!!

Pingback from  VS2008 and .Net 3.5 SP1 Beta release: News links &laquo; It&#8217;s Alright!!

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Wednesday, May 14, 2008 2:28 PM by Jim

What is the reasoning behind the SP1 naming convention? it's obvious "you've" added features galore. Shouldn't this be a point increase (3.6) ? Please don't make me and everyone else suffer with calling this .NET 3.5 SP1

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Wednesday, May 14, 2008 2:39 PM by Ram

Hi Scott,

With the .NET Framework 3.5 SP1 beta (or RTM) how could one basically play a video file or extract/retrieve frames using WPF (without developers dealing with DirectX)?  For example, say someone wants to extract all frames as JPG/PNG etc from a video file (wmv, mpeg2, mpeg4 etc).

Is this made simple in WPF?  If I asking addressing it to the wrong person could you please point me to someone in the WPF team?

Thanks,

Ram

# Missed it by *that* much: UDAs, Deployment, VS90SP1B1 and SQL Server 2008 CTP6 (Feb'08)

Wednesday, May 14, 2008 3:22 PM by Enjoy Another Sandwich -- Kent Tegels

Happy Spring everybody! As of late I've been heads down working on a new course on SQL Server 2008 and

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Wednesday, May 14, 2008 3:26 PM by Amit K

Maybe it's just me, but of all the great features/fixes you're adding, what I'm happiest about is the Events dialog for WPF develoment and sorting Properties by name.

But even without those, great job to you and your team!

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Wednesday, May 14, 2008 3:43 PM by Jack

May I suggest that MSFT starts filtering these annoying DotNetKicks TrackBacks? (that would be a fantastic thing :-). They really serve no purpose, reduce the value of comments, and, sadly, they show up everyhwere I go.

Thanks.

# .NET 3.5 SP1 and Client Deployment

Wednesday, May 14, 2008 6:58 PM by Mabsterama

So if you're a software developer and haven't been living under a rock all this week, by now you've probably

# VS 2008 and .NET 3.5 SP1 Beta changes for LINQ to SQL, and more

Wednesday, May 14, 2008 7:45 PM by Fabrice's weblog

The ADO.NET team details on its blog what has changed for LINQ to SQL with the release of Visual Studio

# VS 2008 and .NET 3.5 SP1 Beta changes for LINQ to SQL, and more

Wednesday, May 14, 2008 8:30 PM by Community Blogs

The ADO.NET team details on its blog what has changed for LINQ to SQL with the release of Visual Studio

# service contracts vs performance based contracts

Wednesday, May 14, 2008 9:42 PM by service contracts vs performance based contracts

Pingback from  service contracts vs performance based contracts

# Scroll Assemblers goings on &raquo; Blog Archive &raquo; Quick Roundup

Pingback from  Scroll Assemblers goings on  &raquo; Blog Archive   &raquo; Quick Roundup

# .net 3.5 SP1 beta and Visual Studio 2008 SP1 beta are here

Thursday, May 15, 2008 4:28 AM by Zunanji viri

There are various enhancements and even changes in SP1 . Perhaps one of the most interesting is the change

# VS2008 and .NET 3.5 Service Pack 1 Beta released &laquo; DOT NET RULES

Pingback from  VS2008 and .NET 3.5 Service Pack 1 Beta released &laquo; DOT NET RULES

# Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Thursday, May 15, 2008 6:11 AM by .Net Gate

Scott Guthrie has an interesting entry regarding the upcoming Visual Studio 2008 and .NET Framework 3.5...

# VS SP1

Thursday, May 15, 2008 6:16 AM by Knowledge, Insight, Action; In that order!

We're so busy closing our Financial Year that Abu out of Qatar had to point out to me the great SP1 post

# more information ...about VS2008 SP1 and .NET FX 3.5 SP1

Thursday, May 15, 2008 6:41 AM by ccBoy's WebLog

ScottGu's - Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta weblogs.asp.net/.../visual-studio-2008-and-net-framework-3-5-service-pack-1-beta.aspx

# Visual Studio 2008 & .NET Framework 3.5 sp1 beta

Thursday, May 15, 2008 7:44 AM by Microsoft Íslandi, blogg fyrir þróunaraðila

Nú nýlega komu, .NET 3.5 sp1 beta og VS 2008 sp1, á markað. Það hefur gengið mikið á í herbúðum Microsoft

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Thursday, May 15, 2008 9:58 AM by Rob

I think this sp broke the build notification tool.  It doesn't seem to work anymore.  Anyone else have this issue

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Thursday, May 15, 2008 10:18 AM by Cory Isakson

Scott, any chance that the Script Combining feature has an option to auto combine all scripts on the page?  With a ScriptManager on a master page and widely varied scripts needed for content pages it would be great if the combining could just be automated.

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Thursday, May 15, 2008 11:12 AM by John Bailey

Okay, intellisense for classic asp appears to be working, but debugging is not.  When I try to debug it insists on adding a web.config file.  I have tried going ahead and letting it add the file, but then it does not stop at the set breakpoints.  

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Thursday, May 15, 2008 12:33 PM by Eric

So cool Scott.  I love the updates.  

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Thursday, May 15, 2008 2:43 PM by ScottGu

Hi John Bailey,

Can you send me an email (scottgu@microsoft.com) with more details about the debugging issue you are seeing?  I can then loop you in with someone on the team to investigate further.

Thanks,

Scott

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Thursday, May 15, 2008 2:48 PM by dtabraha

AWESOME.

Love the Classic ASP support especially, now I can -almost- uninstall VS2005.

Any chance the updates include the ability to edit SSIS packages for SQL 2005?  That would be the last holdout for me with VS2005.

# New version of .NET Disguised as a "Service Pack"

Thursday, May 15, 2008 3:03 PM by Nasir Ali Khan

.NET 3.5 SP1, another SP huh ..... www.infoq.com/.../35-SP1 weblogs.asp.net/.../visual-studio-2008-and-net-framework-3-5-service-pack-1-beta.aspx

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Thursday, May 15, 2008 3:55 PM by James McEachern

I have a mixed mode site (ASP.NET 2.0 and classic ASP) and I am running on Vista 32 with IIS7 (duh!). I do not get breakpoints to hit either, but the ASP.NET one do break.

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Thursday, May 15, 2008 4:43 PM by Mofoo

I've set up a fresh VM with VS08 + 3.5 SP1. I attempted to create a new website with NW, a Data Service (.svc) and call it in default.aspx via javascript. in the prev. releases, one had to add a scriptmanager and reference MicrosoftAjaxDataService.js.

Now this doesn't seem to work. Any idea why? Do I have to redirect assemblies in my web.config to 3.6?

# Third Major release of WPF

Thursday, May 15, 2008 6:03 PM by WPF Client Development Blog

The third major update of WPF has just been released as a Beta, as part of the .Net Framework 3.5 Service

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Thursday, May 15, 2008 7:42 PM by Morten

Looks like you've managed to still ignore this 3 year old serious bug (which does have a simple fix):

connect.microsoft.com/.../ViewFeedback.aspx

Will it ever be addressed?

# What’s New for Performance in WPF in .Net 3.5 SP1

Thursday, May 15, 2008 7:44 PM by WPF Performance

As you know the .NET Framework 3.5 Service Pack 1 Beta download is now available. There are many improvements

# More WPF SP1 resources

Thursday, May 15, 2008 11:08 PM by Vincent Sibal's Blog

Here are some pretty comprehensive resources on the new features in our WPF SP1 release. Scott Guthrie's

# .NET 3.5 SP1: A Service Pack or The Real .NET 3.5

Thursday, May 15, 2008 11:44 PM by Chris Pietschmann

.NET 3.5 SP1: A Service Pack or The Real .NET 3.5

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Friday, May 16, 2008 12:07 AM by manjunath

Thanks scott.

Waiting for your tutorials on LINQ usage in distributed applications scenario and ADO.Net entity framework.

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Friday, May 16, 2008 4:00 AM by SoftMind

Any News about Dynamic Languages Support for IronRuby/IronPython with the Final SP1.

I was expecting... since both the languages are almost ready.

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Friday, May 16, 2008 4:07 AM by Rick

Code below still throws InvalidOperationException is this by design or that's a bug that has not been fixed?

SIDDB db = new SIDDB(connectionString);

KN_TimeZone timeZone = db.KN_TimeZones.FirstOrDefault();

KN_TimeZoneInterval interval = new KN_TimeZoneInterval();            

timeZone.KN_TimeZoneIntervals.Add(interval);

ChangeSet set = db.GetChangeSet();

interval.KN_TimeZone.KN_TimeZoneIntervals.Remove(interval);

set = db.GetChangeSet(); //InvalidOperationException

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Friday, May 16, 2008 4:19 AM by Anders J

This looks great!

I have a question though. How can I find the new "bootstrapper" component (.NET Framework Setup Bootstrapper for Client Applications)?

And is there more information about how this works somewhere?

Regards

Anders

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Friday, May 16, 2008 4:34 AM by PandaWood

BTW why do Americans always talk about important releases in terms of 'summer/fall'?

It's Northern Hemisphere shovenism, for a start, but why not just say the month name/s?

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Friday, May 16, 2008 4:59 AM by ESICO

Great optimizations for developers.

Are there any optimizations for users? especially the user-experience (think iPhone like)?

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Friday, May 16, 2008 7:08 AM by Alexander

Hi,

does anybody knows how to install this Service Pack if I have proxy? Where I can setup proxy setting for this installer?

Thanks,

Alexander.

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Friday, May 16, 2008 10:47 AM by Greg

Will the basic application profiler tool be put into VS 2008 professional?  It is only available in the much more expensive VS 2008 team system.

Visual Studio 6, way back in 1999, included the profiler as a standard feature in all versions.

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Friday, May 16, 2008 11:36 AM by scott kramer

why does the classic asp editor's entire screen flash with each character typed; when vs2008 is used through terminal services-- it did that in vs2005 also--?? any ideas or workarounds for this?

# visual studio 2008 sp1 beta – cuidados para quem está trabalhando com silverlight

Friday, May 16, 2008 2:48 PM by Good News and No News: Cezar Guimarães

No início desta semana o Scott Guthrie anunciou em seu blog que foi liberado o beta do service pack 1

# Visual Studio 2008 SP1 Beta and Performance

Friday, May 16, 2008 3:23 PM by The ASPx Blog

&lt;UPDATE: May 16, 2008&gt; Scott Guthrie and his team picked up on this post. They have since verified

# ASP.NET 3.5 MVC &raquo; Blogg Arkiv &raquo; .NET 3.5 SP1 Beta

Friday, May 16, 2008 3:30 PM by ASP.NET 3.5 MVC » Blogg Arkiv » .NET 3.5 SP1 Beta

Pingback from  ASP.NET 3.5 MVC  &raquo; Blogg Arkiv   &raquo; .NET 3.5 SP1 Beta

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Friday, May 16, 2008 3:45 PM by Sumant

It's amazing to see so many enhancements on roll within such a short span of time. I can't wait to try them!

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Friday, May 16, 2008 4:32 PM by Tomas

Thanks for your blogs! You mentioned that ASP.NET MVC has its own copy of Routing Engine. It's interesting to me if I can use Routing Engine for WinForms having installed only ASP.NET MVC Preview 2 but not SP1 beta?

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Friday, May 16, 2008 7:38 PM by Craig

Great news, can't wait!

Quick question regarding the DirectX support, most of the current work I've done with DirectX (using a 3rd party engine) has required a window handle to let the engine/directx(?) know where to send the output to. Will this still be the case?

If you are looking for external testers for the dx functionality I'd be very keen to get involved!

# Weekly Web Nuggets #12

Friday, May 16, 2008 8:06 PM by Code Monkey Labs

General Disabling the Visual Studio Service Host : A new feature in Visual Studio 2008 is the WCF service host - similar to the web development server, but for WCF services. At times, this is handy...all other times, it's obnoxious. Nicholas Allen has

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Friday, May 16, 2008 8:30 PM by Gustavo Cavalcanti

.Net3.5 SP1 went smooth, but there were 2 problems on SP1 for VS2008 right off the bat:

1) Installation asks to close a bunch of applications, including "itself"

2) After installing it, my VS lost my custom configurations.

# Visual Studio 2008 e .Net Framework 3.5 SP1

Friday, May 16, 2008 9:09 PM by Márcio Fábio Althmann

Olá a todos. Para aqueles que ainda não ficaram sabendo, a Microsoft disponibilizou o SP1 do Vs.Net 2008

# .NET 3.5 SP1 Beta and real life &laquo; Roman&#8217;s Blog

Saturday, May 17, 2008 4:54 AM by .NET 3.5 SP1 Beta and real life « Roman’s Blog

Pingback from  .NET 3.5 SP1 Beta and real life &laquo; Roman&#8217;s Blog

# Using WCF for REST, Part 2 &laquo; Infovark Underground

Saturday, May 17, 2008 2:17 PM by Using WCF for REST, Part 2 « Infovark Underground

Pingback from  Using WCF for REST, Part 2 &laquo; Infovark Underground

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Saturday, May 17, 2008 9:22 PM by Markus Ohreallyus

This sounds great, Scott!

I love the list of new features.  However, there wasn't much of a mention of any bug fixes here.

Do you happen to know if the Spirograph bug (www.bobpowell.net/thespirographbug.htm) was fix with the .widen method of a GraphicsPath?  I've been waiting forever for this one to be addressed.

Thanks,

Mark

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Sunday, May 18, 2008 6:25 AM by Christian

Hi!

I just installed the sp1 and the visual studio update.

I enabled the "client profile" and now the references to System.Servicemodel and System.Runtime.Serialization do not work...

Any hints? Thanks!

# Visual Studio SP1 Beta delima

Sunday, May 18, 2008 8:21 AM by No1 Microsoft Fan

(Insert pain and suffering) Working with betas is risky, indeed. It&#39;s something I&#39;ve referred

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Sunday, May 18, 2008 8:30 AM by Marc Weber

amazing WPF runtime improvements..Cool

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Sunday, May 18, 2008 9:13 PM by wisecarver

blogcastrepository.com/.../visual-studio-sp1-beta-delima.aspx

# Visual Studio Service pack 1 Released...

Monday, May 19, 2008 8:59 AM by Matt Pilgrim - Talking 'Soft

Great post from Scott Guthrie..... weblogs.asp.net/.../visual-studio-2008-and-net-framework-3-5-service-pack-1-beta.asp

# WPF 3.5 SP1 Beta release results in WPF Week on Channel 9

Pingback from  WPF 3.5 SP1 Beta release results in WPF Week on Channel 9

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 19, 2008 3:41 PM by csteeg

At johnpapa (and others):

at my pc, it were the powercommands that were causing the exception. Aftere uninstalling powercommands, it all went smooth

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 19, 2008 11:22 PM by Vlad Kosarev

You have to uninstall this hotfix - weblogs.asp.net/.../vs-2008-web-development-hot-fix-roll-up-available.aspx

Took me a while to figure out why my install was failing.

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 19, 2008 11:22 PM by paul.vencill

SO this may be petty, but I noticed that my icon for VS 2k8 has changed to have a little 9 in a box... what gives?  Any way to change it back?

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 19, 2008 11:45 PM by ru551an

Hi Scott -

we have a C# WinForms app that user custom DirectX OCX control (written in C++) that renders video and I was thinking about migrating it into WPF or even into SL... does that mean I'll have to rewrite the control completely using WPF or can I reuse the existing control in the new technology?

p.s. great blog

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 20, 2008 12:15 AM by Kushal

Hey your working environment looks really nice...

can u share that ??

# Using Binding.StringFormat

Tuesday, May 20, 2008 2:24 AM by Rudi Grobler

I know I am a little late on blogging about .NET 3.5 SP1, but here goes... This is a huge release...

# blog templates space free

Tuesday, May 20, 2008 4:25 AM by blog templates space free

Pingback from  blog templates space free

# Visual Studio 2008 et .NET Framework 3.5 Service Pack 1 Beta

Tuesday, May 20, 2008 7:38 AM by Blog-Microsoft.fr

Visual Studio 2008 et .NET Framework 3.5 Service Pack 1 Beta

# Visual Studio 2008 i .NET Framework 3.5 z dodatkiem Service Pack 1 Beta. | ??ukasz G??sior - Blog

Pingback from  Visual Studio 2008 i .NET Framework 3.5 z dodatkiem Service Pack 1 Beta. | ??ukasz G??sior - Blog

# missing web templates in visual studio installed templates

Pingback from  missing web templates in visual studio installed templates

# Visual Studio 2008 および .NET Framework 3.5 サービスパック1 ベータ

Tuesday, May 20, 2008 11:46 AM by Chica's Blog

Visual Studio 2008 および .NET Framework 3.5 サービスパック1 ベータ

# EF Debate&#8230; &laquo; Archiveloper

Tuesday, May 20, 2008 3:04 PM by EF Debate… « Archiveloper

Pingback from  EF Debate&#8230; &laquo; Archiveloper

# May 20th Links: ASP.NET, ASP.NET AJAX, .NET, Visual Studio, Silverlight, WPF

Wednesday, May 21, 2008 1:03 AM by ScottGu's Blog

Apologies for the sparseness of my posting the last few weeks - work and life have been busy here lately

# May 20th Links: ASP.NET, ASP.NET AJAX, .NET, Visual Studio, Silverlight, WPF

Wednesday, May 21, 2008 1:49 AM by Mirrored Blogs

Apologies for the sparseness of my posting the last few weeks - work and life have been busy here lately

# Serializzazione delle Entità dell' Entity Framework con WCF in NET 3.5 SP1

Wednesday, May 21, 2008 4:49 AM by Pietro Brambati Blog

Un titolo un po' complicato, certo, vediamo di chiarire meglio il contenuto di questo post. Lo scopo

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Wednesday, May 21, 2008 8:30 AM by Olavo Neto

Hi Scott,

Outstanding job, you guys are doing great.

But I would like to know what happened to the XML Schema Designer. We had it on VS2005, but VS2008 came without it. Some have told that it was a crap and that the team was rewriting it, and it was supposed to ship with SP1, any news about it?

Regards

Olavo

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Wednesday, May 21, 2008 11:37 AM by Eli Allen

Will there be a sp2 for .net 2.0 to go along with this?  (i.e. to get the improvments to the core of .net that were made like the JITer)

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Wednesday, May 21, 2008 1:25 PM by Craig Stuntz

Scott,

The Visual Studio installation fails completely for me (although the framework installation, and both of the tools installs work fine).  I wish there were a more obvious way to report defects and get feedback on them than commenting on your blog.  I have submitted an automated incident report via the installer, but I'm not sure where to go from here, as I would like to try the service pack.  I have searched the Microsoft message boards and the Web for the errors in question, but I haven't yet found anyone having the same problem.

In the installation log, I see:

Patch (C:\DOCUME~1\CMS~1.VER\LOCALS~1\Temp\Microsoft Visual Studio 2008 SP1 (Beta)\VS90sp1-KB945140-X86-ENU.msp;C:\DOCUME~1\CMS~1.VER\LOCALS~1\Temp\Microsoft Visual Studio 2008 SP1 (Beta)\VC90sp1-KB947888-x86-enu.msp) install failed on product (Microsoft Visual Studio 2008 Professional Edition - ENU). Msi Log: <Microsoft Visual Studio 2008 SP1 (Beta)_20080521_093532362-MSP0.txt>

Opening the linked file, I see this:

DEBUG: Error 2746: Transform RTM.1 invalid for package C:\WINDOWS\Installer\5d5916dc.msi. Expected product {80C06CCD-7D07-3DB6-86CD-B57B3F0614D8}, found product {D7DAD1E4-45F4-3B2B-899A-EA728167EC4F}.

I see a very similar message ("Expected product [GUID], found product [GUID].")  in many places in that linked file.  The GUIDs vary, so I will paste them below.  I wish that MSI reported the product name, instead of just the GUID; that would make this easier to diagnose.

DEBUG: Error 2746: Transform RTM.2 invalid for package C:\WINDOWS\Installer\5d5916dc.msi. Expected product {91C325A6-D5DE-3444-B598-97DF50EE0FAF}, found product {D7DAD1E4-45F4-3B2B-899A-EA728167EC4F}.

DEBUG: Error 2746: Transform RTM.3 invalid for package C:\WINDOWS\Installer\5d5916dc.msi. Expected product {4298C783-524F-3C3E-9B11-36FA64604B2B}, found product {D7DAD1E4-45F4-3B2B-899A-EA728167EC4F}.

DEBUG: Error 2746: Transform RTM.4 invalid for package C:\WINDOWS\Installer\5d5916dc.msi. Expected product {8F10429A-DFF5-3B55-9306-0ADEB337CFD3}, found product {D7DAD1E4-45F4-3B2B-899A-EA728167EC4F}.

DEBUG: Error 2746: Transform RTM.5 invalid for package C:\WINDOWS\Installer\5d5916dc.msi. Expected product {23D0117E-F9A5-364E-A379-70EC2DE02B9F}, found product {D7DAD1E4-45F4-3B2B-899A-EA728167EC4F}.

DEBUG: Error 2746: Transform RTM.6 invalid for package C:\WINDOWS\Installer\5d5916dc.msi. Expected product {F434F50E-7614-3EA8-9008-2FB866B697DA}, found product {D7DAD1E4-45F4-3B2B-899A-EA728167EC4F}.

DEBUG: Error 2746: Transform RTM.7 invalid for package C:\WINDOWS\Installer\5d5916dc.msi. Expected product {BA0C9AAF-1327-3F06-B49C-349B4BE8F740}, found product {D7DAD1E4-45F4-3B2B-899A-EA728167EC4F}.

If you could point me towards a fix/way to install the service pack successfully, I'd appreciate it.

Thank you!

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Wednesday, May 21, 2008 2:06 PM by TomDeleu

Hmm. i keep getting the dialog box asking me to locate 'vs_setup.msi' because a network resource is unavailable. Any info on that topic?

(running vista with SP1; uninstalled both the KB update and silverlight tools)

# .NET Framework Client Profile [Justin Van Patten]

Wednesday, May 21, 2008 4:42 PM by BCL Team Blog

Last week Soma and Scott Guthrie announced the availability of Visual Studio 2008 and .NET Framework

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Thursday, May 22, 2008 2:49 AM by kamii47

Are there any planing of Charts controls with Asp.net or silverlight?

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Thursday, May 22, 2008 1:28 PM by eric

Hi I have the same problem as once of the readers above:

Pingback from  msi file does not install

any ideas?

# Community Convergence XLIV

Thursday, May 22, 2008 3:16 PM by Charlie Calvert's Community Blog

Welcome to the forty-fourth Community Convergence . I want to remind every one that the C#, VB and dynamic

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Thursday, May 22, 2008 3:42 PM by Relaxin

I figured it out!

If your SP1 Beta is failing in such a way that you don't see the ADO Design Time EF, then try this.

You need to remove KB946581 and then reinstalled SP1 Beta and it worked!

KB946581 is a "A cumulative update for Visual Studio 2008 and Visual Web Developer Express 2008"

support.microsoft.com/.../946581

And it also looks like SP1 Beta reinstalls KB946581 for you.

I hope this helps others.

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Friday, May 23, 2008 12:01 PM by timgaunt

Does it work around the issue of not showing solution tasks on the task list when the file is closed (C#)?

Tim

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Friday, May 23, 2008 12:50 PM by juanlao

Hi all:

You can read this post in spanish here:

thinkingindotnet.wordpress.com/.../service-pack-1-beta-para-vs-2008-y-net-framework-35

# Comparaison de versions avec NDepend: un exercice de style intéressant...

Friday, May 23, 2008 4:38 PM by Mitsuru FURUTA - Microsoft FRANCE

Vous n'êtes pas sans savoir ( plus après ça en tout cas.. ) qu'une version beta du service pack 1 du

# Updated information and tool to collect VS 2008 SP1 setup log files

Friday, May 23, 2008 8:56 PM by Aaron Stebner's WebLog

Recently, beta versions of Visual Studio 2008 SP1 and the .NET Framework 3.5 SP1 were released (see announcement

# Links op 20 mei: ASP.NET, ASP.NET AJAX, .NET, Visual Studio, Silverlight, WPF

Saturday, May 24, 2008 3:52 AM by Scott Guthrie's Blog in Dutch

Mijn verontschuldigingen voor de weinige posts de laatste weken. Mijn werk en leven zijn enorm de druk

# Linq To Sql or Entity Framework? : The Orbifold

Saturday, May 24, 2008 6:59 AM by Linq To Sql or Entity Framework? : The Orbifold

Pingback from  Linq To Sql or Entity Framework? : The Orbifold

# The future of .NET, Visual Studio and more &laquo; blog.jemm.net

Pingback from  The future of .NET, Visual Studio and more &laquo; blog.jemm.net

# 2008 sp1

Sunday, May 25, 2008 2:20 AM by 2008 sp1

Pingback from  2008 sp1

# ASP.NET Dynamic Data: primo contatto

Sunday, May 25, 2008 4:55 AM by Il blog di Luca Mauri

ASP.NET Dynamic Data: primo contatto

# Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Sunday, May 25, 2008 5:05 PM by Is This Thing On?

If you haven't heard by now it is out and you can read more at ScottGu's blog here: &#160; weblogs.asp.net/.../visual-studio-2008-and-net-framework-3-5-service-pack-1-beta.asp

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Sunday, May 25, 2008 5:06 PM by John Bailey

Okay, the debugging of classic ASP is working.  I had misinterpreted the fix to mean that you would get the full debugging experience when debugging classic ASP now, but this is not the case.  You still have to manually connect to the process.

There is a great set of instructions on how to do this is here btw:  blogs.msdn.com/.../552108.aspx

This works equally well for VS 2008 with the service pack.

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, May 26, 2008 10:58 AM by pisoias

I've found that using ListView and a LinqDataSource you have to click twice on the Edit button to edit the item - is this correct ? :)

# Hecgo.com &raquo; Service Pack 1 de Visual Studio 2008 y .NET Framework 3.5

Pingback from  Hecgo.com  &raquo; Service Pack 1 de Visual Studio 2008 y .NET Framework 3.5

# Eye On .NET 2

Tuesday, May 27, 2008 3:28 PM by Hisham Elbreky

Blogs Scott Hanselman The Weekly Source Code : OpenID Edition , LINQ to Regular Expressions and Processing

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Thursday, May 29, 2008 1:23 PM by John Mao

It takes me a year to download it...

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Thursday, May 29, 2008 2:59 PM by Mario

What font are you using in those screen shots?

# Trying out Binding.StringFormat

Thursday, May 29, 2008 5:31 PM by Mike Hillberg's Blog on Wpf (.Net and Silverlight)

StringFormat is a new property in .Net 3.5 SP1, which is currently in Beta. See Scott’s blog for more

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Friday, May 30, 2008 4:43 PM by Jackie Whitehead

When will production version of VS2008 be ready (not Beta)?

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Friday, May 30, 2008 5:09 PM by Bob Moran

Since installing the SP 1, when debugging and single-stepping the program takes off running most of the time (as thought I clicked on Run). The app is a C# running on Windows XP.

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Friday, May 30, 2008 8:57 PM by Lixin

Hi Scott,

Could you guys fix the problems in compatibility with Silverlight tools as soon as possible? I think, in a workable SOA environment, there are urgent demands for,

1. Silverlight 2.0 Beta 2

2. WCF contracts using ADO.NET Entity Framework entities

3. ADO.NET data services

Thanks

# Trying out Binding.StringFormat : Silverlight

Saturday, May 31, 2008 12:16 PM by Trying out Binding.StringFormat : Silverlight

Pingback from  Trying out Binding.StringFormat : Silverlight

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Sunday, June 01, 2008 10:16 AM by Gary Davis

Install of VS2008 SP1 Beta failed so I tried starting with the Framework 3.5 SP1 beta but it also fails. This is in the log:

[06/01/08,10:08:32] Microsoft .NET Framework 2.0SP1 (x64) (CBS): [2] Error: Installation failed for component Microsoft .NET Framework 2.0SP1 (x64) (CBS). MSI returned error code 1

[06/01/08,10:08:48] WapUI: [2] DepCheck indicates Microsoft .NET Framework 2.0SP1 (x64) (CBS) is not installed.

I am not sure if the Framework 2.0 SP1 is installed - I think the error may be bogus but I will check.

I am running Vista Ultimate X64.

I tried removing the Hotfix rollup for VS2008 and ran the KB cleanup. I don't have the Silverlight beta installed.

Thanks,

Gary Davis

# ASP.NET MVC ondersteuning met Visual Web Developer 2008 Express

Monday, June 02, 2008 1:36 AM by Scott Guthrie's Blog in Dutch

Vorige week blogde ik over de ASP.NET MVC Preview 3 release . Eén belangrijk ding ben ik vergeten mee

# Soporte de Visual Web Developer 2008 Express para ASP.NET MVC &laquo; Thinking in .NET

Pingback from  Soporte de Visual Web Developer 2008 Express para ASP.NET MVC &laquo; Thinking in .NET

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, June 02, 2008 2:35 PM by Jay Stevens

when will the production version be ready?

thanks

Jay

# Useful Links

Tuesday, June 03, 2008 3:57 AM by Zooba Chat

Recently my RSS Reader (iGoogle) has been chocker with useful links for web developers so I thought I'd

# vs 2008 reporting services

Tuesday, June 03, 2008 5:08 PM by vs 2008 reporting services

Pingback from  vs 2008 reporting services

# Paul Stovell says&#8230; &raquo; DataGrid isn&#8217;t a Control, it&#8217;s a Lifestyle

Pingback from  Paul Stovell says&#8230; &raquo; DataGrid isn&#8217;t a Control, it&#8217;s a Lifestyle

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Wednesday, June 04, 2008 3:22 AM by David Gasner

Just wondering what I'm doing wrong, but for some reason I can't get the compositescripts feature to combine more than 30 scripts.  30 scripts load just fine, but at 31 I get runtime AJAX errors?

Thanks

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Wednesday, June 04, 2008 4:05 AM by Morten Grøtan

I ran into some problems when I decided to cancel the installation midway through the 3.5 SP1 Beta, as it was taking quite some time and used a lot of resources on my work computer when I had more pressing matters to attend to.

This was when installing the Visual Web Developer 2008 Express Edition With SP1 Beta (just for fun), after first having uninstalled an expired VS 2008 Prof. Ed. trial. It said that it would finish installing the current item (the framework) and then cancel, which it seemed to do.

Then the havoc started;

* Visual Studio 2005 refused to start, only saying that it crashed and needed to restart, and would I like to send an error report.

* Other programs requiring .NET Framework 2.0(!) stopped working, like Quest's TOAD for SQL Server. Even SQL Server 2005 Management Studio refused to start - neither of them even giving an error message.

* IIS (5.1 on XP) had stopped, but could easily be started again.

* The websites in IIS had been reset to use .NET Framework 1.1, but could easily be changed back.

* Browsing to a local ASP.NET 2.0-enabled website yielded the error message "The remote procedure call failed and did not execute."

* Even more worringly, trying to open the context menu in Windows Explorer, or even hitting the Delete button to delete a file, made explorer crash without warning. This was consistent. Being able to do this without problems when in Safe mode later makes me suspect a 2.0-related issue there as well, perhaps with a third party context menu extender (have a couple, like ZipGenius and some "copy path" thing).

* Tried repairing VS 2005, but during the install Document Explorer 2005 repeatedly failed the same way as VS 2005 did. Also, at one point it apparently tried to start VS 2005 which still failed the same way. The installation ended with "Setup failed" and the following log contents:

[06/03/08,10:07:01] Microsoft .NET Framework 2.0: [2] Error code 1603 for this component means "Fatal error during installation.

"

[06/03/08,10:07:01] Microsoft .NET Framework 2.0: [2] Setup Failed on component Microsoft .NET Framework 2.0

* Proceeded to uninstall VS 2005 and then reinstalling. It too experienced the same crashes during installation, but mysteriously reported that the setup was successful. Still no 2.0-based programs working and VS 2005 crashed consistently when starting.

* Tried to uninstall all remains of .NET Framework editions, but was denied this due to (Windows Installer) bindings to other programs.

* Found and downloaded Aaron Stebner's "Automated cleanup tool to remove the .NET Framework 1.0, 1.1, 2.0, 3.0 and 3.5", which after a couple of runs managed to delete (almost) all traces of all framework editions. I just had to manually delete the 2.0 folder myself.

* Reinstalled the .NET Framework 2.0 SP1 redistributable and suddenly everything was working again. Even context menu and deleting files in Windows Explorer worked again. Aaron's the hero of the day!

Can't help thinking that perhaps everything would have turned out OK if I had only had the patience to let 3.5 SP1 Beta install. But no way if I'm gonna test that hypothesis on my work computer again - my boss is angry enough as it is.

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Wednesday, June 04, 2008 4:21 AM by Gabriël

I have installed SP1 BETA

1. I lost all my custom configuration too (window layout, shortcuts)

2. The macro explorer is gone from the menu

3. Background or realtime compilation is great. But it gives a lot of errors on ASPX.cs files, but when I open the files all the errors disappear, since there were not errors in the first place. This seems to happen a lot with web usercontrols (ascx). It also does not seem to recomplile the web user controls, so new properties are not recognized untill a real build.

My 2 cents,

Cheers,

Gabriël

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Wednesday, June 04, 2008 1:54 PM by Bob Z

Hi, Scott,

Where are the mobile web form and mobile web control?

I had a MS support case regarding this issue in Match. I was told that the mobile web form and mobile web control would be in the SP1 for VS 2008. But I do not see them in your above description. Will mobile web form and mobile web control be part of the final release of SP1?

If SP1 does not contain mobile web form and mobile web control, we just cannot use VS 2008 to upgrade any websites containing mobile web forms. When it comes to develop new mobile web application, we have to use VS 2003 since the functions were taken out by the SP1 for VS 2005.

Now more and websites have a mobile version. But Microsoft seems give up the mobile web application development in Visual Studio.

# XAML markup is for real men

Wednesday, June 04, 2008 7:27 PM by .NET is pretty much very nice, thank you

XAML markup is for real men

# Visual Studio 2008 Express SP1 Beta &laquo; Mark Gilbert&#8217;s Blog

Pingback from  Visual Studio 2008 Express SP1 Beta &laquo; Mark Gilbert&#8217;s Blog

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Thursday, June 05, 2008 5:07 AM by Gabriël

It to like the background compiling a lot, displaying current errors. But in the web projects it displays errors which aren't errors really. This is mostly happening with code related to User Controls (ascx).

If you double click such an error, it load the .cs file from the .aspx file, shows redlines under the errors for a brief second and then concludes that these aren't errors and removes them from the error list.

This is quite unhandy since you get a full list of errors while in fact you might only have 1 or 2, or none ;)

Anyone else having this?

Gab

# Trying out Binding.StringFormat | Silverlight

Thursday, June 05, 2008 1:23 PM by Trying out Binding.StringFormat | Silverlight

Pingback from  Trying out Binding.StringFormat | Silverlight

# Ultracet.

Thursday, June 05, 2008 2:49 PM by Lexapro-ultracet-interactions.

Drug interactions lodine and ultracet. Ultracet.

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Thursday, June 05, 2008 10:00 PM by Jose Guay

Hi Scott.

After a few weeks of reading I decided to install SP1 Beta but to my surprise it got my VS slower than usual. I know I must be doing something wrong, but I would like to hear from you, first hand, what can I check to improve the performance of VS.

The issue happened with an ASP.NET app targeting framework 2.0. Is not a big app, about 30 pages, some user controls, the usual stuff...

Thanks any comment or help.

Jose Guay

# .NET 3.5 SP1 Beta Feature Information

Monday, June 09, 2008 1:02 AM by Hanu Kommalapati's blog

The best all-up run-down of all the features (WPF, ASP.NET, WinForms, VS etc.) can be found on Scott

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, June 09, 2008 5:37 AM by Michael

Once again Microsoft produces these buzz words with confusing versions.  What is the differenece between ASP.NET 3.5 and .NET 3.5?  Should they not be the same thing?  Is ASP.NET technically a part of the .NET framework?  I am looking for hosting providers and some tell me that they support ASP.NET 2.0 with .NET 3.5 which is same as ASP.NET 3.5???  No wonder programmers are always confused.

# Publicado Silverlight 2 Beta 2 &laquo; Thinking in .NET

Monday, June 09, 2008 2:53 PM by Publicado Silverlight 2 Beta 2 « Thinking in .NET

Pingback from  Publicado Silverlight 2 Beta 2 &laquo; Thinking in .NET

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Monday, June 09, 2008 5:07 PM by JMan

I have installed sp1 beta, and it has broken my ajax stuff. I keep getting an error thrown in the (ScriptResource.axd) MicrosoftAjaxWebForms.debug.js. I am removing it as we speak.  In the class/method of Sys.Net.XMLHttpExecutor is where it is thrown.  

Typical.

# Visual Studio 2008 içerisinde ASP desteği geri geliyor

Tuesday, June 10, 2008 6:32 AM by IIS ve ASP.NET Notları

Genelde sadece bağlantı içeren bloglar yayınlamamayı tercih etsem de bazen bu kuralı "esnetmek" gerekiyor.

# MSDN Pulse June 2008 Is Here!

Wednesday, June 11, 2008 12:53 AM by All Your Base Are Belong To Us

With a few days&#39; delay, I wanted to let you know that the MSDN Pulse issue for June 2008 has been

# Silverlight 2 Beta2 Release

Wednesday, June 11, 2008 1:09 AM by Scott Guthrie's Blog in Dutch

Silverlight 2 Beta2 is vandaag op de markt gelanceerd. Je kunt de toolondersteuning voor Silverlight

# Visual Web Developer 2008 Express supporte ASP.NET MVC

Wednesday, June 11, 2008 5:34 AM by Scott Guthrie's Blog in French

Je viens juste de publier un poste sur la Preview 3 du framework ASP.NET MVC et j'ai oubli&#233; de signaler

# Installing VS2008 SP1 Beta 1

Wednesday, June 11, 2008 12:39 PM by Mike Ormond's Blog

I'd been holding off installing VS2008 SP1 Beta 1 as I was waiting for the Silverlight 2 support (and

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Wednesday, June 11, 2008 10:30 PM by Peter Ma

I am not trying this one yet, not gona try anything else but MVC until its a real release lol.  and until now I still can't get ajax to run correctly with MVC

# re: Visual Studio 2008 and .NET Framework 3.5 Service Pack 1 Beta

Thursday, June 12, 2008 9:55 AM by bslaght

Scott,

 Just a quick question, I am running the Beta 1 bits and I see something hasn't been fixed yet from RTM.  I have the bug in which controls become unavailable, (greyed out or do not appear at all) in the Toolbox when using my Microsoft Wireless Desktop (6000 Series).  Google for this and you find this is a very common problem.  The fix at this point is unplug the Wireless Desktop receiver, launch, VS08 and then plug it back in.  I don't know if this is VS issue or Wireless Desktop Driver issue.  But it is very odd.  It seems this is only happening with MS hardware, other wireless desktop kits (logitech) seem to work fine.  Can you maybe see if this is in the bug list and let the community when and if it will be fixed or loop us into support?

Thanks

Brett

# How to get TechMeme’d – write about something bashing Vista

Monday, June 16, 2008 5:17 PM by Artificial Ignorance - Anand Iyer's Blog

This morning, I read Matt Asay ’s article on CNET about “ 92% of developers ignoring Vista ”. Just li