gpt4 book ai didi

visual-studio - 这些 Visual Studio 警告是什么意思?

转载 作者:行者123 更新时间:2023-12-04 01:54:45 26 4
gpt4 key购买 nike

我的 Web.Config 转换未发布 - 我认为该错误与我收到的这些警告有关。

使用 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>

有人可以帮忙吗?

最佳答案

我找到了 this blog post这表明转换器因 xmlns= 属性而窒息。

我更改了我的 Web.config 文件:

<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
<connectionStrings>
etc...

为此:

<configuration>
<connectionStrings>
etc...

...你瞧,它起作用了!

关于visual-studio - 这些 Visual Studio 警告是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3098138/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com