My web.config

When you write a lot code in ASP.NET, it is tedious to always change some files to the format you like them to be, e.g. my default web.config (to start with) always looks like this:

<?xml version=1.0?>

 

<configuration>

 

  <system.web>

    <trust level=Medium />

    <compilation debug=false />

    <authentication mode=Windows />

  </system.web>

 

</configuration>

 

Luckily you can extend the item and project templates in Visual Studio 2005. Just customize a file and use “File->Export Template” to add this file as a new item. Excellent!

If the “Export Template” menu item doesn’t show up – read here.

ScottGu wrote more extensively about templates here.

 

This entry was posted in Uncategorized. Bookmark the permalink.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s