-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
60 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 31 additions & 21 deletions
52
framework/wcf/Scenario/DataBinding/WebForms/CS/client/Web.Config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,34 @@ | ||
<?xml version="1.0"?> | ||
<!-- Copyright (c) Microsoft Corporation. All Rights Reserved. --> | ||
<configuration> | ||
<system.serviceModel> | ||
<client> | ||
<endpoint address="http://localhost/servicemodelsamples/service.svc" binding="wsHttpBinding" contract="Microsoft.Samples.WebForms.IWeatherService"/> | ||
</client> | ||
</system.serviceModel> | ||
<system.web> | ||
<compilation debug="true" targetFramework="4.0"> | ||
<assemblies> | ||
|
||
|
||
|
||
</assemblies></compilation> | ||
<pages controlRenderingCompatibilityVersion="3.5"/></system.web> | ||
<system.codedom> | ||
<compilers> | ||
<compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CSharp.CSharpCodeProvider, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" warningLevel="4" compilerOptions="/warnaserror-"> | ||
<providerOption name="CompilerVersion" value="v4.0"/></compiler> | ||
<compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.VisualBasic.VBCodeProvider, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" compilerOptions="/optioninfer+"> | ||
<providerOption name="CompilerVersion" value="v4.0"/></compiler></compilers></system.codedom> | ||
<system.webServer> | ||
</system.webServer></configuration> | ||
<system.serviceModel> | ||
<client> | ||
<endpoint address="http://localhost/servicemodelsamples/service.svc" binding="wsHttpBinding" contract="Microsoft.Samples.WebForms.IWeatherService"/> | ||
</client> | ||
</system.serviceModel> | ||
<!-- | ||
For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367. | ||
The following attributes can be set on the <httpRuntime> tag. | ||
<system.Web> | ||
<httpRuntime targetFramework="4.8" /> | ||
</system.Web> | ||
--> | ||
<system.web> | ||
<compilation debug="true" targetFramework="4.6.2"> | ||
<assemblies/> | ||
</compilation> | ||
<pages controlRenderingCompatibilityVersion="3.5"/> | ||
</system.web> | ||
<system.codedom> | ||
<compilers> | ||
<compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CSharp.CSharpCodeProvider, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" warningLevel="4" compilerOptions="/warnaserror-"> | ||
<providerOption name="CompilerVersion" value="v4.0"/> | ||
</compiler> | ||
<compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.VisualBasic.VBCodeProvider, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" compilerOptions="/optioninfer+"> | ||
<providerOption name="CompilerVersion" value="v4.0"/> | ||
</compiler> | ||
</compilers> | ||
</system.codedom> | ||
<system.webServer/> | ||
</configuration> |