我有配置看起來像這樣,我不知道如何閱讀,我想獲得價值,如果我選擇產品或預覽?使用不同的配置每個環境
<configuration>
<environment name="product">
<connectionString> connection string</connectionString>
<logPath>C:\*****</logPath>
<errorLogPath>C:\*****</errorLogPath>
<ProcessesNumber>5</ProcessesNumber>
<sendAtOnce>100</sendAtOnce>
<restInterval>30000</restInterval>
<stopTime>30000</stopTime>
</environment>
<environment name="preview">
<connectionString> connctionstring </connectionString>
<logPath>C:\*****</logPath>
<errorLogPath>C:\*****</errorLogPath>
<ProcessesNumber>5</ProcessesNumber>
<sendAtOnce>100</sendAtOnce>
<restInterval>30000</restInterval>
<stopTime>30000</stopTime>
</environment>
</configuration>
如何在我的調試中讀取此內容?
確實[這個答案](http://stackoverflow.com/a/3994081/266143)幫助?通過這種方式,每個版本都會創建一個'web。$(Configuration).config'文件,允許你有獨立的調試版本和發行版本配置。 – CodeCaster