PELLXML中的正确标签无法被智能感知识别

时间:2014-01-04 13:46:04

标签: c# config visual-studio-2013 publishing pubxml

我注意到在我的PUBXML文件中,第一个元素用蓝色波浪加下划线。当我删除它并尝试输入它时,我注意到intellisense没有识别它。我已经使用MSDN about PUBXML files进行了检查,这似乎是正确的。

我还注意到,当我删除了< PropertyGroup> 中的第一个标记时,第二个(现在变成最顶层)的标记立即被相同的蓝色波浪加下划线。所以我的结论是,不是内部的,带下划线的标签,这是错误的。

可能是什么错误?如何解决问题?

以下是该文件的内容。请注意,它是由MS / VS和Azure发布文件下载自动提供的版本。

<?xml version="1.0" encoding="utf-8"?>
<!-- This file is used by the publish/package process of your Web project. 
  You can customize the behavior of this process by editing this MSBuild 
  file. In order to learn more about this please visit 
  http://go.microsoft.com/fwlink/?LinkID=208121. -->
<Project 
  ToolsVersion="4.0" 
  xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <WebPublishMethod>MSDeploy</WebPublishMethod>
    <LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration>
    <LastUsedPlatform>Any CPU</LastUsedPlatform>
    <SiteUrlToLaunchAfterPublish>...</SiteUrlToLaunchAfterPublish>
    <LaunchSiteAfterPublish>False</LaunchSiteAfterPublish>
    <ExcludeApp_Data>False</ExcludeApp_Data>
    <MSDeployServiceURL>...</MSDeployServiceURL>
    <DeployIisAppPath>VisitMore</DeployIisAppPath>
    <RemoteSitePhysicalPath />
    <SkipExtraFilesOnServer>False</SkipExtraFilesOnServer>
    <MSDeployPublishMethod>WMSVC</MSDeployPublishMethod>
    <EnableMSDeployBackup>True</EnableMSDeployBackup>
    <UserName>Chamster</UserName>
    <_SavePWD>True</_SavePWD>
    <PrecompileBeforePublish>True</PrecompileBeforePublish>
    <EnableUpdateable>False</EnableUpdateable>
    <DebugSymbols>False</DebugSymbols>
    <WDPMergeOption>DonotMerge</WDPMergeOption>
  </PropertyGroup>
</Project>

1 个答案:

答案 0 :(得分:2)

XML编辑器会在您指定的xmlns中未定义的任何内容下放置蓝色波浪线。但是,这种情况一直发生 - 考虑到MSBuild允许您定义任意属性名称,VS附带的MSBuild架构具有相对较少的属性。事实上,即使你在大多数情况下打开一个项目文件,你也会发现这些曲线。

忽略蓝色波浪线。