Index: NAnt.DotNetTasks/JscTask.cs
===================================================================
RCS file: /cvsroot/nant/nant/src/NAnt.DotNetTasks/JscTask.cs,v
retrieving revision 1.3
diff -r1.3 JscTask.cs
27c27
<     /// <summary>Compiles Microsoft JScript.NET programs using jsc.</summary>
---
>     /// <summary>Compiles JScript.NET programs.</summary>
41a42,50
>         #region Override implementation of ExternalProgramBase
>            
>         public override string ExeName {           
>             get { return Project.CurrentFramework.JScriptCompilerName; }
>         }
> 
>         #endregion Override implementation of ExternalProgramBase
> 
>         #region Override implementation of CompilerBase
43c52,55
<         // add JScript.NET specific compiler options here (see CscTask)
---
>         /// <summary>
>         /// Writes the compiler options to the specified TextWriter.
>         /// </summary>
>         /// <param name="writer"><see cref="TextWriter" /> to which the compiler options should be written.</param>
46,47c58,60
<                 writer.WriteLine("/debug");
<                 writer.WriteLine("/define:DEBUG;TRACE");
---
>                 WriteOption(writer, "debug");
>                 WriteOption(writer, "define", "DEBUG");
>                 WriteOption(writer, "define", "TRACE");
51c64,68
<         protected override string GetExtension(){ return "js";}
---
>         protected override string GetExtension() { 
>             return "js";
>         }
> 
>         #endregion Override implementation of CompilerBase
