我的web.config中有这样的配置吗?
<configuration>
<appSettings>
<add key="BASE_URL" value="/mvc/" />
</appSettings>
</configuration>
在我的web.Release.config中,我有这个:
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<appSettings>
<add key="BASE_URL" value="/mvc" xdt:Transform="Replace" xdt:Locator="Match(key)"/>
</appSettings>
</configuration>
但是,当我调用BASE_URL属性时,它返回“/ mvc /”而不是“/ mvc” 我使用Release Configuration来构建我的项目 我在VS 2013中使用C#MVC4