.NET Blog

Free. Cross-platform. Open source. A developer platform for building all your apps.

Latest posts

How to extend target file to include registry settings for web project package
Feb 9, 2010
0
0

How to extend target file to include registry settings for web project package

Web Development Tools Microsoft
Web Development Tools Microsoft

Web project package and deployment targets files are written with extensibility in mind.  User can easily extend a property to include more functionalities in their package by using msbuild targets and properties.  If we check the Microsoft.Web.Publishing.targets file under “%Program Files%MSBuildMicrosoftVisualStudiov10.0Web”, we can see the following, which means if file $(WebPublishPipelineProjectName).wpp.targets exists in the project directory, we’ll import it automatically when build package or publish. Here’s steps to create a customized target file to include some registry keys in the web ...

Visual Studio 2010 RC Feedback Channel for Web Tools
Feb 9, 2010
0
0

Visual Studio 2010 RC Feedback Channel for Web Tools

Web Development Tools Microsoft
Web Development Tools Microsoft

As you probably heard the Visual Studio 2010 RC is currently available for MSDN subscribers! You can download it from here http://msdn.microsoft.com/en-us/vstudio/dd582936.aspx. General public release is slated for Wed.The Web Development Tools Team has setup a DL that we would like you to use to send us direct feedback on anything web development related for this RC.The DL is: vsweb@microsoft.comOnce you have had a chance to use the product please send us feedback on your overall experience with our product. The more details you can provide the better.Also, feel free to shoot us a mail if: If you do encou...

VSDoc for jQuery 1.4.1 Now Available
Feb 8, 2010
0
0

VSDoc for jQuery 1.4.1 Now Available

Web Development Tools Microsoft
Web Development Tools Microsoft

We finished generating a new VSDoc for the latest update of jQuery.  You can download it from the jQuery Downloads page.  A refresher on how to use the file can be found here or here.  Happy coding!Jeff KingProgram ManagerVisual Studio Web Tools

Sharing Silverlight Assemblies with .NET Apps
Dec 1, 2009
0
0

Sharing Silverlight Assemblies with .NET Apps

CLR Team
CLR Team

At the recent PDC, Scott Guthrie announced in his Silverlight 4 keynote that we had implemented a new feature, to enable developers to share certain assemblies between Silverlight and .NET. There are many differences between Silverlight and full .NET including WPF, and this new feature doesn’t solve those differences – in those cases, you’ll still need to compile your code twice. But in some cases, developers will write code that only uses features whose behavior is identical between Silverlight and full .NET, and in those cases, we want to enable that code to be shared. This post provides more detail on that sha...

CLR Inside Out – In-Process Side-by-Side
Dec 1, 2009
0
0

CLR Inside Out – In-Process Side-by-Side

CLR Team
CLR Team

    The new installment of the “CLR Inside Out” column in MSDN Magazine is now available on line.  This month we have an article from Jesse Kaplan and Luiz Fernando Santos on In-Process Side-by-Side.  The article contains details on this new .NET Framework 4 feature and the problems it solves.  It is especially useful for add-in or COM component developers and those wishing to write managed shell extensions. You can find a list of all “CLR Inside Out” articles here.  It’s a new link this month, as MSDN Magazine has updated their site.  As always,...

HTML 5 intellisense and validation schema for Visual Studio 2008 and Visual Web Developer
Nov 18, 2009
0
0

HTML 5 intellisense and validation schema for Visual Studio 2008 and Visual Web Developer

Web Development Tools Microsoft
Web Development Tools Microsoft

You all probably know that new HTML 5 standard is coming. We made a new intellisense schema that you can add to VS 2008 or VWD Express 2008 and get intellisense and validation on HTML 5 elements. Note that schema is for markup only, we do not have DOM2 update for jscript intellisense yet. How to install the schema: Download attached ZIP file. Place html_5.xsd in C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\Packages\schemas\html Run either x86 or x64 reg file depending on the OS and VS/VWD flavors installed. For example, for VWD Express installed on 64-bit OS run HTML-5-Schema-Reg-x64-VWD...

CLR-Related PDC 2009 Sessions
Nov 17, 2009
0
0

CLR-Related PDC 2009 Sessions

CLR Team
CLR Team

If you’re at PDC this year and are reading the CLR Team’s blog, there are a few sessions that might be of interest to you. ·         Future of Garbage Collection is a session by the creator of the CLR’s GC, Patrick Dussud.  Come hear him talk Wednesday at 1:00PM in Petree Hall C.·         Code Contracts and Pex: Power Charge Your Assertions and Unit Tests is a session by Mike Barnett and Nikolai Tillmann from Microsoft Research about some of the latest advances in these tools for design-by-con...

How to Make the Most of Your .NET Server Code
Nov 13, 2009
0
0

How to Make the Most of Your .NET Server Code

CLR Team
CLR Team

One of our team’s field engineers recently sent a link to a Channel 9 video: Steve Michelotti of e.magination on High Performance Web Solutions. This company built a 64-bit web server that handles over 3 billion transactions a day and guarantees a 250 ms response time.  And it goes without saying that they built it on top of .NET. The team optimized their code to avoid implicit allocations, pool and reuse objects and allocate large collections directly on the Large Object Heap. But they still saw some latencies that were greater than their contract allowed. So they worked with their field engineer and...

CLR Inside Out – Exploring the .NET Framework 4 Security Model
Nov 10, 2009
0
0

CLR Inside Out – Exploring the .NET Framework 4 Security Model

CLR Team
CLR Team

  The new installment of the “CLR Inside Out” column in MSDN Magazine is now available on line.  This month we have an article from Andrew Dai on Exploring the .NET Framework 4 Security Model.  This article discusses how the new .NET Framework 4 security model makes it easier to work with partially trusted code. You can find a list of all “CLR Inside Out” articles here.  As always, please let us know if you have topics you’d like to see covered in the column.