Hello,
I got problem and i can't understand the logic, i think there is an issue...
I got a *Helper.cshtml
```
@* Generator: MvcHelper *@
.....
```
When i generate it with Custom Tool : RazorGenerator the generated helper file look like this :
```
[System.CodeDom.Compiler.GeneratedCodeAttribute("RazorGenerator", "2.0.0.0")]
public static class ...............
```
When i generate it with RazorGenerator.MSBuild i got this :
```
[System.CodeDom.Compiler.GeneratedCodeAttribute("RazorGenerator", "2.0.0.0")]
public class ................... : System.Web.WebPages.HelperPage
```
Somebody got the same problem ? Why this difference ?
I got problem and i can't understand the logic, i think there is an issue...
I got a *Helper.cshtml
```
@* Generator: MvcHelper *@
.....
```
When i generate it with Custom Tool : RazorGenerator the generated helper file look like this :
```
[System.CodeDom.Compiler.GeneratedCodeAttribute("RazorGenerator", "2.0.0.0")]
public static class ...............
```
When i generate it with RazorGenerator.MSBuild i got this :
```
[System.CodeDom.Compiler.GeneratedCodeAttribute("RazorGenerator", "2.0.0.0")]
public class ................... : System.Web.WebPages.HelperPage
```
Somebody got the same problem ? Why this difference ?