Visual Studio发布跳过项目

时间:2016-02-18 14:54:40

标签: visual-studio visual-studio-2015 webdeploy

我正在尝试从Visual Studio 2015 Professional设置发布/ Web部署。出于某种原因,发布不会构建或使用解决方案中的某个项目。我不知道为什么会这样,因为当我像平常一样构建时,所有项目都在本地构建。

这种情况不会发生,因为有问题的项目已经是最新的。它不是最新的,但它根本不是建造的。该解决方案有6个项目,其中只有5个项目正在使用(Build: 5 succeeded, 0 failed, 0 up-to-date, 0 skipped)。

我正在从启动项目中发布(右键单击>发布),但是未构建的项目也是一个Web项目。我可以从另一个发布,它跳过这一个。我需要两个来构建/发布。

这是一个相对较新的问题 - 自我设置以来,几个月来发布工作完美无缺,但本周早些时候,我在我建立的所有三个服务器/网站上都出现了一个未知的原因。

我不知道提供哪些相关信息;我会发布要求的任何内容。

.pubxml文件:

<?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>
    <ADUsesOwinOrOpenIdConnect>False</ADUsesOwinOrOpenIdConnect>
    <LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration>
    <LastUsedPlatform>Mixed Platforms</LastUsedPlatform>
    <SiteUrlToLaunchAfterPublish />
    <LaunchSiteAfterPublish>False</LaunchSiteAfterPublish>
    <ExcludeApp_Data>True</ExcludeApp_Data>
    <MSDeployServiceURL>https://SERVER-NAME:8172/msdeploy.axd</MSDeployServiceURL>
    <DeployIisAppPath>SITE NAME</DeployIisAppPath>
    <RemoteSitePhysicalPath />
    <SkipExtraFilesOnServer>True</SkipExtraFilesOnServer>
    <MSDeployPublishMethod>WMSVC</MSDeployPublishMethod>
    <EnableMSDeployBackup>True</EnableMSDeployBackup>
    <UserName>DOMAIN\USER</UserName>
    <_SavePWD>True</_SavePWD>
  </PropertyGroup>
</Project>

1 个答案:

答案 0 :(得分:0)

您应该通过右键单击解决方案并选择ConfigurationManager来确保项目已设置为所选配置构建:

enter image description here

enter image description here