1

我已经通过 VS2012 中的发布 GUI 删除了一些旧的旧发布配置文件(包括名为“包”的配置文件)。当我签入代码并通过 TeamCity 运行构建时,我收到以下错误。

Rebuild MSBuild 
trunk\SomeService\SomeService.csproj 
ValidatePublishProfileSettings 
GetPublishingLocalizedString 
C:\Program Files     (x86)\MSBuild\Microsoft\VisualStudio\v11.0\Web\Microsoft.Web.Publishing.targets(4253, 5): The value     for PublishProfile is set to 'Package', expected to find the file at     'E:\BuildAgent2\work\6ec5bd58ee82179a\trunk\SomeService\Properties\PublishProfiles\Package.pubxml'     but it could not be found.
GetPublishingLocalizedString 
C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\Web\Microsoft.Web.Publishing.targets(4260, 4): PublishProfile(Package) is set. But the $(WebPublishMethod) does not have a valid value.  Current     Value is "". 
Error 
C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\Web\Microsoft.Web.Publishing.targets(4267, 5): Target ValidatePublishProfileSettings Failed 
Project trunk\SomeService\SomeServiceService.csproj failed. 
trunk\SomeService\SomeServiceTests.csproj 
Project trunk\SomeServiceTests\SomeServiceTests.csproj failed. 
Project trunk\SomeService.sln failed. 

出于某种原因,我似乎无法理解对这个旧的网络部署发布配置文件('Package.pubxml')的引用。我在 .proj 文件中看不到任何明显的东西。

构建是 TeamCity 中的香草 VS 构建

Runner: Visual Studio Step name: build
Solution File: trunk/SomeService.sln
Visual Studio: VS 2012
Targets: Rebuild
Configuration: Release
Command line params: 'emtpy'

关于如何清除这个旧的发布配置文件的任何建议?或者为什么当我只是做一个简单的构建时,它甚至被首先调用?当我通过命令提示符在本地调用 MSBuild 时,一切正常。

非常感谢任何帮助

4

2 回答 2

0

尝试将您的运行器类型更改为 MSBuild。您的“构建文件路径”将是您的解决方案路径并适当地设置所有其他字段。

于 2014-01-03T17:09:00.270 回答
0

原来我之前已经设置了一些系统参数,其中强制使用旧的发布配置文件发布!

system.DeployOnBuild    true
system.PublishProfile   package

Adarsh 感谢您的帮助。您创建一个新项目的建议是合理的。似乎参数是在根级别设置的,所以仍然在哪里被拾取。

于 2014-01-14T15:48:24.817 回答