Expert Texture

Thoughts on software, products, companies, technologies, people, places, and things

  Home  |   Contact  |   Syndication    |   Login
  38 Posts | 4 Stories | 0 Comments | 36 Trackbacks

News

Note: as of 11/3/05, this blog is no longer active. Click here for my active blog.
Subscribe in NewsGator Online

Archives

Post Categories

About

Links

Monday, October 24, 2005 #

I found an error in my ASP.NET 2.0 assembly-renaming script (see Renaming ASP.NET Assemblies).

The regular expression isn't matching all assembly names that might be generated by the compiler.  This expression does the trick:

(?'assembly'App_Web.+\s*)\042

Simply replacing the pattern in the nant regex task solves the problem.