Fixes on web.config

This commit is contained in:
2015-11-04 00:09:29 +01:00
parent bfcc0f37a5
commit 7cb8fb45d0
4 changed files with 10 additions and 5 deletions

View File

@@ -49,12 +49,12 @@
<Content Include="priv\keep.txt" />
<Content Include="Scripts\01. Base.js" />
<None Include="Properties\PublishProfiles\VAR.Focus.Web.pubxml" />
<None Include="Web.Debug.config">
<DependentUpon>Web.config</DependentUpon>
<None Include="web.Debug.config">
<DependentUpon>web.config</DependentUpon>
<SubType>Designer</SubType>
</None>
<None Include="Web.Release.config">
<DependentUpon>Web.config</DependentUpon>
<None Include="web.Release.config">
<DependentUpon>web.config</DependentUpon>
<SubType>Designer</SubType>
</None>
</ItemGroup>
@@ -66,7 +66,7 @@
<Content Include="Styles\02. Boards.css" />
<Content Include="Styles\05. Cards.css" />
<Content Include="Styles\10. Chat.css" />
<Content Include="Web.config">
<Content Include="web.config">
<SubType>Designer</SubType>
</Content>
</ItemGroup>

View File

@@ -9,11 +9,16 @@
<add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
</assemblies>
</compilation>
<httpHandlers>
<clear/>
<add path="*" verb="*" type="VAR.Focus.Web.GlobalRouter"/>
</httpHandlers>
</system.web>
<system.webServer>
<handlers>
<clear/>
<add name="GlobalRouter" path="*" verb="*" type="VAR.Focus.Web.GlobalRouter"/>
</handlers>
<validation validateIntegratedModeConfiguration="false"/>
</system.webServer>
</configuration>