Intellisense and NAnt .build files in VS.NET
This has been blogged about before here and there, but I wanted to share it as I had to mess with it yesterday.
Getting Intellisquish to work with NAnt .build files in VS.NET:
- Copy this file: nant-current.xsd (101.06 KB) to 'C:\Program Files\Microsoft Visual Studio .NET 2003\Common7\Packages\schemas\xml' on your system.
- In your NAnt build file (I make my with the extension .build) include this xmlns attribute:
<
project default="all" basedir="." xmlns="http://nant.sf.net/schemas/nant-0.84.win32.net-1.0.xsd"> -
When you File|Open your .build file, notice the TINY down arrow on the Open button. Click it, go to Open With...
-
In Open With, select HTML/XML Editor. There you go, NAnt Build files with Intellisense.
If anyone knows how to tell VS.NET to ALWAYS open .build files with the XML Editor (without messing up any other file types) tell me, and then we can skip steps 3 and 4.
There is also some nice stuff on MSDN about Authoring Custom XML Schemas for use in VS.NET.
About Scott
Scott Hanselman is a former professor, former Chief Architect in finance, now speaker, consultant, father, diabetic, and Microsoft employee. He is a failed stand-up comic, a cornrower, and a book author.
About Newsletter
Anyone know why this is and how to fix it?
(I tried to post it here in the comment, but ASPX compained about dangerous tags. I'm too lazy to escape them out, so...)
http://objectsharp.com/Blogs/dave/archive/2004/06/04/575.aspx
See details here:
http://dotnetbkm.blogspot.com/2006/01/nant-files-and-xml-namespaces.html
Comments are closed.