我的Web.Config轉換沒有被髮布 - 我認爲這個錯誤與我得到的這些警告有關。這些Visual Studio警告是什麼意思?
使用Visual Studio 2010,我正在玩我的Web.Config
/Web.Config.Debug
文件。
在我的.Debug
文件中,我收到以下警告列出了許多次。
No element in the source document matches '/configuration'
我認爲它會列出它爲每個部分存在於.Debug
文件。
因此,以下示例Web.Config.Debug文件..將列出兩次。 (我猜,第一個是爲<connectionStrings>..</>
,第二個是爲<system.webServer>...</.>
)
<?xml version="1.0"?>
<!-- For more information on using web.config transformation visit http://go.microsoft.com/fwlink/?LinkId=125889 -->
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform" xdt:SupressWarnings="false">
<connectionStrings>
<add name="Foo" connectionString="Server=foo;Database=Foo;uid=foo;password=foo" providerName="System.Data.SqlClient"
xdt:Transform="SetAttributes" xdt:Locator="Match(name)"/>
</connectionStrings>
<system.webServer>
<httpProtocol>
<customHeaders>
<clear />
<add name="ETag" value="Dev_IIS" xdt:Transform="SetAttributes" xdt:Locator="Match(name)" />
</customHeaders>
</httpProtocol>
</system.webServer>
</configuration>
能
任何人的幫助,好嗎?
我有同樣的問題:http://stackoverflow.com/questions/12593671/why-wont-my-web-config-transforms-work – 2012-09-26 03:21:17