Welcome to MSDN Blogs
Sign in
|
Join
|
Help
MSBuild Team Blog
"Coding ... the boring bit between builds"
This Blog
Syndication
RSS 2.0
Atom 1.0
Search
News
These postings are provided
as is
with no warranties, and confers no rights.
Useful Sites
MSDN Documentation
MSDN Reference
MSBuild Wiki
MSBuild Forum (MSDN)
Object Model Reference
Microsoft.SDC.Tasks Download
AssemblyInfoTask Download
Tags
Agile Development
announcements
AssemblyVersionInfo
CTP
Dan Moseley
Eric Mazurkiewicz
Faisal Mohamood
Futures
How To
Inline Tasks
Jay Shrestha
Jeffery Callahan
Known Issues
msbuild
MSBuild in Visual Studio
multiproc
Neil Enns
object model
orcas
stylecop
Sumedh Kanetkar
targets
tasks
Tools
Visual Studio
Visual Studio 2010
Recent Posts
The MSBuild Team Blog Is Moving!
Inline Tasks CTP Walkthrough Update
MSBuild Extensions Pack releases to web
Microsoft Source Analysis releases to web
What's up with xxx.sln.cache?
Archives
November 2009 (1)
November 2008 (1)
October 2008 (1)
May 2008 (1)
February 2008 (1)
January 2008 (1)
December 2007 (1)
November 2007 (4)
October 2007 (4)
July 2007 (2)
May 2007 (1)
April 2007 (6)
January 2007 (2)
December 2006 (1)
November 2006 (3)
October 2006 (1)
July 2006 (1)
June 2006 (2)
May 2006 (4)
March 2006 (9)
February 2006 (6)
January 2006 (16)
December 2005 (5)
November 2005 (26)
October 2005 (24)
September 2005 (11)
Browse by Tags
All Tags
»
How To
»
Faisal Mohamood
(RSS)
Known Issues
Tuesday, December 05, 2006 4:10 AM
7 Steps to MSBuild
Brennan has a great post about all things MSBuild, and covers good breadth on both concepts, as well as the many things you may want to drive with MSBuild (unit testing, web deployment projects, etc). Check it out! [ Author : Faisal Mohamood ]
Posted by
msbuild
|
4 Comments
Filed under:
Faisal Mohamood
,
How To
Thursday, October 05, 2006 4:55 PM
/p property values are immutable - (sort of)....
Hello there - sorry for the long absence, but we're back and hopefully I'll keep this going again. So there was a recent forum post about how property values that are specified from the command line are immutable - i.e. it is not straightforward to change
Posted by
msbuild
|
6 Comments
Filed under:
Faisal Mohamood
,
How To
,
Known Issues
Saturday, January 21, 2006 11:01 PM
How To: Implementing Custom Tasks - Part I
While MSBuild is all about build customization,we never really blogged about what is involved in implementing custom tasks. Partly, I suppose that's because implementing a custom task is as easy as falling off a log most of the time: 1) Subclass Microsoft.Build.Utilities.Task
Posted by
msbuild
|
51 Comments
Filed under:
Faisal Mohamood
,
How To
Tuesday, November 08, 2005 6:49 PM
How To: Customizing Project File Intellisense in Visual Studio
So Neil pointed out that you can find the MSBuild schemas in either the .NET Framework install path, as well as the Visual Studio install location. The one in the Framework folder ships as a reference (since MSBuild really is part of the .NET redist).
Posted by
msbuild
|
3 Comments
Filed under:
Faisal Mohamood
,
How To
Monday, November 07, 2005 10:58 PM
How To: Recursively Copy Files Using the <Copy> Task
Have you ever run into a situation where you had to recursively copy files from one folder into another as a part of your build process? We certainly have run into it a few times, and I thought I'd share with you a neat trick that involves the use of
Posted by
msbuild
|
27 Comments
Filed under:
Faisal Mohamood
,
How To
Wednesday, October 12, 2005 7:43 PM
HOW TO: Beyond PreBuild and PostBuild Steps
Do you use PreBuild and PostBuild steps that are provided in the IDE? You will find that they are still available in Visual Studio 2005 - but from within the IDE, you only get the ability to run command line batch files / scripts. Essentially, prebuild
Posted by
msbuild
|
4 Comments
Filed under:
Faisal Mohamood
,
How To
Thursday, September 29, 2005 2:50 AM
Editing MSBuild project files in Visual Studio
Being able to edit your Visual Studio generated projects is one of the fundamental goals of MSBuild. Being able to edit your project file to customize and extend is not something that just happened to work :) MSBuild and Visual Studio 2005 were designed
Posted by
msbuild
|
12 Comments
Filed under:
Faisal Mohamood
,
How To
Thursday, September 29, 2005 2:40 AM
Cranking up the build verbosity in the IDE
We are often asked whether it's possible to crank up the build output verbosity when building inside the IDE....think building from the command line using msbuild /verbosity:Detailed or msbuild /v:Detailed Sure, it's possible, and we've made it dead simple
Posted by
msbuild
|
5 Comments
Filed under:
Faisal Mohamood
,
How To