在PUBXML正确的标签不被认可的智能感知(Correct tags in PUBXML not r

2019-10-19 04:41发布

我注意到,在我的PUBXML文件,第一个元素是由蓝波强调。 当我删除它,并试图进入它,我注意到,智能感知不承认它。 我已经查MSDN约PUBXML文件 ,它似乎是正确的。

我还注意到,当我在删除的第一个标签<的PropertyGroup>,第二(现在已经成为最顶层)立即得到了由相同的蓝波强调。 所以我的结论是,这是不是内部,强调标签这东西是错误的。

可能是什么错误? 如何麻烦拍摄呢?

下面是该文件的内容。 请注意,它的untampetered配版的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>

Answer 1:

XML编辑器将会把一个蓝色的波浪线下您所指定的XMLNS没有定义任何东西。 然而,这一切发生的时间 - 的MSBuild模式即VS附带有考虑的MSBuild让你定义任意属性名称相对较少的特性。 事实上,你会发现这些潦草的字迹,即使你在大多数情况下,打开项目文件。

只是忽略蓝色波浪线。



文章来源: Correct tags in PUBXML not recognized by intellisense