Browse Source

Fix MVC projects not being displayed when run with IIS.

pull/18/head
Matt Ward 14 years ago
parent
commit
60811b8312
  1. 4
      data/templates/project/CSharp/EmptyMvcWebProject.xpt
  2. 4
      data/templates/project/CSharp/MvcRazorProject.xpt
  3. 4
      data/templates/project/CSharp/MvcWebProject.xpt
  4. 4
      data/templates/project/VB/EmptyMvcWebProject.xpt
  5. 4
      data/templates/project/VB/MvcRazorProject.xpt
  6. 4
      data/templates/project/VB/MvcWebProject.xpt

4
data/templates/project/CSharp/EmptyMvcWebProject.xpt

@ -71,6 +71,10 @@ namespace ${StandardNamespace} @@ -71,6 +71,10 @@ namespace ${StandardNamespace}
</namespaces>
</pages>
</system.web>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>
]]>
</File>

4
data/templates/project/CSharp/MvcRazorProject.xpt

@ -320,6 +320,10 @@ Aliquam suscipit tellus vel nunc elementum fringilla.</p> @@ -320,6 +320,10 @@ Aliquam suscipit tellus vel nunc elementum fringilla.</p>
</namespaces>
</pages>
</system.web>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>
]]>
</File>

4
data/templates/project/CSharp/MvcWebProject.xpt

@ -323,6 +323,10 @@ namespace ${StandardNamespace} @@ -323,6 +323,10 @@ namespace ${StandardNamespace}
</namespaces>
</pages>
</system.web>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>
]]>
</File>

4
data/templates/project/VB/EmptyMvcWebProject.xpt

@ -69,6 +69,10 @@ End Class @@ -69,6 +69,10 @@ End Class
</namespaces>
</pages>
</system.web>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>
]]>
</File>

4
data/templates/project/VB/MvcRazorProject.xpt

@ -334,6 +334,10 @@ Aliquam suscipit tellus vel nunc elementum fringilla.</p> @@ -334,6 +334,10 @@ Aliquam suscipit tellus vel nunc elementum fringilla.</p>
</namespaces>
</pages>
</system.web.webPages.razor>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>
]]>
</File>

4
data/templates/project/VB/MvcWebProject.xpt

@ -315,6 +315,10 @@ End Class @@ -315,6 +315,10 @@ End Class
</namespaces>
</pages>
</system.web>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>
]]>
</File>

Loading…
Cancel
Save