Showing tag results for Node.js

Jul 15, 2010
Post comments count0
Post likes count0

MSBuild Known Issues

Visual Studio Team
Visual Studio Team

Since the release of Visual Studio 2010 we have received a few reports of crashing behavior which can be traced back to issues with MSBuild.  We’ve analyzed all of these and there are several particular cases where a crash can occur.  We’ve also added a notification to Windows Error Reporting to help guide those who hit these ...

Debugging and DiagnosticsC#Node.js
Jun 1, 2010
Post comments count0
Post likes count0

Better Parallelism in MSBuild 4 with YieldDuringToolExecution

Visual Studio Team
Visual Studio Team

Introduction In MSBuild 4 we introduced several performance improvements, particular for large interdependent builds.  By and large they are automatic and you receive their benefit without making any changes to the way your build process in authored.  However, there are still some cases where we are unable to make the best decision.  One suc...

C#Node.jsXAML
Jun 1, 2010
Post comments count0
Post likes count0

Walkthrough– Publishing an Extensibility Web Control Project Template (Part 2 of 2)

Visual Studio Team
Visual Studio Team

Introduction In Walkthrough-- Publishing a Custom Web Control (Part 1 of 2) you learned to create and publish a custom web control. You created the extensibility project manually, a procedure with many steps. Now that you have an extensibility project template, you can publish it to the Visual Studio gallery. Anyone who wants to create and publish...

C#ASP.NETExtensions
May 25, 2010
Post comments count0
Post likes count0

Programmatically adding/removing/querying VC++ Build Customizations

Visual Studio Team
Visual Studio Team

Build Customizations (Custom Build Rules in earlier editions) are commonly used for invoking external tools that translate files from one format to the other, often resulting in C++ sources that can be compiled at the C++ compilation step. In this post, I will explain how to programmatically add, remove,  and query for Build Customizations in a V...

C#Node.js
May 14, 2010
Post comments count0
Post likes count0

A guide to .vcxproj and .props file structure

Visual Studio Team
Visual Studio Team

If you inspect the contents of a .vcxproj file (the new VC++ project file format in VS2010) in notepad or in VS editor (by first unloading the project and then choosing "Edit Foo.vcxproj" from the context menu in Solution Explorer), you will see that the various top-level MSBuild elements are laid out in a particular order. Go ahead and open a .v...

C#Node.jsVisual Studio 2010
May 13, 2010
Post comments count0
Post likes count0

Announcing: Collapse Selection in Solution Explorer extension

Visual Studio Team
Visual Studio Team

We have received much feedback asking for a feature that would recursively collapse nodes in the solution explorer. We are happy to announce the Collapse Selection in Solution Explorer extension! What is the Collapse Selection in Solution Explorer extension? Many Visual Studio users have a solution tree structure with multiple projects and solution...

ExtensionsNode.jsVisual Studio 2010
May 7, 2010
Post comments count0
Post likes count0

Building on Cross targeting scenarios and 64-bit MSBuild

Visual Studio Team
Visual Studio Team

UPDATE: Most issues around MSBuild support for cross-bitness and 64-bit builds are fixed in .NET 4.5. As always, feedback is welcome! Please leave your comments in this blog post and report any bugs on Microsoft Connect.   During the Visual Studio 2010 development cycle a push to make the build experience better on Cross compilation scen...

C#Node.jsXAML
Mar 7, 2010
Post comments count0
Post likes count0

Tuning C++ build parallelism in VS2010

Visual Studio Team
Visual Studio Team

A great way to get fast builds on a multiprocessor computer is to take advantage of as much parallelism in your build as possible. If you have C++ projects, there’s two different kinds of parallelism you can configure. What are the dials I can set? Project-level parallel build, which is controlled by MSBuild, is set at the solution level in Visual...

C#Node.jsPerformance
Mar 5, 2010
Post comments count0
Post likes count0

MSBuild 4 Detailed Build Summary

Visual Studio Team
Visual Studio Team

Introduction When we were developing the current version of MSBuild, we spent a lot of time analyzing builds to determine where our performance issues lay. The standard logging, even on diagnostic verbosity and with the performance summary enabled (/clp:PerformanceSummary=true on the MSBuild command line) doesn’t give us the kind of information we ...

Debugging and DiagnosticsC#Node.js
Mar 4, 2010
Post comments count0
Post likes count0

Creating and Sharing Project & Item Templates

Aaron Marten
Aaron Marten

One of the great new features we added in Visual Studio 2010 is the ability to easily find and consume online Project and Item templates without leaving the New Project/Item dialog. What may not be so obvious is how to go from a piece of code you want to share to a template contained in a VSIX file that can be uploaded to the Visual Studio Gallery ...

Debugging and DiagnosticsC#Extensions