After adding some views to my common views library, and configure the custom tool 'RazorGenerator', there are some classes generated that give some build errors:
```
The type 'Prodigy.Web.CommonViews.Views.Shared.EditorTemplates.DateTime' must be a non-nullable value type in order to use it as parameter 'T' in the generic type or method 'System.Nullable<T>' D:\TeamFS\Prodigy\Framework\Dev\Prodigy.Controls\Prodigy.Web.CommonViews\Views\Shared\EditorTemplates\Time.generated.cs
```
The code where the error is looks like:
```
public partial class DateTime : System.Web.Mvc.WebViewPage<DateTime?>
```
The view is:
```
@model DateTime?
@(Html.Kendo().DatePickerFor(m => m).Format("dd-MM-yyyy"))
```
Note: we use the Kendo.Mvc control library from Telerik.
Comments: @pranavkm, I'm now trying v2.2.2 of the MsBuild.
```
The type 'Prodigy.Web.CommonViews.Views.Shared.EditorTemplates.DateTime' must be a non-nullable value type in order to use it as parameter 'T' in the generic type or method 'System.Nullable<T>' D:\TeamFS\Prodigy\Framework\Dev\Prodigy.Controls\Prodigy.Web.CommonViews\Views\Shared\EditorTemplates\Time.generated.cs
```
The code where the error is looks like:
```
public partial class DateTime : System.Web.Mvc.WebViewPage<DateTime?>
```
The view is:
```
@model DateTime?
@(Html.Kendo().DatePickerFor(m => m).Format("dd-MM-yyyy"))
```
Note: we use the Kendo.Mvc control library from Telerik.
Comments: @pranavkm, I'm now trying v2.2.2 of the MsBuild.