Enable windows auth in tests via web.config.

This commit is contained in:
Chris R 2015-10-07 12:34:46 -07:00
parent fcd5b55611
commit 921b24890b
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
<configuration>
<system.webServer>
<httpPlatform forwardWindowsAuthToken="true" />
<handlers>
<add name="httpplatformhandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified" />
</handlers>
</system.webServer>
</configuration>