Created
June 29, 2019 03:26
-
-
Save dontpaniclabsgists/a0f5cbaa05684264afac4efcb74b80cc to your computer and use it in GitHub Desktop.
Custom Configuration Sections 5
This file contains hidden or 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
<configuration> | |
<configSections> | |
<section name="servers" | |
type="LearnConfigCollection.ServerSection, LearnConfigCollection" /> | |
</configSections> | |
<servers> | |
<add key="Server1" ipAddress="192.168.1.1" ownerEmail="[email protected]"/> | |
<add key="Server2" ipAddress="192.168.1.6" ownerEmail="[email protected]"/> | |
<add key="Server3" ipAddress="192.168.1.14" ownerEmail="[email protected]"/> | |
</servers> | |
</configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment