I started using DurandalJs framework with asp.net MVC. It's working perfect.
But now I need to use .cshtml files as views for durandal. So I added to root web.config
<add key="webpages:Enabled" value="true" />
But DurandalJs still try to get .html files as views.
So I correct viewEngine.js file:
return {
viewExtension: '.cshtml',
viewPlugin: 'text',
but now DurandalJs required that all views files should have ".cshtml" extension.
So could I use ".html" and ".cshtml" files together?