मैं कंसोल एप्लिकेशन विकसित कर रहा हूं और जब मैं .exe फ़ाइल चलाता हूं, तो मुझे निम्न त्रुटि मिलती है:
system.Configuration.ConfigurationErrorsException
:<configSections>
प्रति विन्यास फ़ाइल में केवल एक तत्व की अनुमति है और यदि वर्तमान में मूल<configuration>
तत्व का पहला बच्चा होना चाहिए ।
यहाँ मेरी App.config
फ़ाइल है:
<configuration>
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0"/>
</startup>
<configSections>
<section name="Reva.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />
</configSections>
<!-- ... -->
हालांकि, अगर मैं निम्नलिखित startup
अनुभाग को हटाता हूं , तो यह ठीक काम करता है
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0"/>
</startup>
1
जर्मन में, त्रुटि संदेश में लिखा है, " प्रो कोनफिगुरेशनडेटी आईएसटी नर्स ईइन <configSections> -Element zulässig und muss, sofern vorhanden, das erste untergeordorde Element des Stamm- <कॉन्फ़िगरेशन> -Elements sein। " )।
—
उवे कीम