私のプロジェクトは WCF Web サービスに基づいており、デバッグ中に WCF テスト クライアントを起動しています。エラーが発生した場合、特定のポイントでコードを中断するのではなく、WCF テスト クライアントにエラーを報告しているだけです。
コードを中断したいので、デバッグして、中断しているレコードを監視できます。これは以前は発生していましたが、突然機能しなくなりました。web.configで無効にしたものかどうかはわかりません。
Project Web サーバーはまだ IIS Express (localhost:#####) に設定されており、WCF テスト クライアントを使用する他のプロジェクトがありますが、コードが正常に壊れています。
<?xml version="1.0"?>
<configuration>
<configSections>
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="ConnectorService.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</sectionGroup>
</configSections>
<appSettings>
<add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" />
</appSettings>
<system.web>
<compilation debug="true" targetFramework="4.5" />
<httpRuntime requestValidationMode="2.0" targetFramework="4.5"/>
</system.web>
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior>
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true"/>
</behavior>
</serviceBehaviors>
</behaviors>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
<directoryBrowse enabled="true"/>
</system.webServer>
<applicationSettings>
<ConnectorService.Properties.Settings>
<setting name="ConnectionName" serializeAs="String">
<value>Test</value>
</setting>
<setting name="UserName" serializeAs="String">
<value>TestUser</value>
</setting>
<setting name="Password" serializeAs="String">
<value>Password</value>
</setting>
</ConnectorService.Properties.Settings>
</applicationSettings>
</configuration>
詳しい情報を提供できる場合は、それが何であるかわかりません。よろしくお願いします。