반응형

요렇게 하면 된다ㅎㅎ

1) Ensured .net 4.5 is installed.
2) Added <modules runAllManagedModulesForAllRequests="true"/> to my web.config
3) Ran %windir%\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe -ir in cmd
4) Checked that my app pool was set to Integrated Mode
5) Checked that it's set to use .net 4

 

 web.config에 아래 코드 추가

<system.webServer>
   
<modules runAllManagedModulesForAllRequests="true" />
    ...
</system.webServer>

반응형

+ Recent posts