.net C#visual studio
在我们的应用程序中,我们使用的是一个配置文件,其中包含我们应用程序的所有条目 具体
现在要发布到生产中,我需要为配置文件添加一些额外的条目,这应该只是发布 具体而不需要开发。
如果只是连接字符串我可以添加
`<connectionStrings configSource="Configuration\ConnectionStrings.config">
</connectionStrings>`
但我还有一些其他条目,例如:
`<system.web>
<authorization />
<machineKey validationKey=""/>
</system.web>
<system.webServer>
<modules>
</modules>
</system.webServer>`
等等。
那么如何配置我的应用程序以使用一个配置文件用于开发并分离用于生产。
由于